/*
Theme Name: Aurya City Child
Theme URI: https://auryacity.com
Description: Premium real estate child theme for Aurya City - Dholera Smart City residential plots
Author: Aurya City
Author URI: https://auryacity.com
Template: twentytwentyfour
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: auryacity-child
Tags: real-estate, business, portfolio, custom-colors, custom-menu, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Figtree:wght@500;600;700&display=swap');

/* CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Root Variables */
:root {
  --color-primary: hsl(222, 60%, 18%);
  --color-primary-foreground: hsl(0, 0%, 100%);
  --color-secondary: hsl(220, 35%, 28%);
  --color-secondary-foreground: hsl(0, 0%, 100%);
  --color-tertiary: hsl(47, 64%, 52%);
  --color-tertiary-foreground: hsl(222, 60%, 18%);
  --color-neutral: hsl(0, 0%, 96%);
  --color-neutral-foreground: hsl(222, 12%, 16%);
  --color-success: hsl(144, 45%, 35%);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--color-neutral-foreground);
  background-color: var(--color-neutral);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Utility Classes - Display */
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Utility Classes - Flexbox */
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-shrink-0 { flex-shrink: 0; }

/* Utility Classes - Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

/* Utility Classes - Spacing */
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Padding */
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }

/* Margin */
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.mr-6 { margin-right: 1.5rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-3 { margin-left: 0.75rem; }

/* Width & Height */
.w-full { width: 100%; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-auto { width: auto; }

.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-12 { bottom: 3rem; }
.left-1\/2 { left: 50%; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

/* Transform */
.transform { transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
.-translate-x-1\/2 { transform: translateX(-50%); }

/* Background Colors */
.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-tertiary { background-color: var(--color-tertiary); }
.bg-neutral { background-color: var(--color-neutral); }
.bg-success { background-color: var(--color-success); }
.bg-transparent { background-color: transparent; }

.bg-gradient-1 {
  background-image: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.bg-gradient-2 {
  background-image: linear-gradient(135deg, var(--color-tertiary) 0%, hsl(45, 58%, 46%) 100%);
}

/* Text Colors */
.text-primary { color: var(--color-primary); }
.text-primary-foreground { color: var(--color-primary-foreground); }
.text-secondary-foreground { color: var(--color-secondary-foreground); }
.text-tertiary { color: var(--color-tertiary); }
.text-tertiary-foreground { color: var(--color-tertiary-foreground); }
.text-neutral-foreground { color: var(--color-neutral-foreground); }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Font Sizes */
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

/* Font Weights */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Font Styles */
.italic { font-style: italic; }
.font-serif { font-family: 'Figtree', serif; }
.font-sans { font-family: 'Inter', sans-serif; }

/* Line Height */
.leading-relaxed { line-height: 1.625; }

/* Borders */
.rounded { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-primary { border-color: var(--color-primary); }
.border-secondary { border-color: var(--color-secondary); }
.border-tertiary { border-color: var(--color-tertiary); }
.border-transparent { border-color: transparent; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Object Fit */
.object-cover { object-fit: cover; }
.object-center { object-position: center; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Pointer Events */
.pointer-events-none { pointer-events: none; }

/* Shadows */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Transitions */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.duration-300 { transition-duration: 300ms; }

/* Hover Effects */
.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

.hover\:bg-secondary:hover {
  background-color: var(--color-secondary);
}

.hover\:bg-tertiary:hover {
  background-color: var(--color-tertiary);
}

.hover\:bg-gradient-2:hover {
  background-image: linear-gradient(135deg, var(--color-tertiary) 0%, hsl(45, 58%, 46%) 100%);
}

.hover\:text-primary:hover {
  color: var(--color-primary);
}

.hover\:text-tertiary:hover {
  color: var(--color-tertiary);
}

.hover\:text-tertiary-foreground:hover {
  color: var(--color-tertiary-foreground);
}

/* Focus States */
.focus\:border-tertiary:focus {
  border-color: var(--color-tertiary);
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* Group Hover */
.group:hover .group-hover\:block {
  display: block;
}

/* Animations */
@keyframes aurora {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.aurora-text {
  background: linear-gradient(90deg, hsl(47, 64%, 52%), hsl(45, 58%, 46%), hsl(47, 64%, 52%));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: aurora 3s ease-in-out infinite;
}

@keyframes scroll-indicator {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.5;
  }
}

.scroll-indicator {
  animation: scroll-indicator 2s ease-in-out infinite;
}

/* Sticky Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
}

/* Hero Section */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Progress Bar */
.progress-bar {
  height: 8px;
  background: var(--color-secondary);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--color-tertiary);
  transition: width 0.3s ease;
}

/* FAQ Accordion */
.faq-icon {
  transition: transform 0.3s ease;
}

.faq-icon.rotate-180 {
  transform: rotate(180deg);
}

/* Gallery Image Container */
.gallery-image-container {
  width: 100%;
  height: 20rem;
  overflow: hidden;
  background-color: var(--color-secondary);
}

.gallery-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Responsive - Small Screens */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
}

/* Responsive - Medium Screens */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1.1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

/* Responsive - Large Screens */
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* WordPress Specific Overrides */
.site-header,
.wp-block-template-part {
  display: none !important;
}

body.home-page {
  padding-top: 0 !important;
}

/* Remove WordPress admin bar spacing */
body.admin-bar #header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar #header {
    top: 46px;
  }
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background-color: var(--color-secondary);
  color: var(--color-secondary-foreground);
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-tertiary);
  outline: none;
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  background-color: var(--color-tertiary);
  color: var(--color-tertiary-foreground);
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary:hover {
  background-image: linear-gradient(135deg, var(--color-tertiary) 0%, hsl(45, 58%, 46%) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 1rem;
  text-align: left;
}

/* List Styles */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Scrollbar Hide */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Snap Scroll */
.snap-x {
  scroll-snap-type: x mandatory;
}

.snap-center {
  scroll-snap-align: center;
}

/* Aspect Ratio */
.aspect-\[9\/16\] {
  aspect-ratio: 9 / 16;
}

/* Rotate */
.rotate-0 {
  transform: rotate(0deg);
}

.rotate-180 {
  transform: rotate(180deg);
}

/* Print Styles */
@media print {
  .no-print {
    display: none !important;
  }
}

/* AGF Group Specific Styles */

/* Root Variables - AGF Corporate Palette */
:root {
  --agf-bg: #f6f7fb; /* Light Grey */
  --agf-card: #ffffff; /* White */
  --agf-muted: #6b7280; /* Dark Grey */
  --agf-accent: #0f172a; /* Dark Blue/Almost Black */
  --agf-primary-blue: #0b66ff; /* Bright Blue for buttons */
  --agf-gold: #D4AF37; /* Subtle Gold Accent */
  --agf-radius: 12px;
}

/* Base Styles for AGF Sections */
body.agf-page {
  background: var(--agf-bg);
  color: var(--agf-accent);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

body.agf-page h1,
body.agf-page h2,
body.agf-page h3,
body.agf-page h4,
body.agf-page h5,
body.agf-page h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

body.agf-page p {
  margin-top: 0;
  margin-bottom: 1rem;
}

body.agf-page ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Section Padding */
.section-padding {
  padding: 60px 0;
}

/* Text Alignment */
.text-center {
  text-align: center;
}

/* Header for AGF Pages */
.header {
  background: var(--agf-accent);
  color: var(--agf-card);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 40px; /* Adjust as needed */
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 25px;
}

.main-nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--agf-card);
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--agf-gold);
}

/* Hero Banner */
.hero-banner {
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--agf-card);
  text-align: center;
  position: relative;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero-banner h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-banner p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Section Title */
.section-title {
  font-size: 2.2rem;
  color: var(--agf-accent);
  text-align: center;
  margin-bottom: 40px;
}

/* Grid Layout */
.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

/* Card Styles */
.card {
  background: var(--agf-card);
  border-radius: var(--agf-radius);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15,23,42,.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(15,23,42,.1);
}

.card-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--agf-accent);
}

.card-desc {
  flex: 1;
  color: var(--agf-muted);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto; /* Pushes meta to bottom */
}

.card-link {
  font-size: 0.85rem;
  color: var(--agf-muted);
  transition: color 0.3s ease;
}

.card-link:hover {
  color: var(--agf-primary-blue);
}

.btn {
  background: var(--agf-primary-blue);
  color: var(--agf-card);
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background: #0056e0; /* Darker shade of blue */
}

/* Highlight Boxes */
.highlight-box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.highlight-box {
  background: var(--agf-card);
  border-radius: var(--agf-radius);
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.highlight-box .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--agf-primary-blue);
  margin-bottom: 10px;
}

.highlight-box .label {
  font-size: 1.1rem;
  color: var(--agf-accent);
  font-weight: 500;
}

/* Quote Section */
.quote-section {
  background: var(--agf-accent);
  color: var(--agf-card);
  padding: 80px 0;
  text-align: center;
  margin-top: 60px;
}

.quote-section blockquote {
  font-size: 1.8rem;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.4;
}

.quote-section cite {
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  opacity: 0.8;
}

/* Footer for AGF Pages */
.footer {
  background: var(--agf-accent);
  color: var(--agf-muted);
  padding: 40px 0;
  font-size: 0.9rem;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col.about {
  flex: 2;
  min-width: 280px;
}

.footer-logo img {
  height: 45px;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: var(--agf-card);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--agf-muted);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--agf-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  color: var(--agf-muted);
}

.footer-bottom strong {
  color: var(--agf-card);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2,6,23,0.8);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.show {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 92%;
  max-height: 86%;
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(2,6,23,0.6);
}

.close-x {
  position: fixed;
  top: 20px;
  right: 25px;
  color: var(--agf-card);
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-x:hover {
  color: var(--agf-gold);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 15px;
  }
  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .hero-banner h1 {
    font-size: 2.2rem;
  }
  .hero-banner p {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .highlight-box-grid {
    grid-template-columns: 1fr;
  }
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
  .footer-col {
    min-width: unset;
    width: 100%;
  }
  .footer-col.about {
    order: -1; /* Move about to top on mobile */
  }
  .footer-col h4 {
    margin-top: 20px;
  }
  .footer-col ul {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .card-thumb {
    height: 160px;
  }
  .hero-banner h1 {
    font-size: 1.8rem;
  }
  .hero-banner p {
    font-size: 0.9rem;
  }
}
