/* ============================================================
   ASTROLOGY WEBSITE — Global Stylesheet
   ============================================================ */

/* ------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  --gold-primary: #D4A843;
  --gold-light: #E8C860;
  --deep-navy: #0D0D0D;
  --dark-surface: #1A1A1A;
  --cosmic-purple: #1A1A1A;
  --text-primary: #F5F5F5;
  --text-secondary: #999999;
  --error-red: #E74C3C;
  --success-green: #27AE60;

  --gold-gradient: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  --cosmic-gradient: linear-gradient(135deg, #0D0D0D, #161616);
  --card-border: rgba(212, 168, 67, 0.12);
  --card-border-hover: rgba(212, 168, 67, 0.4);

  --font-display: "Cinzel", "Palatino Linotype", serif;
  --font-heading: "Cinzel", "Palatino Linotype", serif;
  --font-body: "Raleway", "Helvetica Neue", sans-serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --container-max: 1200px;
  --nav-height: 72px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-pill: 999px;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.25);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--deep-navy);
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 400;
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 600; color: var(--gold-primary); letter-spacing: 0.04em; }
h1, h2 { font-family: var(--font-display); }
h3, h4, h5, h6 { font-family: var(--font-heading); }
p + p { margin-top: var(--space-md); }

::selection { background-color: var(--gold-primary); color: var(--deep-navy); }
:focus-visible { outline: 2px solid var(--gold-primary); outline-offset: 2px; }

/* ------------------------------------------------------------
   3. LAYOUT
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-xl);
}

.section { padding-block: var(--space-4xl); }

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-inline: auto;
  font-weight: 400;
}

.section--surface { background-color: var(--dark-surface); }
.section--cosmic { background: var(--cosmic-gradient); }

/* ------------------------------------------------------------
   4. HERO — Animated Star-field
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, #1a1a1a 0%, var(--deep-navy) 70%);
}

.hero__stars,
.hero__stars--medium,
.hero__stars--large {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__stars {
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.9) 50%, transparent 100%),
    radial-gradient(1px 1px at 25% 55%, rgba(255,255,255,0.7) 50%, transparent 100%),
    radial-gradient(1px 1px at 40% 15%, rgba(255,255,255,0.8) 50%, transparent 100%),
    radial-gradient(1px 1px at 55% 70%, rgba(255,255,255,0.6) 50%, transparent 100%),
    radial-gradient(1px 1px at 70% 35%, rgba(255,255,255,0.9) 50%, transparent 100%),
    radial-gradient(1px 1px at 85% 80%, rgba(255,255,255,0.7) 50%, transparent 100%),
    radial-gradient(1px 1px at 15% 90%, rgba(255,255,255,0.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 60% 45%, rgba(255,255,255,0.8) 50%, transparent 100%),
    radial-gradient(1px 1px at 90% 10%, rgba(255,255,255,0.6) 50%, transparent 100%),
    radial-gradient(1px 1px at 35% 85%, rgba(255,255,255,0.7) 50%, transparent 100%),
    radial-gradient(1px 1px at 50% 30%, rgba(255,255,255,0.9) 50%, transparent 100%),
    radial-gradient(1px 1px at 75% 60%, rgba(255,255,255,0.5) 50%, transparent 100%);
  animation: starTwinkle 4s ease-in-out infinite alternate;
}

.hero__stars--medium {
  background-image:
    radial-gradient(1.5px 1.5px at 18% 40%, rgba(232,212,139,0.8) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 25%, rgba(232,212,139,0.6) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 72% 55%, rgba(232,212,139,0.7) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 30% 70%, rgba(232,212,139,0.5) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 88% 30%, rgba(232,212,139,0.8) 50%, transparent 100%);
  animation: starTwinkle 6s ease-in-out 1s infinite alternate;
}

.hero__stars--large {
  background-image:
    radial-gradient(2px 2px at 22% 33%, rgba(201,168,76,0.9) 50%, transparent 100%),
    radial-gradient(2px 2px at 65% 18%, rgba(201,168,76,0.7) 50%, transparent 100%),
    radial-gradient(2px 2px at 80% 72%, rgba(201,168,76,0.8) 50%, transparent 100%),
    radial-gradient(2px 2px at 42% 58%, rgba(201,168,76,0.6) 50%, transparent 100%);
  animation: starTwinkle 5s ease-in-out 2s infinite alternate;
}

@keyframes starTwinkle {
  0%   { opacity: 0.4; transform: scale(1); }
  50%  { opacity: 1; }
  100% { opacity: 0.6; transform: scale(1.02); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--space-xl);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: var(--space-xs);
  color: var(--gold-primary);
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.hero__tagline {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-inline: auto;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ------------------------------------------------------------
   5. STICKY NAVIGATION
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background-color: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  transition: background-color var(--transition-base);
}

.nav--scrolled {
  background-color: rgba(13, 13, 13, 0.98);
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-xl);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-primary);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  position: relative;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  padding: var(--space-xs) 0;
  transition: color var(--transition-base);
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--gold-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1010;
  background: none;
  border: none;
}

.nav__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--gold-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.nav__hamburger--open .nav__hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger--open .nav__hamburger-line:nth-child(2) { opacity: 0; }
.nav__hamburger--open .nav__hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-panel { display: none; }

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

  .nav__mobile-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    position: fixed;
    inset: 0;
    padding-top: calc(var(--nav-height) + var(--space-2xl));
    background-color: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(16px);
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
  }

  .nav__mobile-panel--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__mobile-panel .nav__link { font-size: 1.25rem; }
}

.main { padding-top: var(--nav-height); }

/* ------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 0.75em 1.75em;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), color var(--transition-base), opacity var(--transition-base);
}

.btn--primary {
  background: var(--gold-gradient);
  color: var(--deep-navy);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4); }
.btn--primary:active { transform: translateY(0); box-shadow: var(--shadow-sm); }
.btn--primary:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

.btn--secondary {
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-primary);
  background: transparent;
}

.btn--secondary:hover { background-color: rgba(201, 168, 76, 0.1); transform: translateY(-2px); }
.btn--secondary:active { transform: translateY(0); }
.btn--secondary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.btn--ghost { color: var(--text-secondary); background: none; border: none; }
.btn--ghost:hover { color: var(--gold-primary); }
.btn--sm { font-size: 0.85rem; padding: 0.5em 1.25em; }
.btn--lg { font-size: 1.05rem; padding: 0.9em 2.25em; }
.btn--block { width: 100%; }

/* ------------------------------------------------------------
   7. CARDS
   ------------------------------------------------------------ */
.card {
  background-color: var(--dark-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: var(--space-2xl);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.card:hover { border-color: var(--card-border-hover); box-shadow: var(--shadow-md); }
.card--clickable:hover { transform: translateY(-4px); cursor: pointer; }

.card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.card__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold-primary);
  stroke-width: 1.5;
  fill: none;
  margin-inline: auto;
}

.card__title {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

/* ------------------------------------------------------------
   8. WHY KP — 3-column Grid
   ------------------------------------------------------------ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   9. CHALLENGES — 6-item Grid
   ------------------------------------------------------------ */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.challenges-grid .card {
  text-align: center;
  text-decoration: none;
  display: block;
}

@media (max-width: 768px) and (min-width: 481px) {
  .challenges-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .challenges-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   10. TESTIMONIAL CAROUSEL
   ------------------------------------------------------------ */
.testimonials__track {
  display: flex;
  gap: var(--space-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-md);
  scrollbar-width: none;
}

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

.testimonial {
  flex: 0 0 min(100%, 420px);
  scroll-snap-align: center;
  background-color: var(--dark-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial__stars { color: var(--gold-primary); font-size: 1.1rem; }

.testimonial__text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
  position: relative;
  padding-left: var(--space-lg);
}

.testimonial__text::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -4px;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-primary);
}

.testimonial__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--gold-primary);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  background: transparent;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-base);
}

.testimonials__dot:hover { background-color: rgba(201, 168, 76, 0.4); }
.testimonials__dot--active { background-color: var(--gold-primary); transform: scale(1.2); }

/* ------------------------------------------------------------
   11. WIZARD PROGRESS BAR
   ------------------------------------------------------------ */
.wizard { max-width: 720px; margin-inline: auto; }

.progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3xl);
  position: relative;
}

.progress::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 60px;
  right: 60px;
  height: 2px;
  background-color: rgba(201, 168, 76, 0.2);
  z-index: 0;
}

.progress__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.progress__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid rgba(201, 168, 76, 0.3);
  background-color: var(--dark-surface);
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.progress__step--active .progress__number {
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
  color: var(--deep-navy);
  box-shadow: var(--shadow-gold);
}

.progress__step--completed .progress__number {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--deep-navy);
}

.progress__label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

.progress__step--active .progress__label { color: var(--gold-primary); }
.progress__step--completed .progress__label { color: var(--gold-light); }

/* Wizard panels */
.wizard__step { display: none; }
.wizard__step--active { display: block; animation: wizardFadeIn var(--transition-slow) ease; }

@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wizard__actions {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

/* ------------------------------------------------------------
   12. FORM FIELDS
   ------------------------------------------------------------ */
.form__group {
  margin-bottom: var(--space-lg);
}

.form__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.form__label--required::after {
  content: " *";
  color: var(--error-red);
}

.form__input,
.form__select {
  width: 100%;
  padding: 0.75em 1em;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: rgba(17, 29, 51, 0.8);
  border: 1.5px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--border-radius-sm);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form__input::placeholder { color: var(--text-secondary); opacity: 0.6; }
.form__input:hover, .form__select:hover { border-color: rgba(201, 168, 76, 0.4); }

.form__input:focus,
.form__select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  background-color: rgba(17, 29, 51, 1);
}

.form__input:disabled, .form__select:disabled { opacity: 0.45; cursor: not-allowed; }

/* Error state */
.form__field--error { border-color: var(--error-red) !important; }
.form__field--error:focus { box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important; }

.form__error {
  display: none;
  font-size: 0.85rem;
  color: var(--error-red);
  margin-top: var(--space-xs);
}

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

/* Also support .form__field wrapper approach for newsletter */
.form__field { margin-bottom: var(--space-lg); }
.form__field--error .form__input,
.form__field--error .form__select { border-color: var(--error-red); }
.form__field--error .form__error { display: block; }

/* ------------------------------------------------------------
   13. CALENDAR
   ------------------------------------------------------------ */
.calendar {
  background-color: var(--dark-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: var(--space-xl);
}

.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.calendar__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-primary);
}

.calendar__nav {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gold-primary);
  background: none;
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.calendar__nav:hover { background-color: rgba(201, 168, 76, 0.1); }
.calendar__nav:disabled { opacity: 0.3; cursor: not-allowed; }

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}

.calendar__day-header {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: var(--space-sm);
}

.calendar__day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border-radius: var(--border-radius-sm);
  color: var(--text-secondary);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.calendar__day--available {
  color: var(--text-primary);
  cursor: pointer;
}

.calendar__day--available:hover { background-color: rgba(201, 168, 76, 0.1); }

.calendar__day--available::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold-primary);
}

.calendar__day--selected {
  background: var(--gold-gradient);
  color: var(--deep-navy);
  font-weight: 700;
}

.calendar__day--selected::after { background-color: var(--deep-navy); }

.calendar__day--past { color: rgba(160, 156, 148, 0.3); }
.calendar__day--empty { visibility: hidden; }

/* ------------------------------------------------------------
   14. TIME SLOTS
   ------------------------------------------------------------ */
.slots__heading {
  font-size: 1rem;
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

.slots__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.slot__btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 0.5em 1.25em;
  border-radius: var(--border-radius-pill);
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  background-color: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slot__btn:hover { border-color: var(--gold-primary); background-color: rgba(201, 168, 76, 0.1); }

.slot__btn--selected {
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
  color: var(--deep-navy);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.slot__btn--booked {
  border-color: rgba(160, 156, 148, 0.15);
  color: var(--text-secondary);
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ------------------------------------------------------------
   15. PRICING CARDS
   ------------------------------------------------------------ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  max-width: 700px;
  margin-inline: auto;
}

.pricing__card {
  position: relative;
  background-color: var(--dark-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.pricing__card:hover { border-color: var(--card-border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pricing__card--selected,
.pricing__card--featured {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--deep-navy);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35em 1.25em;
  border-radius: var(--border-radius-pill);
  white-space: nowrap;
}

.pricing__card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
}

.pricing__amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.pricing__amount span { font-size: 1rem; color: var(--text-secondary); }

.pricing__savings {
  color: var(--success-green);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.pricing__card ul {
  text-align: left;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pricing__card li {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing__card li::before {
  content: "\2713";
  color: var(--gold-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   16. ABOUT SECTION
   ------------------------------------------------------------ */
.about__content {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
}

.about__photo {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: var(--dark-surface);
  border: 3px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.12), var(--shadow-md);
}

.about__photo::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.3);
  animation: portraitOrbit 20s linear infinite;
}

.about__initials {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-primary);
}

@keyframes portraitOrbit { to { transform: rotate(360deg); } }

.about__text p { color: var(--text-secondary); margin-bottom: var(--space-md); }

.about__stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.about__stat {
  background-color: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-sm);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold-primary);
}

@media (max-width: 768px) {
  .about__content { flex-direction: column; text-align: center; }
  .about__photo { width: 180px; height: 180px; }
  .about__stats { justify-content: center; }
}

/* ------------------------------------------------------------
   17. ZODIAC WHEEL
   ------------------------------------------------------------ */
.zodiac-wheel {
  position: absolute;
  width: 400px;
  height: 400px;
  opacity: 0.15;
  pointer-events: none;
}

.zodiac-wheel__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(201, 168, 76, 0.5);
  animation: zodiacSpin 60s linear infinite;
}

.zodiac-wheel__ring--inner {
  inset: 40px;
  border-style: dotted;
  animation-duration: 45s;
  animation-direction: reverse;
}

@keyframes zodiacSpin { to { transform: rotate(360deg); } }

/* ------------------------------------------------------------
   18. STAR RATING
   ------------------------------------------------------------ */
.star { font-size: 1.2rem; color: rgba(201, 168, 76, 0.2); }
.star--filled { color: var(--gold-primary); }

/* ------------------------------------------------------------
   19. FOOTER
   ------------------------------------------------------------ */
.footer {
  background-color: var(--dark-surface);
  border-top: 1px solid var(--card-border);
  padding-block: var(--space-3xl) var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-primary);
  margin-bottom: var(--space-md);
}

.footer__brand-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-md);
}

.footer__link {
  display: block;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding-block: var(--space-xs);
  transition: color var(--transition-fast);
}

.footer__link:hover { color: var(--gold-light); }

.footer__bottom {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright { font-size: 0.85rem; color: var(--text-secondary); }

.footer__socials { display: flex; gap: var(--space-md); }

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background-color: rgba(201, 168, 76, 0.08);
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .footer__grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ------------------------------------------------------------
   20. ALERTS & SUCCESS
   ------------------------------------------------------------ */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
}

.alert--success {
  background-color: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: var(--success-green);
}

.success-message {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
  animation: wizardFadeIn var(--transition-slow) ease;
}

.success-message.success--visible { display: block; }

.success__icon { margin-bottom: var(--space-lg); }

.success__check { width: 64px; height: 64px; margin-inline: auto; }
.success__circle { stroke-dasharray: 157; stroke-dashoffset: 157; animation: drawCircle 0.6s ease forwards; }
.success__tick { stroke-dasharray: 40; stroke-dashoffset: 40; animation: drawTick 0.4s 0.4s ease forwards; }

@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawTick { to { stroke-dashoffset: 0; } }

.success__title { font-size: 1.5rem; margin-bottom: var(--space-md); }
.success__details { font-size: 1.1rem; color: var(--gold-primary); margin: var(--space-sm) 0; }
.success__note { color: var(--text-secondary); }

/* Payment section */
.payment-section { display: none; margin-top: var(--space-2xl); }

.payment__qr {
  width: 200px;
  height: 200px;
  border: 2px dashed var(--card-border);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-lg) auto;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.payment__details {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
}

/* Summary card */
.summary__card {
  background-color: var(--dark-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.summary__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.summary__row:last-child { border-bottom: none; }
.summary__row--total { font-weight: 700; color: var(--gold-primary); }
.summary__label { color: var(--text-secondary); }
.summary__value { color: var(--text-primary); }

/* ------------------------------------------------------------
   21. NEWSLETTER-SPECIFIC
   ------------------------------------------------------------ */
.newsletter-hero {
  text-align: center;
  padding-top: var(--space-3xl);
}

.newsletter-hero__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  margin-top: var(--space-xl);
  color: var(--text-secondary);
}

.newsletter-hero__features li::before {
  content: "\2729 ";
  color: var(--gold-primary);
}

.preview-card {
  background-color: var(--dark-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: var(--space-2xl);
  max-width: 600px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}

.preview-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--dark-surface));
}

.preview-card__header {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--card-border);
}

.preview-card__item {
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.preview-card__item::before {
  content: "\2022 ";
  color: var(--gold-primary);
}

/* ------------------------------------------------------------
   22. COMING SOON
   ------------------------------------------------------------ */
.coming-soon {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.coming-soon__symbol {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
  display: block;
}

.coming-soon h1 { margin-bottom: var(--space-sm); }
.coming-soon h2 { font-family: var(--font-heading); color: var(--text-secondary); margin-bottom: var(--space-lg); }
.coming-soon p { color: var(--text-secondary); max-width: 500px; margin-inline: auto; margin-bottom: var(--space-xl); }

.coming-soon__links {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   23. PAGE HEADER
   ------------------------------------------------------------ */
.page-header {
  text-align: center;
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.page-header h1 { margin-bottom: var(--space-sm); }
.page-header p { color: var(--text-secondary); }

/* ------------------------------------------------------------
   24. UTILITY CLASSES
   ------------------------------------------------------------ */
.text-gold { color: var(--gold-primary); }
.text-muted { color: var(--text-secondary); }
.text-center { text-align: center; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fade-in { animation: fadeIn var(--transition-slow) ease both; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Stagger */
.stagger > *:nth-child(1) { animation-delay: 0ms; }
.stagger > *:nth-child(2) { animation-delay: 80ms; }
.stagger > *:nth-child(3) { animation-delay: 160ms; }
.stagger > *:nth-child(4) { animation-delay: 240ms; }
.stagger > *:nth-child(5) { animation-delay: 320ms; }
.stagger > *:nth-child(6) { animation-delay: 400ms; }

/* ------------------------------------------------------------
   25. RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  :root { --space-4xl: 3.5rem; --space-3xl: 2.5rem; }
  .container { padding-inline: var(--space-md); }
  .hero { min-height: 55vh; }
  .hero__title { font-size: clamp(1.4rem, 5vw, 2rem); }
}

@media (max-width: 480px) {
  :root { --space-4xl: 2.5rem; --space-3xl: 2rem; }
  body { font-size: 1rem; }
  .hero { min-height: 50vh; }
  .pricing__grid { grid-template-columns: 1fr; }
  .progress__label { font-size: 0.7rem; }
  .progress__number { width: 32px; height: 32px; font-size: 0.8rem; }
}

/* Print */
@media print {
  *, *::before, *::after { background: transparent !important; color: #000 !important; box-shadow: none !important; }
  .nav, .footer__socials, .nav__hamburger { display: none !important; }
  .main { padding-top: 0; }
}

/* ============================================================
   26. NAV CONTROLS (lang toggle + hamburger grouped)
   ============================================================ */

.nav__controls {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__lang-toggle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  background: none;
  border: 1.5px solid rgba(212, 168, 67, 0.25);
  border-radius: var(--border-radius-pill);
  padding: 4px 12px;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.nav__lang-toggle:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* ============================================================
   27. CHALLENGE CARDS — Multi-select (Step 1 of booking)
   ============================================================ */

.challenge-counter {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}

.challenge-counter--active { color: var(--gold-primary); }

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.challenge-card {
  position: relative;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: var(--space-xl) var(--space-lg);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  user-select: none;
  min-height: 140px;
}

.challenge-card:hover {
  border-color: rgba(212, 168, 67, 0.4);
  background: #1c1c1c;
  transform: translateY(-2px);
}

.challenge-card--selected {
  border: 2px solid var(--gold-primary);
  background: rgba(212, 168, 67, 0.07);
  transform: translateY(-2px);
}

/* Checkmark overlay — hidden until selected */
.challenge-card__check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.challenge-card__check svg {
  width: 12px;
  height: 12px;
  stroke: var(--deep-navy);
}

.challenge-card--selected .challenge-card__check {
  opacity: 1;
  transform: scale(1);
}

.challenge-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.challenge-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-primary);
  fill: none;
}

.challenge-card__title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .challenge-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .challenge-card { min-height: 120px; padding: var(--space-lg) var(--space-md); }
}

@media (max-width: 480px) {
  .challenge-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .challenge-card { min-height: 110px; }
  .challenge-card__title { font-size: 0.82rem; }
}

/* ============================================================
   28. PACKAGE CARDS — Step 3 of booking
   ============================================================ */

.pkg-section {
  max-width: 620px;
  margin: 0 auto var(--space-3xl);
}

.pkg-section__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pkg-section__subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: center;
  margin: var(--space-3xl) 0 var(--space-xl);
}

.pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.pkg-card {
  position: relative;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: var(--space-xl) var(--space-lg);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-align: center;
}

.pkg-card:hover {
  border-color: rgba(212, 168, 67, 0.4);
  transform: translateY(-2px);
}

.pkg-card--selected {
  border: 2px solid var(--gold-primary);
  background: rgba(212, 168, 67, 0.05);
  box-shadow: var(--shadow-gold);
}

.pkg-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--deep-navy);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: var(--border-radius-pill);
  white-space: nowrap;
}

.pkg-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-primary);
  margin-bottom: var(--space-sm);
}

.pkg-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.pkg-card__duration {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.pkg-card__features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.pkg-card__features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: var(--space-lg);
  position: relative;
}

.pkg-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: 700;
}

@media (max-width: 480px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-card { padding: var(--space-lg) var(--space-md); }
}

/* ============================================================
   29. ONBOARDING BOOKING WIZARD — Whop-inspired flow
   ============================================================ */

/* Thin progress bar — sticky below nav */
.onboard-progress {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
}

.onboard-progress__fill {
  height: 100%;
  background: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 168, 67, 0.5);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  width: 25%;
}

/* Wrapper */
.onboard-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl) var(--space-4xl);
  min-height: calc(100vh - var(--nav-height) - 3px);
}

/* Back button */
.onboard__back-btn {
  display: none;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm) 0;
  margin-bottom: var(--space-2xl);
  transition: color var(--transition-fast);
  letter-spacing: 0;
}

.onboard__back-btn:hover { color: var(--text-primary); }

.onboard__back-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Steps */
.onboard__step { display: none; }

.onboard__step--active {
  display: block;
  animation: onboardSlideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes onboardSlideIn {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Header per step */
.onboard__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.onboard__question {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-sm);
}

.onboard__subtext {
  color: var(--text-secondary);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
}

/* Actions row */
.onboard__actions {
  display: flex;
  justify-content: center;
  margin-top: var(--space-3xl);
}

/* ── Rashi card grid ─────────────────────────────────────── */
.rashi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.rashi-card {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: var(--space-xl) var(--space-lg);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  user-select: none;
  min-height: 130px;
}

.rashi-card:hover {
  border-color: rgba(212, 168, 67, 0.4);
  background: #1c1c1c;
  transform: translateY(-2px);
}

.rashi-card--selected {
  border: 2px solid var(--gold-primary);
  background: rgba(212, 168, 67, 0.06);
  transform: translateY(-2px);
}

.rashi-card__icon {
  width: 42px;
  height: 42px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  margin-bottom: var(--space-xs);
}

.rashi-card__name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: 0;
}

.rashi-card__sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0;
}

/* ── Onboard form (birth details step) ───────────────────── */
.onboard-form {
  max-width: 480px;
  margin: 0 auto;
}

.onboard-form .form__group {
  margin-bottom: var(--space-xl);
}

.onboard-form .form__label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.onboard-form .form__input,
.onboard-form .form__select {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.05rem;
  padding: 0.9em 1em;
  border-radius: 10px;
  color: var(--text-primary);
}

.onboard-form .form__input:hover,
.onboard-form .form__select:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.onboard-form .form__input:focus,
.onboard-form .form__select:focus {
  background: #161616;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.12);
}

/* ── Calendar inside onboard ─────────────────────────────── */
.onboard__calendar {
  max-width: 520px;
  margin: 0 auto;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .rashi-grid { grid-template-columns: repeat(3, 1fr); }
  .onboard-wrap { padding: var(--space-2xl) var(--space-md); }
}

@media (max-width: 480px) {
  .rashi-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .onboard__question { font-size: 1.4rem; }
  .rashi-card { padding: var(--space-lg) var(--space-md); min-height: 110px; }
}

/* ============================================================
   30. QUESTIONS SECTION (Step 2 of booking wizard)
   ============================================================ */

.questions-section {
  margin-top: var(--space-3xl);
}

/* ── Section divider with label ─────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(212, 168, 67, 0.25);
}

.section-divider__label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  white-space: nowrap;
  padding: 0 var(--space-sm);
}

.section-divider__sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

/* Textarea (same look as form inputs) */
.form__textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.5;
}

/* ============================================================
   31. PARTNER DETAILS SECTION (marriage challenge)
   ============================================================ */

.partner-section {
  margin-top: var(--space-3xl);
  padding-top: var(--space-md);
}

.partner-section__note {
  font-size: 0.85rem;
  color: var(--gold-primary);
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--border-radius);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-2xl);
  text-align: center;
}

/* ============================================================
   32. SUMMARY — section divider inside summary card
   ============================================================ */

.summary__section-divider {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  padding: var(--space-sm) 0 var(--space-xs);
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
  margin: var(--space-lg) 0 var(--space-sm);
}

.summary__section-divider:first-child {
  margin-top: 0;
}

/* ============================================================
   33. SUCCESS ACTIONS ROW
   ============================================================ */

.success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}

/* WhatsApp-coloured action button */
.btn--wa {
  background: #25D366;
  color: #fff;
  border: none;
}

.btn--wa:hover {
  background: #20b558;
  color: #fff;
}

/* ============================================================
   34. WHATSAPP FLOATING CHAT BUTTON (all pages)
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.65);
  color: #fff;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* ============================================================
   35. LEARN PAGE — "I Want to Learn" interest section
   ============================================================ */

.learn-interest {
  margin: var(--space-3xl) 0 var(--space-2xl);
  padding: var(--space-2xl);
  background: rgba(212, 168, 67, 0.05);
  border: 1px solid rgba(212, 168, 67, 0.18);
  border-radius: var(--border-radius-lg);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.learn-interest__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.learn-interest__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
}

.learn-interest__note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: var(--space-md);
  margin-bottom: 0;
}

.coming-soon__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-2xl);
}
