@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* LIGHT SYSTEM (Eco Luxe) */
  --bg-primary: #f5f8f6;
  --bg-secondary: #ffffff;
  --accent-primary: #123e25;
  --accent-secondary: #2e8b57;
  --accent-light: rgba(46, 139, 87, 0.08);
  --text-primary: #112217;
  --text-secondary: #3d5245;
  --text-muted: #748a7d;
  --border-color: rgba(18, 62, 37, 0.08);
  --card-bg: rgba(255, 255, 255, 0.8);
  --card-border: rgba(18, 62, 37, 0.06);
  --shadow-sm: 0 4px 12px rgba(18, 62, 37, 0.03);
  --shadow-md: 0 16px 36px rgba(18, 62, 37, 0.06);
  --shadow-lg: 0 32px 64px rgba(18, 62, 37, 0.1);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --gradient-primary: linear-gradient(135deg, #123e25 0%, #2e8b57 100%);
  --gradient-glow: rgba(194, 157, 102, 0.14); /* soft eco-gold */
  --accent-gold: #c29d66;
  --accent-gold-light: rgba(194, 157, 102, 0.15);
}

body.dark-theme {
  /* DARK SYSTEM (Nature Obsidian) */
  --bg-primary: #08100c;
  --bg-secondary: #0d1813;
  --accent-primary: #76c893;
  --accent-secondary: #34a0a4;
  --accent-light: rgba(118, 200, 147, 0.08);
  --text-primary: #e6f1eb;
  --text-secondary: #9dbda9;
  --text-muted: #5e7a6b;
  --border-color: rgba(118, 200, 147, 0.12);
  --card-bg: rgba(13, 24, 19, 0.7);
  --card-border: rgba(118, 200, 147, 0.08);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 20px 48px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 36px 72px rgba(0, 0, 0, 0.6);
  --gradient-primary: linear-gradient(135deg, #1b4d3e 0%, #76c893 100%);
  --gradient-glow: rgba(229, 185, 124, 0.16); /* warm temple gold */
  --accent-gold: #e5b97c;
  --accent-gold-light: rgba(229, 185, 124, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  /* Dotted grid pattern for premium modern look */
  background-image: radial-gradient(rgba(18, 62, 37, 0.04) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
  transition: background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-image 0.6s ease;
}

body.dark-theme {
  background-image: radial-gradient(rgba(229, 185, 124, 0.03) 1.5px, transparent 1.5px);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* SPOTLIGHT CURSOR FOLLOW BACKGROUND GLOW */
.spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(500px circle at var(--x, 50%) var(--y, 50%), var(--gradient-glow), transparent 75%);
  z-index: 1;
  opacity: 0.8;
  mix-blend-mode: screen;
}

body:not(.dark-theme) .spotlight {
  mix-blend-mode: multiply;
  opacity: 0.4;
}

/* BACKGROUND BLUR BUBBLES */
.blur-bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
  transition: var(--transition);
}
.bubble-1 {
  width: 450px;
  height: 450px;
  background: var(--accent-secondary);
  top: -100px;
  left: -150px;
  animation: floatBubble1 22s infinite ease-in-out;
}
.bubble-2 {
  width: 600px;
  height: 600px;
  background: #f28f38; /* saffron sunset style for Ayodhya theme */
  bottom: -200px;
  right: -200px;
  animation: floatBubble2 28s infinite ease-in-out;
}
.bubble-3 {
  width: 400px;
  height: 400px;
  background: var(--accent-gold);
  top: 35%;
  right: -100px;
  opacity: 0.08;
  animation: floatBubble3 25s infinite ease-in-out;
}
body.dark-theme .blur-bubble {
  opacity: 0.09;
}
body.dark-theme .bubble-3 {
  opacity: 0.06;
}

/* Floating Animations for Bubbles */
@keyframes floatBubble1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes floatBubble2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -30px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes floatBubble3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 50px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(var(--bg-secondary) === '#ffffff' ? 255 : 13, var(--bg-secondary) === '#ffffff' ? 255 : 24, var(--bg-secondary) === '#ffffff' ? 255 : 19, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}
body.dark-theme header {
  background: rgba(13, 24, 19, 0.75);
}
body:not(.dark-theme) header {
  background: rgba(255, 255, 255, 0.75);
}

.nav {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  z-index: 2;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.brand:hover .logo {
  box-shadow: 0 0 15px var(--gradient-glow);
  border-color: var(--accent-secondary);
  transform: rotate(5deg) scale(1.05);
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text h1 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-primary);
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.lang-toggle {
  display: flex;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  padding: 4px;
  border: 1px solid var(--border-color);
}
body.dark-theme .lang-toggle {
  background: rgba(255, 255, 255, 0.05);
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--accent-primary);
  color: white !important;
  box-shadow: var(--shadow-sm);
}

.lang-btn:not(.active):hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

/* THEME TOGGLE BUTTON */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--accent-primary);
}
.theme-toggle-btn:hover {
  background: var(--accent-light);
  transform: rotate(20deg) scale(1.05);
  border-color: var(--accent-secondary);
}
.theme-toggle-btn .sun-icon {
  display: none;
}
.theme-toggle-btn .moon-icon {
  display: block;
}
.theme-toggle-btn.dark .sun-icon {
  display: block;
}
.theme-toggle-btn.dark .moon-icon {
  display: none;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 60px 24px;
  background: transparent;
  overflow: hidden;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h2 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.hero h2 span {
  display: block;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
  border-left: 3px solid var(--accent-gold);
  padding-left: 16px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  margin-top: 40px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.badge {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.badge svg {
  color: var(--accent-gold);
}

.badge:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
  background: var(--bg-secondary);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 2;
  overflow: visible;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.hero-image-wrapper:hover .hero-img {
  transform: scale(1.01) translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero-image-decoration {
  position: absolute;
  top: 24px;
  right: -24px;
  bottom: -24px;
  left: 24px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  opacity: 0.15;
  z-index: 1;
  filter: blur(12px);
  transition: var(--transition);
}

.hero-image-wrapper:hover .hero-image-decoration {
  transform: translate(8px, 8px);
  opacity: 0.25;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 5;
}
.scroll-indicator svg {
  color: var(--accent-gold);
  animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-4px); }
}

/* INFINITE SCROLL TEXT MARQUEE */
.marquee-container {
  overflow: hidden;
  user-select: none;
  display: flex;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
  position: relative;
  z-index: 2;
}
.marquee-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  gap: 40px;
  animation: scrollMarquee 35s linear infinite;
}
.marquee-item {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  opacity: 0.45;
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}
.marquee-item::after {
  content: '✦';
  color: var(--accent-gold);
  font-size: 1rem;
}
@keyframes scrollMarquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/* SECTION GLOBAL */
section {
  padding: 40px 24px;
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 28px;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
}
body.dark-theme .section-title h2 {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}

/* GRID & CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.15s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-secondary));
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(229, 185, 124, 0.4);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--accent-secondary);
  font-size: 1.6rem;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.03);
}

.card h3, .card h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* SPLIT SECTIONS (Our Story, Warehouse, Agro Stay) */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 968px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.split-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-image:hover img {
  transform: scale(1.03);
}

.split-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.dark-theme .split-content h3 {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-gold));
  -webkit-background-clip: text;
}

.split-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* HIGHLIGHT STRIP SECTION */
.strip {
  background: linear-gradient(135deg, rgba(18, 62, 37, 0.02) 0%, rgba(46, 139, 87, 0.06) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

/* MAP SECTION */
.map-container {
  margin-top: 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  padding: 20px;
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 8px;
}

.map-header a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--accent-primary);
  color: white !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(46, 139, 87, 0.2);
}

.map-header a:hover {
  background: var(--accent-secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 139, 87, 0.35);
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 450px;
  border: 1px solid var(--border-color);
}

/* FOOTER */
footer {
  background: var(--bg-secondary);
  color: var(--text-muted);
  padding: 40px 24px;
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 2;
}

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

footer p {
  font-size: 0.95rem;
  font-weight: 500;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* FORMS */
.contact-section {
  background: transparent;
  border-top: 1px solid var(--border-color);
}

.form-container {
  max-width: 750px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2;
  position: relative;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.02);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

body.dark-theme .form-control {
  background: rgba(255, 255, 255, 0.02);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-secondary);
  box-shadow: 0 0 0 4px var(--accent-light);
  background: var(--bg-secondary);
}

textarea.form-control {
  resize: vertical;
  min-height: 160px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #ffffff !important;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(46, 139, 87, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(46, 139, 87, 0.45);
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-image-wrapper {
    height: 420px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 40px 16px;
  }
  
  .hero {
    padding-top: 80px;
  }

  .hero-image-wrapper {
    height: 320px;
  }
  
  .map-wrapper {
    height: 350px;
  }
  
  .form-container {
    padding: 24px;
  }

  .nav {
    padding: 16px 24px;
  }
  
  .brand-text h1 {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   TRUST METRICS
   ========================================================================== */
.trust-metrics-section {
  padding: 40px 24px;
  background: transparent;
  position: relative;
  z-index: 3;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.metric-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.metric-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-secondary);
}
.metric-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}
.metric-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-primary);
  letter-spacing: -0.02em;
}
.metric-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 60px 24px;
  background: transparent;
  position: relative;
  z-index: 3;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--accent-secondary);
}
.faq-header {
  width: 100%;
  padding: 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  outline: none;
  font-family: inherit;
}
.faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  padding-right: 16px;
  transition: var(--transition);
}
.faq-icon-wrapper {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-secondary);
  transition: var(--transition);
}
.faq-icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-header:hover .faq-icon-wrapper {
  background: var(--accent-primary);
  color: white;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 24px;
}
.faq-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  padding-bottom: 24px;
}
.faq-item.active {
  border-color: var(--accent-gold);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-item.active .faq-icon-wrapper {
  background: var(--accent-gold);
  color: white;
}
.faq-item.active .faq-content {
  max-height: 250px; /* high enough for standard text */
  padding: 0 24px;
}

/* ==========================================================================
   FLOATING CTA
   ========================================================================== */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99;
  cursor: pointer;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
}
.cta-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(18, 62, 37, 0.95);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 32px rgba(18, 62, 37, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}
body.dark-theme .cta-inner {
  background: rgba(13, 24, 19, 0.85);
  color: var(--accent-primary);
  border: 1px solid rgba(118, 200, 147, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.floating-cta:hover .cta-inner {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(46, 139, 87, 0.4);
}
body.dark-theme .floating-cta:hover .cta-inner {
  background: rgba(13, 24, 19, 0.95);
  box-shadow: 0 12px 40px rgba(118, 200, 147, 0.3);
  border-color: var(--accent-primary);
}
.cta-text {
  letter-spacing: 0.02em;
}
.cta-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 999px;
  border: 2px solid var(--accent-primary);
  opacity: 0;
  pointer-events: none;
  animation: ctaGlow 2.5s infinite;
}
@keyframes ctaGlow {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

/* Responsive updates for metrics & faq */
@media (max-width: 968px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .floating-cta {
    bottom: 20px;
    right: 20px;
  }
  .cta-inner {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}
