/* ============================================
   DakshinAstro — Home Page Styles
   ============================================ */

:root {
  --bg: #050510;
  --bg-elevated: #0c0c1a;
  --bg-card: linear-gradient(160deg, #1a1030 0%, #0d0a18 55%, #0a0814 100%);
  --bg-panel: linear-gradient(145deg, rgba(30, 18, 55, 0.85), rgba(10, 8, 22, 0.95));
  --gold: #d4af37;
  --gold-bright: #ffb800;
  --gold-soft: #e8c96a;
  --gold-dim: rgba(212, 175, 55, 0.15);
  --text: #f5f2eb;
  --text-muted: #a8a4b8;
  --border: rgba(212, 175, 55, 0.22);
  --purple-glow: rgba(88, 40, 140, 0.35);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --container: 1180px;
  --header-h: 80px;
  --radius: 14px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.text-gold {
  color: var(--gold-bright);
  background: linear-gradient(120deg, var(--gold-bright), var(--gold-soft), #ff8a3d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----- Stars background ----- */
.stars-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1.5px 1.5px at 20px 30px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 80px 120px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 160px 80px, rgba(255, 220, 150, 0.6), transparent),
    radial-gradient(1px 1px at 280px 200px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 400px 60px, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 520px 180px, rgba(255, 200, 100, 0.45), transparent),
    radial-gradient(2px 2px at 640px 100px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 760px 250px, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 900px 40px, rgba(255, 220, 150, 0.5), transparent),
    radial-gradient(1px 1px at 1050px 160px, rgba(255, 255, 255, 0.4), transparent);
  background-size: 1100px 300px;
  animation: starsDrift 80s linear infinite;
  opacity: 0.55;
}

@keyframes starsDrift {
  from { background-position: 0 0; }
  to { background-position: 1100px 300px; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn--gold {
  background: linear-gradient(135deg, #ffb800 0%, #d4af37 50%, #c9952a 100%);
  color: #1a1200;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.35);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 184, 0, 0.45);
}

.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: var(--text);
  padding: 9px 22px;
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn--outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold-soft);
  padding: 14px 28px;
  background: transparent;
}

.btn--outline-gold:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.2);
}

.btn .arrow {
  transition: transform var(--transition);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.22);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header.scrolled {
  background: #ffffff;
  backdrop-filter: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo__img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.logo--footer {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px 8px 10px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.22);
}

.logo--footer .logo__img {
  height: 56px;
  max-width: 260px;
  margin-bottom: 0;
}

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

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a3f55;
  transition: color var(--transition);
  border-radius: 6px;
}

.nav__link:hover,
.nav__link.active {
  color: #9a6b00;
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  padding: 10px;
  background: #fffaf3;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: #4a3f55;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav__dropdown-menu a:hover {
  background: rgba(212, 175, 55, 0.18);
  color: #9a6b00;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__actions .btn--outline {
  border-color: rgba(74, 63, 85, 0.35);
  color: #2a2035;
}

.header__actions .btn--outline:hover {
  border-color: #9a6b00;
  color: #9a6b00;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #2a2035;
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----- Hero (banner: content left · wheel right) ----- */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 42px) 0 46px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #06051a;
}

.hero__space {
  position: absolute;
  inset: 0;
  background: url("../assets/hero-space-bg.png") center / cover no-repeat;
  transform: scale(1.04);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 48%, rgba(87, 39, 143, 0.12), transparent 36%),
    linear-gradient(90deg, rgba(5, 4, 22, 0.96) 0%, rgba(6, 5, 26, 0.82) 36%, rgba(6, 5, 26, 0.26) 72%, rgba(6, 5, 26, 0.42) 100%),
    linear-gradient(180deg, rgba(6, 5, 26, 0.15) 0%, transparent 40%, rgba(6, 5, 26, 0.72) 100%);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 184, 0, 0.35);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 184, 0, 0.08);
  backdrop-filter: blur(8px);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  min-height: 620px;
  padding-bottom: 0;
}

.hero__copy {
  text-align: left;
  max-width: 590px;
  padding-bottom: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 4.7vw, 4.25rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--text);
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: rgba(245, 242, 235, 0.82);
  max-width: 560px;
  margin: 0 0 30px;
  font-weight: 300;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.hero__ctas .btn {
  gap: 10px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}

.hero__chips a {
  padding: 7px 13px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(7, 6, 22, 0.52);
  backdrop-filter: blur(8px);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.hero__chips a:hover {
  color: var(--gold-bright);
  border-color: rgba(255, 184, 0, 0.5);
  background: rgba(255, 184, 0, 0.08);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 28px;
}

.hero__stats div {
  display: flex;
  flex-direction: column;
}

.hero__stats strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}

.hero__stats span {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.74rem;
}

.hero__social-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 10px;
  background: rgba(8, 8, 22, 0.55);
  border: 1px solid rgba(255, 184, 0, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #0a0818;
  object-fit: cover;
  margin-left: -10px;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.hero__rating {
  text-align: left;
  font-size: 0.85rem;
}

.hero__rating .stars {
  color: var(--gold-bright);
  letter-spacing: 1px;
  font-size: 0.85rem;
  line-height: 1.2;
}

.hero__rating span {
  color: rgba(245, 242, 235, 0.75);
  font-size: 0.82rem;
}

/* Right visual */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 590px;
  overflow: visible;
  width: 100%;
  max-width: 100%;
}

.hero__orbit-system {
  position: relative;
  width: min(520px, 100%);
  margin: 0 auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero__wheel-wrap {
  position: relative;
  width: 82%;
  aspect-ratio: 1;
  z-index: 2;
  overflow: hidden;
  border: 2px solid rgba(255, 201, 84, 0.52);
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(212, 175, 55, 0.055),
    0 0 0 11px rgba(212, 175, 55, 0.12),
    0 0 50px rgba(255, 184, 0, 0.26);
}

.hero__wheel-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(1.06) contrast(1.02);
}

.hero__float-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  background: rgba(8, 7, 22, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  animation: floatPlanet 7s ease-in-out infinite;
}

.hero__float-card span {
  font-size: 1.1rem;
  line-height: 1;
}

.hero__float-card strong {
  display: block;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
}

.hero__float-card small {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.hero__float-card--award {
  top: 4%;
  left: 0;
}

.hero__float-card--centres {
  right: 0;
  bottom: 8%;
  animation-delay: 1.2s;
}

.hero__wheel-glow {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.45) 0%, rgba(255, 140, 40, 0.18) 40%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  animation: heroGlowPulse 5s ease-in-out infinite;
}

/* Circular planet orbits */
.hero__orbit {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero__orbit-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
}

.hero__orbit-planet {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 18px rgba(255, 184, 0, 0.28),
    0 8px 22px rgba(0, 0, 0, 0.45);
}

.hero__orbit-planet--saturn {
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  filter: drop-shadow(0 0 16px rgba(180, 120, 255, 0.45));
}

.hero__orbit--earth .hero__orbit-body {
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  animation: orbitPathEarth 30s linear infinite;
}

.hero__orbit--mars .hero__orbit-body {
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  animation: orbitPathMars 24s linear infinite;
}

.hero__orbit--saturn .hero__orbit-body {
  width: 76px;
  height: 62px;
  margin: -31px 0 0 -38px;
  animation: orbitPathSaturn 38s linear infinite;
}

.hero__orbit--jupiter .hero__orbit-body {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  animation: orbitPathJupiter 34s linear infinite;
}

.hero__orbit--venus .hero__orbit-body {
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  animation: orbitPathVenus 28s linear infinite;
}

@keyframes orbitPathEarth {
  from { transform: rotate(120deg) translateY(-192px) rotate(-120deg); }
  to { transform: rotate(480deg) translateY(-192px) rotate(-480deg); }
}

@keyframes orbitPathMars {
  from { transform: rotate(0deg) translateY(-205px) rotate(0deg); }
  to { transform: rotate(360deg) translateY(-205px) rotate(-360deg); }
}

@keyframes orbitPathSaturn {
  from { transform: rotate(0deg) translateY(-218px) rotate(0deg); }
  to { transform: rotate(-360deg) translateY(-218px) rotate(360deg); }
}

@keyframes orbitPathJupiter {
  from { transform: rotate(210deg) translateY(-200px) rotate(-210deg); }
  to { transform: rotate(-150deg) translateY(-200px) rotate(150deg); }
}

@keyframes orbitPathVenus {
  from { transform: rotate(60deg) translateY(-185px) rotate(-60deg); }
  to { transform: rotate(420deg) translateY(-185px) rotate(-420deg); }
}

@keyframes heroPlanetFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.72; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.03); }
}

@keyframes orbitPathEarthMd {
  from { transform: rotate(120deg) translateY(-158px) rotate(-120deg); }
  to { transform: rotate(480deg) translateY(-158px) rotate(-480deg); }
}

@keyframes orbitPathMarsMd {
  from { transform: rotate(0deg) translateY(-168px) rotate(0deg); }
  to { transform: rotate(360deg) translateY(-168px) rotate(-360deg); }
}

@keyframes orbitPathSaturnMd {
  from { transform: rotate(0deg) translateY(-178px) rotate(0deg); }
  to { transform: rotate(-360deg) translateY(-178px) rotate(360deg); }
}

@keyframes orbitPathJupiterMd {
  from { transform: rotate(210deg) translateY(-164px) rotate(-210deg); }
  to { transform: rotate(-150deg) translateY(-164px) rotate(150deg); }
}

@keyframes orbitPathVenusMd {
  from { transform: rotate(60deg) translateY(-152px) rotate(-60deg); }
  to { transform: rotate(420deg) translateY(-152px) rotate(-420deg); }
}

@keyframes orbitPathEarthSm {
  from { transform: rotate(120deg) translateY(-120px) rotate(-120deg); }
  to { transform: rotate(480deg) translateY(-120px) rotate(-480deg); }
}

@keyframes orbitPathMarsSm {
  from { transform: rotate(0deg) translateY(-128px) rotate(0deg); }
  to { transform: rotate(360deg) translateY(-128px) rotate(-360deg); }
}

@keyframes orbitPathSaturnSm {
  from { transform: rotate(0deg) translateY(-136px) rotate(0deg); }
  to { transform: rotate(-360deg) translateY(-136px) rotate(360deg); }
}

@keyframes orbitPathJupiterSm {
  from { transform: rotate(210deg) translateY(-125px) rotate(-210deg); }
  to { transform: rotate(-150deg) translateY(-125px) rotate(150deg); }
}

@keyframes orbitPathVenusSm {
  from { transform: rotate(60deg) translateY(-116px) rotate(-60deg); }
  to { transform: rotate(420deg) translateY(-116px) rotate(-420deg); }
}

@keyframes floatPlanet {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ----- Stats ----- */
.stats {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(12, 10, 28, 0.95), rgba(18, 12, 40, 0.9));
  border-block: 1px solid var(--border);
  padding: 36px 0;
}

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

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.stat__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border);
}

.stat__icon svg {
  width: 28px;
  height: 28px;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1.2;
}

.stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ----- Sections common ----- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.section-sub {
  max-width: 520px;
  margin: 12px auto 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

.section-ornament {
  width: 80px;
  height: 3px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}

.section-ornament::before,
.section-ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.section-ornament::before { left: -4px; }
.section-ornament::after { right: -4px; }

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ----- Expert Portraits ----- */
.experts {
  background:
    radial-gradient(ellipse 55% 50% at 50% 40%, rgba(88, 40, 140, 0.22), transparent),
    linear-gradient(180deg, rgba(12, 10, 28, 0.95), rgba(8, 6, 20, 0.98));
  padding: 56px 0 48px;
  border-block: 1px solid var(--border);
}

.experts__inner {
  display: flex;
  justify-content: center;
}

.experts__portraits {
  position: relative;
  width: min(100%, 920px);
  height: clamp(290px, 46vw, 420px);
  overflow: visible;
}

.experts__oval {
  --oval-w: clamp(150px, 24vw, 230px);
  --oval-h: clamp(210px, 34vw, 330px);
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--oval-w);
  height: var(--oval-h);
  margin: 0;
  border-radius: 50% / 42%;
  overflow: hidden;
  background: rgba(20, 14, 36, 0.9);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), 0 0 24px rgba(88, 40, 140, 0.15);
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition:
    border-color 0.5s ease,
    border-width 0.5s ease,
    box-shadow 0.5s ease,
    opacity 0.5s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.experts__oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  pointer-events: none;
}

/* Front (center) portrait — gold glow only; size comes from orbit scale */
.experts__oval.is-front {
  border: 3px solid #d4af37;
  box-shadow:
    0 0 0 4px rgba(212, 175, 55, 0.18),
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 36px rgba(255, 184, 0, 0.2);
}

.experts__oval[data-slot="back"] {
  opacity: 0.88;
}

@media (max-width: 640px) {
  .experts {
    padding: 36px 0 32px;
  }

  .experts__portraits {
    height: clamp(230px, 58vw, 300px);
  }

  .experts__oval {
    --oval-w: 32vw;
    --oval-h: 44vw;
    min-width: 110px;
    min-height: 150px;
    max-width: 150px;
    max-height: 210px;
  }

  .experts__oval.is-front {
    border-width: 2px;
  }
}

/* ----- Services ----- */
.services {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(60, 20, 100, 0.2), transparent);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(88, 40, 140, 0.2);
}

.service-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 40, 140, 0.45), rgba(20, 10, 40, 0.8));
  border: 1px solid var(--border);
  color: var(--gold-bright);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover .service-card__icon {
  transform: scale(1.08);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.25);
}

.service-card__icon svg {
  width: 36px;
  height: 36px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.services__controls {
  display: none;
}

/* ----- Why Choose ----- */
.why {
  background:
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(88, 40, 140, 0.18), transparent);
  overflow: hidden;
}

.why__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.why__visual {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 480px;
  overflow: visible;
  width: 100%;
  max-width: 100%;
}

.why__orb {
  position: relative;
  display: grid;
  place-items: center;
  width: min(440px, 92vw);
  aspect-ratio: 1;
  animation: floatPlanet 7s ease-in-out infinite;
}

.why__mandala {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 184, 0, 0.14) 0%, transparent 55%),
    repeating-conic-gradient(from 0deg, rgba(212, 175, 55, 0.14) 0deg 8deg, transparent 8deg 30deg);
  animation: mandalaSpin 60s linear infinite;
  border: 1px solid rgba(212, 175, 55, 0.25);
  will-change: transform;
}

.why__mandala::before {
  content: "";
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.3);
}

.why__mandala::after {
  content: "";
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: radial-gradient(circle, rgba(180, 60, 40, 0.25), transparent 70%);
}

@keyframes mandalaSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.why__silhouette {
  position: relative;
  z-index: 2;
  width: 220px;
  animation: floatPlanet 7s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
}

.why__photo {
  position: relative;
  z-index: 2;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 184, 0, 0.65);
  box-shadow:
    0 0 0 14px rgba(212, 175, 55, 0.1),
    0 0 0 28px rgba(212, 175, 55, 0.05),
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(255, 184, 0, 0.28);
}

.why__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.why__caption {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold, #d4af37);
  text-align: center;
  text-shadow: 0 0 24px rgba(255, 184, 0, 0.35);
}

.why__caption::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
}

.why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}

.why__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why__feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
}

.why__feature-icon svg {
  width: 22px;
  height: 22px;
}

.why__feature h4 {
  font-size: 0.95rem;
  font-weight: 560;
  margin-bottom: 4px;
  color: var(--text);
}

.why__feature p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ----- Solutions: What Are You Looking For? ----- */
.solutions {
  background: linear-gradient(180deg, transparent, rgba(26, 14, 48, 0.45), transparent);
}

.solutions__eyebrow {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 24px rgba(212, 175, 55, 0.12);
}

.solution-card__img {
  /* Matches the 1024x683 source images so nothing gets cropped */
  aspect-ratio: 3 / 2;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0d0721;
  border-bottom: 1px solid var(--border);
}

.solution-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 20px 22px;
}

.solution-card__kicker {
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 8px;
}

.solution-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 8px;
}

.solution-card__tags {
  font-size: 0.74rem;
  color: var(--gold-soft);
  margin-bottom: 10px;
  line-height: 1.5;
}

.solution-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.solution-card__desc strong {
  color: var(--text);
  font-weight: 560;
}

.solutions__controls {
  display: none;
}

@media (max-width: 900px) {
  .solutions__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .solutions__slider {
    position: relative;
  }

  .solutions__grid {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 4px 8px;
    margin-inline: -4px;
  }

  .solutions__grid::-webkit-scrollbar {
    display: none;
  }

  .solutions__grid .solution-card {
    flex: 0 0 min(86%, 320px);
    scroll-snap-align: center;
  }

  .solutions .solution-card.reveal {
    opacity: 1;
    transform: none;
  }

  .solutions__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
  }
}

/* ----- Steps ----- */
.steps {
  background: linear-gradient(180deg, transparent, rgba(20, 12, 40, 0.4), transparent);
}

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

.steps__line {
  position: absolute;
  top: 52px;
  left: 8%;
  right: 8%;
  height: 0;
  border-top: 2px dashed rgba(212, 175, 55, 0.35);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.step__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  opacity: 0.7;
}

.step__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.08), 0 0 30px rgba(212, 175, 55, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step:hover .step__icon {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.15), 0 0 40px rgba(212, 175, 55, 0.3);
}

.step__icon svg {
  width: 32px;
  height: 32px;
}

.step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ----- Dual panels ----- */
.dual__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 36px 36px;
  text-align: center;
  box-shadow: 0 0 40px rgba(88, 40, 140, 0.12);
  width: 100%;
}

.panel__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.panel__ornament {
  width: 50px;
  height: 2px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.row-sliders {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.row-slider {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}

.row-slider__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.row-slider__track::-webkit-scrollbar {
  display: none;
}

.row-slider__nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  background: rgba(12, 12, 26, 0.65);
  transition: all var(--transition);
  flex-shrink: 0;
}

.row-slider__nav:hover {
  background: var(--gold);
  color: #1a1200;
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.3);
}

.category,
.zodiac-sign {
  flex: 0 0 148px;
  min-width: 148px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(160deg, rgba(30, 18, 55, 0.7), rgba(8, 6, 20, 0.85));
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.category:hover,
.zodiac-sign:hover {
  border-color: rgba(255, 184, 0, 0.65);
  background: linear-gradient(160deg, rgba(50, 28, 80, 0.85), rgba(12, 8, 28, 0.95));
  color: var(--gold-soft);
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4), 0 0 28px rgba(255, 184, 0, 0.2);
}

.category:hover .category__icon,
.zodiac-sign:hover .zodiac-sign__badge {
  transform: scale(1.1);
  box-shadow: 0 0 28px rgba(255, 184, 0, 0.45);
}

.category__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 184, 0, 0.25), rgba(40, 20, 80, 0.6));
  border: 1.5px solid rgba(255, 184, 0, 0.45);
  box-shadow: 0 0 20px rgba(255, 184, 0, 0.22), inset 0 0 16px rgba(255, 184, 0, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.category__icon svg {
  width: 52px;
  height: 52px;
}

.zodiac-sign__badge {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #6b35a8 0%, #3d1a70 55%, #2a1050 100%);
  border: 1.5px solid rgba(255, 184, 0, 0.5);
  box-shadow: 0 0 22px rgba(255, 184, 0, 0.2), inset 0 0 18px rgba(255, 184, 0, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.zodiac-sign__badge svg {
  width: 44px;
  height: 44px;
}

.zodiac-sign__symbol {
  font-size: 1.8rem;
  color: #ffb800;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 184, 0, 0.5);
}

/* ----- Astrologers (content left · animated image right) ----- */
.astrologers {
  background:
    radial-gradient(ellipse 55% 50% at 80% 50%, rgba(88, 40, 140, 0.28), transparent),
    radial-gradient(ellipse 40% 40% at 10% 30%, rgba(212, 175, 55, 0.1), transparent);
}

.astro-featured {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 44px 48px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(30, 18, 55, 0.92), rgba(8, 8, 20, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(88, 40, 140, 0.18);
  overflow: hidden;
  position: relative;
}

.astro-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 85% 50%, rgba(255, 184, 0, 0.06), transparent 60%);
  pointer-events: none;
}

.astro-slide__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.astro-slide__orbit {
  position: absolute;
  width: min(380px, 88vw);
  height: min(380px, 88vw);
  border-radius: 50%;
  border: 1px solid rgba(255, 184, 0, 0.18);
  animation: mandalaSpin 50s linear infinite reverse;
}

.astro-slide__orbit::before,
.astro-slide__orbit::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(255, 184, 0, 0.8);
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.astro-slide__orbit::after {
  left: auto;
  right: 0;
  transform: translate(50%, -50%);
  width: 7px;
  height: 7px;
  background: #ff8a3d;
}

.astro-slide__ring {
  position: absolute;
  width: min(340px, 80vw);
  height: min(340px, 80vw);
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.4);
  animation: mandalaSpin 32s linear infinite;
}

.astro-slide__ring::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.astro-slide__glow {
  position: absolute;
  width: min(300px, 72vw);
  height: min(300px, 72vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.35), rgba(120, 40, 160, 0.15) 45%, transparent 70%);
  animation: floatPlanet 5.5s ease-in-out infinite;
  filter: blur(2px);
}

.astro-slide__sparkles {
  position: absolute;
  inset: 10%;
  z-index: 3;
  pointer-events: none;
}

.astro-slide__sparkles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ffe566;
  border-radius: 50%;
  box-shadow: 0 0 10px #ffb800;
  animation: sparklePulse 2.8s ease-in-out infinite;
}

.astro-slide__sparkles span:nth-child(1) { top: 8%; left: 18%; animation-delay: 0s; }
.astro-slide__sparkles span:nth-child(2) { top: 20%; right: 12%; animation-delay: 0.6s; width: 4px; height: 4px; }
.astro-slide__sparkles span:nth-child(3) { bottom: 22%; left: 8%; animation-delay: 1.1s; width: 5px; height: 5px; }
.astro-slide__sparkles span:nth-child(4) { bottom: 12%; right: 20%; animation-delay: 1.7s; }

@keyframes sparklePulse {
  0%, 100% { opacity: 0.25; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.3); }
}

.astro-slide__photo {
  position: relative;
  z-index: 2;
  /* Never wider than its column, so the frame is never clipped */
  width: min(480px, 100%, 86vw);
  /* Matches the 1600x1066 founder photo so it isn't cropped */
  aspect-ratio: 3 / 2;
  background: #000;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(255, 184, 0, 0.6);
  box-shadow:
    0 0 0 12px rgba(212, 175, 55, 0.08),
    0 24px 55px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(255, 184, 0, 0.28);
  animation: floatPlanet 7s ease-in-out infinite;
}

.astro-slide__photo img {
  width: 100%;
  height: 100%;
  /* Full photo always visible — photo's black background blends with the frame */
  object-fit: contain;
  display: block;
}

.astro-slide__badge {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1a1200;
  background: linear-gradient(135deg, #ffb800, #d4af37);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.45);
  white-space: nowrap;
  animation: badgeFloat 3.5s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

.astro-slide__content {
  text-align: left;
  position: relative;
  z-index: 1;
}

.astro-slide__label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
}

.astro-slide__content h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 16px;
  color: var(--text);
}

.astro-slide__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-bottom: 20px;
}

.astro-slide__exp {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-bright);
}

.astro-slide__rating {
  color: var(--gold-bright);
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.astro-slide__rating em {
  font-style: normal;
  color: var(--text-muted);
  margin-left: 6px;
  letter-spacing: 0;
}

.astro-slide__bio {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 520px;
}

.astro-slide__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.astro-slide__tags span {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.1);
  transition: all var(--transition);
}

.astro-slide__tags span:hover {
  background: rgba(255, 184, 0, 0.2);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.astro-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ----- Testimonials ----- */
.testimonials__wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonials__track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
  flex: 1;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.8;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  object-fit: cover;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}

.testimonial-card__author .stars {
  color: var(--gold-bright);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.testimonials__nav {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  transition: all var(--transition);
  background: rgba(12, 12, 26, 0.6);
}

.testimonials__nav:hover {
  background: var(--gold);
  color: #1a1200;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
}

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

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.blog-card__img {
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.06);
}

.blog-card__body {
  padding: 22px 20px 24px;
  overflow: hidden;
}

.blog-card__body time {
  font-size: 0.75rem;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.blog-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 16px;
  color: var(--text);
}

.blog-card__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-soft);
}

.blog-card__link span {
  display: inline-block;
  transition: transform var(--transition);
}

.blog-card__link:hover span {
  transform: translateX(4px);
}

/* ----- Awards & Media Recognition ----- */
.awards {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(88, 40, 140, 0.25), transparent),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(212, 175, 55, 0.08), transparent);
}

.awards .section-sub {
  font-size: 1.05rem;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
}

.awards__wrap {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 16px;
}

.awards__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 2px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.awards__track::-webkit-scrollbar {
  display: none;
}

.awards__card {
  --awards-gap: 20px;
  flex: 0 0 calc((100% - (2 * var(--awards-gap))) / 3);
  width: calc((100% - (2 * var(--awards-gap))) / 3);
  min-width: 0;
  max-width: none;
  height: auto;
  aspect-ratio: 1 / 1;
  scroll-snap-align: start;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: #0c0a1a;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.awards__card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 184, 0, 0.55);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5), 0 0 28px rgba(255, 184, 0, 0.16);
}

.awards__card img {
  width: 100%;
  height: 100%;
  /* contain keeps full photo visible (mixed portrait/landscape sources) */
  object-fit: contain;
  object-position: center;
  display: block;
  background: #0d0721;
  transition: transform 0.7s ease;
}

.awards__card:hover img {
  transform: scale(1.03);
}

.awards__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 1.7rem;
  display: grid;
  place-items: center;
  background: rgba(12, 12, 26, 0.7);
  transition: all var(--transition);
  flex-shrink: 0;
}

.awards__nav:hover {
  background: var(--gold);
  color: #1a1200;
  box-shadow: 0 0 24px rgba(255, 184, 0, 0.35);
}

.awards__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.awards__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition);
}

.awards__dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(255, 184, 0, 0.45);
}

/* ----- Book Appointment ----- */
.appointment {
  background:
    radial-gradient(ellipse 50% 50% at 15% 40%, rgba(88, 40, 140, 0.22), transparent),
    radial-gradient(ellipse 40% 40% at 90% 70%, rgba(212, 175, 55, 0.08), transparent);
}

.appointment__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.appointment__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.appointment__eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.appointment__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.appointment__lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 480px;
}

.appointment__points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.appointment__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.appointment__points svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold-bright);
  margin-top: 1px;
}

.appointment__card {
  padding: 28px 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: linear-gradient(160deg, rgba(30, 20, 52, 0.98), rgba(10, 8, 22, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(88, 40, 140, 0.15);
}

.appointment__card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.appointment__card-head img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 16px rgba(255, 184, 0, 0.25);
}

.appointment__card-head h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.appointment__card-head p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.appointment__form .field {
  margin-bottom: 14px;
}

.appointment__meet {
  border: none;
  margin: 6px 0 18px;
  padding: 0;
}

.appointment__meet legend {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.appointment__meet-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.meet-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  border-radius: 12px;
  border: 1.5px solid rgba(212, 175, 55, 0.22);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.meet-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.meet-option svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.meet-option.is-selected,
.meet-option:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-soft);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.15);
}

.appointment__submit {
  width: 100%;
  margin-top: 4px;
}

.appointment__note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.appointment__safe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--gold-soft);
}

.appointment__safe svg {
  width: 16px;
  height: 16px;
}

.appointment__success {
  text-align: center;
  padding: 28px 12px 12px;
}

.appointment__success-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb800, #d4af37);
  color: #1a1200;
  font-size: 1.5rem;
  font-weight: 700;
}

.appointment__success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.appointment__success p {
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .appointment__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .appointment__meet-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .appointment__card {
    padding: 22px 18px 18px;
  }
}

/* ----- FAQ ----- */
.faq {
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(88, 40, 140, 0.2), transparent);
}

.faq__inner {
  max-width: 820px;
}

.faq__eyebrow {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: linear-gradient(145deg, rgba(28, 18, 48, 0.95), rgba(10, 8, 22, 0.98));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq__item:hover,
.faq__item.is-open {
  border-color: rgba(255, 184, 0, 0.45);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35), 0 0 24px rgba(212, 175, 55, 0.1);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 560;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
}

.faq__question span {
  flex: 1;
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold-bright);
  transition: transform var(--transition);
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-height: 0;
  opacity: 0;
  transition: padding 0.35s ease, max-height 0.35s ease, opacity 0.3s ease;
}

.faq__item.is-open .faq__answer > p {
  padding: 0 22px 20px;
  max-height: 240px;
  opacity: 1;
}

@media (max-width: 640px) {
  .faq__question {
    padding: 16px 16px;
    font-size: 0.92rem;
  }

  .faq__item.is-open .faq__answer > p {
    padding: 0 16px 16px;
  }
}

/* ----- CTA Banner ----- */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(88, 40, 140, 0.45) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(180, 60, 40, 0.2), transparent),
    linear-gradient(180deg, #0a0618, #120828 50%, #0a0618);
  border-block: 1px solid var(--border);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold-soft), #ff8a3d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ----- Trust Marquee ----- */
.marquee {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #1a0f2e 0%, #2a1548 35%, #1e1238 65%, #120a22 100%);
  border-block: 1px solid rgba(212, 175, 55, 0.35);
  padding: 16px 0;
  z-index: 2;
  box-shadow:
    inset 0 1px 0 rgba(255, 184, 0, 0.12),
    inset 0 -1px 0 rgba(255, 184, 0, 0.08);
}

.marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 120% at 50% 50%, rgba(212, 175, 55, 0.1), transparent 70%);
  pointer-events: none;
}

.marquee__track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 8px;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  white-space: nowrap;
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.marquee__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold-bright);
}

.marquee__sep {
  color: rgba(212, 175, 55, 0.45);
  padding: 0 18px;
  font-size: 0.7rem;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .marquee {
    padding: 12px 0;
  }

  .marquee__item {
    font-size: 0.82rem;
  }

  .marquee__sep {
    padding: 0 12px;
  }
}

/* ----- Looking For / Service Tags ----- */
.looking {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(88, 40, 140, 0.18), transparent);
  text-align: center;
}

.looking__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.looking__line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.looking__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
  max-width: 980px;
  margin: 0 auto;
}

.looking__tag {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: linear-gradient(145deg, rgba(28, 18, 48, 0.9), rgba(12, 10, 26, 0.95));
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.looking__tag:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 184, 0, 0.15);
}

@media (max-width: 640px) {
  .looking__eyebrow {
    gap: 10px;
    font-size: 0.7rem;
  }

  .looking__line {
    width: 24px;
  }

  .looking__tag {
    padding: 10px 14px;
    font-size: 0.8rem;
    white-space: normal;
    text-align: center;
  }
}

/* ----- Founder & Lead Astrologer ----- */
.founder-profile {
  background:
    radial-gradient(ellipse 55% 70% at 15% 50%, rgba(212, 175, 55, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(11, 8, 24, 0.45), rgba(22, 12, 40, 0.7));
}

.founder-profile__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(340px, 1.15fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
}

.founder-profile__media {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.founder-profile__media::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 32px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 68%);
  filter: blur(16px);
}

.founder-profile__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
}

.founder-profile__eyebrow,
.consultation-centre__eyebrow,
.consultation-centre__label {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-profile__content h2 {
  margin: 10px 0 18px;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
}

.founder-profile__content p {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.founder-profile__content .founder-profile__award {
  color: var(--text);
  font-size: 1.08rem;
}

.founder-profile__content .btn {
  margin-top: 8px;
}

/* ----- Consultation Centre ----- */
.consultation-centre {
  background: radial-gradient(ellipse 55% 45% at 50% 0%, rgba(88, 40, 140, 0.18), transparent);
}

.consultation-centre__card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 48px);
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 45%),
    linear-gradient(145deg, rgba(27, 17, 48, 0.94), rgba(9, 7, 20, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.consultation-centre__card h3 {
  margin: 10px 0 14px;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}

.consultation-centre__card address {
  max-width: 680px;
  margin: 0 auto 22px;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.75;
}

.consultation-centre__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 24px;
  color: var(--text);
  font-size: 0.9rem;
}

.consultation-centre__meta span {
  padding: 9px 14px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.06);
}

.consultation-centre__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ----- About Guruji Content ----- */
.about-guru {
  background:
    radial-gradient(ellipse 55% 40% at 50% 0%, rgba(88, 40, 140, 0.16), transparent);
}

.about-guru__inner {
  max-width: 900px;
}

.about-guru__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: var(--gold-soft);
  margin-bottom: 32px;
}

.about-guru__intro {
  margin-bottom: 36px;
}

.about-guru__intro p,
.about-guru__block p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.about-guru__intro p:last-child,
.about-guru__block p:last-child {
  margin-bottom: 0;
}

.about-guru__intro strong,
.about-guru__block strong {
  color: var(--gold-soft);
  font-weight: 600;
}

.about-guru__block {
  margin-bottom: 32px;
  padding: 24px 26px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: linear-gradient(145deg, rgba(24, 16, 42, 0.7), rgba(10, 8, 22, 0.85));
}

.about-guru__block:last-child {
  margin-bottom: 0;
}

.about-guru__block h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.about-guru__block a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-guru__block a:hover {
  color: #ffe566;
}

.about-guru__list,
.about-guru__checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 8px 0 20px;
  padding: 0;
  list-style: none;
}

.about-guru__list li,
.about-guru__checks li {
  position: relative;
  padding-left: 23px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.about-guru__list li::before,
.about-guru__checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-bright);
  font-weight: 700;
}

@media (max-width: 640px) {
  .founder-profile__grid {
    grid-template-columns: 1fr;
  }

  .founder-profile__media {
    max-width: 420px;
    margin: 0 auto;
  }

  .consultation-centre__actions .btn {
    width: 100%;
  }

  .about-guru__list,
  .about-guru__checks {
    grid-template-columns: 1fr;
  }

  .about-guru__block {
    padding: 18px 16px;
  }

  .about-guru__block h3 {
    font-size: 1.25rem;
  }
}

/* ----- Footer ----- */
.footer {
  background: #070712;
  padding-top: 72px;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1.2fr 1fr 1.2fr;
  gap: 36px 28px;
  padding-bottom: 56px;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gold);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--gold);
  color: #1a1200;
  border-color: var(--gold);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--gold-soft);
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--gold-bright);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer__contact svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__newsletter p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.newsletter {
  display: flex;
  gap: 8px;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter input::placeholder {
  color: rgba(168, 164, 184, 0.6);
}

.newsletter input:focus {
  border-color: var(--gold);
}

.newsletter .btn {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding: 22px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* ----- Reveal animations ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ----- Responsive ----- */
@media (max-width: 1100px) {
  .astro-featured {
    gap: 32px;
    padding: 28px;
  }

  .astro-slide__ring {
    width: min(300px, 70vw);
    height: min(300px, 70vw);
  }

  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 28px;
    background: #ffffff;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    gap: 2px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    z-index: 99;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    padding: 14px 12px;
    font-size: 1rem;
    color: #2a2035;
    border-bottom: 1px solid rgba(74, 63, 85, 0.12);
  }

  .nav__dropdown-menu a {
    color: #4a3f55;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: rgba(2, 2, 10, 0.55);
    z-index: 98;
  }

  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    display: none;
  }

  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown.open .nav__dropdown-menu {
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  .header__actions .btn--outline {
    display: none;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__layout {
    grid-template-columns: 1fr;
  }

  .why__visual {
    min-height: 360px;
  }

  .steps__track {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps__line {
    display: none;
  }

  .dual__grid {
    gap: 24px;
  }

  .panel {
    padding: 32px 20px 28px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding-bottom: 30px;
    text-align: center;
  }

  .hero__copy {
    max-width: 100%;
    text-align: center;
    order: 1;
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__chips {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__social-proof {
    margin-inline: auto;
  }

  .hero__visual {
    order: 2;
    min-height: 480px;
  }

  .hero__orbit-system {
    width: min(420px, 92%);
  }

  .hero__orbit--earth .hero__orbit-body {
    width: 46px;
    height: 46px;
    margin: -23px 0 0 -23px;
    animation-name: orbitPathEarthMd;
  }

  .hero__orbit--mars .hero__orbit-body {
    width: 42px;
    height: 42px;
    margin: -21px 0 0 -21px;
    animation-name: orbitPathMarsMd;
  }

  .hero__orbit--saturn .hero__orbit-body {
    width: 64px;
    height: 52px;
    margin: -26px 0 0 -32px;
    animation-name: orbitPathSaturnMd;
  }

  .hero__orbit--jupiter .hero__orbit-body {
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    animation-name: orbitPathJupiterMd;
  }

  .hero__orbit--venus .hero__orbit-body {
    width: 44px;
    height: 44px;
    margin: -22px 0 0 -22px;
    animation-name: orbitPathVenusMd;
  }

  .hero__wheel-wrap {
    width: 76%;
  }

  .hero__float-card {
    padding: 8px 10px;
  }

  .hero__float-card--award {
    top: 4%;
    left: 2%;
  }

  .hero__float-card--centres {
    right: 2%;
    bottom: 10%;
  }

  .awards__wrap {
    grid-template-columns: 36px 1fr 36px;
  }

  .awards__track {
    gap: 16px;
  }

  .awards__card {
    --awards-gap: 16px;
    flex: 0 0 calc((100% - var(--awards-gap)) / 2);
    width: calc((100% - var(--awards-gap)) / 2);
    aspect-ratio: 1 / 1;
  }

  .astro-featured {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    padding: 28px 22px;
  }

  .astro-slide__content {
    text-align: center;
    padding-right: 0;
  }

  .astro-slide__bio {
    margin-inline: auto;
  }

  .astro-slide__meta,
  .astro-slide__tags,
  .astro-slide__actions {
    justify-content: center;
  }

  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category,
  .zodiac-sign {
    flex: 0 0 128px;
    min-width: 128px;
  }

  .category__icon,
  .zodiac-sign__badge {
    width: 64px;
    height: 64px;
  }

  .testimonials__nav {
    width: 40px;
    height: 40px;
  }

  .appointment__title {
    text-align: center;
  }

  .appointment__lead {
    margin-inline: auto;
    text-align: center;
  }

  .appointment__eyebrow {
    justify-content: center;
    width: 100%;
  }

  .appointment__points {
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
    padding-inline: 4px;
  }

  .section-sub {
    font-size: 0.9rem;
    padding-inline: 4px;
  }

  .logo__img {
    height: 36px;
    max-width: 150px;
  }

  .header__actions {
    gap: 8px;
  }

  .header__actions .btn--sm {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .menu-toggle {
    width: 32px;
    padding: 6px 0;
    min-height: 44px;
    justify-content: center;
  }

  .hero {
    padding: calc(var(--header-h) + 28px) 0 32px;
    min-height: auto;
  }

  .hero__grid {
    padding-bottom: 0;
    gap: 28px;
  }

  .hero__title {
    font-size: clamp(2.05rem, 9vw, 2.7rem);
    margin-bottom: 16px;
  }

  .hero__subtitle {
    font-size: 0.92rem;
    margin-bottom: 22px;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero__orbit-system {
    width: min(320px, 92%);
  }

  .hero__orbit--earth .hero__orbit-body {
    width: 38px;
    height: 38px;
    margin: -19px 0 0 -19px;
    animation-name: orbitPathEarthSm;
  }

  .hero__orbit--mars .hero__orbit-body {
    width: 34px;
    height: 34px;
    margin: -17px 0 0 -17px;
    animation-name: orbitPathMarsSm;
  }

  .hero__orbit--saturn .hero__orbit-body {
    width: 52px;
    height: 42px;
    margin: -21px 0 0 -26px;
    animation-name: orbitPathSaturnSm;
  }

  .hero__orbit--jupiter .hero__orbit-body {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    animation-name: orbitPathJupiterSm;
  }

  .hero__orbit--venus .hero__orbit-body {
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    animation-name: orbitPathVenusSm;
  }

  .hero__wheel-wrap {
    width: 72%;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero__ctas .btn {
    width: 100%;
    max-width: none;
  }

  .hero__chips {
    display: none;
  }

  .hero__chips a {
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .hero__stats {
    justify-content: center;
    gap: 14px 22px;
    margin-bottom: 20px;
  }

  .hero__stats strong {
    font-size: 1.25rem;
  }

  .hero__float-card {
    display: none;
  }

  .hero__social-proof {
    flex-direction: column;
    border-radius: 16px;
    text-align: center;
    width: 100%;
    max-width: 320px;
    padding: 14px 16px;
  }

  .hero__rating {
    text-align: center;
  }

  .stats {
    padding: 28px 0;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
  }

  .stat {
    gap: 10px;
    justify-content: flex-start;
  }

  .stat__icon {
    width: 40px;
    height: 40px;
  }

  .stat strong {
    font-size: 1.3rem;
  }

  .stat span {
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .services__grid,
  .why__features,
  .blog__grid {
    grid-template-columns: 1fr;
  }

  .services__slider {
    position: relative;
  }

  .services__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 4px 8px;
    margin: 0 -4px;
  }

  .services__grid::-webkit-scrollbar {
    display: none;
  }

  .services__grid .service-card {
    flex: 0 0 min(86%, 320px);
    scroll-snap-align: center;
    margin: 0;
  }

  .services__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
  }

  .services__nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(12, 10, 28, 0.85);
    color: var(--gold-bright);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  }

  .services__nav:hover,
  .services__nav:focus-visible {
    border-color: var(--gold-bright);
    background: rgba(255, 184, 0, 0.12);
    outline: none;
  }

  .services__dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .services__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.28);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
  }

  .services__dot.is-active {
    background: var(--gold-bright);
    transform: scale(1.25);
  }

  .service-card {
    padding: 28px 22px 26px;
  }

  .services .service-card.reveal {
    opacity: 1;
    transform: none;
  }

  .why__orb {
    width: min(320px, 85vw);
  }

  .why__visual {
    min-height: 350px;
  }

  .step {
    padding: 0;
  }

  .panel {
    padding: 24px 16px 22px;
    border-radius: 14px;
  }

  .row-slider {
    grid-template-columns: 28px 1fr 28px;
    gap: 4px;
  }

  .row-slider__nav {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .category,
  .zodiac-sign {
    flex: 0 0 112px;
    min-width: 112px;
    padding: 16px 8px 12px;
  }

  .category__icon,
  .zodiac-sign__badge {
    width: 52px;
    height: 52px;
  }

  .category__icon svg {
    width: 36px;
    height: 36px;
  }

  .zodiac-sign__badge svg {
    width: 32px;
    height: 32px;
  }

  .astro-featured {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 14px;
    border-radius: 16px;
  }

  .astro-slide__media {
    min-height: 280px;
  }

  .astro-slide__photo {
    width: min(320px, 86vw);
  }

  .astro-slide__ring {
    width: min(250px, 72vw);
    height: min(250px, 72vw);
  }

  .astro-slide__orbit {
    width: min(280px, 80vw);
    height: min(280px, 80vw);
  }

  .astro-slide__glow {
    width: min(240px, 70vw);
    height: min(240px, 70vw);
  }

  .astro-slide__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .astro-slide__actions .btn {
    width: 100%;
  }

  .testimonials__wrap {
    gap: 0;
  }

  .testimonials__nav {
    display: none;
  }

  .testimonials__track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .testimonial-card {
    flex: 0 0 88%;
    scroll-snap-align: start;
    padding: 24px 20px;
  }

  .awards__wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .awards__nav {
    display: none;
  }

  .awards__track {
    gap: 14px;
  }

  .awards__card {
    --awards-gap: 14px;
    flex: 0 0 85%;
    width: 85%;
    aspect-ratio: 1 / 1;
  }

  .appointment__card {
    padding: 20px 16px 18px;
  }

  .appointment__card-head {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .appointment__meet-options {
    grid-template-columns: 1fr;
  }

  .meet-option {
    flex-direction: row;
    justify-content: center;
    padding: 12px 14px;
  }

  .cta-banner {
    padding: 64px 0;
  }

  .cta-banner h2 {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  }

  .cta-banner p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    padding-inline: 8px;
  }

  .cta-banner .btn {
    width: 100%;
    max-width: 300px;
  }

  .about-guru__title {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    margin-bottom: 24px;
  }

  .about-guru__intro p,
  .about-guru__block p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .about-guru__block {
    padding: 16px 14px;
    margin-bottom: 20px;
  }

  .about-guru__block h3 {
    font-size: 1.15rem;
  }

  .looking__tag {
    padding: 10px 14px;
    font-size: 0.8rem;
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }

  .footer {
    padding-top: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__brand p {
    max-width: 100%;
  }

  .logo--footer .logo__img {
    height: 48px;
    max-width: 200px;
  }

  .modal {
    padding: 12px;
    align-items: end;
  }

  .modal__panel {
    width: 100%;
    max-height: 90vh;
    border-radius: 16px 16px 0 0;
    padding: 28px 18px 24px;
  }

  .booking-form__row {
    grid-template-columns: 1fr;
  }

  .modal__header h2 {
    font-size: 1.45rem;
    padding-right: 36px;
  }

  .btn--lg {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .btn {
    white-space: normal;
  }
}

@media (max-width: 400px) {
  .header__actions .btn--sm {
    display: none;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero__title {
    font-size: 1.65rem;
  }

  .stats__grid {
    gap: 14px 8px;
  }

  .stat strong {
    font-size: 1.2rem;
  }
}

/* ----- Booking Modal ----- */
.modal[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 10, 0.78);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-height: min(92vh, 820px);
  overflow-y: auto;
  padding: 36px 32px 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background:
    linear-gradient(165deg, rgba(28, 18, 55, 0.98), rgba(8, 8, 20, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), 0 0 60px rgba(88, 40, 140, 0.2);
  animation: modalIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: all var(--transition);
}

.modal__close:hover {
  color: var(--gold-bright);
  border-color: var(--border);
  background: var(--gold-dim);
}

.modal__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.modal__header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.modal__lead {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.booking-form__row .field {
  margin-bottom: 0;
}

.field span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field select option {
  background: #12101f;
  color: var(--text);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: #e05a5a;
}

.field-error {
  display: block;
  min-height: 0;
  margin-top: 6px;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #ff8e8e;
}

.field-error:empty {
  display: none;
}

.form-status {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: center;
}

.form-status.is-success {
  color: #7ff0b3;
  background: rgba(54, 170, 110, 0.12);
  border: 1px solid rgba(127, 240, 179, 0.28);
}

.form-status.is-error {
  color: #ffb0b0;
  background: rgba(224, 90, 90, 0.12);
  border: 1px solid rgba(224, 90, 90, 0.35);
}

.form-status.is-loading {
  color: #f0d78a;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.btn.is-loading {
  opacity: 0.8;
  cursor: wait;
  pointer-events: none;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.booking-form__submit {
  width: 100%;
  margin-top: 8px;
}

.booking-form__note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.booking-success {
  text-align: center;
  padding: 32px 12px 12px;
}

.booking-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb800, #d4af37);
  color: #1a1200;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
}

.booking-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.booking-success p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

/* ----- Sticky WhatsApp + Call icons ----- */
.sticky-contact {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.sticky-contact__btn {
  pointer-events: auto;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
}

.sticky-contact__btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.sticky-contact__btn:active {
  transform: scale(0.96);
}

.sticky-contact__btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.sticky-contact__btn--whatsapp:hover {
  background: #1ebe57;
  color: #fff;
}

.sticky-contact__btn--call {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1200;
}

.sticky-contact__btn--call:hover {
  filter: brightness(1.06);
  color: #1a1200;
}

@media (max-width: 480px) {
  .sticky-contact {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
  }

  .sticky-contact__btn {
    width: 48px;
    height: 48px;
  }

  .sticky-contact__btn svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 640px) {
  .modal {
    padding: 12px;
    align-items: end;
  }

  .modal__panel {
    width: 100%;
    max-height: 90vh;
    border-radius: 16px 16px 0 0;
    padding: 28px 18px 24px;
  }

  .booking-form__row {
    grid-template-columns: 1fr;
  }

  .modal__header h2 {
    font-size: 1.45rem;
    padding-right: 36px;
  }
}
