/* ==========================================================
   VASTUVERSITY - MASTER STYLESHEET
   Celestial Luxury, Vedic Precision & Modern Glassmorphism
   ========================================================== */

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

:root {
  /* Color System */
  --bg-dark: #070814;
  --bg-surface: #0e1124;
  --bg-card: rgba(18, 22, 44, 0.78);
  --bg-card-hover: rgba(28, 34, 68, 0.88);
  --bg-glass: rgba(14, 18, 38, 0.7);
  --bg-glass-modal: rgba(10, 13, 28, 0.95);

  --gold-primary: #e5c365;
  --gold-light: #fef08a;
  --gold-dark: #b8860b;
  --gold-gradient: linear-gradient(135deg, #fce07a 0%, #d4af37 50%, #aa771c 100%);
  --gold-glow: rgba(212, 175, 55, 0.35);

  --saffron-orange: #f59e0b;
  --saffron-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --cyan-celestial: #38bdf8;
  --indigo-deep: #6366f1;
  --emerald-vedic: #10b981;
  --ruby-danger: #ef4444;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-gold: #f3df8a;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.28);
  --border-gold-bright: rgba(230, 195, 101, 0.6);

  --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(212, 175, 55, 0.22);
  --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(99, 102, 241, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(245, 158, 11, 0.08) 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(212, 175, 55, 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: #070814;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.55);
  color: #000;
}

.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(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-saffron {
  background: var(--saffron-gradient);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.btn-saffron:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.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, #181c36 0%, #2a2046 50%, #181c36 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;
}

.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 8, 20, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.header-main .container {
  max-width: 1440px;
  padding: 0 2rem;
}

.header-main.scrolled {
  background: rgba(7, 8, 20, 0.98);
  border-bottom-color: var(--border-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  height: 5rem;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  flex-shrink: 0;
  margin-right: 1.5rem;
}

.brand-symbol {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #070814;
  font-size: 1.4rem;
  box-shadow: 0 0 15px var(--gold-glow);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: clamp(1.1rem, 1.7vw, 2rem);
  margin: 0 auto;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
}

.nav-item a {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 600;
  color: #cbd5e1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  padding: 0.5rem 0.35rem;
  transition: all 0.25s ease;
  display: inline-block;
}

.nav-item a:hover, .nav-item a.active {
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gold-gradient);
  transition: width 0.25s ease;
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.nav-item a:hover::after, .nav-item a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-left: 1.5rem;
}

@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;
  }
  .brand-logo {
    margin-right: 0.8rem;
  }
  .nav-actions {
    margin-left: 0.8rem;
  }
}

.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(212, 175, 55, 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(212, 175, 55, 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-bright);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.2);
  position: relative;
}

.lead-card-header {
  text-align: center;
  margin-bottom: 1.6rem;
}

.lead-card-header .lead-card-pill {
  background: var(--saffron-gradient);
  color: #fff;
  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(212, 175, 55, 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: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.category-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  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(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 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(212, 175, 55, 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;
}

.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: flex;
  gap: 0.5rem;
}

/* ==========================================================
   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;
}

.tool-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.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(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.zodiac-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.4rem;
  color: #cbd5e1;
  cursor: pointer;
  text-align: center;
  font-size: 0.78rem;
  transition: all 0.2s ease;
}

.zodiac-btn span.icon {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

.zodiac-btn:hover, .zodiac-btn.active {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 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 Box */
.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.4rem;
  margin: 1rem 0;
}

.dosha-tag {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

/* ==========================================================
   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: center;
}

.vastu-info h3 {
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.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 .icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  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(14, 18, 38, 0.75);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.matrix-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-3px);
  background: rgba(22, 28, 58, 0.9);
}

.matrix-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.matrix-card-header h5 {
  font-size: 0.98rem;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-weight: 700;
}

.matrix-tag {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  color: var(--text-muted);
}

.matrix-rule {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #cbd5e1;
}

/* ==========================================================
   CONSULTANT ACHARYAS SECTION
   ========================================================== */
.consultants-section {
  padding: 6rem 0;
}

.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(212, 175, 55, 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(212, 175, 55, 0.2);
}

.process-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 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;
}

/* ==========================================================
   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(212, 175, 55, 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(212, 175, 55, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
}

.footer-main {
  background: #04050d;
  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: #070814;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.floating-tooltip {
  position: absolute;
  right: 65px;
  background: #0f132a;
  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(212, 175, 55, 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(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 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(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 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(212, 175, 55, 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(212, 175, 55, 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(212, 175, 55, 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: #080a18;
  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(212, 175, 55, 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: #0f132a;
  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(212, 175, 55, 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(212, 175, 55, 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;
  }
  .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: none;
  }
  .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.8rem;
  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;
}

/* 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(212, 175, 55, 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(212, 175, 55, 0.2);
}

@media (max-width: 1024px) {
  .contact-grid, .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .service-sidebar {
    position: static;
  }
}


