/* =========================================================
   1. RESET
========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
html.language-loading body { opacity: 0; }
body { min-height: 100vh; overflow-x: hidden; }
body { top: 0 !important; }
.goog-te-banner-frame.skiptranslate { display: none !important; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* =========================================================
   2. VARIABLES
========================================================= */
:root {
  --navy: #071B2B;
  --navy-2: #0D2940;
  --navy-3: #123456;
  --orange: #FF6B1A;
  --orange-2: #FF7A24;
  --gold: #D4A84F;
  --white: #FFFFFF;
  --soft-white: #F7F8FA;
  --muted: #C8D2DA;
  --ink: #1B2733;

  --font-display: 'Playfair Display', 'Noto Sans Devanagari', serif;
  --font-body: 'Poppins', 'Noto Sans Devanagari', sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 50px -20px rgba(7, 27, 43, 0.35);
  --shadow-card: 0 10px 30px -12px rgba(7, 27, 43, 0.18);
  --header-h: 96px;
  --announce-h: 40px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--soft-white);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-wrap: break-word;
}

.container { width: min(1200px, 92%); margin-inline: auto; }
.container.narrow { width: min(820px, 92%); }
.container.center { text-align: center; }

.section { padding: 100px 0; }
.section.alt-bg { background: #EFF2F5; }
@media (max-width: 768px) { .section { padding: 70px 0; } }

.section-head.center { text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: 52px; }
.section-intro { color: #5f6b76; font-size: 15.5px; line-height: 1.7; margin-top: 16px; }
.section-eyebrow {
  font-family: var(--font-body);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold); }
h1, h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.gold-rule { display: block; width: 64px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--orange)); border-radius: 3px; margin-top: 18px; margin-bottom: 6px; }
.gold-rule.center { margin-inline: auto; }
.gold-rule-v { display: block; width: 3px; height: 46px; background: linear-gradient(180deg, var(--gold), var(--orange)); border-radius: 3px; margin-bottom: 18px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--orange-2), var(--orange)); color: var(--white); box-shadow: 0 12px 26px -10px rgba(255, 107, 26, 0.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(255, 107, 26, 0.65); }
.btn-ghost { background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.35); color: var(--white); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-block { width: 100%; }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.text-link { color: var(--orange); font-weight: 600; font-size: 14.5px; display: inline-block; margin-top: 4px; position: relative; }
.text-link::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 1.5px; background: var(--orange); transition: width .25s ease; }
.text-link:hover::after { width: 100%; }
.text-link.light { color: var(--gold); }
.text-link.light::after { background: var(--gold); }

/* =========================================================
   3. TYPOGRAPHY (headline scale set contextually above)
========================================================= */

/* =========================================================
   4. HEADER — announcement bar
========================================================= */
.announce-bar { background: var(--navy); color: var(--muted); font-size: 13px; height: var(--announce-h); position: relative; z-index: 60; animation: fadeIn .8s ease both; }
.announce-inner { max-width: 1300px; margin-inline: auto; height: 100%; display: flex; align-items: center; justify-content: space-between; padding-inline: 24px; gap: 20px; }

/* Scrolling / looping announcement text (marquee) */
.announce-text { flex: 1; min-width: 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); }
.announce-track { display: inline-flex; align-items: center; white-space: nowrap; width: max-content; animation: announceScroll 26s linear infinite; }
.announce-bar:hover .announce-track { animation-play-state: paused; }
.announce-item { display: inline-block; white-space: nowrap; padding-right: 56px; }
@keyframes announceScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .announce-track { animation: none; } }
.announce-right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.announce-phone { display: flex; align-items: center; gap: 6px; color: var(--white); font-weight: 500; white-space: nowrap; }
.announce-cta { background: var(--orange); color: var(--white); padding: 6px 16px; border-radius: 999px; font-weight: 600; font-size: 12.5px; white-space: nowrap; }

/* =========================================================
   5. MAIN NAVIGATION
========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 55;
  background: linear-gradient(180deg, var(--orange-2) 0%, var(--orange) 100%);
  box-shadow: 0 2px 14px -4px rgba(7,27,43,0.35);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.header-inner {
  max-width: 1360px; margin-inline: auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; gap: 24px;
  transition: padding .35s ease;
}
.site-header.scrolled { background: linear-gradient(180deg, var(--orange) 0%, #E85D0F 100%); box-shadow: 0 8px 24px -8px rgba(7,27,43,0.45); }
.site-header.scrolled .header-inner { padding-block: 9px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { flex-shrink: 0; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25)); transition: transform .3s ease; }
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); }
.brand-mark img { display: block; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2.5px rgba(7,27,43,0.85), 0 0 0 4.5px rgba(255,255,255,0.55); }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; margin-left: 0; }
.brand-text strong { font-family: var(--font-display); font-size: 18px; letter-spacing: 1.5px; color: var(--white); font-weight: 700; white-space: nowrap; }
.brand-text em { font-style: normal; font-size: 10.5px; letter-spacing: 0.5px; color: rgba(7,27,43,0.85); font-weight: 700; text-transform: uppercase; max-width: 220px; white-space: nowrap; }

.main-nav { min-width: 0; flex-shrink: 1; overflow: visible; }
.main-nav > ul { display: flex; align-items: center; gap: 10px; flex-wrap: nowrap; }
.main-nav > ul > li { flex-shrink: 0; }
.nav-link { color: rgba(255,255,255,0.95); font-size: 13.5px; font-weight: 600; position: relative; padding-block: 6px; transition: color .2s ease, transform .2s ease; display: inline-block; white-space: nowrap; }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--navy); transition: width .25s ease; border-radius: 2px; }
.nav-link:hover { transform: translateY(-1px); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.has-dropdown { position: relative; }
.has-dropdown > .nav-link { display: inline-flex; align-items: center; gap: 5px; }
.has-dropdown > .nav-link::before {
  content: ''; width: 7px; height: 7px; border-right: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px); margin-left: 1px; transition: transform .2s ease;
}
.has-dropdown:hover > .nav-link::before { transform: rotate(225deg) translateY(2px); }
.dropdown-menu {
  display: flex; flex-direction: column; align-items: stretch;
  position: absolute; top: 100%; left: 0; margin-top: 0; padding-top: 16px;
  background: var(--white); background-clip: padding-box; border-radius: var(--radius-sm); box-shadow: var(--shadow-card);
  min-width: 240px; padding-left: 6px; padding-right: 6px; padding-bottom: 10px;
  opacity: 0; visibility: hidden; transform: translateY(4px); pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .25s;
}
.has-dropdown:hover > .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear 0s;
}
.dropdown-menu li { width: 100%; }
.dropdown-menu li a { display: block; width: 100%; padding: 12px 16px; border-radius: 8px; color: var(--navy); font-size: 14.5px; white-space: normal; line-height: 1.35; transition: background .2s ease, color .2s ease, padding-left .2s ease; }
.dropdown-menu li a:hover { background: var(--soft-white); color: var(--orange); padding-left: 20px; }

.header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; }
.header-right .btn-primary { background: var(--navy); box-shadow: 0 10px 22px -10px rgba(7,27,43,0.6); }
.header-right .btn-sm { height: 40px; padding: 0 20px; box-sizing: border-box; }
.header-right .btn-primary:hover { background: var(--navy-2); box-shadow: 0 14px 26px -10px rgba(7,27,43,0.7); }

/* language switcher */
.lang-switch { position: relative; }
.lang-btn { display: flex; align-items: center; gap: 5px; color: var(--white); font-size: 13px; font-weight: 600; height: 40px; padding: 0 10px; border-radius: 999px; border: 1.5px solid rgba(7,27,43,0.5); white-space: nowrap; transition: border-color .2s ease, background .2s ease; box-sizing: border-box; }
.lang-btn:hover { background: rgba(7,27,43,0.12); }
.lang-btn .chev { transition: transform .2s ease; }
.lang-switch.open .lang-btn .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: 120%; right: 0; background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card); min-width: 140px; padding: 6px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: opacity .2s ease, transform .2s ease; z-index: 20;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li { padding: 9px 12px; border-radius: 8px; color: var(--navy); font-size: 14px; cursor: pointer; transition: background .2s ease, color .2s ease; }
.lang-menu li:hover { background: var(--soft-white); color: var(--orange); }
.lang-menu li.active { color: var(--orange); font-weight: 600; }

.nav-divider { display: inline-block; width: 1px; height: 22px; background: rgba(255,255,255,0.35); margin: 0; flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 26px; }
.hamburger span { display: block; height: 2px; width: 100%; background: var(--white); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: 0; width: min(320px, 85vw); max-width: 100vw; height: 100vh;
  background: var(--navy); z-index: 70; padding: 100px 28px 30px; transform: translateX(100%); visibility: hidden; transition: transform .35s ease, visibility 0s linear .35s;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; transition: transform .35s ease, visibility 0s linear 0s; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu .nav-link { color: var(--muted); font-size: 16px; font-weight: 500; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: block; }
.mobile-menu .nav-link::after { background: var(--orange); }
.mobile-menu > ul > li { width: 100%; }
.mobile-has-dropdown { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mobile-nav-row .nav-link { flex: 1; border-bottom: none; padding: 12px 0; }
.mobile-dropdown-toggle { flex-shrink: 0; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; color: var(--muted); border-radius: 50%; transition: background .2s ease, color .2s ease; }
.mobile-dropdown-toggle:hover, .mobile-dropdown-toggle:focus-visible { background: rgba(255,255,255,0.08); color: var(--white); }
.mobile-dropdown-toggle svg { transition: transform .3s ease; }
.mobile-has-dropdown.open .mobile-dropdown-toggle svg { transform: rotate(180deg); }
.mobile-submenu { list-style: none; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; display: flex; flex-direction: column; padding-left: 6px; }
.mobile-has-dropdown.open .mobile-submenu { max-height: 900px; padding-bottom: 8px; }
.mobile-submenu li { width: 100%; border-bottom: none !important; }
.mobile-submenu li a { display: block; width: 100%; padding: 10px 0 10px 18px; font-size: 14px; color: var(--muted); border-left: 2px solid rgba(255,255,255,0.12); transition: color .2s ease, border-color .2s ease, padding-left .2s ease; }
.mobile-submenu li a:hover, .mobile-submenu li a:focus-visible { color: var(--orange); border-color: var(--orange); padding-left: 24px; }
.mobile-lang { margin-top: 26px; color: var(--muted); font-size: 13px; }
.mobile-lang-options { display: flex; gap: 10px; margin-top: 10px; }
.mlang-opt { border: 1px solid rgba(255,255,255,0.25); color: var(--white); padding: 8px 16px; border-radius: 999px; font-size: 13.5px; transition: background .2s ease, border-color .2s ease; }
.mlang-opt.active { background: var(--orange); border-color: var(--orange); }

/* =========================================================
   6. HERO
========================================================= */
.hero {
  position: relative;
  min-height: 780px;
  background: radial-gradient(140% 100% at 15% 0%, #0E2E47 0%, var(--navy) 55%, #051622 100%);
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(0.85) brightness(0.75);
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(7,27,43,0.94) 0%, rgba(7,27,43,0.8) 32%, rgba(7,27,43,0.55) 60%, rgba(7,27,43,0.75) 100%),
    radial-gradient(120% 90% at 15% 0%, rgba(14,46,71,0.55) 0%, transparent 60%);
}
@media (max-width: 768px) {
  .hero-video { object-position: 60% center; }
  .hero-video-overlay { background: linear-gradient(180deg, rgba(7,27,43,0.88) 0%, rgba(7,27,43,0.82) 55%, rgba(7,27,43,0.94) 100%); }
}
.hero-bg-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; }
.hero-bg-glow.g1 { width: 520px; height: 520px; background: var(--orange); top: -140px; left: -120px; animation: floatSlow 12s ease-in-out infinite; }
.hero-bg-glow.g2 { width: 420px; height: 420px; background: var(--gold); bottom: -160px; right: -80px; opacity: 0.22; animation: floatSlow 14s ease-in-out infinite reverse; }
.hero-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 70% 20%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 85% 60%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 55% 40%, rgba(255,255,255,0.25), transparent),
    radial-gradient(1.5px 1.5px at 10% 80%, rgba(255,255,255,0.3), transparent);
  opacity: 0.6;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1300px; margin-inline: auto; padding: 72px 24px 90px;
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 60px; align-items: center;
  width: 100%;
}

/* Mobile-only Guru card: hidden on desktop/tablet, shown above the hero
   content on small screens so the Guru image is the first thing seen. */
.hero-mobile-guru { display: none; }
.hero-mobile-guru-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #2a180d, #0d0603);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212,168,79,0.25);
}
.hero-mobile-guru-card img { width: 100%; height: auto; display: block; }
.hero-mobile-guru-card .guru-name-bar { font-size: 15px; padding: 12px 16px; }

.hero-left { color: var(--white); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
  color: var(--gold); margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--gold); display: inline-block; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.1vw, 72px);
  line-height: 1.12;
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 26px;
}
.hero-title span:first-child { color: var(--white); }
.accent-flow {
  background: linear-gradient(100deg, var(--gold) 0%, var(--orange-2) 45%, var(--orange) 75%, var(--gold) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 7s linear infinite;
  font-style: italic;
}

.hero-desc { font-size: 17px; color: var(--muted); max-width: 560px; margin-bottom: 30px; }

.trust-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-bottom: 34px; max-width: 540px; }
.trust-points li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--soft-white); }
.trust-points .tick { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(255,107,26,0.18); color: var(--orange-2); font-size: 12px; flex-shrink: 0; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 26px; }

.hero-microtrust { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.dots { display: inline-flex; }
.dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-left: -6px; border: 1.5px solid var(--navy); }
.dots span:first-child { margin-left: 0; }

/* hero right */
.hero-right { position: relative; min-height: 480px; }

.float-card {
  position: absolute; background: rgba(13,41,64,0.75); backdrop-filter: blur(10px);
  border: 1px solid rgba(212,168,79,0.35); border-radius: var(--radius-sm);
  padding: 12px 18px; text-align: center; color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.5);
  animation: floatSlow 7s ease-in-out infinite;
}
.float-card strong { display: block; font-family: var(--font-display); font-size: 22px; color: var(--orange-2); line-height: 1.1; }
.float-card span { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.6px; }
.float-card-1 { top: 26px; left: -110px; animation-delay: .4s; z-index: 1; }
.float-card-2 { bottom: 18px; right: -45px; animation-delay: 1.2s; z-index: 1; }

.booking-card {
  position: relative; margin-top: 16px;
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  padding: 30px 28px 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212,168,79,0.25);
  z-index: 3;
}
.booking-card-head { text-align: center; margin-bottom: 20px; }
.gold-tag { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--navy); display: block; margin-bottom: 6px; }
.booking-card-head p { font-size: 13px; color: #6b7885; }

.field { margin-bottom: 15px; position: relative; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.2px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1.4px solid #E1E6EA; border-radius: 10px; padding: 11px 14px;
  font-size: 14px; color: var(--ink); background: var(--white); transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,26,0.14); outline: none;
}
.field-error { display: block; font-size: 11.5px; color: #D64545; margin-top: 4px; min-height: 14px; }
.booking-note { text-align: center; font-size: 11.5px; color: #8a95a0; margin-top: 12px; }
.form-success { text-align: center; margin-top: 14px; background: #E9F7EE; color: #24793F; padding: 10px 12px; border-radius: 10px; font-size: 13px; font-weight: 500; }
.booking-card.reveal-right, .contact-form-wrap.reveal-right { opacity: 1; transform: none; transition: none; }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-cue span { display: block; width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.4); border-radius: 20px; position: relative; }
.scroll-cue span::before { content: ''; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; background: var(--gold); border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.8s ease-in-out infinite; }

/* reveal / animation base states */
.reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 0; transition: opacity .8s ease, transform .8s ease; }
.reveal { transform: translateY(28px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.92); }
.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view, .reveal-scale.in-view { opacity: 1; transform: none; }

.hero-left .reveal, .hero-right .reveal-scale, .hero-right .reveal-right { transition-delay: 0s; }
.hero-left .eyebrow.reveal { transition-delay: .05s; }
.hero-left .hero-title.reveal { transition-delay: .15s; }
.hero-left .hero-desc.reveal { transition-delay: .28s; }
.hero-left #trustPoints li.reveal:nth-child(1) { transition-delay: .38s; }
.hero-left #trustPoints li.reveal:nth-child(2) { transition-delay: .46s; }
.hero-left #trustPoints li.reveal:nth-child(3) { transition-delay: .54s; }
.hero-left #trustPoints li.reveal:nth-child(4) { transition-delay: .62s; }
.hero-left .hero-ctas.reveal { transition-delay: .72s; }
.hero-left .hero-microtrust.reveal { transition-delay: .82s; }
.hero-right .reveal-scale { transition-delay: .3s; }
.hero-right .reveal-right { transition-delay: .5s; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatSlow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

@keyframes shine { to { background-position: -220% center; } }
@keyframes scrollDot { 0% { top: 6px; opacity: 1; } 80% { top: 20px; opacity: 0; } 100% { top: 20px; opacity: 0; } }

/* =========================================================
   7. SECTIONS — trust strip, about, how, services, etc.
========================================================= */

/* Shared dark-navy "zodiac" background band. Reuses the site's existing
   zodiac-wheel artwork (assets/nadi-types-bg.jpg) at low opacity — the same
   technique already used by .nadi-types-section — layered with a faint
   starfield (same radial-gradient-dot technique as .hero-stars) so the
   stats strip and the "trusted centre" section share one design system. */
.zodiac-band { position: relative; background: radial-gradient(120% 140% at 50% -10%, var(--navy-3) 0%, var(--navy-2) 45%, var(--navy) 100%); overflow: hidden; color: var(--white); }
.zodiac-band::before { content: ''; position: absolute; inset: 0; background: url('assets/nadi-types-bg.jpg') center/cover no-repeat; opacity: 0.09; pointer-events: none; }
.zodiac-band::after {
  content: ''; position: absolute; inset: 0; opacity: 0.7; pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 8% 20%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1.5px 1.5px at 22% 78%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 38% 35%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 52% 85%, rgba(255,255,255,0.25), transparent),
    radial-gradient(1.5px 1.5px at 65% 15%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 78% 62%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 90% 30%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 96% 80%, rgba(255,255,255,0.25), transparent);
}
.zodiac-band > .container { position: relative; z-index: 1; }

.trust-strip { padding: 64px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); text-align: center; gap: 28px 20px; }
.trust-stat .counter, .trust-stat .plus { font-family: var(--font-display); font-weight: 800; color: var(--orange-2); line-height: 1; }
.trust-stat .counter { font-size: clamp(40px, 5.2vw, 72px); }
.trust-stat .plus { font-size: clamp(28px, 3.6vw, 48px); }
.trust-stat p { color: var(--white); font-size: 17px; margin-top: 10px; letter-spacing: 0.2px; font-weight: 500; }
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 36px; }
}
@media (max-width: 640px) {
  .trust-strip { padding: 48px 0; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 14px; }
  .trust-stat:last-child { grid-column: 1 / -1; }
  .trust-stat .counter { font-size: clamp(34px, 11vw, 44px); }
  .trust-stat .plus { font-size: clamp(24px, 7vw, 30px); }
  .trust-stat p { font-size: 14.5px; }
}

/* about */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.about-img img { width: 100%; height: 460px; object-fit: cover; }
.guru-photo-card { background: linear-gradient(160deg, #2a180d, #0d0603); }
.guru-photo-card img { height: 460px; object-fit: contain; object-position: center top; }
.about-img-badge {
  position: absolute; bottom: 18px; left: 18px; background: rgba(7,27,43,0.85); backdrop-filter: blur(6px);
  color: var(--white); padding: 12px 18px; border-radius: 12px; border-left: 3px solid var(--orange);
}
.about-img-badge span { display: block; font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.about-img-badge small { color: var(--muted); font-size: 11px; }

/* Homepage temple/about feature — scoped overrides only, so the shared
   .about-grid / .about-img / .about-copy classes used on about.html and
   every kandam page keep their original look. */
.temple-feature .about-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
.temple-feature .about-img { border-radius: 6px; }
.temple-feature .about-img img { border-radius: 6px; }
.temple-feature .about-copy h2 { color: #8A4A2E; font-size: clamp(28px, 3vw, 42px); line-height: 1.2; font-weight: 800; }
.temple-feature .about-copy p { color: #17273A; font-size: 19px; line-height: 1.78; margin-bottom: 20px; max-width: 560px; }
.temple-feature .about-copy p:first-of-type { margin-top: 20px; }
@media (min-width: 901px) { .temple-feature .about-img img { height: 480px; } }
@media (max-width: 900px) { .temple-feature .about-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .temple-feature .about-img img { height: auto; aspect-ratio: 4 / 5; object-fit: cover; } .temple-feature .about-copy p { max-width: none; } }
@media (max-width: 480px) { .temple-feature .about-copy h2 { font-size: clamp(24px, 7vw, 30px); } .temple-feature .about-copy p { font-size: 16.5px; line-height: 1.7; } }

/* ================= WHY TRUSTED (homepage, 8 pillars) ================= */
.why-trusted-section .section-head.center h2 { color: var(--white); font-size: clamp(30px, 4vw, 46px); }
.why-trusted-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.why-trusted-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(110,170,230,0.28); border-radius: 14px;
  padding: 34px 24px; text-align: center; transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.why-trusted-card:hover { transform: translateY(-5px); border-color: rgba(255,140,60,0.55); background: rgba(255,255,255,0.06); }
.why-icon-circle {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--orange-2), var(--orange)); box-shadow: 0 10px 24px -8px rgba(255,107,26,0.55);
}
.why-icon-circle svg { width: 34px; height: 34px; color: var(--white); }
.why-trusted-card h3 { font-family: var(--font-display); color: #FFAE73; font-size: 18.5px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.why-trusted-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 1024px) { .why-trusted-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .why-trusted-grid { grid-template-columns: 1fr; } .why-trusted-card { padding: 30px 22px; } }

/* topic image carousel (multi-photo hero with prev/next arrows) */
.topic-carousel-track { position: relative; width: 100%; height: 460px; }
.topic-carousel-track img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; visibility: hidden; transition: opacity .5s ease;
}
.topic-carousel-track img.is-active { opacity: 1; visibility: visible; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(7,27,43,0.55); backdrop-filter: blur(4px); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1;
  transition: background .25s ease, transform .25s ease;
}
.carousel-arrow:hover { background: var(--orange); transform: translateY(-50%) scale(1.06); }
.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }
.carousel-dots { position: absolute; bottom: 18px; right: 18px; z-index: 3; display: flex; gap: 6px; }
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.45); transition: background .25s ease, transform .25s ease;
}
.carousel-dots button.is-active { background: var(--gold); transform: scale(1.25); }
@media (max-width: 640px) {
  .topic-carousel-track { height: auto; aspect-ratio: 4 / 5; }
  .carousel-arrow { width: 34px; height: 34px; font-size: 17px; }
}
.guru-name-bar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  color: var(--white); font-family: var(--font-display); font-weight: 700;
  font-size: 16px; letter-spacing: 0.2px; text-align: center; padding: 14px 18px;
}
.chapters-note { text-align: center; font-size: 12.5px; color: #8a95a0; margin-top: 20px; }
.about-copy h2 { margin-bottom: 0; }
.about-copy p { color: #4a5764; margin-bottom: 16px; font-size: 15.5px; }
.about-copy p:first-of-type { margin-top: 22px; }

/* how it works */
.steps-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; position: relative; }
.step-card {
  display: flex; align-items: center; gap: 22px; text-align: left;
  background:
    radial-gradient(circle at 10% 15%, rgba(255,255,255,0.05) 0, transparent 45%),
    radial-gradient(circle at 90% 85%, rgba(255,255,255,0.04) 0, transparent 40%),
    linear-gradient(135deg, var(--navy-3), var(--navy) 65%);
  border-radius: var(--radius-md); padding: 28px 30px; box-shadow: var(--shadow-card); position: relative;
  overflow: hidden; transition: transform .3s ease, box-shadow .3s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -16px rgba(7,27,43,0.45); }
.step-num { position: absolute; top: 16px; right: 20px; font-family: var(--font-display); font-size: 15px; color: var(--gold); font-weight: 700; letter-spacing: 1px; opacity: .85; }
.step-icon {
  width: 148px; height: 148px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  border: 4px solid rgba(255,255,255,0.18); box-shadow: 0 8px 20px -6px rgba(0,0,0,0.55);
}
.step-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.step-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--white); margin-bottom: 8px; }
.step-card p { font-size: 13.8px; color: rgba(255,255,255,0.72); line-height: 1.55; }
.center-cta { text-align: center; margin-top: 46px; }

.kandam-pagination { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.kandam-pagenav {
  display: flex; flex-direction: column; gap: 6px; padding: 22px 24px; background: var(--white);
  border-radius: var(--radius-md); box-shadow: var(--shadow-card); transition: transform .25s ease, box-shadow .25s ease;
  border: 1.5px solid transparent;
}
.kandam-pagenav:hover { transform: translateY(-4px); border-color: var(--orange); }
.kandam-pagenav.next { text-align: right; align-items: flex-end; }
.kandam-pagenav-label { font-size: 12.5px; font-weight: 600; letter-spacing: .3px; color: var(--orange); text-transform: uppercase; }
.kandam-pagenav-name { font-family: var(--font-display); font-size: 17px; color: var(--navy); font-weight: 700; }
@media (max-width: 600px) {
  .kandam-pagination { grid-template-columns: 1fr; }
  .kandam-pagenav.next { text-align: left; align-items: flex-start; }
}

/* services */
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.services-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); transition: transform .3s ease, box-shadow .3s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -18px rgba(7,27,43,0.28); }
.service-img { height: 170px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 22px 20px 24px; }
.service-body h3 { font-family: var(--font-display); font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.service-body p { font-size: 13.5px; color: #667583; margin-bottom: 12px; min-height: 58px; }
.price { display: block; font-weight: 600; color: var(--gold); font-size: 13.5px; margin-bottom: 8px; }

/* consult online */
.consult-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.consult-card { background: var(--white); border-radius: var(--radius-md); padding: 30px 28px; box-shadow: var(--shadow-card); transition: transform .3s ease; }
.consult-card:hover { transform: translateY(-5px); }
.consult-icon { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--orange-2), var(--orange)); font-size: 24px; margin-bottom: 16px; }
.consult-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.consult-card p { font-size: 14.5px; color: #667583; }
.consult-card p a { color: var(--orange); font-weight: 600; }
.consult-card p a:hover { text-decoration: underline; }
@media (max-width: 820px) { .consult-grid { grid-template-columns: 1fr; } }

/* nadi types */
.nadi-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.nadi-card { background: var(--white); border-radius: var(--radius-md); padding: 34px 28px; box-shadow: var(--shadow-card); text-align: center; position: relative; transition: transform .3s ease; }
.nadi-card:hover { transform: translateY(-6px); }
.nadi-card.featured { background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: var(--white); border: 1px solid var(--gold); }
.nadi-card.featured h3 { color: var(--white); }
.nadi-card.featured p { color: var(--muted); }
.nadi-card .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700; padding: 5px 16px; border-radius: 999px; letter-spacing: 0.4px; }
.nadi-card h3 { font-family: var(--font-display); font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.nadi-card p { font-size: 14px; color: #667583; margin-bottom: 14px; }
.fee-includes { text-align: left; margin: 4px 0 14px; display: flex; flex-direction: column; gap: 9px; }
.fee-includes li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.3px; color: #667583; line-height: 1.5; }
.fee-includes .tick { display: inline-flex; align-items: center; justify-content: center; width: 17px; height: 17px; border-radius: 50%; background: rgba(255,107,26,0.12); color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.fee-includes .tick svg { width: 9px; height: 9px; }
.nadi-card.featured .fee-includes li { color: var(--muted); }
.nadi-card.featured .fee-includes .tick { background: rgba(255,255,255,0.16); color: var(--orange-2); }
.fee-note { font-size: 12.3px; color: #94a0aa; font-style: italic; padding-top: 12px; border-top: 1px solid rgba(7,27,43,0.08); }
.nadi-card.featured .fee-note { color: var(--muted); border-top-color: rgba(255,255,255,0.15); }

/* note box */
.note-box { background: var(--soft-white); border-left: 3px solid var(--orange); border-radius: var(--radius-sm); padding: 22px 26px; margin-top: 30px; }
.note-box h4 { font-family: var(--font-display); font-size: 15.5px; color: var(--navy); margin-bottom: 10px; }
.note-box ul { display: flex; flex-direction: column; gap: 8px; }
.note-box li { font-size: 13.5px; color: #667583; line-height: 1.6; padding-left: 16px; position: relative; }
.note-box li::before { content: '•'; position: absolute; left: 0; color: var(--orange); }

/* chapters */
.chapters-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.chapter-card { background: var(--white); border-radius: var(--radius-md); padding: 28px 20px; text-align: center; box-shadow: var(--shadow-card); transition: transform .3s ease, border-color .3s ease; border: 1.5px solid transparent; }
.chapter-card:hover { transform: translateY(-5px); border-color: var(--orange); }
.chapter-icon { font-size: 30px; display: block; margin-bottom: 14px; }
.chapter-icon-photo {
  display: block; width: 108px; height: 108px; border-radius: 18px; overflow: hidden; margin: 0 auto 16px;
  border: 4px solid rgba(255,107,26,0.18); box-shadow: 0 8px 18px -8px rgba(7,27,43,0.35);
  transition: transform .3s ease, border-color .3s ease;
}
.chapter-icon-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chapter-card:hover .chapter-icon-photo { transform: scale(1.08); border-color: var(--orange); }
.chapter-card h3 { font-family: var(--font-display); font-size: 15.5px; color: var(--navy); margin-bottom: 8px; }
.chapter-card p { font-size: 12.8px; color: #7c8894; }

/* Large full-bleed photo card variant (kandam / topic tiles with a real photo) —
   big image on top, rounded card, title in a light band below, like the
   reference design. Falls back gracefully to the small icon style above
   on browsers without :has() support. */
.chapter-card:has(.chapter-icon-photo) {
  padding: 0; overflow: hidden; text-align: center; display: flex; flex-direction: column;
}
.chapter-card:has(.chapter-icon-photo):hover { transform: translateY(-6px); }
.chapter-card:has(.chapter-icon-photo) .chapter-icon-photo {
  width: 100%; height: auto; aspect-ratio: 4 / 3; border-radius: 0; margin: 0; border: none; box-shadow: none;
}
.chapter-card:has(.chapter-icon-photo):hover .chapter-icon-photo { transform: none; border-color: transparent; }
.chapter-card:has(.chapter-icon-photo) .chapter-icon-photo img { transition: transform .5s ease; }
.chapter-card:has(.chapter-icon-photo):hover .chapter-icon-photo img { transform: scale(1.07); }
.chapter-card:has(.chapter-icon-photo) h3 { padding: 18px 18px 6px; margin-bottom: 0; }
.chapter-card:has(.chapter-icon-photo) p { padding: 0 18px 22px; flex: 1; }

/* guruji */
.guruji-section { background: linear-gradient(160deg, rgba(7,27,43,0.93), rgba(5,20,32,0.96)), url('assets/guruji-bg.jpg') center 20%/cover no-repeat; color: var(--white); }
.guruji-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.guruji-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid rgba(212,168,79,0.3); background: linear-gradient(160deg, #2a180d, #0d0603); }
.guruji-img img { width: 100%; height: 480px; object-fit: contain; object-position: center top; }
.guruji-copy h2 { color: var(--white); margin-bottom: 8px; }
.guruji-exp { color: var(--orange-2); font-weight: 600; margin-bottom: 18px; font-size: 14.5px; }
.guruji-copy p:not(.guruji-exp) { color: var(--muted); margin-bottom: 20px; font-size: 15px; }

/* why choose us */
.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.why-card { background: var(--white); border-radius: var(--radius-md); padding: 30px 26px; box-shadow: var(--shadow-card); transition: transform .3s ease; }
.why-card:hover { transform: translateY(-5px); }
.why-icon { font-size: 26px; display: block; margin-bottom: 14px; }
.why-card h3 { font-family: var(--font-display); font-size: 16.5px; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: #667583; }
.why-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* comparison (topic pages) */
.compare-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; align-items: stretch; }
.compare-card { border-radius: var(--radius-md); padding: 32px 30px; box-shadow: var(--shadow-card); }
.compare-card.cons { background: var(--white); }
.compare-card.pros { background: linear-gradient(160deg, var(--navy), var(--navy-2)); border: 1px solid var(--gold); }
.compare-card h3 { font-family: var(--font-display); font-size: 19px; margin-bottom: 18px; color: var(--navy); }
.compare-card.pros h3 { color: var(--white); }
.compare-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.55; margin-bottom: 14px; color: #4a5764; }
.compare-list li:last-child { margin-bottom: 0; }
.compare-card.pros .compare-list li { color: var(--muted); }
.compare-list .mark { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; }
.compare-list .mark svg { width: 12px; height: 12px; }
.compare-card.cons .mark { background: rgba(198,40,40,0.1); color: #C62828; }
.compare-card.pros .mark { background: rgba(255,107,26,0.18); color: var(--orange-2); }
@media (max-width: 820px) { .compare-grid { grid-template-columns: 1fr; } }

/* global */
.global-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; text-align: center; }
.global-grid span { display: block; background: var(--white); padding: 20px; border-radius: var(--radius-sm); font-weight: 600; color: var(--navy); box-shadow: var(--shadow-card); font-size: 14.5px; }

.nadi-types-section { position: relative; }
.nadi-types-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('assets/nadi-types-bg.jpg') center/cover no-repeat;
  opacity: 0.07; pointer-events: none;
}
.nadi-types-section .container { position: relative; z-index: 1; }
.lang-support-section h2 { margin-top: 2px; }
.lang-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 30px; }
.lang-pill { padding: 10px 22px; border-radius: 999px; background: var(--white); box-shadow: var(--shadow-card); font-weight: 600; font-size: 14px; color: #9aa5af; }
.lang-pill.active { background: var(--navy); color: var(--white); }

/* testimonials */
.testi-slider { position: relative; max-width: 760px; margin-inline: auto; }
.testi-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.testi-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testi-card { min-width: 100%; background: var(--white); border-radius: var(--radius-lg); padding: 44px 40px; text-align: center; box-shadow: var(--shadow-card); }
/* icon svg sizing */
.step-icon svg { width: 40px; height: 40px; color: var(--white); }
.consult-icon svg { width: 24px; height: 24px; color: var(--white); }
.chapter-icon svg { width: 30px; height: 30px; color: var(--orange); transition: transform .3s ease; }
.chapter-card:hover .chapter-icon svg { transform: scale(1.12) rotate(-4deg); }
.why-icon svg { width: 26px; height: 26px; color: var(--orange); transition: transform .3s ease; }
.why-card:hover .why-icon svg { transform: scale(1.12); }
.c-icon svg { width: 20px; height: 20px; color: var(--orange); display: block; }
.msc-icon svg { width: 18px; height: 18px; color: currentColor; display: block; }
.tick svg { width: 12px; height: 12px; }
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 16px; }
.stars svg { width: 18px; height: 18px; color: var(--gold); }
.lb-close svg, .lb-prev svg, .lb-next svg { width: 20px; height: 20px; }
.lb-prev svg, .lb-next svg { width: 26px; height: 26px; }
.faq-q svg, .back-to-top svg { width: 16px; height: 16px; }
.testi-card p { font-size: 16px; color: var(--ink); font-style: italic; margin-bottom: 22px; line-height: 1.7; }
.testi-card strong { display: block; font-family: var(--font-display); color: var(--navy); font-size: 15.5px; }
.testi-card span { font-size: 12.5px; color: #8a95a0; }
.testi-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-card); color: var(--navy); display: flex; align-items: center; justify-content: center; transition: background .2s ease, color .2s ease, transform .2s ease; }
.testi-nav svg { width: 20px; height: 20px; }
.testi-nav:hover { background: var(--orange); color: var(--white); transform: translateY(-50%) scale(1.08); }
.testi-nav.prev { left: -60px; }
.testi-nav.next { right: -60px; }
@media (max-width: 900px) { .testi-nav.prev { left: -6px; } .testi-nav.next { right: -6px; } }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.testi-dots span { width: 9px; height: 9px; border-radius: 50%; background: #d8dee3; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.testi-dots span.active { background: var(--orange); transform: scale(1.2); }

/* gallery */
.gallery-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.gtab { padding: 9px 20px; border-radius: 999px; border: 1.5px solid #dfe4e8; font-size: 13.5px; font-weight: 500; color: #66727d; transition: all .2s ease; }
.gtab.active, .gtab:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.g-item { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius-md); cursor: pointer; transition: transform .35s ease, opacity .3s ease; }
.g-item:hover { transform: scale(1.03); }
.g-item.hidden { display: none; }

.lightbox { position: fixed; inset: 0; background: rgba(5,15,25,0.95); z-index: 200; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 84vw; max-height: 84vh; border-radius: 10px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.lb-close, .lb-prev, .lb-next { position: absolute; color: var(--white); font-size: 26px; background: rgba(255,255,255,0.08); width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s ease; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* home gallery preview */
.home-gallery-desc { max-width: 620px; margin: 14px auto 0; color: #667583; font-size: 15px; line-height: 1.7; }
.home-gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 150px; gap: 16px; margin-top: 44px; }
.hg-item { position: relative; display: block; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.hg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .4s ease; }
.hg-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,27,43,0) 55%, rgba(7,27,43,0.55) 100%); opacity: 0; transition: opacity .35s ease; }
.hg-item:hover::after { opacity: 1; }
.hg-item:hover img { transform: scale(1.08); }
.hg-big { grid-column: span 2; grid-row: span 2; }
.hg-cta { position: relative; }
.hg-cta img { filter: brightness(0.5); transition: transform .6s ease, filter .4s ease; }
.hg-cta:hover img { transform: scale(1.08); filter: brightness(0.38); }
.hg-cta-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--white); text-align: center; padding: 10px; }
.hg-cta-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; margin-bottom: 2px; transition: transform .3s ease; }
.hg-cta:hover .hg-cta-icon { transform: scale(1.12); }
.hg-cta-overlay span:last-child { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .2px; }
@media (max-width: 900px) {
  .home-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .hg-big { grid-column: span 2; grid-row: span 1; height: 100%; }
}

/* topic pages (nadi sub-pages) */
.topic-highlights { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; margin: 22px 0 30px; }
.topic-highlights li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: #3c4854; line-height: 1.5; }
.topic-highlights .tick { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(255,107,26,0.12); color: var(--orange); font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.topic-highlights .tick svg { width: 12px; height: 12px; }
.topic-body p { color: #4a5764; margin-bottom: 18px; font-size: 15.5px; line-height: 1.8; }
.topic-body p:last-child { margin-bottom: 0; }
.topic-breadcrumb { font-size: 13px; color: #8a95a0; margin-bottom: 14px; }
.topic-breadcrumb a { color: var(--orange); }
.topic-breadcrumb span { margin: 0 6px; }
@media (max-width: 768px) { .topic-highlights { grid-template-columns: 1fr; } }

/* faq */
.faq-item { background: var(--white); border-radius: var(--radius-md); margin-bottom: 14px; box-shadow: var(--shadow-card); overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 20px 24px; font-weight: 600; font-size: 15.5px; color: var(--navy); display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 22px; color: var(--orange); transition: transform .3s ease; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 22px; color: #667583; font-size: 14.5px; line-height: 1.7; }

/* final CTA */
.final-cta { background: linear-gradient(160deg, var(--navy), #051220); padding: 100px 0; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; width: 500px; height: 500px; background: var(--orange); opacity: 0.15; filter: blur(120px); border-radius: 50%; top: -150px; left: 50%; transform: translateX(-50%); }
.final-cta h2 { color: var(--white); font-size: clamp(28px, 4vw, 42px); position: relative; }
.final-cta p { color: var(--muted); margin: 16px 0 34px; font-size: 16px; position: relative; }
.final-cta-btns { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; position: relative; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; margin-bottom: 50px; }
.contact-list { margin-top: 26px; display: flex; flex-direction: column; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.c-icon { flex-shrink: 0; margin-top: 2px; display: inline-flex; }
.contact-list strong { display: block; color: var(--navy); font-size: 14.5px; margin-bottom: 4px; }
.contact-list a { display: block; color: #556270; font-size: 14px; }
.contact-list .addr { color: #556270; font-size: 14px; display: block; max-width: 340px; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-card); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); height: 320px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* =========================================================
   8. FOOTER
========================================================= */
.site-footer { background: #051220; color: var(--muted); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 13.5px; margin: 16px 0 20px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; transition: background .2s ease; }
.footer-social a:hover { background: var(--orange); }
.footer-col h4 { font-family: var(--font-display); color: var(--white); font-size: 16px; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13.5px; transition: color .2s ease; }
.footer-col a:hover { color: var(--orange-2); }
.footer-contact li { font-size: 13.5px; margin-bottom: 4px; }
.footer-bottom { max-width: 1200px; margin-inline: auto; padding: 26px 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--orange-2); }

/* =========================================================
   9. FLOATING ELEMENTS
========================================================= */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,0.6); z-index: 90; animation: pulseWA 2.4s ease-in-out infinite;
}
@keyframes pulseWA { 0%, 100% { box-shadow: 0 12px 28px -8px rgba(37,211,102,0.6); } 50% { box-shadow: 0 12px 34px -4px rgba(37,211,102,0.85); } }

.mobile-sticky-cta { display: none; }

.back-to-top {
  position: fixed; bottom: 28px; right: 96px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white); font-size: 18px; z-index: 89;
  box-shadow: var(--shadow-card); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }

/* =========================================================
   10. RESPONSIVE
========================================================= */
@media (max-width: 1199px) {
  .steps-row, .services-grid, .why-grid, .global-grid, .nadi-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid.three { grid-template-columns: repeat(2, 1fr); }
  .chapters-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .guruji-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-img img, .guruji-img img { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Keep the hero as a clean two-column split (copy + booking card side by side)
   on tablets and small laptops too, instead of stacking too early. */
@media (max-width: 1199px) and (min-width: 901px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 36px; }
  .hero-right { min-height: 440px; max-width: 400px; }
  .booking-card { padding: 24px 22px 20px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 50px; }
  .hero-right { min-height: 500px; max-width: 480px; margin-inline: auto; }
}

@media (max-width: 1360px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-right .btn-sm { display: none; }
  .lang-switch { display: none; }
  .nav-divider { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 76px; }
  .announce-inner { padding-inline: 16px; }
  .announce-cta { display: none; }
  .header-inner { padding: 14px 16px; }
  .brand-text em { display: none; }
  .hero { min-height: auto; flex-direction: column; align-items: stretch; }
  .hero-mobile-guru { display: block; padding: 20px 18px 0; }
  .hero-inner { padding: 22px 18px 56px; gap: 34px; }
  .eyebrow { margin-bottom: 16px; }
  .hero-title { margin-bottom: 18px; }
  .hero-desc { font-size: 16.5px; line-height: 1.65; margin-bottom: 24px; }
  .trust-points { grid-template-columns: 1fr; gap: 14px; margin-bottom: 28px; }
  .trust-points li { font-size: 15.5px; gap: 12px; }
  .trust-points .tick { width: 22px; height: 22px; }
  .hero-ctas { flex-direction: column; align-self: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-right { min-height: auto; max-width: 100%; }
  .float-card { display: none; }
  .booking-card { margin-top: 6px; padding: 22px 20px 20px; }
  .booking-card-head p { font-size: 13.5px; }
  .field { margin-bottom: 16px; }
  .field label { font-size: 13.5px; }
  .field input, .field select, .field textarea { font-size: 16px; padding: 13px 14px; }
  .steps-row, .services-grid, .why-grid, .global-grid, .nadi-grid, .chapters-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .step-card { flex-direction: column; text-align: center; gap: 14px; padding: 24px 18px; }
  .step-icon { width: 110px; height: 110px; }
  .chapter-icon-photo { width: 90px; height: 90px; }
  .chapters-grid:has(.chapter-icon-photo) { grid-template-columns: 1fr; gap: 22px; }
  .chapter-card:has(.chapter-icon-photo) .chapter-icon-photo { width: 100%; height: auto; aspect-ratio: 4 / 3; }
  .about-img, .guruji-img { border-radius: 20px; }
  .about-img img, .guruji-img img { height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
  .guru-photo-card img { height: auto; aspect-ratio: auto; object-fit: contain; }
  /* The Guru photo already appears at the very top of the hero on mobile,
     so hide this second occurrence further down the page (keep the text). */
  .guru-intro-section .guru-photo-card { display: none; }
  .guru-intro-section .about-grid { grid-template-columns: 1fr; }
  .mobile-sticky-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
    background: var(--white); box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
    padding: 12px 10px calc(12px + env(safe-area-inset-bottom));
  }
  .mobile-sticky-cta a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; font-size: 11.5px; font-weight: 600; color: var(--navy); padding: 8px 4px; min-height: 44px; }
  .mobile-sticky-cta .msc-icon { font-size: 18px; }
  .mobile-sticky-cta .msc-icon svg { width: 20px; height: 20px; }
  .mobile-sticky-cta .msc-primary { background: var(--orange); color: var(--white); border-radius: 12px; }
  .whatsapp-float { display: none; }
  .back-to-top { bottom: 90px; right: 16px; }
  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .steps-row, .services-grid, .why-grid, .global-grid, .nadi-grid, .chapters-grid, .gallery-grid { grid-template-columns: 1fr; }
  .home-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: minmax(190px, 52vw); }
  .hg-big { grid-column: span 1; grid-row: span 1; }
  .contact-form-wrap { padding: 24px 20px; }
  .final-cta-btns { flex-direction: column; width: 100%; }
  .final-cta-btns .btn { width: 100%; }

  .announce-phone span { display: none; }
  .announce-phone::after { content: ''; }
  .hero-title { font-size: clamp(30px, 8.6vw, 40px); }
  .hero-desc { font-size: 16px; }
  .hero-mobile-guru { padding: 16px 16px 0; }
  .section { padding: 60px 0; }
  .booking-card { padding: 22px 18px 20px; }
  .gold-tag { font-size: 18px; }
}

/* Small phones (≤360px) */
@media (max-width: 360px) {
  .container { width: 94%; }
  .header-inner { padding: 12px 12px; }
  .brand-text strong { font-size: 15px; letter-spacing: 1px; }
  .hero-mobile-guru { padding: 14px 14px 0; }
  .hero-inner { padding: 20px 14px 50px; gap: 28px; }
  .hero-title { font-size: clamp(26px, 8.2vw, 36px); }
  .hero-desc { font-size: 15.5px; }
  .btn { padding: 13px 20px; font-size: 14px; }
  .btn-lg { padding: 14px 22px; font-size: 15px; }
  .section { padding: 52px 0; }
  .section-head.center { margin-bottom: 38px; }
  .gallery-tabs { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .gtab { padding: 8px 14px; font-size: 12.5px; }
  .contact-list li { flex-wrap: wrap; }
  .mobile-sticky-cta a { font-size: 10px; }
  body { padding-bottom: 68px; }
}

/* Landscape phones / short viewports */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; padding-block: 30px; flex-direction: row; }
  .hero-mobile-guru { display: none; }
  .hero-inner { grid-template-columns: 1.2fr 1fr; align-items: center; padding: 30px 24px; gap: 36px; }
  .hero-right { min-height: auto; max-width: 100%; }
  .float-card { display: none; }
  .booking-card { margin-top: 0; }
  .scroll-cue { display: none; }
  .mobile-sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* Very large screens */
@media (min-width: 1600px) {
  .container, .header-inner, .announce-inner { max-width: 1400px; }
  .hero-inner { max-width: 1400px; }
}

/* =========================================================
   MULTI-PAGE ADDITIONS
========================================================= */
/* Offset anchor jumps (cross-page links like services.html#how-it-works)
   so the sticky header never covers the target section/card. */
[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

/* Home page "Explore" quick-link tiles reuse .chapter-card styling
   but are anchor tags, so restore block layout + inherited colors. */
.quicklink-card { display: block; color: inherit; text-decoration: none; cursor: pointer; }
