/* ==========================================================
   SHREE BALAJI DARBAAR - MASTER STYLESHEET
   Celestial Luxury, Vedic Precision & Modern Glassmorphism
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;600;700&family=Cinzel:wght@500;600;700;800;900&family=Cinzel+Decorative:wght@700&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color System - Royal Navy Blue & Vedic Celestial Gold */
  --bg-dark: #061122;
  --bg-surface: #0c1d38;
  --bg-card: rgba(12, 28, 56, 0.82);
  --bg-card-hover: rgba(20, 44, 84, 0.92);
  --bg-glass: rgba(10, 24, 48, 0.78);
  --bg-glass-modal: rgba(7, 18, 36, 0.97);

  --navy-primary: #0a2540;
  --navy-deep: #061122;
  --navy-surface: #0c1d38;
  --navy-card: #0e2446;
  --navy-accent: #1e40af;
  --navy-glow: rgba(30, 64, 175, 0.35);

  --gold-primary: #38bdf8;
  --gold-light: #93c5fd;
  --gold-dark: #1d4ed8;
  --gold-gradient: linear-gradient(135deg, #60a5fa 0%, #2563eb 50%, #1e40af 100%);
  --gold-glow: rgba(59, 130, 246, 0.45);

  --saffron-orange: #38bdf8;
  --saffron-gradient: linear-gradient(135deg, #60a5fa 0%, #2563eb 50%, #1e40af 100%);
  --cyan-celestial: #38bdf8;
  --indigo-deep: #2563eb;
  --emerald-vedic: #10b981;
  --ruby-danger: #ef4444;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-gold: #93c5fd;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(59, 130, 246, 0.32);
  --border-gold-bright: rgba(96, 165, 250, 0.65);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 25px rgba(59, 130, 246, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --font-serif: 'Cinzel', serif;
  --font-display: 'Cinzel Decorative', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

/* Reset & Base Setup */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(26, 68, 140, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(14, 116, 144, 0.12) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Animated Stars / Constellation Canvas Background */
#cosmic-stars-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
.font-serif {
  font-family: var(--font-serif);
  letter-spacing: 0.03em;
  color: #ffffff;
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.saffron-gradient-text {
  background: var(--saffron-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Section Header Component */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.35rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Glassmorphism Card Utility */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.glass-card:hover::before {
  opacity: 1;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.65);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-gold);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-saffron {
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45);
  font-weight: 700;
}

.btn-saffron:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.65);
}

.btn-navy {
  background: linear-gradient(135deg, #1e3a8a 0%, #0a2540 100%);
  color: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.35);
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.4);
}

.btn-navy:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-color: rgba(96, 165, 250, 0.6);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Section scroll offset for fixed/sticky header */
section {
  scroll-margin-top: 5.5rem;
}

.top-notice-bar {
  background: linear-gradient(90deg, #071529 0%, #0d274c 50%, #071529 100%);
  border-bottom: 1px solid var(--border-gold);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  text-align: center;
  position: relative;
  z-index: 101;
}

.top-notice-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-badge {
  background: var(--gold-dark);
  color: #fff;
  padding: 0.18rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.top-hotline a {
  color: var(--gold-primary);
  font-weight: 600;
  margin-left: 0.35rem;
}

/* ==========================================================
   VAASTUVERSITY TWO-TIER LUXURY HEADER & NAVBAR (EXACT REFERENCE REPLICA)
   ========================================================== */

:root {
  --vaastu-green: #08382B;
  --vaastu-cream: #FAF7F2;
  --vaastu-gold: #D8A856;
  --vaastu-gold-hover: #c99846;
}

/* Tier 1: Brand & Slogan Top Bar */
.vaastu-header-top {
  background: var(--vaastu-cream);
  padding: 8px 0 2px 0;
  position: relative;
  z-index: 1002;
  border-bottom: none;
}

.vaastu-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1062px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
}

.vaastu-brand {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  text-decoration: none;
  position: relative;
}

/* Emblem positioned directly above Home with subtle natural overlap */
.vaastu-emblem-wrap {
  position: relative;
  margin-bottom: -10px;
  z-index: 1005;
  flex-shrink: 0;
}

.vaastu-emblem-img {
  width: 96px;
  height: 96px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22));
  transition: transform 0.25s ease;
}

.vaastu-brand:hover .vaastu-emblem-img {
  transform: scale(1.03);
}

.vaastu-brand-img {
  height: 52px;
  width: auto;
  display: block;
}

.vaastu-top-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.vaastu-slogan-img {
  height: 50px;
  width: auto;
  display: block;
}

.vaastu-search-btn {
  background: transparent;
  border: none;
  color: #12281C;
  font-size: 1.35rem;
  cursor: pointer;
  padding: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.vaastu-search-btn:hover {
  transform: scale(1.1);
  color: var(--vaastu-gold);
}

/* Tier 2: Primary Forest Green Nav Bar */
.vaastu-nav-bar {
  background: var(--vaastu-green);
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

/* Stepped accent tab on the far-left matching reference shape */
.vaastu-nav-bar::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: calc((100% - 1062px) / 2 + 56px);
  min-width: 56px;
  height: 8px;
  background: var(--vaastu-green);
  border-top-right-radius: 4px;
  z-index: 10;
}

.vaastu-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  width: 100%;
  max-width: 1062px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
}

.vaastu-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.vaastu-nav-links li {
  position: relative;
}

/* Home item centered directly under the circular emblem */
.vaastu-nav-links li:first-child a {
  min-width: 62px;
  text-align: center;
}

.vaastu-nav-links a {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  text-decoration: none;
  padding: 0.5rem 0.1rem;
  display: inline-block;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
}

.vaastu-nav-links a:hover {
  color: var(--vaastu-gold);
}

.vaastu-nav-links a.active {
  color: #FFFFFF;
  font-weight: 600;
}

.vaastu-nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: -6px;
  right: -6px;
  height: 2px;
  background: var(--vaastu-gold);
  border-radius: 1px;
}

.vaastu-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vaastu-nav-cta {
  background: var(--vaastu-gold);
  color: var(--vaastu-green) !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 1.15rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.vaastu-nav-cta:hover {
  background: var(--vaastu-gold-hover);
  transform: translateY(-1px);
}

.vaastu-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.3rem;
  cursor: pointer;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .vaastu-slogan-img {
    display: none;
  }
  .vaastu-brand-img {
    height: 38px;
  }
  .vaastu-emblem-img {
    width: 62px;
    height: 62px;
  }
  .vaastu-emblem-wrap {
    margin-bottom: -22px;
  }
  .vaastu-nav-left-spacer {
    display: none;
  }
  .vaastu-mobile-toggle {
    display: block;
  }
  .vaastu-nav-links {
    position: fixed;
    top: calc(58px + 44px);
    left: 0;
    right: 0;
    background: var(--vaastu-green);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    align-items: flex-start;
    margin-left: 0;
    border-top: 1px solid rgba(216, 168, 86, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }
  .vaastu-nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* ==========================================================
   SECTION 2: VAASTUVERSITY BIOPHILIC ESTATE HERO
   ========================================================== */

.hero-estate-section {
  width: 100%;
  background: linear-gradient(135deg, #EBF1F5 0%, #FAF7F2 45%, #F5F1E9 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(6, 55, 42, 0.08);
}

.hero-estate-container {
  width: 100%;
  max-width: 1062px;
  margin: 0 auto;
  padding: 0 44px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 335px;
  position: relative;
}

/* Left Content Column */
.hero-estate-left {
  width: 40%;
  max-width: 380px;
  padding: 30px 0 26px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
  position: relative;
}

.hero-estate-eyebrow {
  display: flex;
  flex-direction: column;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #8C7355;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-estate-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 47px;
  font-weight: 600;
  color: #06372A;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.hero-estate-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #1D382B;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-estate-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #4A5850;
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: 360px;
}

/* Button Row with Ample Breathing Room */
.hero-estate-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-hero-primary {
  background: var(--vaastu-gold);
  color: var(--vaastu-green) !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8.5px 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-hero-primary:hover {
  background: var(--vaastu-gold-hover);
  transform: translateY(-1px);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--vaastu-green) !important;
  border: 1.5px solid var(--vaastu-green);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 7.5px 16px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
  background: var(--vaastu-green);
  color: #FFFFFF !important;
}

/* Right Villa Graphic Column */
.hero-estate-right {
  width: 552px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  pointer-events: none;
}

.hero-estate-villa-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  mask-image: linear-gradient(to right, transparent 0%, black 14%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 14%);
}

/* Crisp, Solid Sector Bar matching reference */
.hero-estate-sectors-bar {
  position: absolute;
  bottom: 0;
  right: 40px;
  width: 508px;
  height: 46px;
  background: var(--vaastu-green);
  border-radius: 14px 14px 0 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 25;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-sizing: border-box;
  white-space: nowrap;
}

.hero-estate-sectors-bar .sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-estate-container {
    flex-direction: column;
    padding: 24px 20px;
    min-height: auto;
  }
  .hero-estate-left {
    width: 100%;
    max-width: 100%;
    padding: 10px 0;
  }
  .hero-estate-right {
    position: relative;
    width: 100%;
    margin-top: 16px;
  }
  .hero-estate-villa-img {
    height: auto;
    width: 100%;
    mask-image: none;
    -webkit-mask-image: none;
    border-radius: 8px;
  }
}

/* ==========================================================
   AKOODE-INSPIRED LUXURY FLOATING HEADER & NAVIGATION
   ========================================================== */
.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 20, 38, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-main .container {
  max-width: 1400px;
  padding: 0 1.75rem;
}

.header-main.scrolled {
  background: rgba(6, 14, 28, 0.97);
  border-bottom: 1px solid rgba(59, 130, 246, 0.28);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 4.6rem;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.brand-logo:hover {
  transform: scale(1.03);
}

.brand-symbol {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #070814;
  font-size: 1.3rem;
  box-shadow: 0 0 16px var(--gold-glow);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: clamp(1rem, 1.6vw, 1.85rem);
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
}

.nav-item a {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
  padding: 0.5rem 0.2rem;
  transition: color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 9999px;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.nav-item a:hover,
.nav-item a.active {
  color: #ffffff;
}

.nav-item a:hover::after,
.nav-item a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Call Button (Akoode Style) */
.nav-call-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(59, 130, 246, 0.45);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-call-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(99, 102, 241, 0.3) 100%);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
  color: #ffffff;
}

/* Primary CTA Pill (Akoode Style) */
.nav-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.35rem;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff !important;
  background: var(--gold-gradient);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.nav-cta-pill i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.nav-cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.65);
  color: #ffffff !important;
}

.nav-cta-pill:hover i {
  transform: translateX(4px);
}

/* Mobile Quick Icons */
.mobile-nav-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.mobile-action-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.mobile-action-icon:hover {
  background: rgba(59, 130, 246, 0.2);
  color: var(--gold-primary);
}

@media (max-width: 1024px) {

  .nav-call-btn,
  .nav-cta-pill {
    display: none;
  }

  .mobile-nav-actions {
    display: flex;
  }
}

@media (min-width: 1025px) and (max-width: 1260px) {
  .nav-links {
    gap: 0.95rem;
  }

  .nav-item a {
    font-size: 0.88rem;
    padding: 0.4rem 0.2rem;
  }
}

.admin-pill-btn {
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: #a5b4fc;
  font-size: 0.8rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
}

.admin-pill-btn:hover {
  background: rgba(99, 102, 241, 0.3);
  color: #ffffff;
  border-color: var(--indigo-deep);
  transform: translateY(-1px);
}

.mobile-toggle-btn {
  display: none;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mobile-toggle-btn:hover {
  background: var(--gold-gradient);
  color: #070814;
}

/* ==========================================================
   HERO SECTION & LEAD ENGINE
   ========================================================== */
.hero-section {
  position: relative;
  padding: 4.5rem 0 5.5rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--border-gold);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero-trust-badge i {
  color: var(--gold-primary);
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.18;
  font-weight: 800;
  margin-bottom: 1.3rem;
}

.hero-description {
  font-size: 1.12rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2.2rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item h4 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Lead Capture Box */
.hero-lead-card {
  background: rgba(14, 18, 38, 0.88);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.2rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.2);
  position: relative;
}

.lead-card-header {
  text-align: center;
  margin-bottom: 1.6rem;
}

.lead-card-header .lead-card-pill {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.lead-card-header h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.lead-card-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.lead-form .form-group {
  margin-bottom: 1.1rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background: rgba(7, 9, 22, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: all 0.25s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(15, 20, 48, 0.95);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.form-control::placeholder {
  color: var(--text-dim);
}

.lead-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.lead-guarantee i {
  color: var(--emerald-vedic);
}

/* ==========================================================
   SERVICES SECTION
   ========================================================== */
.services-section {
  padding: 6rem 0;
  background: rgba(10, 12, 26, 0.5);
}

.category-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.category-filter-bar::-webkit-scrollbar {
  display: none;
}

.category-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.category-pill:hover,
.category-pill.active {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-badge {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--saffron-orange);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.service-benefits-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-benefits-list li {
  font-size: 0.84rem;
  color: #cbd5e1;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-benefits-list li i {
  color: var(--emerald-vedic);
  margin-top: 0.2rem;
  font-size: 0.8rem;
}

.service-card-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.service-meta-block {
  display: flex;
  flex-direction: column;
}

.service-meta-block .meta-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.service-meta-block .meta-sub {
  font-size: 0.74rem;
  color: var(--text-dim);
}

.service-price-block .price-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.service-price-block .current-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-primary);
  font-family: var(--font-sans);
}

.service-price-block .old-price {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-left: 0.35rem;
}

.service-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
}

.service-actions .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.55rem 1rem;
}

/* ==========================================================
   INTERACTIVE LEAD GENERATION TOOLS: HOROSCOPE & KUNDLI DOSHA
   ========================================================== */
.tools-section {
  padding: 6rem 0;
  position: relative;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.tool-card {
  padding: 2.2rem 2.4rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.tool-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tool-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #070814;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 15px var(--gold-glow);
}

.zodiac-wheel-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.zodiac-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.25rem;
  color: #cbd5e1;
  cursor: pointer;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 600;
  transition: all 0.2s ease;
  user-select: none;
}

.zodiac-btn span.icon {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.15rem;
}

.zodiac-btn:hover,
.zodiac-btn.active {
  background: rgba(59, 130, 246, 0.18);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.25);
}

.zodiac-insight-box {
  background: rgba(7, 9, 22, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-bottom: 1.3rem;
}

.zodiac-insight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.zodiac-insight-header h4 {
  font-size: 1.1rem;
  color: var(--gold-light);
}

.zodiac-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.zodiac-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e2e8f0;
}

.tool-lead-form {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-subtle);
}

/* Kundli Quick Matcher & Dosha Diagnostic Box */
.diagnostic-tab-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.diag-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.4rem;
  color: #cbd5e1;
  cursor: pointer;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  user-select: none;
}

.diag-tab-btn:hover,
.diag-tab-btn.active {
  background: rgba(59, 130, 246, 0.18);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.25);
}

.scanner-status-box {
  background: rgba(7, 9, 22, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
}

.scanner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
}

.scanner-live-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--emerald-vedic);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.scanner-meta {
  font-size: 0.74rem;
  color: var(--text-dim);
}

.scanner-desc {
  font-size: 0.84rem;
  line-height: 1.55;
  color: #e2e8f0;
}

.kundli-quick-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.dosha-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.6rem 0 1.1rem 0;
}

.dosha-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: #94a3b8;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dosha-tag:hover {
  border-color: var(--border-gold-bright);
  color: #ffffff;
}

.dosha-tag.active {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.kundli-result-card {
  background: linear-gradient(135deg, rgba(14, 20, 45, 0.95), rgba(7, 9, 20, 0.98));
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.2rem;
  animation: fadeIn 0.4s ease;
}

.kundli-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.6rem;
}

.kundli-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.kundli-metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.5rem;
  text-align: center;
}

.kundli-metric-box .label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.kundli-metric-box .val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-top: 0.15rem;
}

/* ==========================================================
   VASTU 16-ZONE COMPASS & SCIENTIFIC METHODOLOGY
   ========================================================== */
.vastu-section {
  padding: 6rem 0;
  background: radial-gradient(circle at center, rgba(14, 20, 48, 0.6) 0%, rgba(7, 8, 20, 0.9) 100%);
}

.vastu-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}

.vastu-info {
  position: sticky;
  top: 100px;
}

.vastu-info h3 {
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
  line-height: 1.25;
  color: #ffffff;
}

.vastu-info p {
  color: #94a3b8;
  font-size: 0.96rem;
  line-height: 1.7;
}

.vastu-highlights {
  list-style: none;
  margin: 1.8rem 0;
}

.vastu-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.vastu-highlights li strong {
  color: #ffffff !important;
  font-size: 0.98rem;
}

.vastu-highlights li p {
  color: #94a3b8 !important;
  font-size: 0.86rem;
  line-height: 1.5;
}

.vastu-highlights li .icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.vastu-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.matrix-card {
  background: rgba(8, 18, 42, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(59, 130, 246, 0.45);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.matrix-card:hover {
  border-color: #38bdf8;
  transform: translateY(-3px);
  background: rgba(14, 28, 64, 0.97);
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.25);
}

.matrix-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.matrix-card-header h5 {
  font-size: 1.05rem;
  color: #38bdf8 !important; /* High-visibility vibrant celestial cyan */
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.matrix-card-header h5 i {
  color: #38bdf8 !important;
  font-size: 1rem;
}

.matrix-tag {
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(56, 189, 248, 0.16);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  color: #bae6fd !important; /* Crisp readable light sky blue */
  letter-spacing: 0.03em;
}

.matrix-rule {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #f1f5f9 !important; /* Crisp pure light white for crystal clear readability */
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.matrix-card-meta,
.matrix-card div[style*="font-size:0.75rem"] {
  font-size: 0.82rem !important;
  color: #94a3b8 !important;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.5rem;
  margin-top: 0.5rem !important;
}

.matrix-card-meta strong,
.matrix-card div[style*="font-size:0.75rem"] strong {
  color: #ffffff !important; /* Pure white highlighted text */
  font-weight: 600;
}

.matrix-card-meta i,
.matrix-card div[style*="font-size:0.75rem"] i {
  color: #f59e0b !important;
}

/* ==========================================================
   CONSULTANT ACHARYAS / MASTER ACHARYA SECTION
   ========================================================== */
.consultants-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.acharya-profile-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.acharya-photo-card {
  position: sticky;
  top: 100px;
}

.acharya-photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.28), 0 30px 80px rgba(0, 0, 0, 0.5);
}

.acharya-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.acharya-photo-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: #ffffff;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45);
}

.acharya-photo-badge i {
  margin-right: 0.4rem;
}

.acharya-quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.acharya-stat-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  text-align: center;
}

.acharya-stat-chip .num {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.acharya-stat-chip .lbl {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.15rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.acharya-profile-content {
  position: relative;
}

.acharya-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.acharya-name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.acharya-name .gold {
  background: linear-gradient(135deg, #93c5fd, #60a5fa, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.acharya-designation {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  font-weight: 500;
}

.acharya-designation strong {
  color: var(--cyan-celestial);
}

.acharya-tagline {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 1.8rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--gold-primary);
  line-height: 1.5;
}

.acharya-intro-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.acharya-intro-text strong {
  color: var(--text-main);
}

.signature-block {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 116, 144, 0.06));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  padding: 1.8rem 2rem;
  margin: 1.8rem 0;
}

.signature-block h4 {
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.signature-block p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.achievements-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.8rem 0;
}

.achievement-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.25s ease;
}

.achievement-pill i {
  color: var(--gold-primary);
  font-size: 0.78rem;
}

.achievement-pill:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.55);
  color: var(--gold-light);
}

.acharya-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .acharya-profile-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .acharya-photo-card {
    position: static;
    max-width: 360px;
    margin: 0 auto;
  }
}

.consultants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.2rem;
}

.consultant-card {
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.consultant-top {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.consultant-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.consultant-meta h4 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.consultant-title {
  font-size: 0.82rem;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.consultant-rating {
  font-size: 0.82rem;
  color: #f59e0b;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.consultant-bio {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.consultant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.consultant-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #cbd5e1;
  font-size: 0.74rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
}

.consultant-stats-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.3rem;
  font-size: 0.82rem;
}

.consultant-stats-row span strong {
  color: #ffffff;
}

/* ==========================================================
   HOW IT WORKS / 4-STEP PROCESS
   ========================================================== */
.process-section {
  padding: 6rem 0;
  background: rgba(10, 12, 26, 0.6);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  position: relative;
}

.process-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
}

.process-step-num {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.2);
}

.process-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.3rem auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.process-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.process-card p {
  font-size: 0.85rem;
  line-height: 1.55;
}

/* ==========================================================
   VIDEO TESTIMONIALS & CASE STORIES
   ========================================================== */
.video-testimonials-section {
  padding: 5rem 0 3rem 0;
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-bounce), box-shadow var(--transition-normal), border-color var(--transition-normal);
  background: rgba(14, 19, 36, 0.75);
  border: 1px solid var(--border-gold);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(59, 130, 246, 0.25);
  border-color: var(--border-gold-bright);
}

.video-thumb-wrap {
  position: relative;
  width: 100%;
  height: 155px;
  overflow: hidden;
  background: #000;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: brightness(0.88);
}

.video-card:hover .video-thumb {
  transform: scale(1.08);
  filter: brightness(1);
}

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 20, 0.15) 0%, rgba(7, 9, 20, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-card:hover .video-thumb-overlay {
  background: linear-gradient(180deg, rgba(7, 9, 20, 0.05) 0%, rgba(7, 9, 20, 0.65) 100%);
}

.video-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: #070914;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.7);
  transition: transform 0.3s var(--transition-bounce), box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
  padding-left: 2px;
}

.video-card:hover .video-play-btn {
  transform: scale(1.15);
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.95);
}

.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-light);
  opacity: 0.8;
  animation: playPulse 2s infinite ease-out;
}

@keyframes playPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.video-duration-badge {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  background: rgba(7, 9, 20, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  z-index: 2;
}

.video-tag-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: rgba(59, 130, 246, 0.9);
  color: #070914;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.video-body {
  padding: 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.video-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.video-card:hover .video-title {
  color: var(--gold-light);
}

.video-quote {
  font-size: 0.81rem;
  line-height: 1.5;
  color: #cbd5e1;
  margin-bottom: 0.65rem;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-highlight-pill {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.video-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.video-author-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-primary);
}

.video-author-info h5 {
  font-size: 0.84rem;
  color: #ffffff;
  margin-bottom: 0.1rem;
}

.video-author-info p {
  font-size: 0.7rem;
  color: var(--gold-primary);
}

.video-stars {
  color: var(--gold-primary);
  font-size: 0.7rem;
  display: flex;
  gap: 2px;
}

/* ==========================================================
   VIDEO PLAYER MODAL
   ========================================================== */
.video-modal-dialog {
  max-width: 860px;
  width: 95%;
  background: linear-gradient(135deg, rgba(14, 19, 36, 0.98), rgba(7, 9, 20, 0.99));
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(59, 130, 246, 0.25);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.video-player-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000000;
  position: relative;
  aspect-ratio: 16 / 9;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.video-player-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-modal-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.2rem;
}

/* ==========================================================
   TESTIMONIALS & TRUST PROOF
   ========================================================== */
.testimonials-section {
  padding: 6rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2.2rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.2rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-primary);
}

.testimonial-info h5 {
  font-size: 0.98rem;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.testimonial-info p {
  font-size: 0.78rem;
  color: var(--gold-primary);
}

.testimonial-tag {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 0.8rem;
}

/* ==========================================================
   FAQS ACCORDION
   ========================================================== */
.faq-section {
  padding: 6rem 0;
  background: rgba(10, 12, 26, 0.5);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-header {
  padding: 1.25rem 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-header h4 {
  font-size: 1.05rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: #f8fafc;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--gold-gradient);
  color: #070814;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.6rem;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.65;
}

.faq-item.active .faq-body {
  max-height: 300px;
  padding: 0 1.6rem 1.4rem 1.6rem;
}

/* ==========================================================
   FOOTER & LEAD BANNER
   ========================================================== */
.pre-footer-banner {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(30, 64, 175, 0.22) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
}

.footer-main {
  background: #040c18;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 1.2rem 0 1.5rem 0;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.social-circle:hover {
  background: var(--gold-gradient);
  color: #070814;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.3rem;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact-item i {
  color: var(--gold-primary);
  margin-top: 0.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--text-dim);
}

.footer-bottom-links a:hover {
  color: var(--gold-primary);
}

/* ==========================================================
   FLOATING ENGAGEMENT ELEMENTS
   ========================================================== */
.floating-actions-bar {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 99;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-whatsapp {
  background: #25d366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.floating-call {
  background: var(--gold-gradient);
  color: #061122;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.floating-tooltip {
  position: absolute;
  right: 65px;
  background: #0b1a33;
  border: 1px solid var(--border-gold);
  color: #ffffff;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================
   INTERACTIVE MULTI-STEP BOOKING MODAL WIZARD
   ========================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 4, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  display: flex;
  opacity: 1;
}

.modal-container {
  background: var(--bg-glass-modal);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(59, 130, 246, 0.2);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-container {
  transform: scale(1);
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border-color: #ef4444;
}

.modal-body {
  padding: 2rem;
}

/* Booking Stepper Progress */
.stepper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.step-indicator.active .step-circle {
  background: var(--gold-gradient);
  color: #070814;
  box-shadow: 0 0 15px var(--gold-glow);
}

.step-indicator.completed .step-circle {
  background: var(--emerald-vedic);
  border-color: var(--emerald-vedic);
  color: #ffffff;
}

.step-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.step-indicator.active .step-label {
  color: var(--gold-primary);
}

/* Service Selector Grid in Wizard */
.wizard-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.wizard-service-option {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: all 0.2s ease;
}

.wizard-service-option:hover,
.wizard-service-option.selected {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.wizard-service-option .opt-icon {
  font-size: 1.4rem;
  color: var(--gold-primary);
}

.wizard-service-option .opt-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.wizard-service-option .opt-price {
  font-size: 0.82rem;
  color: var(--gold-light);
}

/* Consultant Selector Grid */
.wizard-consultants-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.wizard-consultant-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wizard-consultant-card:hover,
.wizard-consultant-card.selected {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.consultant-card-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.consultant-card-left img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-primary);
}

/* Date & Slot Selector */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.slot-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.5rem;
  color: #cbd5e1;
  text-align: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slot-btn:hover,
.slot-btn.selected {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  font-weight: 700;
}

/* Floor plan file upload box */
.floor-plan-dropzone {
  border: 2px dashed var(--border-gold);
  background: rgba(14, 18, 38, 0.6);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.floor-plan-dropzone:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: var(--gold-primary);
}

.floor-plan-dropzone i {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 0.6rem;
}

.floor-plan-dropzone p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.floor-plan-dropzone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.uploaded-file-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  margin-top: 0.8rem;
}

/* Payment & Summary Card */
.order-summary-box {
  background: rgba(7, 9, 22, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.summary-line.total {
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}

.payment-modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pay-mode-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.5rem;
  color: #cbd5e1;
  text-align: center;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.pay-mode-btn i {
  font-size: 1.25rem;
  color: var(--gold-primary);
}

.pay-mode-btn:hover,
.pay-mode-btn.selected {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--gold-primary);
  color: #ffffff;
  font-weight: 700;
}

/* Booking Voucher Slip */
.booking-success-slip {
  text-align: center;
  padding: 1rem 0;
}

.success-icon-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid var(--emerald-vedic);
  color: var(--emerald-vedic);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.35);
}

.voucher-ticket {
  background: #09182d;
  border: 1px dashed var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: left;
}

/* ==========================================================
   ADMIN CRM LEAD MANAGEMENT MODAL
   ========================================================== */
.admin-modal-container {
  max-width: 1050px;
}

.crm-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.crm-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.1rem;
}

.crm-stat-card h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.crm-stat-card .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.crm-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  background: rgba(7, 9, 20, 0.9);
}

.crm-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
}

.crm-table th {
  background: rgba(59, 130, 246, 0.1);
  color: var(--gold-light);
  padding: 0.85rem 1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border-gold);
  white-space: nowrap;
}

.crm-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
}

.crm-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.status-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
}

.status-confirmed {
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  border: 1px solid #10b981;
}

.status-pending {
  background: rgba(245, 158, 11, 0.2);
  color: #fcd34d;
  border: 1px solid #f59e0b;
}

.status-call {
  background: rgba(99, 102, 241, 0.2);
  color: #c7d2fe;
  border: 1px solid #6366f1;
}

/* ==========================================================
   TOAST NOTIFICATION ENGINE
   ========================================================== */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 2000;
}

.toast {
  background: #0b1a33;
  border: 1px solid var(--border-gold-bright);
  color: #ffffff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 380px;
}

.toast i {
  font-size: 1.25rem;
}

.toast.success i {
  color: var(--emerald-vedic);
}

.toast.info i {
  color: var(--cyan-celestial);
}

.toast.warning i {
  color: var(--saffron-orange);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==========================================================
   RESPONSIVE DESIGN / MEDIA QUERIES
   ========================================================== */
@media (max-width: 1024px) {
  .navbar {
    height: 4.4rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(7, 9, 22, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    border-bottom: 2px solid var(--border-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
    gap: 0.4rem;
    z-index: 1000;
    animation: slideDownNav 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item a {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.98rem;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-item a:hover,
  .nav-item a.active {
    background: rgba(59, 130, 246, 0.15);
    color: var(--gold-primary);
  }

  .nav-item a::after {
    display: none;
  }

  .mobile-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .tools-grid,
  .vastu-grid {
    grid-template-columns: 1fr;
  }

  .vastu-info {
    position: static;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@keyframes slideDownNav {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .top-notice-bar {
    display: block;
    padding: 0.35rem 0.5rem;
    font-size: 0.78rem;
  }

  .top-notice-content {
    justify-content: center;
  }

  .top-notice-content>div:first-child {
    display: none;
  }

  .top-hotline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    width: 100%;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .zodiac-wheel-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .kundli-quick-form .form-row {
    grid-template-columns: 1fr;
  }

  .vastu-matrix {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .crm-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wizard-services-grid {
    grid-template-columns: 1fr;
  }

  .slot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-modes-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   MULTI-PAGE SUBPAGES STYLING (PAGE HERO, BREADCRUMBS, BLOG, CONTACT, LEGAL)
   ========================================================== */

/* Page Hero Banner */
.page-hero {
  padding: 4.5rem 0 3.5rem 0;
  background: radial-gradient(circle at 50% 20%, rgba(99, 102, 241, 0.15) 0%, rgba(7, 8, 20, 0.95) 100%);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
  position: relative;
}

.page-hero-title {
  font-size: 2.3rem;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 750px;
  margin: 0 auto 1.5rem auto;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb-nav a {
  color: var(--gold-primary);
}

.breadcrumb-nav a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.breadcrumb-nav .separator {
  color: var(--text-dim);
}

.breadcrumb-nav .current {
  color: #ffffff;
  font-weight: 600;
}

/* Subpage Content Section Layout */
.subpage-content {
  padding: 5rem 0;
}

/* Blog Article Cards & Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-thumb-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb {
  transform: scale(1.06);
}

.blog-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(7, 9, 22, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.blog-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.25rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: #ffffff;
  transition: color 0.25s ease;
}

.blog-card:hover .blog-title {
  color: var(--gold-light);
}

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Blog Detail Page Styles */
.article-detail-card {
  padding: 2.8rem;
  border-radius: var(--radius-lg);
  line-height: 1.8;
  color: #cbd5e1;
}

.article-detail-card h2,
.article-detail-card h3 {
  color: #ffffff;
  margin: 2.2rem 0 1rem 0;
  font-family: var(--font-heading);
}

.article-detail-card h3 {
  font-size: 1.45rem;
  color: var(--gold-light);
  border-left: 3px solid var(--gold-primary);
  padding-left: 0.75rem;
}

.article-detail-card p {
  margin-bottom: 1.3rem;
  font-size: 1rem;
}

.article-detail-card ul,
.article-detail-card ol {
  margin: 0 0 1.5rem 1.25rem;
}

.article-detail-card li {
  margin-bottom: 0.6rem;
  color: #e2e8f0;
}

.article-featured-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.article-lead {
  font-size: 1.15rem !important;
  line-height: 1.8 !important;
  color: #f1f5f9 !important;
  font-weight: 500;
  margin-bottom: 1.8rem;
}

.article-takeaways-box {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
}

.article-takeaways-box h4 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-takeaways-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-takeaways-box li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  color: #e2e8f0;
}

.article-takeaways-box li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-size: 0.85rem;
}

.article-highlight-box {
  background: rgba(24, 28, 54, 0.85);
  border-left: 4px solid var(--gold-primary);
  padding: 1.6rem 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2.2rem 0;
}

.article-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2.5rem 0 2rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.article-tag-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--gold-light);
  font-size: 0.8rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
}

.article-tag-pill:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--gold-primary);
}

.article-author-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  margin: 2.5rem 0;
}

.article-author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
  flex-shrink: 0;
}

.article-author-info h4 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.article-author-info .author-badge {
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  display: block;
}

.article-author-info p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.article-cta-box {
  background: linear-gradient(135deg, rgba(24, 28, 54, 0.95), rgba(42, 32, 70, 0.95));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.article-cta-box h3 {
  border: none;
  padding: 0;
  color: #ffffff;
  font-size: 1.45rem;
  margin: 0 0 0.6rem 0;
}

.article-cta-box p {
  font-size: 0.92rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
}

.article-share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.share-buttons-group {
  display: flex;
  gap: 0.6rem;
}

.share-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #cbd5e1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.share-btn:hover {
  background: var(--gold-primary);
  color: #070916;
  transform: translateY(-2px);
}

/* Contact Page Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.contact-channel-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.channel-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.channel-details h5 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.channel-details p,
.channel-details a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.channel-details a:hover {
  color: var(--gold-primary);
}

.contact-form-card {
  padding: 2.8rem;
  border-radius: var(--radius-lg);
}

/* Map Mock / Container */
.map-container {
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  margin-top: 1.5rem;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg);
}

/* Legal Documents Styling */
.legal-card {
  padding: 3rem;
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 2.2rem;
}

.legal-section h3 {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.4rem;
}

.legal-section p,
.legal-section ul {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #cbd5e1;
  margin-bottom: 0.8rem;
}

.legal-section ul {
  padding-left: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.4rem;
}

/* Service Detail Showcase */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
}

.service-detail-main {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.service-sidebar {
  position: sticky;
  top: 6.5rem;
}

.booking-sidebar-card {
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold-bright);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(59, 130, 246, 0.2);
}

@media (max-width: 1024px) {

  .contact-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }
}

/* ==========================================================
   HIGH-IMPACT ARCHITECTURE VERTICAL CARD COMPONENT
   ========================================================== */
.arch-vertical-card {
  background: rgba(13, 17, 38, 0.88);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 3rem 3.2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 1px 1px rgba(255, 255, 255, 0.05);
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: 3.5rem;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.arch-vertical-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), rgba(96, 165, 250, 0.8), transparent);
}

.arch-vertical-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.arch-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin: 1rem 0 0.9rem 0;
  letter-spacing: -0.02em;
}

.arch-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.arch-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.8rem;
  margin-bottom: 2.2rem;
}

.arch-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #e2e8f0;
  line-height: 1.45;
}

.arch-check-item .check-mark {
  color: #10b981;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.arch-impact-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.35rem 1.6rem;
  margin-bottom: 2.2rem;
}

.arch-impact-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 0.45rem;
  font-family: 'Space Grotesk', monospace, sans-serif;
}

.arch-impact-text {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.arch-btn-action {
  background: var(--gold-gradient);
  color: #ffffff !important;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.arch-btn-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.65);
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.arch-tooling-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.arch-tooling-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.arch-pills-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.arch-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.arch-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.arch-tooling-compliance {
  font-size: 0.78rem;
  color: #64748b;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

@media (max-width: 992px) {
  .arch-vertical-card {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2.2rem;
  }

  .arch-checklist {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   FEATURED CASE STUDIES & TRANSFORMATION SHOWCASE COMPONENT
   ========================================================== */
.case-studies-section {
  padding: 6rem 0;
  position: relative;
}



/* ==========================================================
   THEME TOGGLE BUTTON STYLING
   ========================================================== */
.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: rotate(15deg) scale(1.05);
  box-shadow: 0 0 15px var(--gold-glow);
}

/* ==========================================================
   LIGHT MODE SYSTEM ARCHITECTURE & HIGH-CONTRAST THEME
   ========================================================== */
:root[data-theme="light"],
[data-theme="light"],
body.light-mode {
  --bg-dark: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --bg-glass: rgba(255, 255, 255, 0.94);
  --bg-glass-modal: rgba(255, 255, 255, 0.98);

  --gold-primary: #1d4ed8;
  --gold-light: #2563eb;
  --gold-dark: #0f2b59;
  --gold-gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  --gold-glow: rgba(29, 78, 216, 0.2);

  --saffron-orange: #ea580c;
  --saffron-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --cyan-celestial: #0284c7;
  --indigo-deep: #4f46e5;
  --emerald-vedic: #059669;
  --ruby-danger: #dc2626;

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #64748b;
  --text-gold: #b45309;

  --border-subtle: #e2e8f0;
  --border-gold: rgba(37, 99, 235, 0.35);
  --border-gold-bright: rgba(59, 130, 246, 0.6);

  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-gold: 0 4px 20px rgba(37, 99, 235, 0.2);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.1);
}

/* Base Body & Backgrounds in Light Mode */
[data-theme="light"] body,
body.light-mode {
  background-color: #f8fafc !important;
  color: #0f172a !important;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(99, 102, 241, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(217, 119, 6, 0.03) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(245, 158, 11, 0.02) 0%, transparent 50%) !important;
}

[data-theme="light"] #cosmic-stars-canvas,
body.light-mode #cosmic-stars-canvas {
  opacity: 0.08 !important;
}

/* Section Background Resets in Light Mode */
[data-theme="light"] section,
body.light-mode section {
  background: transparent !important;
}

[data-theme="light"] .services-section,
body.light-mode .services-section {
  background: #ffffff !important;
}

[data-theme="light"] .process-section,
body.light-mode .process-section {
  background: #f1f5f9 !important;
}

[data-theme="light"] .faq-section,
body.light-mode .faq-section {
  background: #f8fafc !important;
}

[data-theme="light"] .pre-footer-banner,
body.light-mode .pre-footer-banner {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #eff6ff 100%) !important;
  border-top: 1px solid #fde68a !important;
  border-bottom: 1px solid #fde68a !important;
}

/* Typography Overrides */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
[data-theme="light"] .font-serif,
body.light-mode .font-serif,
[data-theme="light"] .font-display,
body.light-mode .font-display {
  color: #0f172a !important;
}

[data-theme="light"] p,
body.light-mode p {
  color: #475569 !important;
}

[data-theme="light"] .gold-gradient-text,
body.light-mode .gold-gradient-text {
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .saffron-gradient-text,
body.light-mode .saffron-gradient-text {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Theme Toggle Button in Light Mode */
[data-theme="light"] .theme-toggle-btn,
body.light-mode .theme-toggle-btn {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #b45309;
}

[data-theme="light"] .theme-toggle-btn:hover,
body.light-mode .theme-toggle-btn:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  color: #78350f;
  box-shadow: 0 0 15px rgba(180, 83, 9, 0.2);
}

/* Top Announcement Notice Bar */
[data-theme="light"] .top-notice-bar,
body.light-mode .top-notice-bar {
  background: linear-gradient(90deg, #fffbeb 0%, #fef3c7 50%, #fffbeb 100%);
  border-bottom: 1px solid #fde68a;
}

[data-theme="light"] .top-notice-bar span,
body.light-mode .top-notice-bar span {
  color: #475569 !important;
}

[data-theme="light"] .top-badge,
body.light-mode .top-badge {
  background: #d97706;
  color: #ffffff;
}

[data-theme="light"] .top-hotline,
body.light-mode .top-hotline {
  color: #1e293b;
}

[data-theme="light"] .top-hotline a,
body.light-mode .top-hotline a {
  color: #b45309;
}

/* Header & Navigation */
[data-theme="light"] .header-main,
body.light-mode .header-main {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .header-main.scrolled,
body.light-mode .header-main.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #cbd5e1;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .brand-title,
body.light-mode .brand-title {
  color: #0f172a;
  text-shadow: none;
}

[data-theme="light"] .nav-item a,
body.light-mode .nav-item a {
  color: #334155;
}

[data-theme="light"] .nav-item a:hover,
[data-theme="light"] .nav-item a.active,
body.light-mode .nav-item a:hover,
body.light-mode .nav-item a.active {
  color: #b45309;
  text-shadow: none;
}

[data-theme="light"] .nav-item a::after,
body.light-mode .nav-item a::after {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  box-shadow: 0 0 8px rgba(180, 83, 9, 0.4);
}

[data-theme="light"] .nav-call-btn,
body.light-mode .nav-call-btn {
  background: #f1f5f9;
  border: 1.5px solid #cbd5e1;
  color: #b45309;
}

[data-theme="light"] .nav-call-btn:hover,
body.light-mode .nav-call-btn:hover {
  background: #e2e8f0;
  border-color: #b45309;
  color: #78350f;
  box-shadow: 0 0 15px rgba(180, 83, 9, 0.2);
}

[data-theme="light"] .nav-cta-pill,
body.light-mode .nav-cta-pill {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff !important;
  border: 1.5px solid rgba(180, 83, 9, 0.3);
  box-shadow: 0 4px 18px rgba(180, 83, 9, 0.35);
}

[data-theme="light"] .nav-cta-pill:hover,
body.light-mode .nav-cta-pill:hover {
  box-shadow: 0 8px 25px rgba(180, 83, 9, 0.5);
  color: #ffffff !important;
}

[data-theme="light"] .mobile-action-icon,
body.light-mode .mobile-action-icon {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .mobile-action-icon:hover,
body.light-mode .mobile-action-icon:hover {
  background: #e2e8f0;
  color: #b45309;
}

[data-theme="light"] .mobile-toggle-btn,
body.light-mode .mobile-toggle-btn {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .nav-links.mobile-open,
body.light-mode .nav-links.mobile-open {
  background: #ffffff;
  border-bottom: 2px solid #cbd5e1;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

[data-theme="light"] .nav-links.mobile-open .nav-item a,
body.light-mode .nav-links.mobile-open .nav-item a {
  color: #1e293b;
  border-bottom: 1px solid #f1f5f9;
}

/* Glass Card & General Cards */
[data-theme="light"] .glass-card,
body.light-mode .glass-card,
[data-theme="light"] .tool-card,
body.light-mode .tool-card,
[data-theme="light"] .matrix-cell,
body.light-mode .matrix-cell,
[data-theme="light"] .consultant-card,
body.light-mode .consultant-card,
[data-theme="light"] .process-card,
body.light-mode .process-card,
[data-theme="light"] .video-card,
body.light-mode .video-card,
[data-theme="light"] .testimonial-card,
body.light-mode .testimonial-card,
[data-theme="light"] .faq-item,
body.light-mode .faq-item,
[data-theme="light"] .blog-card,
body.light-mode .blog-card,
[data-theme="light"] .article-detail-card,
body.light-mode .article-detail-card,
[data-theme="light"] .contact-info-card,
body.light-mode .contact-info-card,
[data-theme="light"] .contact-form-card,
body.light-mode .contact-form-card,
[data-theme="light"] .legal-card,
body.light-mode .legal-card,
[data-theme="light"] .service-detail-main,
body.light-mode .service-detail-main,
[data-theme="light"] .booking-sidebar-card,
body.light-mode .booking-sidebar-card,
[data-theme="light"] .hero-lead-card,
body.light-mode .hero-lead-card,
[data-theme="light"] .arch-vertical-card,
body.light-mode .arch-vertical-card,
[data-theme="light"] .modal-container,
body.light-mode .modal-container {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05) !important;
}

[data-theme="light"] .glass-card:hover,
body.light-mode .glass-card:hover,
[data-theme="light"] .video-card:hover,
body.light-mode .video-card:hover,
[data-theme="light"] .blog-card:hover,
body.light-mode .blog-card:hover {
  background: #ffffff !important;
  border-color: #cbd5e1 !important;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.09) !important;
}

/* Section Pills & Badges */
[data-theme="light"] .section-pill,
body.light-mode .section-pill {
  background: rgba(180, 83, 9, 0.08);
  border: 1px solid rgba(180, 83, 9, 0.25);
  color: #b45309;
}

[data-theme="light"] .section-title,
body.light-mode .section-title {
  color: #0f172a;
}

[data-theme="light"] .section-subtitle,
body.light-mode .section-subtitle {
  color: #475569;
}

/* Buttons System */
[data-theme="light"] .btn-primary,
body.light-mode .btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(180, 83, 9, 0.3);
}

[data-theme="light"] .btn-primary:hover,
body.light-mode .btn-primary:hover {
  box-shadow: 0 8px 25px rgba(180, 83, 9, 0.45);
  color: #ffffff !important;
}

[data-theme="light"] .btn-secondary,
body.light-mode .btn-secondary {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .btn-secondary:hover,
body.light-mode .btn-secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #0f172a;
}

/* Hero Section */
[data-theme="light"] .hero-trust-badge,
body.light-mode .hero-trust-badge {
  background: rgba(180, 83, 9, 0.08);
  border: 1px solid rgba(180, 83, 9, 0.25);
  color: #b45309;
}

[data-theme="light"] .hero-title,
body.light-mode .hero-title {
  color: #0f172a;
}

[data-theme="light"] .hero-description,
body.light-mode .hero-description {
  color: #475569;
}

[data-theme="light"] .stat-item h4,
body.light-mode .stat-item h4 {
  color: #b45309;
}

[data-theme="light"] .stat-item p,
body.light-mode .stat-item p {
  color: #64748b;
}

[data-theme="light"] .hero-lead-card,
body.light-mode .hero-lead-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 0 20px rgba(180, 83, 9, 0.06);
}

[data-theme="light"] .lead-card-header h3,
body.light-mode .lead-card-header h3 {
  color: #0f172a;
}

/* Forms & Form Controls */
[data-theme="light"] .form-label,
body.light-mode .form-label {
  color: #1e293b;
}

[data-theme="light"] .form-control,
body.light-mode .form-control {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .form-control:focus,
body.light-mode .form-control:focus {
  background: #ffffff;
  border-color: #b45309;
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
  color: #0f172a;
}

[data-theme="light"] .form-control::placeholder,
body.light-mode .form-control::placeholder {
  color: #94a3b8;
}

[data-theme="light"] select.form-control option,
body.light-mode select.form-control option {
  background: #ffffff;
  color: #0f172a;
}

/* High-Impact Architecture Vertical Card */
[data-theme="light"] .arch-vertical-card,
body.light-mode .arch-vertical-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .arch-vertical-badge,
body.light-mode .arch-vertical-badge {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #4f46e5;
}

[data-theme="light"] .arch-vertical-card,
body.light-mode .arch-vertical-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06) !important;
}

[data-theme="light"] .arch-vertical-badge,
body.light-mode .arch-vertical-badge {
  background: rgba(180, 83, 9, 0.08) !important;
  border: 1px solid rgba(180, 83, 9, 0.25) !important;
  color: #b45309 !important;
}

[data-theme="light"] .arch-title,
body.light-mode .arch-title {
  color: #0f172a !important;
}

[data-theme="light"] .arch-desc,
body.light-mode .arch-desc {
  color: #475569 !important;
}

[data-theme="light"] .arch-checklist,
body.light-mode .arch-checklist {
  color: #1e293b !important;
}

[data-theme="light"] .arch-check-item,
body.light-mode .arch-check-item {
  color: #1e293b !important;
}

[data-theme="light"] .arch-check-item .check-mark,
body.light-mode .arch-check-item .check-mark {
  color: #059669 !important;
}

/* High-Impact Architecture Spec & Metric Boxes */
[data-theme="light"] .arch-impact-box,
body.light-mode .arch-impact-box {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05) !important;
}

[data-theme="light"] .arch-impact-label,
body.light-mode .arch-impact-label {
  color: #b45309 !important;
  font-weight: 800 !important;
  font-family: var(--font-sans) !important;
}

[data-theme="light"] .arch-impact-text,
body.light-mode .arch-impact-text {
  color: #1e293b !important;
  font-weight: 500 !important;
}

[data-theme="light"] .arch-btn-action,
body.light-mode .arch-btn-action {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.35) !important;
}

[data-theme="light"] .arch-btn-action:hover,
body.light-mode .arch-btn-action:hover {
  background: linear-gradient(135deg, #b45309 0%, #78350f 100%) !important;
  box-shadow: 0 10px 25px rgba(180, 83, 9, 0.5) !important;
}

[data-theme="light"] .arch-tooling-box,
body.light-mode .arch-tooling-box {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05) !important;
}

[data-theme="light"] .arch-tooling-title,
body.light-mode .arch-tooling-title {
  color: #0f172a !important;
}

[data-theme="light"] .arch-pill,
body.light-mode .arch-pill {
  background: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
  color: #1e293b !important;
}

[data-theme="light"] .arch-pill:hover,
body.light-mode .arch-pill:hover {
  background: #f1f5f9 !important;
  border-color: #94a3b8 !important;
  color: #0f172a !important;
}

[data-theme="light"] .arch-tooling-compliance,
body.light-mode .arch-tooling-compliance {
  color: #64748b !important;
  border-top: 1px solid #e2e8f0 !important;
}



/* Corporate CIN & Spec Identification Box */
.corporate-id-box,
.cin-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
}

.corporate-id-box .cin-label,
.cin-box .cin-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 0.3rem;
  font-family: 'Space Grotesk', monospace, sans-serif;
}

.corporate-id-box .cin-val,
.cin-box .cin-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Space Grotesk', monospace, sans-serif;
  letter-spacing: 0.05em;
}

[data-theme="light"] .corporate-id-box,
[data-theme="light"] .cin-box,
body.light-mode .corporate-id-box,
body.light-mode .cin-box {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05) !important;
}

[data-theme="light"] .corporate-id-box .cin-label,
[data-theme="light"] .cin-box .cin-label,
body.light-mode .corporate-id-box .cin-label,
body.light-mode .cin-box .cin-label {
  color: #b45309 !important;
}

[data-theme="light"] .corporate-id-box .cin-val,
[data-theme="light"] .cin-box .cin-val,
body.light-mode .corporate-id-box .cin-val,
body.light-mode .cin-box .cin-val {
  color: #0f172a !important;
}

/* Service Catalog & Cards */
[data-theme="light"] .category-pill,
body.light-mode .category-pill {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #334155 !important;
}

[data-theme="light"] .category-pill:hover,
[data-theme="light"] .category-pill.active,
body.light-mode .category-pill:hover,
body.light-mode .category-pill.active {
  background: #b45309 !important;
  border-color: #b45309 !important;
  color: #ffffff !important;
}

/* Service Catalog & Cards - Light Mode with Suitable Light Grey Background */
[data-theme="light"] .service-card,
body.light-mode .service-card {
  background: #f1f5f9 !important;
  /* Suitable refined light grey (Slate-100) */
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05) !important;
}

[data-theme="light"] .service-card:hover,
body.light-mode .service-card:hover {
  background: #eef2f6 !important;
  /* Soft elevated light grey on hover */
  border-color: #cbd5e1 !important;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09) !important;
  transform: translateY(-4px);
}

[data-theme="light"] .service-icon-box,
body.light-mode .service-icon-box {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05) !important;
  color: #1d4ed8 !important;
}

[data-theme="light"] .service-title,
body.light-mode .service-title {
  color: #0f172a !important;
}

[data-theme="light"] .service-desc,
body.light-mode .service-desc {
  color: #475569 !important;
}

[data-theme="light"] .service-benefits-list li,
body.light-mode .service-benefits-list li {
  color: #334155 !important;
}

[data-theme="light"] .service-benefits-list li i,
body.light-mode .service-benefits-list li i {
  color: #059669 !important;
}

[data-theme="light"] .service-card-bottom,
body.light-mode .service-card-bottom {
  border-top: 1px solid #e2e8f0 !important;
}

[data-theme="light"] .feature-tag,
body.light-mode .feature-tag {
  background: #e2e8f0 !important;
  border: 1px solid #cbd5e1 !important;
  color: #334155 !important;
}

[data-theme="light"] .service-badge,
body.light-mode .service-badge {
  background: rgba(180, 83, 9, 0.08) !important;
  border: 1px solid rgba(180, 83, 9, 0.25) !important;
  color: #b45309 !important;
}

[data-theme="light"] .service-price,
body.light-mode .service-price {
  color: #0f172a !important;
}

/* Interactive Horoscope & Kundli Diagnostic Tools */
[data-theme="light"] .tool-card,
body.light-mode .tool-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04) !important;
}

[data-theme="light"] .zodiac-btn,
body.light-mode .zodiac-btn {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: #334155 !important;
}

[data-theme="light"] .zodiac-btn:hover,
[data-theme="light"] .zodiac-btn.active,
body.light-mode .zodiac-btn:hover,
body.light-mode .zodiac-btn.active {
  background: rgba(180, 83, 9, 0.12) !important;
  border-color: #b45309 !important;
  color: #b45309 !important;
}

[data-theme="light"] .zodiac-insight-box,
body.light-mode .zodiac-insight-box {
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04) !important;
}

[data-theme="light"] .zodiac-insight-box,
body.light-mode .zodiac-insight-box {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05) !important;
}

[data-theme="light"] .zodiac-insight-header h4,
body.light-mode .zodiac-insight-header h4 {
  color: #b45309 !important;
}

[data-theme="light"] .zodiac-text,
body.light-mode .zodiac-text {
  color: #334155 !important;
}

[data-theme="light"] .diag-tab-btn,
body.light-mode .diag-tab-btn {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #334155 !important;
}

[data-theme="light"] .diag-tab-btn:hover,
[data-theme="light"] .diag-tab-btn.active,
body.light-mode .diag-tab-btn:hover,
body.light-mode .diag-tab-btn.active {
  background: rgba(180, 83, 9, 0.12) !important;
  border-color: #b45309 !important;
  color: #b45309 !important;
}

[data-theme="light"] .scanner-status-box,
body.light-mode .scanner-status-box {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05) !important;
}

[data-theme="light"] .scanner-desc,
body.light-mode .scanner-desc {
  color: #334155 !important;
}

[data-theme="light"] .dosha-tag,
body.light-mode .dosha-tag {
  background: #f1f5f9 !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
}

[data-theme="light"] .dosha-tag.active,
body.light-mode .dosha-tag.active {
  background: rgba(180, 83, 9, 0.12) !important;
  border-color: #b45309 !important;
  color: #b45309 !important;
}

[data-theme="light"] .kundli-result-card,
body.light-mode .kundli-result-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04) !important;
}

[data-theme="light"] .kundli-metric-box,
body.light-mode .kundli-metric-box {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
}

[data-theme="light"] .kundli-metric-box .label,
body.light-mode .kundli-metric-box .label {
  color: #64748b !important;
}

[data-theme="light"] .kundli-metric-box .value,
[data-theme="light"] .kundli-metric-box .val,
body.light-mode .kundli-metric-box .value,
body.light-mode .kundli-metric-box .val {
  color: #0f172a !important;
}

/* Vastu Matrix & Rules */
[data-theme="light"] .matrix-cell,
[data-theme="light"] .matrix-card,
body.light-mode .matrix-cell,
body.light-mode .matrix-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04) !important;
}

[data-theme="light"] .matrix-cell-header h4,
[data-theme="light"] .matrix-card-header h5,
[data-theme="light"] .matrix-card h5,
body.light-mode .matrix-cell-header h4,
body.light-mode .matrix-card-header h5,
body.light-mode .matrix-card h5 {
  color: #0f172a !important;
}

[data-theme="light"] .matrix-tag,
body.light-mode .matrix-tag {
  background: #f1f5f9 !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
}

[data-theme="light"] .matrix-rule,
body.light-mode .matrix-rule {
  color: #334155 !important;
}

/* Acharya Consultants Grid */
[data-theme="light"] .consultant-card,
body.light-mode .consultant-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05) !important;
}

[data-theme="light"] .consultant-tag,
body.light-mode .consultant-tag {
  background: #f1f5f9 !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
}

[data-theme="light"] .consultant-stats-row,
body.light-mode .consultant-stats-row {
  border-color: #e2e8f0 !important;
}

[data-theme="light"] .consultant-stats-row span strong,
body.light-mode .consultant-stats-row span strong {
  color: #0f172a !important;
}

/* 4-Step Process */
[data-theme="light"] .process-section,
body.light-mode .process-section {
  background: #f1f5f9 !important;
}

[data-theme="light"] .process-card,
body.light-mode .process-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04) !important;
}

[data-theme="light"] .process-step-num,
body.light-mode .process-step-num {
  color: rgba(180, 83, 9, 0.15) !important;
}

/* Video & Written Testimonials */
[data-theme="light"] .video-card,
body.light-mode .video-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05) !important;
}

[data-theme="light"] .video-author-title,
body.light-mode .video-author-title {
  color: #0f172a !important;
}

[data-theme="light"] .video-quote,
body.light-mode .video-quote {
  color: #475569 !important;
}

[data-theme="light"] .testimonial-card,
body.light-mode .testimonial-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05) !important;
}

[data-theme="light"] .testimonial-info h5,
body.light-mode .testimonial-info h5 {
  color: #0f172a;
}

[data-theme="light"] .testimonial-quote,
body.light-mode .testimonial-quote {
  color: #475569;
}

[data-theme="light"] .testimonial-tag,
body.light-mode .testimonial-tag {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
}

/* FAQs Accordion */
[data-theme="light"] .faq-section,
body.light-mode .faq-section {
  background: #f8fafc;
}

[data-theme="light"] .faq-item,
body.light-mode .faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .faq-header h4,
body.light-mode .faq-header h4 {
  color: #0f172a;
}

[data-theme="light"] .faq-body,
body.light-mode .faq-body {
  color: #475569;
}

[data-theme="light"] .faq-toggle-icon,
body.light-mode .faq-toggle-icon {
  background: #f1f5f9;
  color: #b45309;
}

/* Multi-Step Booking Modal & Page */
[data-theme="light"] .modal-overlay,
body.light-mode .modal-overlay {
  background: rgba(15, 23, 42, 0.65);
}

[data-theme="light"] .modal-container,
body.light-mode .modal-container {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
}

[data-theme="light"] .modal-header,
body.light-mode .modal-header {
  border-bottom: 1px solid #e2e8f0;
}

[data-theme="light"] .modal-close-btn,
body.light-mode .modal-close-btn {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #64748b;
}

[data-theme="light"] .modal-close-btn:hover,
body.light-mode .modal-close-btn:hover {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fca5a5;
}

[data-theme="light"] .step-circle,
body.light-mode .step-circle {
  background: #f1f5f9;
  border: 1.5px solid #cbd5e1;
  color: #64748b;
}

[data-theme="light"] .step-indicator.active .step-circle,
body.light-mode .step-indicator.active .step-circle {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-color: #b45309;
  color: #ffffff;
}

[data-theme="light"] .step-indicator.completed .step-circle,
body.light-mode .step-indicator.completed .step-circle {
  background: #059669;
  border-color: #059669;
  color: #ffffff;
}

[data-theme="light"] .step-label,
body.light-mode .step-label {
  color: #64748b;
}

[data-theme="light"] .step-indicator.active .step-label,
body.light-mode .step-indicator.active .step-label {
  color: #b45309;
}

[data-theme="light"] .wizard-service-option,
body.light-mode .wizard-service-option {
  background: #f1f5f9;
  border: 1.5px solid #cbd5e1;
}

[data-theme="light"] .wizard-service-option .opt-title,
body.light-mode .wizard-service-option .opt-title {
  color: #0f172a;
}

[data-theme="light"] .wizard-service-option .opt-price,
body.light-mode .wizard-service-option .opt-price {
  color: #b45309;
}

[data-theme="light"] .wizard-service-option:hover,
[data-theme="light"] .wizard-service-option.selected,
body.light-mode .wizard-service-option:hover,
body.light-mode .wizard-service-option.selected {
  background: #fffbeb;
  border-color: #b45309;
}

[data-theme="light"] .wizard-consultant-card,
body.light-mode .wizard-consultant-card {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
}

[data-theme="light"] .wizard-consultant-card:hover,
[data-theme="light"] .wizard-consultant-card.selected,
body.light-mode .wizard-consultant-card:hover,
body.light-mode .wizard-consultant-card.selected {
  background: #fffbeb;
  border-color: #b45309;
}

[data-theme="light"] .slot-btn,
body.light-mode .slot-btn {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .slot-btn:hover,
[data-theme="light"] .slot-btn.selected,
body.light-mode .slot-btn:hover,
body.light-mode .slot-btn.selected {
  background: #b45309;
  border-color: #b45309;
  color: #ffffff;
}

[data-theme="light"] .pay-mode-btn,
body.light-mode .pay-mode-btn {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .pay-mode-btn:hover,
[data-theme="light"] .pay-mode-btn.selected,
body.light-mode .pay-mode-btn:hover,
body.light-mode .pay-mode-btn.selected {
  background: #fffbeb;
  border-color: #b45309;
  color: #b45309;
}

[data-theme="light"] .voucher-ticket,
body.light-mode .voucher-ticket {
  background: #f8fafc;
  border: 1.5px dashed #b45309;
}

/* CRM Admin Modal */
[data-theme="light"] .crm-stat-card,
body.light-mode .crm-stat-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .crm-table-wrapper,
body.light-mode .crm-table-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .crm-table th,
body.light-mode .crm-table th {
  background: #f1f5f9;
  color: #0f172a;
  border-bottom: 1px solid #e2e8f0;
}

[data-theme="light"] .crm-table td,
body.light-mode .crm-table td {
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}

[data-theme="light"] .crm-table tr:hover td,
body.light-mode .crm-table tr:hover td {
  background: #f8fafc;
}

/* Toast Notifications */
[data-theme="light"] .toast,
body.light-mode .toast {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

/* Subpages, Breadcrumbs & Page Hero */
[data-theme="light"] .page-hero,
body.light-mode .page-hero {
  background: radial-gradient(circle at 50% 20%, rgba(99, 102, 241, 0.08) 0%, rgba(248, 250, 252, 0.98) 100%);
  border-bottom: 1px solid #e2e8f0;
}

[data-theme="light"] .page-hero-title,
body.light-mode .page-hero-title {
  color: #0f172a;
}

[data-theme="light"] .page-hero-subtitle,
body.light-mode .page-hero-subtitle {
  color: #475569;
}

[data-theme="light"] .breadcrumb-nav a,
body.light-mode .breadcrumb-nav a {
  color: #b45309;
}

[data-theme="light"] .breadcrumb-nav .current,
body.light-mode .breadcrumb-nav .current {
  color: #0f172a;
}

/* Blog & Blog Detail */
[data-theme="light"] .blog-card,
body.light-mode .blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .blog-category-badge,
body.light-mode .blog-category-badge {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(180, 83, 9, 0.25);
  color: #b45309;
}

[data-theme="light"] .blog-title,
body.light-mode .blog-title {
  color: #0f172a;
}

[data-theme="light"] .blog-card:hover .blog-title,
body.light-mode .blog-card:hover .blog-title {
  color: #b45309;
}

[data-theme="light"] .blog-excerpt,
body.light-mode .blog-excerpt {
  color: #475569;
}

[data-theme="light"] .article-detail-card,
body.light-mode .article-detail-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
}

[data-theme="light"] .article-detail-card h2,
[data-theme="light"] .article-detail-card h3,
body.light-mode .article-detail-card h2,
body.light-mode .article-detail-card h3 {
  color: #0f172a;
}

[data-theme="light"] .article-detail-card h3,
body.light-mode .article-detail-card h3 {
  color: #b45309;
  border-left: 3px solid #b45309;
}

[data-theme="light"] .article-detail-card li,
body.light-mode .article-detail-card li {
  color: #334155;
}

[data-theme="light"] .article-lead,
body.light-mode .article-lead {
  color: #1e293b !important;
}

[data-theme="light"] .article-takeaways-box,
body.light-mode .article-takeaways-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
}

[data-theme="light"] .article-takeaways-box h4,
body.light-mode .article-takeaways-box h4 {
  color: #b45309;
}

[data-theme="light"] .article-takeaways-box li,
body.light-mode .article-takeaways-box li {
  color: #334155;
}

[data-theme="light"] .article-highlight-box,
body.light-mode .article-highlight-box {
  background: #f8fafc;
  border-left-color: #b45309;
  color: #334155;
}

[data-theme="light"] .article-tag-pill,
body.light-mode .article-tag-pill {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #b45309;
}

[data-theme="light"] .article-author-card,
body.light-mode .article-author-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .article-author-info h4,
body.light-mode .article-author-info h4 {
  color: #0f172a;
}

[data-theme="light"] .article-author-info .author-badge,
body.light-mode .article-author-info .author-badge {
  color: #b45309;
}

[data-theme="light"] .article-cta-box,
body.light-mode .article-cta-box {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid #334155;
}

[data-theme="light"] .share-btn,
body.light-mode .share-btn {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
}

/* Contact Page & Channels */
[data-theme="light"] .contact-info-card,
[data-theme="light"] .contact-form-card,
body.light-mode .contact-info-card,
body.light-mode .contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .channel-icon,
body.light-mode .channel-icon {
  background: rgba(180, 83, 9, 0.08);
  border: 1px solid rgba(180, 83, 9, 0.25);
  color: #b45309;
}

[data-theme="light"] .channel-details h5,
body.light-mode .channel-details h5 {
  color: #0f172a;
}

[data-theme="light"] .map-container iframe,
body.light-mode .map-container iframe {
  filter: none;
}

/* Legal Documents */
[data-theme="light"] .legal-card,
body.light-mode .legal-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .legal-section h3,
body.light-mode .legal-section h3 {
  color: #b45309;
  border-bottom: 1px solid #e2e8f0;
}

[data-theme="light"] .legal-section p,
[data-theme="light"] .legal-section ul,
body.light-mode .legal-section p,
body.light-mode .legal-section ul {
  color: #475569;
}

/* Service Detail Showcase */
[data-theme="light"] .service-detail-main,
[data-theme="light"] .booking-sidebar-card,
body.light-mode .service-detail-main,
body.light-mode .booking-sidebar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* Luxury Contrast Dark Footer in Light Mode */
[data-theme="light"] .footer-main,
body.light-mode .footer-main {
  background: #061122;
  border-top: 1px solid #1e293b;
}

[data-theme="light"] .footer-bottom,
body.light-mode .footer-bottom {
  border-top-color: #1e293b;
}

/* Universal Light Mode Contrast & Background Safety Engine */
[data-theme="light"] :not(.footer-main):not(.footer-main *):not(.btn-primary):not(.btn-primary *):not(.arch-btn-action):not(.arch-btn-action *):not(.top-badge):not(.nav-cta-pill):not(.nav-cta-pill *) strong[style*="color:#ffffff"],
body.light-mode :not(.footer-main):not(.footer-main *):not(.btn-primary):not(.btn-primary *):not(.arch-btn-action):not(.arch-btn-action *):not(.top-badge):not(.nav-cta-pill):not(.nav-cta-pill *) strong[style*="color:#ffffff"],
[data-theme="light"] :not(.footer-main):not(.footer-main *):not(.btn-primary):not(.btn-primary *):not(.arch-btn-action):not(.arch-btn-action *):not(.top-badge):not(.nav-cta-pill):not(.nav-cta-pill *) h2[style*="color:#ffffff"],
body.light-mode :not(.footer-main):not(.footer-main *):not(.btn-primary):not(.btn-primary *):not(.arch-btn-action):not(.arch-btn-action *):not(.top-badge):not(.nav-cta-pill):not(.nav-cta-pill *) h2[style*="color:#ffffff"],
[data-theme="light"] :not(.footer-main):not(.footer-main *):not(.btn-primary):not(.btn-primary *):not(.arch-btn-action):not(.arch-btn-action *):not(.top-badge):not(.nav-cta-pill):not(.nav-cta-pill *) h3[style*="color:#ffffff"],
body.light-mode :not(.footer-main):not(.footer-main *):not(.btn-primary):not(.btn-primary *):not(.arch-btn-action):not(.arch-btn-action *):not(.top-badge):not(.nav-cta-pill):not(.nav-cta-pill *) h3[style*="color:#ffffff"],
[data-theme="light"] :not(.footer-main):not(.footer-main *):not(.btn-primary):not(.btn-primary *):not(.arch-btn-action):not(.arch-btn-action *):not(.top-badge):not(.nav-cta-pill):not(.nav-cta-pill *) h4[style*="color:#ffffff"],
body.light-mode :not(.footer-main):not(.footer-main *):not(.btn-primary):not(.btn-primary *):not(.arch-btn-action):not(.arch-btn-action *):not(.top-badge):not(.nav-cta-pill):not(.nav-cta-pill *) h4[style*="color:#ffffff"],
[data-theme="light"] :not(.footer-main):not(.footer-main *):not(.btn-primary):not(.btn-primary *):not(.arch-btn-action):not(.arch-btn-action *):not(.top-badge):not(.nav-cta-pill):not(.nav-cta-pill *) h5[style*="color:#ffffff"],
body.light-mode :not(.footer-main):not(.footer-main *):not(.btn-primary):not(.btn-primary *):not(.arch-btn-action):not(.arch-btn-action *):not(.top-badge):not(.nav-cta-pill):not(.nav-cta-pill *) h5[style*="color:#ffffff"],
[data-theme="light"] :not(.footer-main):not(.footer-main *):not(.btn-primary):not(.btn-primary *):not(.arch-btn-action):not(.arch-btn-action *):not(.top-badge):not(.nav-cta-pill):not(.nav-cta-pill *) p[style*="color:#ffffff"],
body.light-mode :not(.footer-main):not(.footer-main *):not(.btn-primary):not(.btn-primary *):not(.arch-btn-action):not(.arch-btn-action *):not(.top-badge):not(.nav-cta-pill):not(.nav-cta-pill *) p[style*="color:#ffffff"] {
  color: #0f172a !important;
}

[data-theme="light"] :not(.footer-main):not(.footer-main *) [style*="color:#cbd5e1"],
body.light-mode :not(.footer-main):not(.footer-main *) [style*="color:#cbd5e1"],
[data-theme="light"] :not(.footer-main):not(.footer-main *) [style*="color:#e2e8f0"],
body.light-mode :not(.footer-main):not(.footer-main *) [style*="color:#e2e8f0"],
[data-theme="light"] :not(.footer-main):not(.footer-main *) [style*="color:#94a3b8"],
body.light-mode :not(.footer-main):not(.footer-main *) [style*="color:#94a3b8"] {
  color: #334155 !important;
}

[data-theme="light"] [style*="background:rgba(255"],
body.light-mode [style*="background:rgba(255"],
[data-theme="light"] [style*="background: rgba(255"],
body.light-mode [style*="background: rgba(255"] {
  background: #ffffff !important;
  border-color: #e2e8f0 !important;
}

[data-theme="light"] [style*="background:rgba(212,175,55"],
body.light-mode [style*="background:rgba(212,175,55"],
[data-theme="light"] [style*="background: rgba(212,175,55"],
body.light-mode [style*="background: rgba(212,175,55"],
[data-theme="light"] [style*="background: rgba(212, 175, 55"],
body.light-mode [style*="background: rgba(212, 175, 55"] {
  background: #fffbeb !important;
  border-color: #fde68a !important;
}

[data-theme="light"] [style*="background:rgba(16,185,129"],
body.light-mode [style*="background:rgba(16,185,129"],
[data-theme="light"] [style*="background: rgba(16,185,129"],
body.light-mode [style*="background: rgba(16,185,129"] {
  background: #ecfdf5 !important;
  border-color: #a7f3d0 !important;
}