/* ============================================================
   Astrology — style.css  (Fixed + Upgraded)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&amp;family=Outfit:wght@200;300;400;500;600&amp;family=Cinzel:wght@400;500;600&amp;display=swap");

:root {
  --bg-void: #03020c;
  --bg-deep: #06041a;
  --bg-mid: #0a0822;
  --bg-glass: rgba(255, 255, 255, 0.042);
  --bg-glass-hover: rgba(255, 255, 255, 0.075);

  --gold: #d4a843;
  --gold-lt: #f2cc72;
  --gold-dk: #9a7420;
  --violet: #7c52ff;
  --violet-lt: #a87fff;
  --violet-dk: #4e28cc;
  --teal: #00d4c8;
  --rose: #ff4fa7;
  --ice: #b8e4ff;

  --accent-gold: var(--gold);
  --accent-violet: var(--violet);
  --accent-cyan: var(--teal);
  --accent-rose: var(--rose);
  --accent-aurora: var(--teal);

  --glow-violet: 0 0 48px rgba(124, 82, 255, 0.45);
  --glow-gold: 0 0 36px rgba(212, 168, 67, 0.4);
  --glow-cyan: 0 0 40px rgba(0, 212, 200, 0.35);

  --text-primary: #f2ecff;
  --text-secondary: rgba(242, 236, 255, 0.9);
  --text-muted: rgba(242, 236, 255, 0.85);

  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(124, 82, 255, 0.28);
  --border-gold: rgba(212, 168, 67, 0.22);

  --font-display: "Cinzel", serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-body: "Outfit", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  --ease-smooth: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body {
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: none;
  font-family: inherit;
  border: none;
  background: none;
}
input,
select,
textarea {
  font-family: inherit;
}

/* ── GLOBAL PARTICLE CANVAS ── fixed layer behind everything */
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* All content above the canvas */
.navbar,
section,
footer,
.cosmic-divider {
  position: relative;
  z-index: 1;
}
.navbar {
  z-index: 1000;
}
#cursor-dot,
#cursor-ring {
  z-index: 9999;
}
#page-transition {
  z-index: 9000;
  position: fixed;
}

/* Hero: keep its own starfield too */
#hero {
  position: relative;
}
#starfield {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hero-parallax-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* ── Cursor ── */
#cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s var(--ease-smooth),
    height 0.25s,
    background 0.25s;
  will-change: transform;
}
#cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(0, 212, 200, 0.42);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.4s var(--ease-smooth),
    height 0.4s,
    border-color 0.3s;
  will-change: transform;
}
body.cursor-hover #cursor-dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
}
body.cursor-hover #cursor-ring {
  width: 58px;
  height: 58px;
  border-color: rgba(212, 168, 67, 0.55);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--bg-void);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--violet), var(--gold));
  border-radius: 99px;
}

/* ── Utilities ── */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.gradient-text {
  background: linear-gradient(
    125deg,
    var(--gold) 0%,
    var(--violet-lt) 45%,
    var(--teal) 100%
  );
  background-size: 200% 200%;
  animation: grad-pan 8s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes grad-pan {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.gradient-text-warm {
  background: linear-gradient(
    125deg,
    #fff5d7 0%,
    var(--gold) 55%,
    #e8922a 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: var(--bg-glass);
  /* backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%); */
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  transition:
    background 0.35s var(--ease-smooth),
    border-color 0.35s,
    transform 0.35s,
    box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}
.glass-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    var(--glow-violet);
}
.glass-card:hover::before {
  opacity: 1;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal));
  opacity: 0.8;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.02em;
}
.section-subheading {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--violet-dk));
  color: #fff;
  box-shadow:
    0 8px 32px rgba(124, 82, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 52px rgba(124, 82, 255, 0.6);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    background: linear-gradient(135deg, var(--violet), var(--violet-dk));
  color: #fff;
  font-weight: 600;
  box-shadow:
    0 8px 32px rgba(124, 82, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 32px rgba(124, 82, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);}

.btn-ghost {
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  justify-content: center;
}
.btn-ghost:hover {
  border-color: var(--teal);
  box-shadow: 0 0 24px rgba(0, 212, 200, 0.28);
  transform: translateY(-2px);
  color: var(--teal);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 5%;
  z-index: 1000;
  transition:
    background 0.5s,
    box-shadow 0.5s;
}
.navbar.scrolled {
  background: rgba(3, 2, 12, 0.88);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 1px 0 var(--border-glass);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--gold), var(--violet-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}
.nav-links a:hover {
  color: var(--text-primary);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  margin-left: 20px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.35s var(--ease-smooth);
}
/* Smoke Canvas */
.rock-podcast-smoke-canvas {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.07;
    z-index: 9999;
    pointer-events: none;
}
/* Smoke Canvas */
/* ── Hero ── */
#hero {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.planet {
  position: absolute;
  border-radius: 50%;
  animation: floatPlanet 8s ease-in-out infinite;
}
.planet-1 {
    width: 80px;
    height: 80px;
    top: 23%;
    right: 10%;
    background: radial-gradient(circle at 35% 35%, #9c5ce8, #18003a);
    box-shadow: 0 0 70px rgba(156, 92, 232, 0.45),
    inset -20px -10px 40px rgba(0, 0, 0, 0.6);
    animation-delay: 0s;
}
.planet-4 {
    width: 52px;
  height: 52px;
  bottom: 18%;
  right: 8%;
  background: radial-gradient(circle at 40% 30%, var(--rose), #fd3096);
  box-shadow:
    0 0 44px rgba(255, 79, 67, 0.4),
    inset -10px -5px 20px rgba(0, 0, 0, 0.5);
  animation-delay: -3s;
}
.planet-2 {
  width: 80px;
  height: 80px;
  bottom: 18%;
  left: 8%;
  background: radial-gradient(circle at 40% 30%, var(--teal), #003344);
  box-shadow:
    0 0 44px rgba(0, 212, 200, 0.4),
    inset -10px -5px 20px rgba(0, 0, 0, 0.5);
  animation-delay: -3s;
}
.planet-3 {
  width: 52px;
  height: 52px;
  top: 30%;
  left: 15%;
  background: radial-gradient(circle at 35% 30%, var(--gold), #3a1a00);
  box-shadow: 0 0 32px rgba(212, 168, 67, 0.5);
  animation-delay: -5s;
}
.ring-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(70deg);
  width: 500px;
  height: 500px;
  border: 1px solid rgba(124, 82, 255, 0.1);
  border-radius: 50%;
  animation: rotateSlow 60s linear infinite;
}
.ring-mid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(70deg);
  width: 340px;
  height: 340px;
  border: 1px solid rgba(212, 168, 67, 0.09);
  border-radius: 50%;
  animation: rotateSlow 40s linear infinite reverse;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 20px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  opacity: 0;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 48px;
  opacity: 0;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
/* common icon style */
.icon {
  position: absolute;
  pointer-events: none;
}

.icon img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

/* ───────── ICON 1 (slow float + rotate) ───────── */
.icon-1 {
  top: 15%;
  left: 5%;
  animation: float1 6s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(8deg);
  }
}

/* ───────── ICON 2 (side wave motion) ───────── */
.icon-2 {
  top: 15%;
  right: 5%;
  animation: float2 8s ease-in-out infinite;
}

@keyframes float2 {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-25px);
  }
}

/* ───────── ICON 3 (diagonal + scale) ───────── */
.icon-3 {
  bottom: 10%;
  right: 15%;
  animation: float3 7s ease-in-out infinite;
}
.icon-4{
    bottom: 10%;
  left: 15%;
  animation: float3 7s ease-in-out infinite;
}.icon-4 img{
  width: 120px;
  height: 120px;
}
@keyframes float3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
  }
}
/* ── Sections ── */
.section {
  padding: 80px 0;
}
.section-header {
  margin-bottom: 72px;
  text-align: center;
}
.section-header .section-label {
  margin-bottom: 16px;
  justify-content: center;
}
.section-header .section-heading {
  margin-bottom: 16px;
}

/* ── Features ── */
#features {
  position: relative;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 36px 32px;
  transition:
    transform 0.4s var(--ease-smooth),
    box-shadow 0.4s;
  cursor: default;
}
.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--teal));
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 2px 2px 0 0;
}
.feature-card:hover::after {
  opacity: 1;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5);
}
.feature-icon {
  /* width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  background: linear-gradient(
    135deg,
    rgba(124, 82, 255, 0.18),
    rgba(0, 212, 200, 0.08)
  );
  border: 1px solid rgba(124, 82, 255, 0.22); */
    margin-bottom: 24px;
  width: fit-content;
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s;
}
.tarot-card img{
  width: 100px;
  height: 100px;
}
.feature-card:hover .feature-icon {
  transform: scale(1.12) rotate(-5deg);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.72;
}

/* ── Zodiac ── */
#zodiac {
  position: relative;
  overflow: hidden;
}
.zodiac-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.zodiac-wheel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
#zodiac-canvas {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  max-width: 480px;
  filter: drop-shadow(0 0 60px rgba(124, 82, 255, 0.28));
}
.zodiac-info-panel {
  padding: 48px 40px;
}
.zodiac-sign-display {
  margin-top: 32px;
}
.sign-symbol {
  font-size: 5rem;
  margin-bottom: 12px;
  text-shadow: 0 0 40px rgba(212, 168, 67, 0.6);
  transition: all 0.4s var(--ease-smooth);
}
.zp-sign-emoji img{
  width:70px;
  height: 70px;
}
.sign-name {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 8px;
}
.sign-dates {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.sign-desc {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.82;
  margin-bottom: 28px;
}
.sign-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trait-pill {
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(124, 82, 255, 0.12);
  border: 1px solid rgba(124, 82, 255, 0.28);
  color: var(--violet-lt);
}

/* ── Horoscope ── */
#horoscope {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(124, 82, 255, 0.04) 50%,
    transparent 100%
  );
}
.horoscope-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  padding: 6px;
  width: fit-content;
}
.h-tab {
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.3s;
  cursor: none;
}
.h-tab.active {
  background: linear-gradient(135deg, var(--violet), var(--violet-dk));
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 82, 255, 0.4);
}
.h-tab:not(.active):hover {
  color: var(--text-primary);
}
.horoscope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.horo-card {
  padding: 28px 24px;
  transition: all 0.4s var(--ease-smooth);
  cursor: default;
}
.horo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.horo-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.horo-emoji {
  font-size: 2rem;
}
.horo-sign-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.horo-dates {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.horo-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 20px;
}
.horo-score-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.score-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 60px;
}
.score-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
}
.score-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--violet), var(--teal));
  width: 0;
  transition: width 1.4s var(--ease-smooth);
}

/* ── Tarot ── */
#tarot {
  position: relative;
}
.tarot-deck {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  perspective: 1200px;
}
.tarot-card {
  width: 160px;
  cursor: none;
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease-smooth);
  position: relative;
}
.tarot-card.flipped {
  transform: rotateY(0deg);
}
.tarot-face,
.tarot-back {
  position: absolute;
  width: 100%;
  border-radius: var(--radius-md);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.tarot-back {
  height: 260px;
  background: linear-gradient(155deg, #160840, #080d38);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transform: rotateY(0deg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}
.tarot-back-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(124, 82, 255, 0.07) 0px,
    rgba(124, 82, 255, 0.07) 1px,
    transparent 1px,
    transparent 12px
  );
}
.tarot-face {
  height: 260px;
  background: linear-gradient(160deg, #120038, #000c2a);
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: rotateY(180deg);
  padding: 20px;
  box-shadow: 0 0 32px rgba(212, 168, 67, 0.22);
}
.tarot-icon {
  font-size: 2.8rem;
}
.tarot-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
  color: var(--gold);
}
.tarot-meaning {
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-align: center;
}
.tarot-prompt {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
}
.tarot-reveal-btn {
  margin: 20px auto 0;
  display: block;
}

/* ── Compatibility ── */
.compat-tool {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 40px;
  text-align: center;
}
.compat-selectors {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}
.compat-select-wrap {
  flex: 1;
  min-width: 180px;
}
.compat-select-wrap label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.compat-select {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  appearance: none;
  cursor: none;
  transition: border-color 0.3s;
  outline: none;
}
.compat-select:focus {
  border-color: var(--violet);
}
option {
  background: #08062a;
}
.compat-divider {
  font-size: 1.6rem;
  color: var(--rose);
  flex-shrink: 0;
}
.compat-result {
  margin-top: 32px;
  display: none;
}
.compat-result.visible {
  display: block;
}
.compat-percentage {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 8px;
}
.compat-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.compat-arc {
  width: 200px;
  height: 100px;
  margin: 0 auto 24px;
  position: relative;
  overflow: hidden;
}
.compat-arc svg {
  width: 100%;
}

/* ── AI Chat ── */
.chat-container {
  max-width: 720px;
  margin: 0 auto;
}
.chat-window {
  height: 420px;
  overflow-y: auto;
  padding: 24px;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  background: rgba(3, 2, 12, 0.65);
  border: 1px solid var(--border-glass);
  scroll-behavior: smooth;
}
.chat-window::-webkit-scrollbar {
  width: 3px;
}
.chat-window::-webkit-scrollbar-thumb {
  background: var(--violet);
  border-radius: 99px;
}
.chat-message {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.chat-message.user {
  flex-direction: row-reverse;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.ai-avatar {
  background: linear-gradient(135deg, var(--violet), #1a0040);
  border: 1px solid var(--violet);
}
.user-avatar {
  background: linear-gradient(135deg, var(--gold), #5c3900);
  border: 1px solid var(--gold);
}
.chat-bubble {
  max-width: 75%;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 0.88rem;
  line-height: 1.65;
}
.ai-bubble {
  background: rgba(124, 82, 255, 0.12);
  border: 1px solid rgba(124, 82, 255, 0.22);
  border-bottom-left-radius: 4px;
}
.user-bubble {
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.22);
  border-bottom-right-radius: 4px;
}
.chat-input-row {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
}
.chat-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 4px 8px;
}
.chat-input::placeholder {
  color: var(--text-muted);
}
.chat-send-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--violet-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(124, 82, 255, 0.4);
  transition: all 0.3s var(--ease-smooth);
  cursor: none;
}
.chat-send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(124, 82, 255, 0.65);
}

/* ── Booking CTA ── */
#booking-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(124, 82, 255, 0.07) 0%,
    rgba(0, 212, 200, 0.04) 100%
  );
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.booking-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(124, 82, 255, 0.13) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.booking-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.booking-inner .section-heading {
  margin-bottom: 20px;
}
.booking-inner .section-subheading {
  margin-bottom: 48px;
}

/* ── Footer ── */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-glass);
  background: var(--bg-deep);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo {
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-glass);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: all 0.3s;
}
.social-icon:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(124, 82, 255, 0.4);
}

/* ── Page hero ── */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(124, 82, 255, 0.07) 0%,
    transparent 100%
  );
}
.page-hero .section-label {
  justify-content: center;
  margin-bottom: 20px;
}
.page-hero .section-heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

/* ── Cosmic Divider ── */
.cosmic-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--violet) 25%,
    var(--teal) 50%,
    var(--gold) 75%,
    transparent 100%
  );
  opacity: 0.25;
}

/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL — FIXED
   Bug: JS was adding .revealed but old CSS had wrong transition.
   Fix: Explicit opacity/transform for both states.
   ════════════════════════════════════════════════════════════ */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.85s var(--ease-smooth),
    transform 0.85s var(--ease-smooth);
}
.reveal {
  transform: translateY(40px);
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-right {
  transform: translateX(40px);
}

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1 !important;
  transform: none !important;
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-smooth),
    transform 0.7s var(--ease-smooth);
}
[data-stagger] > *.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .zodiac-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  #zodiac-canvas {
    max-width: 380px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .horoscope-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .compat-selectors {
    flex-direction: column;
  }
  .zodiac-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .zodiac-info-panel {
    padding: 28px 20px;
  }
  .compat-divider {
    transform: rotate(90deg);
  }
}
@media (max-width: 480px) {
  :root {
    --nav-h: 64px;
  }
  .horoscope-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .zodiac-layout {
    gap: 24px;
  }
  .zodiac-wheel-wrap {
    max-width: 100%;
  }
  #zodiac-canvas {
    max-width: min(300px, 100%);
  }
  .tarot-deck {
    gap: 12px;
  }
  .tarot-card {
    width: 130px;
  }
  .tarot-back,
  .tarot-face {
    height: 210px;
  }
}

/* ════════════════════════════════════════════════════════════
   TAROT SECTION — FIXED (no overlap, proper flip, clear layout)
   ════════════════════════════════════════════════════════════ */

/* Position labels row */
.tarot-positions {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 16px;
}
.tarot-positions span {
  max-width: 240px;
  width: 100%;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Deck row — flex, no overlap */
.tarot-deck {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-end; /* cards align at bottom */
  flex-wrap: nowrap;
  padding-bottom: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Base card — fixed dimensions, NO position:relative overlap */
.tarot-card {
  max-width: 220px;
  width: 100%;
  height: 260px;
  flex-shrink: 0;
  cursor: none;
  perspective: 900px;
  /* Remove float-card animation from tarot cards */
}
/* Center card is taller */
.tarot-card--center {
  width: 200px;
  height: 285px;
}

/* Inner flip container */
.tarot-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}
.tarot-card.flipped .tarot-inner {
  transform: rotateY(180deg);
}
.tarot-card:hover:not(.flipped) .tarot-inner {
  transform: translateY(-8px) rotateY(8deg);
}

/* Back face */
.tarot-back {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(160deg, #18094e 0%, #0b1245 50%, #050830 100%);
  border: 1px solid rgba(124, 82, 255, 0.25);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tarot-back-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(124, 82, 255, 0.07) 0px,
    rgba(124, 82, 255, 0.07) 1px,
    transparent 1px,
    transparent 14px
  );
}
/* Decorative inner border on back */
.tarot-back::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 10px;
  pointer-events: none;
}
.tarot-back-icon {
  font-size: 2.6rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 16px rgba(124, 82, 255, 0.7));
}

/* Front face */
.tarot-face {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(165deg, #120040 0%, #080f38 60%, #020820 100%);
  border: 1px solid var(--border-gold);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 16px;
  box-shadow:none;
}
.tarot-face-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(212, 168, 67, 1);
  margin-bottom: -4px;
}
.tarot-icon {
  font-size: 2.6rem;
  filter: drop-shadow(0 0 10px rgba(212, 168, 67, 0.5));
}
.tarot-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-align: center;
}
.tarot-meaning {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
}

/* Float animation only on unflipped cards */
.tarot-card:not(.flipped) {
  animation: cardFloat 6s ease-in-out infinite;
}
.tarot-card:nth-child(1):not(.flipped) {
  animation-delay: 0s;
}
.tarot-card:nth-child(2):not(.flipped) {
  animation-delay: -1.2s;
}
.tarot-card:nth-child(3):not(.flipped) {
  animation-delay: -2.4s;
}
.tarot-card:nth-child(4):not(.flipped) {
  animation-delay: -0.6s;
}
.tarot-card:nth-child(5):not(.flipped) {
  animation-delay: -3s;
}

/* Footer — prompt + buttons */
.tarot-footer {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.tarot-prompt {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
}
.tarot-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════
   COMPATIBILITY — FIXED (full-width, dropdown icons, result panel)
   ════════════════════════════════════════════════════════════ */

.compat-tool {
  max-width: 860px;
  margin: 0 auto;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.compat-selectors {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: end;
  width: 100%;
  margin-bottom: 36px;
}

.compat-select-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compat-select-wrap label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* Select wrapper with icon */
.compat-select-inner {
  position: relative;
  display: flex;
  align-items: center;
}
.compat-select-icon {
  position: absolute;
  left: 16px;
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 1;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.compat-select {
  width: 100%;
  padding: 14px 20px 14px 46px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  appearance: none;
  cursor: none;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    background 0.3s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='rgba(242,236,255,0.35)' stroke-width='1.5' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.compat-select:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124, 82, 255, 0.15);
  background-color: rgba(124, 82, 255, 0.06);
}
.compat-select:focus + .compat-select-icon,
.compat-select-inner:focus-within .compat-select-icon {
  opacity: 1;
}
option {
  background: #08062a;
}

/* Heart divider */
.compat-heart-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
}
.compat-heart-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 79, 167, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 79, 167, 0.08);
  box-shadow: 0 0 20px rgba(255, 79, 167, 0.2);
  animation: pulseGlow 3s ease-in-out infinite;
  --glow-color: rgba(255, 79, 167, 0.3);
}
.compat-divider {
  font-size: 1.3rem;
  color: var(--rose);
  filter: drop-shadow(0 0 8px var(--rose));
  flex-shrink: 0;
}

/* CTA button */
.compat-cta {
  margin: 0 auto;
  display: block;
  min-width: 280px;
}

/* Result panel */
.compat-result {
  width: 100%;
  margin-top: 40px;
  display: none;
  animation: fadeInUp 0.5s var(--ease-smooth);
}
.compat-result.visible {
  display: block;
}

.compat-result-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  padding: 36px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
}

/* Score ring */
.compat-score-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}
.compat-ring-svg {
  width: 100%;
  height: 100%;
}
.compat-score-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.compat-percentage {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
.compat-score-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Stats side */
.compat-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compat-verdict {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.compat-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cbar-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cbar-row span {
  width: 70px;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.cbar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 99px;
  overflow: hidden;
}
.cbar-fill {
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--violet), var(--teal));
  transition: width 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Responsive */
@media (max-width: 768px) {
  .tarot-positions span {
    width: 130px;
  }
  .tarot-card {
    width: 130px;
    height: 210px;
  }
  .tarot-card--center {
    width: 145px;
    height: 230px;
  }
  .compat-tool {
    padding: 36px 24px;
  }
  .compat-selectors {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .compat-heart-wrap {
    padding-bottom: 0;
    justify-content: flex-start;
  }
  .compat-result-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }
  .compat-score-wrap {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 480px) {
  .tarot-deck {
    gap: 10px;
  }
  .tarot-card {
    width: 110px;
    height: 180px;
  }
  .tarot-card--center {
    width: 124px;
    height: 200px;
  }
  .tarot-positions {
    display: none;
  }
  .compat-tool {
    padding: 28px 16px;
  }
}

/* ════════════════════════════════════════════════════════════
   HERO — Modern Upgrades
   ════════════════════════════════════════════════════════════ */

/* Grid overlay for modern depth */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(124, 82, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 82, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    black 10%,
    transparent 80%
  );
  pointer-events: none;
}

/* Vignette */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 90% 80% at 50% 50%,
    transparent 55%,
    rgba(3, 2, 12, 0.7) 100%
  );
  pointer-events: none;
}

/* Eyebrow pill */
.hero-eyebrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  display: none;
}
.hero-eyebrow-dot:last-child {
  animation-delay: 1s;
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0 !important;
  opacity: 1 !important; /* override hero-eyebrow opacity:0 for pill version */
}

/* Hero title line 2 — white/light, slightly lighter weight */
.hero-line-2 {
  color: rgba(242, 236, 255, 0.92);
  font-weight: 400;
}

/* Stats bar */
.hero-stats-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.042);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 24px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.04em;
}
.hero-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .hero-stats-bar {
    flex-wrap: wrap;
    border-radius: 16px;
    gap: 12px;
    padding: 14px 20px;
  }
  .hero-stat-divider {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════
   ZODIAC INFO PANEL — Enhanced
   ════════════════════════════════════════════════════════════ */

.zodiac-info-panel {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Header area */
.zp-header {
  margin-bottom: 4px;
}
.zp-header .section-label {
  margin-bottom: 10px;
}
.zp-header .section-heading {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-bottom: 8px;
}
.zp-header .section-subheading {
  font-size: 0.9rem;
}

/* Sign hero block */
.zp-sign-hero {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.zp-sign-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(124, 82, 255, 0.06) 0%,
    transparent 60%
  );
}
.zp-sign-emoji-wrap {
  position: relative;
  flex-shrink: 0;
}
.zp-sign-emoji {
  font-size: 3.2rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  /* filter: drop-shadow(0 0 16px rgba(212, 168, 67, 0.55)); */
  padding: 10px 10px;
  transition: all 0.4s ease;
}
.zp-sign-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 168, 67, 0.2) 0%,
    transparent 70%
  );
  animation: pulseGlow 3s ease-in-out infinite;
  --glow-color: rgba(212, 168, 67, 0.25);
}
.zp-sign-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  line-height: 1;
  transition: all 0.4s ease;
}
.zp-sign-dates {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  transition: all 0.4s ease;
}

/* Description */
.zp-desc {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
  padding: 0 2px;
}

/* Energy meters */
.zp-meters {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}
.zp-meter-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.zp-meter-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 64px;
  flex-shrink: 0;
}
.zp-meter-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 99px;
  overflow: hidden;
}
.zp-meter-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--violet), var(--teal));
  transition: width 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.zp-meter-val {
  font-size: 0.7rem;
  color: var(--teal);
  font-weight: 500;
  width: 24px;
  text-align: right;
}

/* Compatible signs */
.zp-compat {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.zp-compat-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.zp-compat-signs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.zp-compat-sign {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.22);
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* CTA */
.zp-cta {
  width: 100%;
  justify-content: center;
}

/* Override old sign-symbol selector since we renamed */
.sign-symbol {
  display: none;
} /* old class, new one is .zp-sign-emoji */

/* ════════════════════════════════════════════════════════════
   ZODIAC CANVAS — Fix text clipping
   ════════════════════════════════════════════════════════════ */
.zodiac-wheel-wrap {
  /* Extra padding so outer labels don't clip */
  padding: 16px;
  box-sizing: border-box;
}

/* ════════════════════════════════════════════════════════════
   PAGE: HOROSCOPE
   ════════════════════════════════════════════════════════════ */
.sign-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.sign-filter-btn {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
  color: var(--text-secondary);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: none;
  font-family: var(--font-body);
}
.sign-filter-btn:hover,
.sign-filter-btn.active {
  background: var(--violet);
  border-color: var(--violet);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 77, 255, 0.4);
}
.full-horo-card {
  padding: 36px;
  margin-bottom: 24px;
}
.full-horo-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.big-emoji {
  font-size: 3.5rem;
  line-height: 1;
}
.horo-title-group h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-primary);
}
.horo-title-group .sign-dates-small {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.element-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(124, 77, 255, 0.15);
  border: 1px solid rgba(124, 77, 255, 0.3);
  color: var(--violet-lt);
  margin-top: 8px;
}
.element-badge.fire {
  background: rgba(255, 107, 53, 0.12);
  border-color: rgba(255, 107, 53, 0.3);
  color: #ff7b72;
}
.element-badge.earth {
  background: rgba(139, 195, 74, 0.12);
  border-color: rgba(139, 195, 74, 0.3);
  color: #a9e34b;
}
.element-badge.air {
  background: rgba(100, 181, 246, 0.12);
  border-color: rgba(100, 181, 246, 0.3);
  color: #74c0fc;
}
.element-badge.water {
  background: rgba(124, 82, 255, 0.15);
  border-color: rgba(124, 82, 255, 0.3);
  color: var(--violet-lt);
}
.horo-body {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.horo-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.horo-stat {
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}
.horo-stat .stat-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.horo-stat .stat-key {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
.lucky-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
}
.lucky-item {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.lucky-item strong {
  color: var(--text-primary);
  font-weight: 500;
}
.horo-energy-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.horo-ebar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.horo-ebar-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: 60px;
  flex-shrink: 0;
}
.horo-ebar-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 99px;
  overflow: hidden;
}
.horo-ebar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--violet), var(--teal));
  transition: width 1.2s var(--ease-smooth);
}
.horo-ebar-val {
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 500;
  width: 32px;
  text-align: right;
}

/* ════════════════════════════════════════════════════════════
   PAGE: KUNDLI
   ════════════════════════════════════════════════════════════ */
.kundli-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.kundli-form {
  padding: 40px;
}
.kundli-chart {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124, 82, 255, 0.12);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-select {
  appearance: none;
  cursor: none;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.kundli-preview {
  width: 300px;
  height: 300px;
  position: relative;
}
.planet-table {
  width: 100%;
  border-collapse: collapse;
}
.planet-table th {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-glass);
}
.planet-table td {
  padding: 10px 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.planet-table tr:last-child td {
  border-bottom: none;
}
.planet-table td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}
.analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.analysis-card {
  padding: 20px;
}
.analysis-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.analysis-card p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .kundli-layout {
    grid-template-columns: 1fr;
  }
  .analysis-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════
   PAGE: COMPATIBILITY
   ════════════════════════════════════════════════════════════ */
.compat-hero-tool {
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 48px;
}
.big-selectors {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: end;
  margin: 40px 0;
}
.sign-select-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.sign-select-big {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  appearance: none;
  cursor: none;
  transition: border-color 0.3s;
  outline: none;
}
.sign-select-big:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124, 82, 255, 0.12);
}
.heart-divider {
  font-size: 2.8rem;
  color: var(--rose);
  text-align: center;
  padding-bottom: 8px;
  filter: drop-shadow(0 0 12px rgba(255, 79, 167, 0.5));
  animation: floatPlanet 3s ease-in-out infinite;
}
.result-panel {
  display: none;
  padding: 48px;
  margin-top: 0;
}
.result-panel.visible {
  display: block;
}
.pair-display {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.pair-sign {
  text-align: center;
}
.pair-symbol {
  font-size: 4rem;
  line-height: 1;
  filter: drop-shadow(0 0 16px rgba(212, 168, 67, 0.4));
}
.pair-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 8px;
}
.pair-plus {
  font-size: 2rem;
  color: var(--text-muted);
}
.score-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: conic-gradient(
    var(--violet) 0deg,
    var(--teal) var(--deg, 0deg),
    rgba(255, 255, 255, 0.06) var(--deg, 0deg)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(124, 82, 255, 0.3);
  transition: --deg 1.4s ease;
}
.score-circle-inner {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.score-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.score-label-small {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.match-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 32px;
}
.compat-dimensions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.dim-card {
  padding: 20px;
}
.dim-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.dim-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 6px;
}
.dim-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--violet), var(--teal));
  transition: width 1.2s var(--ease-smooth);
}
.dim-score {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}
.compat-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-top: 8px;
}
.compat-grid-section {
  margin-top: 80px;
  overflow-x: auto;
}
.compat-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.compat-table th,
.compat-table td {
  padding: 8px 10px;
  text-align: center;
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.compat-table th {
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}
.score-high {
  background: rgba(124, 82, 255, 0.25);
  color: var(--violet-lt);
  font-weight: 600;
}
.score-mid {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}
.score-low {
  background: rgba(255, 79, 167, 0.1);
  color: var(--rose);
}
@media (max-width: 700px) {
  .big-selectors {
    grid-template-columns: 1fr;
  }
  .compat-dimensions {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════
   PAGE: BOOKING
   ════════════════════════════════════════════════════════════ */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card {
  padding: 24px 28px;
  transition: all 0.35s var(--ease-smooth);
  cursor: none;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
}
.service-card.selected,
.service-card:hover {
  border-color: var(--violet);
  background: rgba(124, 82, 255, 0.1);
  transform: translateX(4px);
}
.svc-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.svc-icon {
  font-size: 1.8rem;
}
.svc-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-primary);
}
.svc-price {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 2px;
}
.svc-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.svc-duration {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}
.booking-form-card {
  padding: 44px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.astrologer-row {
    display: grid;
    gap: 12px;
    flex-wrap: wrap;
    margin: 4px 0 8px;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
}
.astrologer-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  cursor: none;
  transition: all 0.3s;
  flex: 1;
  min-width: 140px;
}
.astrologer-card.selected,
.astrologer-card:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
}
.astro-avatar {
  font-size: 1.6rem;
}
.astro-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}
.astro-spec {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.astro-rating {
  font-size: 0.72rem;
  color: var(--gold);
  margin-top: 2px;
}
.summary-box {
  padding: 32px;
  position: sticky;
  top: 100px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.88rem;
}
.summary-row:last-of-type {
  border-bottom: none;
}
.summary-row span:first-child {
  color: var(--text-muted);
}
.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-glow);
}
.summary-total .label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}
.summary-total .amount {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 2, 12, 0.96);
  backdrop-filter: blur(24px);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.success-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.success-icon {
  font-size: 5rem;
  animation: fadeInUp 0.6s ease;
}
@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .summary-box {
    position: static;
  }
}
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}@media (max-width:1199px){
  .icon img{
  width: 70px;
  height: 70px;
}
}
@media (max-width:991px){
  .icon img{
display: none;
}
}

/* ════════════════════════════════════════════════════════════
   PAGE: TAROT (inner page)
   ════════════════════════════════════════════════════════════ */
.spread-selector {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.spread-btn {
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: none;
  font-family: var(--font-body);
}
.spread-btn.active,
.spread-btn:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 77, 255, 0.4);
}
.spread-positions {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 14px;
}
.spread-positions span {
  text-align: center;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tarot-spread-area {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: flex-end;
  /* overflow-x: auto; */
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  min-height: 300px;
}
.tarot-pos-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 4px;
}
.tarot-reading-area {
  max-width: 700px;
  margin: 56px auto 0;
  display: none;
  padding: 30px 30px;
}
.tarot-reading-area.visible {
  display: block;
}
.reading-card {
  padding: 28px;
  margin-bottom: 16px;
}
.reading-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.reading-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.suits-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}
.suit-card {
  padding: 24px;
  text-align: center;
  min-width: 160px;
  cursor: none;
  transition: transform 0.3s;
}
.suit-card:hover {
  transform: translateY(-6px);
}
.suit-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.suit-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.suit-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
