/* ============================================================
   SEETA JYOTISH ANUSANDHAN — MAIN STYLESHEET
   Dark Gold Astrology Theme
   ============================================================ */

/* ── 1. ROOT VARIABLES ───────────────────────────────────────── */
:root {
  --primary:       #0B0F2F;
  --secondary:     #1C1F4A;
  --tertiary:      #141832;
  --gold:          #D4AF37;
  --gold-light:    #FFD700;
  --gold-dark:     #B8960C;
  --gold-muted:    rgba(212,175,55,.15);
  --text:          #E8E8E8;
  --text-muted:    #A8B8CC;
  --white:         #FFFFFF;
  --border:        rgba(212,175,55,.2);
  --border-soft:   rgba(255,255,255,.06);
  --glow:          0 0 20px rgba(212,175,55,.45);
  --glow-sm:       0 0 10px rgba(212,175,55,.3);
  --shadow:        0 8px 40px rgba(0,0,0,.5);
  --shadow-card:   0 4px 24px rgba(0,0,0,.4);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all .3s ease;
}

/* ── 2. RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--primary);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  line-height: 1.3;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; }

::selection { background: var(--gold); color: var(--primary); }

/* ── 3. UTILITY CLASSES ──────────────────────────────────────── */
.gold-text    { color: var(--gold) !important; }
.text-gold    { color: var(--gold) !important; }
.lead-text    { font-size: 1.15rem; font-weight: 500; color: var(--text); }
.body-text    { color: #C4D0DC; }
/* Override Bootstrap .text-muted for dark theme */
.text-muted   { color: #A8B8CC !important; }
.z-1          { z-index: 1; }
.z-2          { z-index: 2; }

/* ── 4. BUTTONS ──────────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--primary);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: .65rem 1.8rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212,175,55,.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--primary);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: .6rem 1.75rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--primary);
  box-shadow: var(--glow);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .65rem 1.8rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background: #128C7E;
  color: #fff;
  transform: translateY(-2px);
}

.btn-xs {
  font-size: .75rem;
  padding: .25rem .6rem;
  border-radius: 4px;
}

/* ── 5. FLOATING BUTTONS ─────────────────────────────────────── */
.float-btn {
  position: fixed;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: var(--transition);
}
.float-call     { bottom: 96px; background: var(--gold); color: var(--primary); }
.float-whatsapp { bottom: 24px; background: #25D366; color: #fff; }
.float-btn:hover { transform: scale(1.12); }

/* ── 6. NAVBAR ───────────────────────────────────────────────── */
#mainNav {
  background: rgba(11,15,47,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: .55rem 0;
  transition: var(--transition);
  z-index: 1040;
}
#mainNav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.5); }

.navbar-brand { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.brand-text   { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name   { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--gold); }
.brand-sub    { font-size: .7rem; color: var(--text-muted); letter-spacing: .08em; }

/* Desktop nav links */
.nav-link {
  color: var(--text) !important;
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .8rem !important;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.nav-link:hover::after, .nav-link.active::after { width: 80%; }

.lang-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .28rem .75rem;
  border: 1.5px solid var(--gold);
  border-radius: 20px;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.lang-btn:hover { background: var(--gold); color: var(--primary); }

/* ── 6b. MOBILE HAMBURGER BUTTON ─────────────────────────────── */
.mob-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: rgba(212,175,55,.1);
  border: 1.5px solid rgba(212,175,55,.35);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: var(--transition);
}
.mob-menu-btn:hover, .mob-menu-btn:focus {
  background: rgba(212,175,55,.2);
  border-color: var(--gold);
  outline: none;
}
.mob-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── 6c. MOBILE OFFCANVAS DRAWER ─────────────────────────────── */
.mob-drawer {
  width: min(300px, 88vw) !important;
  background: #080B22 !important;
  border-left: 1px solid rgba(212,175,55,.2) !important;
  z-index: 10050 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* ── Drawer Header ── */
.mob-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(212,175,55,.15);
  background: rgba(212,175,55,.05);
  flex-shrink: 0;
  gap: .75rem;
}
.mob-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  min-width: 0;          /* allow shrink */
}
.mob-brand-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold-muted);
  border: 1.5px solid rgba(212,175,55,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.mob-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.mob-brand-text strong {
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  color: var(--gold);
  white-space: nowrap;
}
.mob-brand-text small {
  font-size: .68rem;
  color: var(--text-muted);
  letter-spacing: .06em;
  white-space: nowrap;
}
/* Close button — always on far right, clearly visible */
.mob-close-btn {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 8px;
  color: #ccc;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  margin-left: auto;     /* push to far right regardless of brand width */
}
.mob-close-btn:hover {
  background: rgba(212,175,55,.18);
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}

/* ── Drawer Body (scrollable) ── */
.mob-drawer-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: .4rem 0 1.5rem;
  display: flex;
  flex-direction: column;
}
.mob-drawer-body::-webkit-scrollbar { width: 4px; }
.mob-drawer-body::-webkit-scrollbar-thumb { background: rgba(212,175,55,.3); border-radius: 4px; }

/* ── Nav items ── */
.mob-nav { padding: .25rem 0; }
.mob-nav-item { border-bottom: 1px solid rgba(255,255,255,.04); }

/* Shared style for both <a> and <button> nav links */
.mob-nav-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1.2rem;
  color: #E0E6EE;
  font-size: .93rem;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  text-align: left;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, padding-left .2s;
}
.mob-nav-link:hover {
  background: rgba(212,175,55,.07);
  color: var(--gold);
  border-left-color: var(--gold);
  padding-left: 1.4rem;
}
.mob-nav-link.active {
  background: rgba(212,175,55,.11);
  color: var(--gold);
  border-left-color: var(--gold);
  font-weight: 600;
}
.mob-nav-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.mob-nav-link:hover .mob-nav-icon,
.mob-nav-link.active .mob-nav-icon {
  background: var(--gold);
  color: #080B22;
}
.mob-nav-label { flex: 1; }

/* Caret arrow — rotates when expanded */
.mob-nav-caret {
  font-size: .7rem;
  color: rgba(212,175,55,.45);
  transition: transform .3s ease, color .2s;
  flex-shrink: 0;
}
.mob-nav-link:hover .mob-nav-caret,
.mob-nav-link.active .mob-nav-caret { color: var(--gold); }

/* Rotate caret when collapse is open */
.mob-nav-toggle[aria-expanded="true"] .mob-nav-caret,
.mob-nav-caret.open { transform: rotate(180deg); color: var(--gold); }

/* ── Services sub-menu ── */
.mob-subnav {
  background: rgba(0,0,0,.25);
  border-left: 2px solid rgba(212,175,55,.2);
  margin-left: 1.2rem;
}
.mob-subnav-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem 1rem;
  color: #B8C8D8;
  font-size: .875rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: var(--transition);
}
.mob-subnav-link:last-child { border-bottom: none; }
.mob-subnav-link:hover { color: var(--gold); background: rgba(212,175,55,.06); padding-left: 1.2rem; }
.mob-subnav-icon { color: var(--gold); font-size: .8rem; min-width: 14px; }

/* ── Divider ── */
.mob-divider {
  height: 1px;
  background: rgba(212,175,55,.12);
  margin: .5rem 1.2rem;
}

/* ── CTA buttons (Call + WhatsApp) ── */
.mob-cta {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: .75rem 1.2rem;
}
.mob-cta-call, .mob-cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .8rem 1rem;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.mob-cta-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #080B22;
}
.mob-cta-call:hover { box-shadow: var(--glow); transform: translateY(-2px); color: #080B22; }
.mob-cta-wa {
  background: #25D366;
  color: #fff;
}
.mob-cta-wa:hover { background: #128C7E; transform: translateY(-2px); color: #fff; }

/* ── Footer: language + info ── */
.mob-footer {
  padding: .5rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.mob-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem;
  border: 1.5px solid var(--gold);
  border-radius: 20px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: var(--transition);
}
.mob-lang-toggle:hover { background: var(--gold); color: #080B22; }
.mob-info {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-top: .25rem;
}
.mob-info span {
  font-size: .78rem;
  color: rgba(168,184,204,.65);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.mob-info i { color: var(--gold); font-size: .75rem; }

/* Backdrop */
.offcanvas-backdrop {
  background-color: rgba(0,0,0,.75) !important;
  backdrop-filter: blur(3px);
}

/* ── 7. HERO SECTION ─────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, #1a1d50 0%, var(--primary) 70%);
}

#starCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .8;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at left, rgba(212,175,55,.04) 0%, transparent 70%);
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gold-muted);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: .4rem 1rem;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin: 1rem 0 1.2rem;
}
.hero-title .gold-text { text-shadow: var(--glow); }

.hero-subtitle {
  font-size: 1.08rem;
  color: #C8D4E0;
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.85;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: var(--text-muted);
}

/* Zodiac Wheel */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.zodiac-wheel { position: relative; width: min(400px, 90vw); }
.wheel-svg { animation: rotateSlow 60s linear infinite; filter: drop-shadow(0 0 30px rgba(212,175,55,.25)); }
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.hero-scroll-hint {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  animation: bounce 2s infinite;
  font-size: 1.2rem;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── 8. STATS SECTION ────────────────────────────────────────── */
.stats-section {
  background: var(--secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  padding: 2.5rem 1rem;
  text-align: center;
  position: relative;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: .5rem; }
.stat-number { font-family: 'Cinzel', serif; font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; display: inline; }
.stat-plus { display: inline; font-family: 'Cinzel', serif; font-size: 2rem; color: var(--gold); }
.stat-label { font-size: .85rem; color: var(--text-muted); margin-top: .4rem; }

/* ── 9. SECTION COMMONS ──────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-badge {
  display: inline-block;
  background: var(--gold-muted);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: .3rem .9rem;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: .8rem;
}
.section-sub { color: #C0CCDC; font-size: 1rem; max-width: 600px; margin: 0 auto; line-height: 1.75; }
.section-header { margin-bottom: 3rem; }

/* ── 10. SERVICE CARDS ───────────────────────────────────────── */
.service-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card), 0 0 30px rgba(212,175,55,.12); border-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  background: var(--gold-muted);
  transition: var(--transition);
}
.service-card:hover .service-card-icon { background: var(--gold); color: var(--primary) !important; box-shadow: var(--glow-sm); }
.service-card-title { font-size: 1.05rem; font-weight: 600; color: var(--gold); margin-bottom: .6rem; font-family: 'Poppins', sans-serif; }
.service-card-desc  { font-size: .9rem; color: #C0CCDC; line-height: 1.75; margin-bottom: 1rem; }
.service-card-link  { font-size: .85rem; color: var(--gold); font-weight: 600; transition: var(--transition); }
.service-card-link:hover { color: var(--gold-light); letter-spacing: .04em; }

/* ── 11. CATEGORY CARDS ──────────────────────────────────────── */
.cat-card {
  display: block;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.cat-astrology:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(212,175,55,.2); }
.cat-vastu:hover     { border-color: #27ae60; box-shadow: 0 8px 30px rgba(39,174,96,.2); }
.cat-match:hover     { border-color: #e74c3c; box-shadow: 0 8px 30px rgba(231,76,60,.2); }
.cat-business:hover  { border-color: #3498db; box-shadow: 0 8px 30px rgba(52,152,219,.2); }
.cat-card-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.cat-card-title { font-size: 1.1rem; color: var(--white); font-weight: 700; font-family: 'Poppins', sans-serif; margin-bottom: .4rem; }
.cat-card-count { font-size: .85rem; color: var(--text-muted); }
.cat-card-arrow { position: absolute; bottom: 1rem; right: 1.2rem; color: var(--gold); opacity: 0; transition: var(--transition); }
.cat-card:hover .cat-card-arrow { opacity: 1; }

/* ── 12. ABOUT SECTION ───────────────────────────────────────── */
.about-img-wrap { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
}
.about-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,15,47,.6) 0%, transparent 50%);
}
.about-img { border-radius: var(--radius-lg); display: block; width: 100%; min-height: 400px; object-fit: cover; background: var(--secondary); }
.about-exp-badge {
  position: absolute;
  bottom: -1px; right: -1px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-lg) 0 var(--radius-lg) 0;
  text-align: center;
  z-index: 2;
}
.exp-num  { display: block; font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 900; line-height: 1; }
.exp-text { font-size: .75rem; font-weight: 700; line-height: 1.3; }

.feature-item { display: flex; align-items: center; font-size: .9rem; color: var(--text); }

.why-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 12px;
  background: var(--gold-muted);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold);
}

.cta-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ── 13. CATEGORIES SECTION ──────────────────────────────────── */
.categories-section { background: var(--tertiary); }

/* ── 14. TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section { background: var(--secondary); }
.testimonial-card {
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: .15;
  line-height: 1;
}
.testimonial-stars { margin-bottom: .8rem; }
.testimonial-stars .fa-star { color: #555; font-size: .9rem; }
.testimonial-stars .fa-star.active { color: var(--gold-light); }
.testimonial-text { font-style: italic; color: #C8D4DF; font-size: .93rem; line-height: 1.8; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.testimonial-author strong { display: block; color: var(--gold); font-size: .9rem; }
.testimonial-author small  { color: var(--text-muted); font-size: .8rem; }

/* Swiper */
.testimonials-swiper { padding-bottom: 3rem !important; }
.swiper-pagination-bullet { background: var(--gold); opacity: .5; }
.swiper-pagination-bullet-active { opacity: 1; }
.swiper-button-prev, .swiper-button-next { color: var(--gold) !important; }

/* ── 15. FAQ ─────────────────────────────────────────────────── */
.faq-section { background: var(--primary); }
.faq-item { background: var(--secondary) !important; border: 1px solid var(--border) !important; border-radius: var(--radius) !important; margin-bottom: .8rem; overflow: hidden; }
.faq-item .accordion-button {
  background: var(--secondary) !important;
  color: var(--text) !important;
  font-size: .95rem;
  font-weight: 600;
  border: none;
  box-shadow: none !important;
}
.faq-item .accordion-button:not(.collapsed) { color: var(--gold) !important; }
.faq-item .accordion-button::after { filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg); }
.faq-item .accordion-body { background: var(--secondary); color: #C0CCDC; font-size: .92rem; line-height: 1.8; padding: 1rem 1.5rem 1.5rem; }

/* ── 16. CTA BANNER ──────────────────────────────────────────── */
.cta-banner-section {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,.12) 0%, var(--secondary) 70%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 1rem; }
.cta-sub   { color: #C0CCDC; margin-bottom: 2rem; font-size: 1rem; }

/* ── 17. PAGE HEADER ─────────────────────────────────────────── */
.page-header {
  position: relative;
  padding: 7rem 0 3rem;
  background: radial-gradient(ellipse at top, #1a1d50 0%, var(--primary) 70%);
  text-align: center;
  overflow: hidden;
}
.page-header #starCanvas { position: absolute; inset: 0; z-index: 0; opacity: .4; }
.page-title    { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--gold); margin-bottom: .5rem; }
.page-subtitle { color: #C0CCDC; margin-bottom: 1rem; font-size: 1.05rem; }
.breadcrumb { background: none; }
.breadcrumb-item a { color: var(--gold-light); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ── 18. SERVICES PAGE ───────────────────────────────────────── */
.sticky-top-tabs { position: sticky; top: 70px; z-index: 100; background: var(--secondary); border-bottom: 1px solid var(--border); }
.services-tabs   { display: flex; overflow-x: auto; gap: 0; }
.services-tab {
  padding: .9rem 1.5rem;
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.services-tab.active, .services-tab:hover { color: var(--gold); border-bottom-color: var(--gold); }
.services-cat-section:nth-child(even) { background: var(--tertiary); }

/* ── 19. CONTACT PAGE ────────────────────────────────────────── */
.contact-info-items { margin: 1.5rem 0; }
.contact-info-item  { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border-soft); }
.contact-info-icon  { width: 44px; height: 44px; min-width: 44px; border-radius: 10px; background: var(--gold-muted); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; }
.contact-info-item h6 { color: var(--gold); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .2rem; font-family: 'Poppins', sans-serif; }
.contact-info-item p  { color: var(--text-muted); font-size: .9rem; margin: 0; }
.contact-info-item a  { color: var(--text-muted); }

.contact-form-wrap {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.dark-input {
  background: var(--primary) !important;
  border: 1.5px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: 10px !important;
  padding: .75rem 1rem !important;
  transition: var(--transition);
}
.dark-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 .2rem rgba(212,175,55,.15) !important;
  background: var(--primary) !important;
  color: var(--text) !important;
  outline: none;
}
.dark-input option { background: var(--secondary); }
.form-label { color: var(--text-muted); font-size: .88rem; font-weight: 500; margin-bottom: .4rem; }

.map-section   { padding: 4rem 0; background: var(--tertiary); }
.map-embed-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 2px solid var(--border); }
.map-iframe    { display: block; filter: invert(1) hue-rotate(180deg); }

/* ── 20. ALERT GOLD ──────────────────────────────────────────── */
.alert-gold { background: rgba(212,175,55,.12); border: 1px solid var(--gold); color: var(--gold); border-radius: var(--radius); }

/* ── 21. BLOG ────────────────────────────────────────────────── */
.blog-card { background: var(--secondary); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); height: 100%; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--gold); }
.blog-card-img img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta { display: flex; gap: 1rem; font-size: .8rem; color: var(--text-muted); margin-bottom: .8rem; }
.blog-card-title { font-size: 1rem; font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--text); margin-bottom: .7rem; line-height: 1.5; }
.blog-card-title a { color: var(--text); }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: .85rem; color: #B8C4D0; margin-bottom: 1rem; }
.blog-tag { display: inline-block; background: var(--gold-muted); border: 1px solid var(--border); color: var(--gold); font-size: .75rem; padding: .2rem .6rem; border-radius: 20px; margin-right: .4rem; margin-bottom: .4rem; }
.blog-single-title { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--gold); margin-bottom: 1.5rem; font-family: 'Cinzel', serif; }
.blog-single-body { color: #C4D0DC; line-height: 1.9; font-size: .96rem; }
.blog-single-body h2, .blog-single-body h3 { color: var(--gold); margin: 1.5rem 0 .8rem; font-family: 'Cinzel', serif; }
.blog-single-meta { color: var(--text-muted); font-size: .85rem; }
.sidebar-widget { background: var(--secondary); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.related-post-link { color: var(--text); font-size: .88rem; font-weight: 600; }
.related-post-link:hover { color: var(--gold); }

/* Pagination */
.pagination-gold .page-link { background: var(--secondary); border-color: var(--border); color: var(--text); }
.pagination-gold .page-item.active .page-link { background: var(--gold); border-color: var(--gold); color: var(--primary); }
.pagination-gold .page-link:hover { background: var(--gold-muted); color: var(--gold); }

/* ── 22. FOOTER ──────────────────────────────────────────────── */
.site-footer { background: #080B22; position: relative; }

/* Gold gradient top border */
.footer-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 35%, var(--gold) 65%, transparent 100%);
}

.footer-top { padding: 3.5rem 0 2.5rem; }

/* Brand block */
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .2rem;
}
.footer-brand-name {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.footer-brand-sub {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.42);
  letter-spacing: .04em;
}
.footer-desc {
  color: rgba(255,255,255,.5);
  font-size: .87rem;
  line-height: 1.78;
  max-width: 340px;
}

/* Timing pill */
.footer-timing {
  display: inline-flex;
  align-items: center;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.18);
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  padding: .32rem .85rem;
  border-radius: 50px;
}
.footer-timing i { color: var(--gold); }

/* Social icon buttons */
.footer-social { display: flex; flex-wrap: wrap; gap: .55rem; }
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
  flex-shrink: 0;
}
.footer-social-btn:hover { transform: translateY(-3px); }
.footer-social-btn.social-fb { background: #1877F2; color: #fff; box-shadow: 0 4px 14px rgba(24,119,242,.35); }
.footer-social-btn.social-ig { background: linear-gradient(135deg,#fdf497 0%,#fd5949 40%,#d6249f 65%,#285AEB 100%); color: #fff; box-shadow: 0 4px 14px rgba(214,36,159,.35); }
.footer-social-btn.social-wa { background: #25D366; color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,.35); }
.footer-social-btn.social-jd { background: #FF6600; color: #fff; box-shadow: 0 4px 14px rgba(255,102,0,.35); font-size: .78rem; letter-spacing: .02em; }
.footer-social-btn.social-fb:hover { box-shadow: 0 6px 20px rgba(24,119,242,.5); }
.footer-social-btn.social-ig:hover { box-shadow: 0 6px 20px rgba(214,36,159,.5); }
.footer-social-btn.social-wa:hover { box-shadow: 0 6px 20px rgba(37,211,102,.5); }
.footer-social-btn.social-jd:hover { box-shadow: 0 6px 20px rgba(255,102,0,.5); }

/* Section titles */
.footer-title {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: .88rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid rgba(212,175,55,.15);
}

/* Quick / Service links */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .48rem; }
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .86rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s, padding-left .2s;
}
.footer-links a i { font-size: .52rem; color: var(--gold); opacity: .55; flex-shrink: 0; transition: opacity .2s; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-links a:hover i { opacity: 1; }

/* Contact list */
.footer-contact { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
  color: rgba(255,255,255,.5);
  font-size: .86rem;
  line-height: 1.55;
}
.fc-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(212,175,55,.09);
  border: 1px solid rgba(212,175,55,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: .85rem;
}
.fc-icon.fc-wa { background: rgba(37,211,102,.1); border-color: rgba(37,211,102,.22); color: #25D366; }
.footer-contact a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-contact a:hover { color: var(--gold); }

/* WhatsApp CTA button */
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25D366;
  color: #fff;
  font-size: .87rem;
  font-weight: 600;
  padding: .6rem 1.35rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.footer-wa-btn:hover { background: #1db954; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(37,211,102,.45); }

/* Footer bottom bar */
.footer-bottom {
  background: rgba(0,0,0,.28);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
  color: rgba(255,255,255,.38);
  font-size: .82rem;
}
.footer-bottom-social { display: flex; align-items: center; justify-content: flex-end; gap: .45rem; }
.fbs-link {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.fbs-link:hover { transform: translateY(-2px); color: #fff; }
.fbs-link.social-fb:hover { background: #1877F2; border-color: #1877F2; }
.fbs-link.social-ig:hover { background: #d6249f; border-color: #d6249f; }
.fbs-link.social-wa:hover { background: #25D366; border-color: #25D366; }
.fbs-link.social-jd:hover { background: #FF6600; border-color: #FF6600; }

/* ── 23. GSAP ANIMATION INIT STATES ─────────────────────────── */
.gsap-fade-up   { opacity: 0; transform: translateY(40px); }
.gsap-fade-left { opacity: 0; transform: translateX(40px); }
.gsap-fade-right{ opacity: 0; transform: translateX(-40px); }
.gsap-card      { opacity: 0; transform: translateY(30px); }

/* ── 24. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 992px) {
  .hero-title { font-size: 2.2rem; }
  .section    { padding: 3.5rem 0; }
  .stat-item  { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  /* Hero */
  .hero-section   { min-height: 100svh; }
  .hero-title     { font-size: 2rem; }
  .hero-subtitle  { font-size: 1rem; max-width: 100%; }
  .hero-cta       { display: flex; flex-direction: column; align-items: stretch; gap: .7rem; }
  .hero-cta .btn  { width: 100%; margin: 0 !important; text-align: center; justify-content: center; }
  .hero-trust     { gap: .5rem; font-size: .82rem; }

  /* Stats */
  .stat-item      { padding: 1.75rem 1rem; }
  .stat-number    { font-size: 2.4rem; }

  /* Sections */
  .section              { padding: 3rem 0; }
  .cta-banner-section   { padding: 3.5rem 0; }
  .contact-form-wrap    { padding: 1.5rem; }

  /* About image */
  .about-img      { min-height: 280px; }

  /* Float buttons */
  .float-btn      { width: 46px; height: 46px; font-size: 1.1rem; right: 16px; }
  .float-call     { bottom: 84px; }
  .float-whatsapp { bottom: 18px; }

  /* Expertise grid: center orphan last card */
  .expertise-section .row { justify-content: center; }

  /* Navbar brand */
  .brand-name { font-size: .92rem; }
}

@media (max-width: 576px) {
  /* Typography */
  .hero-badge, .hero-trust { font-size: .78rem; }
  .hero-title     { font-size: 1.85rem; }
  .hero-subtitle  { font-size: .9rem; }
  .section-title  { font-size: 1.35rem; }
  .section-badge  { font-size: .72rem; padding: .25rem .7rem; }

  /* Sections */
  .section              { padding: 2.5rem 0; }
  .cta-banner-section   { padding: 3rem 0; }
  .hero-scroll-hint     { display: none; }

  /* Stats */
  .stat-item    { padding: 1.5rem .75rem; }
  .stat-number  { font-size: 2rem; }
  .stat-icon    { font-size: 1.4rem; }
  .stat-label   { font-size: .78rem; }

  /* Cards */
  .service-card     { padding: 1.5rem 1.2rem; }
  .expertise-card   { padding: 1.5rem 1rem; }
  .expertise-icon   { width: 58px; height: 58px; font-size: 1.5rem; }
  .cat-card         { padding: 2rem 1.2rem; }
  .testimonial-card { padding: 1.5rem 1.2rem; }
  .expertise-footer { padding: 1.5rem 1rem; }

  /* About */
  .about-img  { min-height: 240px; }
  .exp-num    { font-size: 1.6rem; }
  .exp-text   { font-size: .68rem; }

  /* Footer */
  .footer-top { padding: 2.5rem 0 2rem; }
  .footer-desc { max-width: 100%; }
  .footer-bottom-social { justify-content: center; }
  .footer-bottom .col-md-6:first-child { order: 2; }
  .footer-bottom .col-md-6:last-child  { order: 1; }

  /* Navbar */
  .brand-name { font-size: .88rem; }
  .brand-sub  { font-size: .62rem; }
}

/* ── 25. EXPERTISE SECTION ───────────────────────────────────────── */
.expertise-section { background: var(--tertiary); }
.expertise-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.expertise-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(212,175,55,.05) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}
.expertise-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card), 0 0 20px rgba(212,175,55,.1); border-color: var(--gold); }
.expertise-card:hover::before { opacity: 1; }
.expertise-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--gold-muted);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--gold);
  transition: var(--transition);
}
.expertise-card:hover .expertise-icon { background: var(--gold); color: var(--primary); box-shadow: var(--glow); }
.expertise-card-title { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.expertise-card-sub   { font-size: .82rem; color: #A8B8CC; margin: 0; }
.expertise-footer {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.expertise-badge-wrap { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1rem; }
.expertise-badge-item {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold-muted);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: .5rem 1.3rem;
  border-radius: 30px;
  font-size: .88rem; font-weight: 600;
  transition: var(--transition);
}
.expertise-badge-item:hover { background: var(--gold); color: var(--primary); }

/* ── 26. SERVICE DETAIL PAGE ─────────────────────────────────────── */
.service-detail-hero {
  position: relative;
  padding: 7rem 0 4rem;
  text-align: center;
  background: radial-gradient(ellipse at top, #1a1d50 0%, var(--primary) 70%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.service-detail-icon {
  width: 96px; height: 96px;
  border-radius: 24px;
  background: var(--gold-muted);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; color: var(--gold);
  margin: 0 auto 1.5rem;
  box-shadow: var(--glow-sm);
}
.service-meta-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold-muted);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: .35rem 1rem; border-radius: 20px;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
}
.benefit-list { list-style: none; padding: 0; margin: 0; }
.benefit-list li {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: .95rem; color: var(--text);
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-icon { color: var(--gold); font-size: .95rem; margin-top: .2rem; min-width: 18px; }
.process-step {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center; height: 100%;
  transition: var(--transition);
  position: relative;
}
.process-step:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.step-number {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-weight: 900; font-size: 1.1rem;
  margin: 0 auto 1rem;
}
.process-step h5 { font-family: 'Poppins', sans-serif; color: var(--white); font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.process-step p  { font-size: .85rem; color: #B8C4D0; margin: 0; }
.consult-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center; height: 100%;
  transition: var(--transition);
}
.consult-card:hover { border-color: var(--gold); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.consult-card-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 1rem; }
.consult-card h5 { font-family: 'Poppins', sans-serif; color: var(--white); font-weight: 700; font-size: 1rem; margin-bottom: .5rem; }
.consult-card p  { font-size: .875rem; color: #B8C4D0; margin-bottom: 1.2rem; }
.service-sidebar-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}
.service-sidebar-card h5 { font-family: 'Poppins', sans-serif; color: var(--gold); font-size: .9rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .05em; }
.related-service-link {
  display: flex; align-items: center; gap: .75rem;
  color: var(--text); font-size: .875rem; font-weight: 500;
  padding: .6rem 0; border-bottom: 1px solid var(--border-soft);
  transition: var(--transition);
}
.related-service-link:last-child { border-bottom: none; }
.related-service-link:hover { color: var(--gold); padding-left: 4px; }
.related-service-link i { color: var(--gold); font-size: .8rem; min-width: 14px; }
@media (max-width: 768px) {
  .service-detail-hero { padding: 6rem 0 3rem; }
  .service-detail-icon { width: 76px; height: 76px; font-size: 2.1rem; }
}

/* ── 27. HERO SLIDER SECTION ─────────────────────────────────────────────── */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--primary);
}
.hero-slider-section #starCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-swiper {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.07);
  transition: transform 6s ease-out;
  will-change: transform;
}
.swiper-slide-active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11,15,47,.92) 0%,
    rgba(11,15,47,.68) 45%,
    rgba(11,15,47,.28) 75%,
    rgba(11,15,47,.10) 100%
  );
  z-index: 1;
}
.hero-slide .container {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 60px;
}
.slide-content { padding: 2rem 0; }

/* Slide text animations */
.slide-animate {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .55s ease, transform .55s ease;
}
.slide-animate.anim-ready { opacity: 1; transform: translateY(0); }

.sa-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(11,15,47,.72);
  border: 1px solid rgba(212,175,55,.55);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .42rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.sa-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.sa-title .gold-text { color: var(--gold); }
.sa-sub {
  font-size: clamp(.92rem, 1.5vw, 1.08rem);
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin-bottom: 1.6rem;
  line-height: 1.75;
}
.sa-cta { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1.4rem; }
.hero-btn { padding: .65rem 1.5rem; font-size: .95rem; }
.sa-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.3rem;
  color: rgba(255,255,255,.75);
  font-size: .87rem;
}
.sa-trust span { display: flex; align-items: center; }

/* Navigation buttons */
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,.5);
  background: rgba(11,15,47,.55);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-nav-btn:hover { background: var(--gold); color: var(--primary); border-color: var(--gold); }
.hero-prev { left: 1.2rem; }
.hero-next { right: 1.2rem; }

/* Pill pagination */
.hero-pagination {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: .4rem;
}
.hero-pagination .swiper-pagination-bullet {
  width: 22px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.4);
  opacity: 1;
  transition: width .3s, background .3s;
  cursor: pointer;
}
.hero-pagination .swiper-pagination-bullet-active {
  width: 44px;
  background: var(--gold);
}

/* Progress bar */
.hero-progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.12);
  z-index: 10;
}
.hero-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
}

/* Scroll hint */
.hero-slider-section .hero-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  color: rgba(255,255,255,.5);
  font-size: 1.1rem;
  cursor: pointer;
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero-nav-btn { width: 38px; height: 38px; font-size: .85rem; }
}

@media (max-width: 768px) {
  /* Push content to bottom so Pandit ji's photo shows clearly at top */
  .hero-slider-section { height: 100svh; min-height: 600px; }
  .hero-slide { align-items: flex-end; }

  /* Bottom-to-top fade — image visible at top, readable text area at bottom */
  .slide-overlay {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(11,15,47,.18) 28%,
      rgba(11,15,47,.80) 54%,
      rgba(11,15,47,.97) 100%
    );
  }

  /* Container — snug to bottom with safe padding on all sides */
  .hero-slide .container {
    padding-top: 16px;
    padding-bottom: 88px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }

  /* Center all slide text on mobile */
  .slide-content { padding: 0; text-align: center; }

  /* Badge — center */
  .sa-badge {
    justify-content: center;
    font-size: .72rem;
    padding: .36rem .9rem;
    margin-bottom: .7rem;
  }

  /* Heading */
  .sa-title {
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: .6rem;
  }

  /* Subtitle */
  .sa-sub {
    font-size: .85rem;
    line-height: 1.62;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  /* Buttons — stacked, full width */
  .sa-cta {
    flex-direction: column;
    align-items: stretch;
    gap: .55rem;
    margin-bottom: 1rem;
  }
  .hero-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: .72rem 1rem;
    font-size: .9rem;
  }

  /* Trust badges — centered row */
  .sa-trust {
    justify-content: center;
    gap: .3rem .85rem;
    font-size: .8rem;
  }

  /* Hide nav arrows; adjust pagination above progress bar */
  .hero-nav-btn { display: none; }
  .hero-pagination { bottom: 50px; }
}

@media (max-width: 480px) {
  .hero-slider-section { min-height: 580px; }
  .hero-slide .container {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 92px;
  }
  .sa-title { font-size: 1.42rem; line-height: 1.22; }
  .sa-sub   { font-size: .82rem; }
  .sa-badge { font-size: .68rem; }
}
