/* ═══════════════════════════════════════════════════════════
   TIRUPATI BALAJI BOOKING — Premium Devotional Theme
   Palette: temple maroon · royal purple · Ananda gold · ivory
   Type: Cormorant Garamond (display) · Marcellus (accents) · Mukta (body)
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Deep devotional tones */
  --wine: #3A0A12;
  --maroon: #5A0F1E;
  --aubergine: #24123B;
  --purple: #3B1F5E;
  --purple-soft: #6E4E96;

  /* Gold */
  --gold: #C6A052;
  --gold-bright: #E9CE86;
  --gold-deep: #997733;
  --gold-grad: linear-gradient(135deg, #9A7B3A 0%, #E9CE86 42%, #C6A052 58%, #8A6A2E 100%);

  /* Light / neutrals */
  --ivory: #FBF5EA;
  --cream: #FDFBF6;
  --sand: #F4ECDD;
  --line: #E7DCC6;

  /* Text */
  --ink: #2A211C;
  --ink-soft: #5E534B;
  --ink-muted: #948A7E;
  --on-dark: #F6EFE2;
  --on-dark-soft: #C9BBA8;

  --whatsapp: #25D366;

  --shadow-sm: 0 4px 18px rgba(58, 10, 18, 0.07);
  --shadow-md: 0 12px 40px rgba(58, 10, 18, 0.12);
  --shadow-lg: 0 24px 70px rgba(36, 18, 59, 0.22);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-accent: 'Marcellus', Georgia, serif;
  --font-body: 'Mukta', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --dark-grad: linear-gradient(150deg, #24123B 0%, #3A0A12 100%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--cream);
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Consistent modern (lining) numerals everywhere digits appear */
  font-variant-numeric: lining-nums proportional-nums;
  -webkit-font-feature-settings: "lnum" 1;
  font-feature-settings: "lnum" 1;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

img, svg { max-width: 100%; display: block; }

/* ═══════════════ REUSABLE ORNAMENTS ═══════════════ */

.lotus {
  width: 46px;
  height: 30px;
  color: var(--gold);
  flex-shrink: 0;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 18px auto 0;
  max-width: 260px;
}

.divider .d-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.divider .d-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ═══════════════ INVOCATION BAR ═══════════════ */

.invocation {
  background: var(--wine);
  color: var(--gold-bright);
  text-align: center;
  padding: 8px 16px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 3px;
  position: relative;
  z-index: 1001;
}

.invocation span {
  opacity: 0.9;
}

/* ═══════════════ NAVBAR ═══════════════ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(36, 18, 59, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(198, 160, 82, 0.25);
  transition: box-shadow 0.3s;
}

.navbar.scrolled { box-shadow: 0 6px 30px rgba(0, 0, 0, 0.28); }

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo .logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  flex-shrink: 0;
}

.nav-logo .logo-mark svg {
  width: 26px;
  height: 26px;
  display: block;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.logo-main {
  font-family: var(--font-accent);
  color: var(--on-dark);
  font-size: 1.12rem;
  letter-spacing: 0.5px;
}

.logo-sub {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }

.nav-links a {
  color: var(--on-dark-soft);
  text-decoration: none;
  padding: 9px 15px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  border-radius: 6px;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 10px;
  padding: 9px 20px !important;
  border: 1px solid var(--gold);
  border-radius: 30px;
  color: var(--gold-bright) !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: rgba(198, 160, 82, 0.14); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ── Nav right cluster + language switch ── */

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(198, 160, 82, 0.45);
  border-radius: 30px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--on-dark-soft);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 6px 12px;
  cursor: pointer;
  line-height: 1.7;
  transition: color 0.25s, background 0.25s;
}

.lang-btn:not(:last-child) { border-right: 1px solid rgba(198, 160, 82, 0.22); }
.lang-btn:hover { color: var(--gold-bright); }
.lang-btn.active { background: var(--gold-grad); color: var(--wine); }

/* ═══════════════ HERO ═══════════════ */

.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 28px 100px;
  background: var(--aubergine);
  color: var(--on-dark);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 78% 66% at 50% 44%, rgba(36, 18, 59, 0.34) 0%, rgba(58, 10, 18, 0.68) 100%),
    linear-gradient(180deg, rgba(36, 18, 59, 0.55) 0%, rgba(36, 18, 59, 0.28) 42%, rgba(58, 10, 18, 0.35) 68%, var(--cream) 100%);
}

/* faint mandala glow behind hero content */
.hero-mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -55%);
  color: rgba(233, 206, 134, 0.12);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-flourish { color: var(--gold-bright); width: 60px; height: 40px; margin: 0 auto 18px; }

.hero-eyebrow {
  font-family: var(--font-accent);
  color: var(--gold-bright);
  font-size: 0.82rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.7rem, 6.5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  color: #fff;
}

.hero h1 em {
  font-style: italic;
  display: block;
  font-weight: 500;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--on-dark-soft);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 56px;
  justify-content: center;
  margin-top: 60px;
  padding-top: 34px;
  border-top: 1px solid rgba(233, 206, 134, 0.18);
}

.hero-stat-number {
  display: block;
  font-family: var(--font-accent);
  font-size: 2.3rem;
  font-weight: 400;
  color: var(--gold-bright);
  line-height: 1;
  letter-spacing: 0.5px;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--on-dark-soft);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

/* ═══════════════ BUTTONS ═══════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 34px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold-grad);
  color: var(--wine);
  box-shadow: 0 8px 26px rgba(198, 160, 82, 0.32);
}
.btn-gold:hover { box-shadow: 0 12px 34px rgba(198, 160, 82, 0.46); }

.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border: 1px solid rgba(246, 239, 226, 0.4);
}
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover { background: #20ba5a; box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4); }

.btn-whatsapp-sm {
  background: var(--whatsapp);
  color: #fff;
  padding: 11px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: transform 0.25s, background 0.25s;
}
.btn-whatsapp-sm:hover { background: #20ba5a; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 1px solid var(--purple-soft);
  padding: 11px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--purple); color: #fff; border-color: var(--purple); transform: translateY(-2px); }

.wa-icon { flex-shrink: 0; }

/* ═══════════════ SECTIONS & HEADERS ═══════════════ */

.section { padding: 110px 0; position: relative; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-eyebrow {
  font-family: var(--font-accent);
  color: var(--gold-deep);
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: 0.4px;
}

.section-title em { font-style: italic; color: var(--gold-deep); }

.section-subtitle {
  color: var(--ink-muted);
  max-width: 540px;
  margin: 22px auto 0;
  font-size: 1.02rem;
  font-weight: 300;
}

/* Emphasised subtitle — highlighted callout for the important packages message */
.section-subtitle-strong {
  display: inline-block;
  color: var(--wine);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.5;
  max-width: 720px;
  margin: 26px auto 0;
  padding: 18px 40px;
  background: linear-gradient(180deg, rgba(233, 206, 134, 0.24), rgba(233, 206, 134, 0.09));
  border: 1px solid rgba(198, 160, 82, 0.55);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.section-subtitle-strong::before,
.section-subtitle-strong::after {
  content: '✦';
  color: var(--gold);
  font-size: 0.7em;
  font-style: normal;
  vertical-align: middle;
  opacity: 0.85;
}
.section-subtitle-strong::before { margin-right: 14px; }
.section-subtitle-strong::after { margin-left: 14px; }
@media (max-width: 600px) {
  .section-subtitle-strong { font-size: 1.2rem; padding: 15px 24px; }
}

/* ═══════════════ SACRED SERVICES ═══════════════ */

.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 32px;
}

.service-card {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 50% 50% 8px 8px / 24% 24% 8px 8px;
  padding: 52px 26px 34px;
  text-align: center;
  margin-top: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* kalasha finial atop each arch */
.service-card::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: 0 0 0 3px var(--cream), 0 1px 0 5px rgba(198, 160, 82, 0.4);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.service-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, #fff, var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s, transform 0.35s;
}

.service-card:hover .service-icon {
  background: var(--purple);
  transform: scale(1.05);
}

.service-card:hover .service-icon svg [fill] { fill: var(--gold-bright); }

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.32rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
  font-weight: 300;
}

.service-price {
  display: inline-block;
  font-family: var(--font-accent);
  color: var(--gold-deep);
  font-size: 1.08rem;
  font-weight: 700;
  -webkit-text-stroke: 0.45px var(--gold-deep);
  letter-spacing: 0.5px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  width: 60%;
}

/* VIP feature banner */
.vip-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--dark-grad);
  border-radius: 10px;
  padding: 54px 56px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(198, 160, 82, 0.35);
}

.vip-feature::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(198, 160, 82, 0.28);
  border-radius: 6px;
  pointer-events: none;
}

.vip-corner {
  position: absolute;
  width: 58px;
  height: 58px;
  color: rgba(233, 206, 134, 0.5);
  z-index: 2;
}
.vip-corner.tl { top: 16px; left: 16px; }
.vip-corner.tr { top: 16px; right: 16px; transform: scaleX(-1); }
.vip-corner.bl { bottom: 16px; left: 16px; transform: scaleY(-1); }
.vip-corner.br { bottom: 16px; right: 16px; transform: scale(-1); }

.vip-text { position: relative; z-index: 3; }

.vip-tag {
  display: inline-block;
  font-family: var(--font-accent);
  color: var(--gold-bright);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(233, 206, 134, 0.4);
  border-radius: 30px;
  padding: 6px 16px;
  margin-bottom: 18px;
}

.vip-feature h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}

.vip-feature > .vip-text > p {
  color: var(--on-dark-soft);
  font-weight: 300;
  font-size: 1rem;
  margin-bottom: 24px;
  max-width: 480px;
}

.vip-includes {
  position: relative;
  z-index: 3;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.vip-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--on-dark);
  font-size: 0.9rem;
  font-weight: 300;
}

.vip-includes li::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-top: 8px;
  flex-shrink: 0;
  background: var(--gold-grad);
  transform: rotate(45deg);
}

.vip-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 22px 0 20px;
}
.vip-price {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold-bright);
  line-height: 1;
  letter-spacing: 0.5px;
  font-variant-numeric: lining-nums proportional-nums;
  font-feature-settings: "lnum" 1;
}
.vip-price-per { color: var(--on-dark-soft); font-size: 0.85rem; }

/* ═══════════════ PACKAGES ═══════════════ */

.packages { background: var(--ivory); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.package-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px 24px 30px;
  text-align: center;
  transition: transform 0.32s, box-shadow 0.32s, border-color 0.32s;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.package-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: var(--wine);
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  padding: 5px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.package-icon { color: var(--purple); width: 40px; height: 40px; margin: 0 auto 16px; }

.package-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.package-includes {
  color: var(--ink-muted);
  font-size: 0.82rem;
  margin-bottom: 22px;
  font-weight: 300;
}

.package-price {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 400;
  color: var(--purple);
  line-height: 1;
  letter-spacing: 0.5px;
  font-variant-numeric: lining-nums proportional-nums;
  font-feature-settings: "lnum" 1;
}

.package-per { color: var(--ink-muted); font-size: 0.8rem; margin-top: 4px; }

.package-card-dark { background: var(--dark-grad); border-color: rgba(198, 160, 82, 0.35); }
.package-card-dark .package-icon { color: var(--gold-bright); }
.package-card-dark h3 { color: #fff; }
.package-card-dark .package-includes { color: var(--on-dark-soft); }
.package-price-custom {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-bright);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.package-card-dark:hover { border-color: var(--gold-bright); }

/* ═══════════════ HOW IT WORKS ═══════════════ */

.how-it-works { background: var(--cream); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 20px);
  opacity: 0.6;
}

.step { text-align: center; padding: 0 14px; position: relative; }

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  transition: all 0.35s;
}

.step:hover .step-number {
  background: var(--purple);
  color: var(--gold-bright);
  border-color: var(--purple);
  transform: translateY(-4px);
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.step p { color: var(--ink-muted); font-size: 0.88rem; font-weight: 300; line-height: 1.6; }

/* ═══════════════ WHY CHOOSE US ═══════════════ */

.why-us {
  background: var(--dark-grad);
  color: var(--on-dark);
  overflow: hidden;
}

.why-mandala {
  position: absolute;
  top: 50%;
  right: -180px;
  width: 560px;
  height: 560px;
  transform: translateY(-50%);
  color: rgba(233, 206, 134, 0.07);
  pointer-events: none;
}

.why-us .section-eyebrow { color: var(--gold-bright); }
.why-us .section-title { color: #fff; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.trust-card {
  text-align: center;
  padding: 40px 22px;
  border-radius: 8px;
  border: 1px solid rgba(233, 206, 134, 0.16);
  background: rgba(255, 255, 255, 0.035);
  transition: all 0.35s;
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(233, 206, 134, 0.45);
  transform: translateY(-6px);
}

.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid rgba(233, 206, 134, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
}

.trust-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--gold-bright);
  margin-bottom: 10px;
}

.trust-card p { font-size: 0.87rem; color: var(--on-dark-soft); font-weight: 300; line-height: 1.6; }

/* ═══════════════ ABOUT ═══════════════ */

.about { background: var(--ivory); }

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-text .section-header { text-align: left; margin-bottom: 28px; }
.about-text .divider { margin-left: 0; }
.about-text .divider .d-line:last-child { display: none; }

.about-text p {
  margin-bottom: 18px;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.02rem;
}

.about-text strong { color: var(--maroon); font-weight: 600; }

.about-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-deep);
  margin-top: 8px;
}

.info-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 28px 30px;
  margin-bottom: 18px;
}

.info-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--maroon);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card p { color: var(--ink-soft); font-size: 0.92rem; font-weight: 300; line-height: 1.7; }

/* ═══════════════ CONTACT ═══════════════ */

.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 760px;
  margin: 0 auto;
}

.contact-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 44px 32px;
  text-align: center;
  transition: transform 0.32s, box-shadow 0.32s;
}

.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.contact-avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--dark-grad);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-bright);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.founder-label {
  font-family: var(--font-accent);
  color: var(--gold-deep);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contact-card .btn-outline,
.contact-card .btn-whatsapp-sm { display: flex; width: 100%; margin-bottom: 10px; }

/* ── Visit Us (address + map) ── */

.visit-us {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 900px;
  margin: 44px auto 0;
}

.visit-info {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--maroon);
  margin-bottom: 12px;
}

.visit-addr {
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 26px;
}

.visit-directions { align-self: flex-start; }
.visit-directions .dir-icon { flex-shrink: 0; }

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-md);
  background: var(--dark-grad);
}

.map-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.map-loader .m-ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(233, 206, 134, 0.2);
  border-top-color: var(--gold-bright);
  animation: pl-spin 1s linear infinite;
}

.map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.map-frame.loaded { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .map-loader .m-ring { animation: none; }
  .map-frame { transition: none; }
}

/* ═══════════════ FOOTER ═══════════════ */

.footer {
  background: var(--wine);
  color: var(--on-dark-soft);
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
}

.footer-top-border {
  height: 4px;
  background: var(--gold-grad);
}

.footer-lotus { color: var(--gold); width: 44px; height: 28px; margin: 0 auto 18px; }

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--gold-bright);
  margin-bottom: 6px;
}

.footer-mantra {
  font-family: var(--font-accent);
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.footer p { font-size: 0.88rem; margin-bottom: 6px; font-weight: 300; }

.footer a { color: var(--gold-bright); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

.footer-divider {
  width: 60%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,160,82,0.4), transparent);
  margin: 24px auto;
}

.footer-map-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  letter-spacing: 1px;
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 206, 134, 0.35);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.footer-map-link:hover { color: #fff; border-color: var(--gold-bright); text-decoration: none; }

.footer-copy { font-size: 0.76rem; opacity: 0.7; }

/* ═══════════════ MOBILE WHATSAPP STICKY ═══════════════ */

.mobile-wa-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
  z-index: 999;
  align-items: center;
  gap: 9px;
  transition: transform 0.2s;
}
.mobile-wa-cta:hover { transform: scale(1.05); }

/* ═══════════════ SCROLL REVEAL ═══════════════ */

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js .reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════════ RESPONSIVE ═══════════════ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before { display: none; }
  .vip-feature { grid-template-columns: 1fr; gap: 28px; padding: 44px 40px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--aubergine);
    flex-direction: column;
    padding: 18px 24px 24px;
    gap: 2px;
    border-bottom: 3px solid var(--gold);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; font-size: 1rem; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 8px 16px 0; text-align: center; }

  .hero { min-height: auto; padding: 70px 24px 80px; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .hero-stat-number { font-size: 1.9rem; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }

  .about-content { grid-template-columns: 1fr; gap: 36px; }
  .about-text .section-header { text-align: center; }
  .about-text .divider { margin-left: auto; }
  .about-text .divider .d-line:last-child { display: block; }

  .contact-grid { grid-template-columns: 1fr; }
  .visit-us { grid-template-columns: 1fr; gap: 20px; }
  .visit-directions { align-self: stretch; justify-content: center; }
  .vip-includes { grid-template-columns: 1fr; }

  .mobile-wa-cta { display: flex; }
  .footer { padding-bottom: 90px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 300px; }

  .invocation { font-size: 0.75rem; letter-spacing: 2px; }
  .logo-sub { display: none; }
  .vip-feature { padding: 40px 24px; }
  .vip-price-row { flex-direction: column; align-items: flex-start; gap: 4px; }
}
