/* ============ Babita Garg - Luxury Light Theme ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #FFF8FB;
  --bg-secondary: #FFFFFF;
  --bg-accent: #FDF2F8;
  --pink-soft: #F9E4EF;
  --pink-mid: #F4CFE0;
  --pink-deep: #D96AA5;
  --gold: #D4AF37;
  --gold-light: #E8C766;
  --gold-deep: #B8860B;
  --text-dark: #333333;
  --text-muted: #6B6572;
  --text-soft: #8A8194;
  --border-soft: rgba(212, 175, 55, 0.25);
  --shadow-soft: 0 8px 30px rgba(212, 175, 55, 0.10), 0 4px 12px rgba(217, 106, 165, 0.06);
  --shadow-hover: 0 20px 50px rgba(212, 175, 55, 0.18), 0 8px 20px rgba(217, 106, 165, 0.12);
}

html, body {
  background: var(--bg-primary);
  color: var(--text-dark);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(1000px 700px at 10% -5%, rgba(249, 228, 239, 0.7), transparent 60%),
    radial-gradient(800px 600px at 100% 20%, rgba(253, 242, 248, 0.9), transparent 60%),
    radial-gradient(700px 500px at 30% 100%, rgba(249, 228, 239, 0.5), transparent 60%),
    linear-gradient(180deg, #FFF8FB 0%, #FDF2F8 50%, #FFF8FB 100%);
  background-attachment: fixed;
}

.font-serif { font-family: 'Cormorant Garamond', serif; }

.gold-text {
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #8B6914 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.gold { color: var(--gold); }
.gold-fill { color: var(--gold); fill: var(--gold); }

a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: transparent; cursor: pointer; color: inherit; }

/* Soft decorative floating orbs (replaces aurora) */
.aurora, .stars, .stars2 {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
}
.aurora { overflow: hidden; }
.aurora::before, .aurora::after {
  content: ''; position: absolute; width: 55vw; height: 55vw; border-radius: 50%;
  filter: blur(100px); opacity: 0.5;
}
.aurora::before { background: radial-gradient(circle, #F9E4EF, transparent 65%); top: -25%; left: -15%; animation: floatA 16s ease-in-out infinite alternate; }
.aurora::after  { background: radial-gradient(circle, #FDF2F8, transparent 65%); bottom: -25%; right: -15%; animation: floatB 20s ease-in-out infinite alternate; opacity: 0.6; }
@keyframes floatA { to { transform: translate(40px,30px) scale(1.1);} }
@keyframes floatB { to { transform: translate(-30px,-20px) scale(1.15);} }

/* Gentle sparkle particles */
.stars, .stars2 {
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(212,175,55,0.6), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(217,106,165,0.4), transparent),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(212,175,55,0.5), transparent),
    radial-gradient(1px 1px at 85% 15%, rgba(217,106,165,0.4), transparent),
    radial-gradient(1px 1px at 10% 70%, rgba(212,175,55,0.6), transparent),
    radial-gradient(1.5px 1.5px at 60% 40%, rgba(217,106,165,0.4), transparent);
  background-size: 500px 500px;
  opacity: 0.4;
  animation: twinkle 6s ease-in-out infinite alternate;
}
.stars2 { background-size: 800px 800px; opacity: 0.25; animation-duration: 9s; }
@keyframes twinkle { to { opacity: 0.7; } }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.section { padding: 64px 0; position: relative; z-index: 2; }
@media (min-width: 768px) { .section { padding: 96px 0; } }

/* Glass -> luxury light cards */
.glass {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFAFC 100%);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}
.glow-ring {
  box-shadow: 0 0 0 1px rgba(212,175,55,0.35), 0 8px 24px rgba(212,175,55,0.18), 0 4px 12px rgba(217, 106, 165, 0.08);
}

/* Buttons */
.btn-gold, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 14px;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease, background .25s ease;
  cursor: pointer; text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, #E8C766 0%, #D4AF37 55%, #B8860B 100%);
  color: #4A2C0A;
  box-shadow: 0 8px 24px rgba(212,175,55,0.35), inset 0 1px 0 rgba(255,255,255,0.5);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 14px 35px rgba(212,175,55,0.5); }
.btn-gold:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-ghost {
  background: transparent; color: var(--gold-deep);
  border: 1.5px solid rgba(212,175,55,0.5);
}
.btn-ghost:hover { background: rgba(212,175,55,0.08); border-color: var(--gold); color: var(--gold-deep); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-gold i, .btn-ghost i { width: 16px; height: 16px; }

/* Chip / Divider */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(217,106,165,0.10));
  color: var(--gold-deep);
  border: 1px solid rgba(212,175,55,0.30);
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
}
.chip i { width: 12px; height: 12px; }
.divider-gold { height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent); margin: 22px 0; }

/* NAV */
.nav { position: relative; z-index: 20; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-icon {
  width: 42px; height: 42px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #FFFFFF, #FFFAFC);
}
.brand-icon i { width: 20px; height: 20px; color: var(--gold); }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; line-height: 1; font-weight: 600; }
.brand-tag { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.nav-links { display: none; gap: 32px; font-size: 14px; color: var(--text-dark); font-weight: 500; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--gold-deep); }
@media (min-width: 768px) { .nav-links { display: flex; } }

/* HERO */
.hero { position: relative; z-index: 2; padding: 20px 0 80px; }
@media (min-width: 768px) { .hero { padding: 60px 0 120px; } }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-title { font-size: 40px; line-height: 1.1; letter-spacing: -0.02em; margin-top: 24px; color: var(--text-dark); font-weight: 600; }
@media (min-width: 768px) { .hero-title { font-size: 64px; } }
.hero-desc { margin-top: 22px; color: var(--text-muted); font-size: 17px; line-height: 1.65; max-width: 520px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn-row.center { justify-content: center; }
.trust-row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 24px; color: var(--text-muted); font-size: 13px; font-weight: 500; }
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row i { width: 16px; height: 16px; }

.orb-wrap { position: relative; height: 340px; display: flex; align-items: center; justify-content: center; }
@media (min-width: 768px) { .orb-wrap { height: 520px; } }
.orb {
  position: relative;
  width: 300px; height: 300px; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(232,199,102,0.45), rgba(249,228,239,0.55) 45%, rgba(255,248,251,0.9) 75%);
  box-shadow: 0 20px 60px rgba(217, 106, 165, 0.15), inset 0 0 60px rgba(255,255,255,0.6);
}
@media (min-width: 768px) { .orb { width: 440px; height: 440px; } }
.orb-ring { position: absolute; border-radius: 50%; }
.orb-ring-1 { inset: 24px; border: 1.5px dashed rgba(212,175,55,0.5); animation: spin 40s linear infinite; }
.orb-ring-2 { inset: 56px; border: 1px solid rgba(217,106,165,0.35); animation: spin 60s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.orb-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.orb-star { font-size: 72px; font-family: 'Cormorant Garamond', serif; }
.orb-label { margin-top: 12px; color: var(--gold-deep); font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; }

/* Section head */
.section-head { text-align: center; max-width: 640px; margin: 0 auto; }
.section-head h2 { font-size: 32px; margin-top: 16px; line-height: 1.15; color: var(--text-dark); font-weight: 500; }
@media (min-width: 768px) { .section-head h2 { font-size: 48px; } }
.section-head p { margin-top: 16px; color: var(--text-muted); line-height: 1.6; }

/* Services */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card {
  padding: 32px 28px; border-radius: 24px; position: relative; overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(212,175,55,0.22);
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.55);
  box-shadow: var(--shadow-hover);
}
.svc-card::before {
  content: ''; position: absolute; top: -80px; right: -80px; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,228,239,0.7), transparent 65%);
}
.svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, #E8C766, #B8860B);
  color: #4A2C0A;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 6px 16px rgba(212,175,55,0.35);
}
.svc-icon i { width: 24px; height: 24px; }
.svc-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; margin-top: 20px; color: var(--text-dark); font-weight: 600; }
.svc-tag { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-top: 6px; font-weight: 600; }
.svc-desc { margin-top: 16px; color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.svc-topics { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.svc-topic {
  font-size: 11px; padding: 5px 11px; border-radius: 999px;
  background: var(--bg-accent); border: 1px solid rgba(217,106,165,0.15);
  color: var(--text-muted); font-weight: 500;
}
.svc-price { display: flex; align-items: baseline; gap: 8px; margin-top: 20px; }
.svc-price-label { color: var(--text-soft); font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; }
.svc-price-amt { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; }
.svc-card .btn-gold { width: 100%; margin-top: 22px; }

/* Tarot cards */
.tarot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
@media (min-width: 640px) { .tarot-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .tarot-grid { grid-template-columns: repeat(6, 1fr); } }
.tarot-card { perspective: 1000px; cursor: pointer; height: 240px; }
.tarot-inner { position: relative; width: 100%; height: 100%; transition: transform 0.9s cubic-bezier(.2,.7,.2,1); transform-style: preserve-3d; }
.tarot-card.flipped .tarot-inner { transform: rotateY(180deg); }
.tarot-face {
  position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: 18px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; padding: 16px; text-align: center;
}
.tarot-front {
  background: linear-gradient(135deg, #FFFFFF, #FDF2F8);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}
.tarot-back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, rgba(249,228,239,0.9), rgba(232,199,102,0.35));
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
}
.tarot-front .tarot-star { font-size: 42px; }
.tarot-front .tarot-cta { font-family: 'Cormorant Garamond', serif; font-size: 18px; margin-top: 8px; color: var(--text-muted); }
.tarot-back-label { font-size: 10px; letter-spacing: 0.3em; color: var(--gold-deep); text-transform: uppercase; font-weight: 700; }
.tarot-back-msg { font-family: 'Cormorant Garamond', serif; font-size: 16px; margin-top: 10px; line-height: 1.35; color: var(--text-dark); }

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

/* About / Journey */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-desc { margin-top: 20px; color: var(--text-muted); line-height: 1.7; }
.why-grid { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-item {
  display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  font-size: 13px; color: var(--text-dark); font-weight: 500;
  box-shadow: 0 3px 10px rgba(212,175,55,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-item:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(212,175,55,0.12); }
.why-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, #E8C766, #B8860B); color: #4A2C0A;
  display: inline-flex; align-items: center; justify-content: center;
}
.why-icon i { width: 16px; height: 16px; }

.journey-card {
  border-radius: 28px; padding: 36px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FDF2F8 100%);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}
.journey-title { font-size: 28px; font-weight: 600; }
.journey-steps { margin-top: 24px; display: flex; flex-direction: column; gap: 24px; }
.journey-step { display: flex; gap: 16px; }
.journey-num { font-size: 28px; width: 44px; flex-shrink: 0; font-weight: 600; }
.journey-h { font-weight: 600; color: var(--text-dark); }
.journey-d { color: var(--text-muted); font-size: 13px; margin-top: 4px; line-height: 1.5; }

/* Testimonials */
.testimonials-inner { max-width: 800px; }
.testimonial-wrap { margin-top: 48px; position: relative; min-height: 220px; }
.testimonial-card {
  border-radius: 24px; padding: 36px 32px; text-align: center;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  animation: fadeIn 0.6s ease both;
}
.testimonial-stars { display: inline-flex; gap: 4px; margin-bottom: 14px; }
.testimonial-stars i { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 22px; line-height: 1.55; color: var(--text-dark); font-weight: 500; }
@media (min-width: 768px) { .testimonial-text { font-size: 26px; } }
.testimonial-attr { margin-top: 18px; color: var(--text-muted); font-size: 14px; }
.testimonial-attr .gold-text { font-weight: 600; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.testimonial-dot { width: 12px; height: 6px; border-radius: 999px; background: rgba(212,175,55,0.25); border: none; cursor: pointer; transition: all .3s ease; }
.testimonial-dot.active { width: 32px; background: var(--gold); }

/* CTA block */
.cta-block {
  background: linear-gradient(135deg, #FDF2F8 0%, #F9E4EF 50%, #FDF2F8 100%);
  border: 1px solid rgba(212,175,55,0.30);
  border-radius: 32px; padding: 44px 32px; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .cta-block { padding: 64px 40px; } }
.cta-block::before {
  content: ''; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(232,199,102,0.35), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(217,106,165,0.20), transparent 45%);
}
.cta-inner { position: relative; }
.cta-inner h3 { font-size: 32px; margin-top: 16px; color: var(--text-dark); font-weight: 500; }
@media (min-width: 768px) { .cta-inner h3 { font-size: 48px; } }
.cta-inner p { margin-top: 16px; color: var(--text-muted); max-width: 520px; margin-left: auto; margin-right: auto; }

/* Footer */
.footer {
  padding: 64px 0 0; border-top: 1px solid rgba(212,175,55,0.15);
  background: linear-gradient(180deg, transparent, rgba(253,242,248,0.5));
  position: relative; z-index: 2; margin-top: 40px;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-h { color: var(--gold-deep); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer-desc { margin-top: 20px; color: var(--text-muted); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 10px; color: var(--text-dark); font-size: 14px; }
.footer-list li { display: flex; align-items: center; gap: 8px; }
.footer-list i { width: 16px; height: 16px; }
.footer-list a { transition: color .2s ease; }
.footer-list a:hover { color: var(--gold-deep); }
.text-link { color: var(--text-dark); font-size: 14px; text-align: left; transition: color .2s ease; }
.text-link:hover { color: var(--gold-deep); }
.footer-bottom {
  margin-top: 40px; padding: 20px; border-top: 1px solid rgba(212,175,55,0.15);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  font-size: 12px; color: var(--text-soft);
}

/* Floating buttons */
.floating {
  position: fixed; right: 16px; bottom: 16px; z-index: 40;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
@media (min-width: 768px) { .floating { right: 24px; bottom: 24px; } }
.floating-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  border-radius: 999px; color: #fff; text-decoration: none; overflow: visible;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15), 0 4px 10px rgba(0,0,0,0.1);
  transition: transform .2s ease, box-shadow .2s ease;
  border: none; cursor: pointer;
}
.floating-btn:hover { transform: scale(1.08); box-shadow: 0 14px 35px rgba(0,0,0,0.2); }
.back-top {
  width: 44px; height: 44px;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  color: var(--gold-deep);
}
.back-top i { width: 20px; height: 20px; }
.call-btn { width: 48px; height: 48px; background: linear-gradient(135deg, #E8C766 0%, #B8860B 100%); }
.wa-btn { width: 56px; height: 56px; background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
@media (min-width: 768px) {
  .back-top { width: 48px; height: 48px; }
  .call-btn { width: 56px; height: 56px; }
  .wa-btn { width: 64px; height: 64px; }
}
.call-btn i { width: 22px; height: 22px; position: relative; z-index: 2; }
.wa-btn i { width: 26px; height: 26px; position: relative; z-index: 2; fill: white; }
.ping { position: absolute; inset: 0; border-radius: 999px; opacity: 0.35; animation: ping 2s cubic-bezier(0,0,0.2,1) infinite; }
.ping-purple { background: #E8C766; }
.ping-green { background: #25D366; }
@keyframes ping { 75%, 100% { transform: scale(1.6); opacity: 0; } }

/* Tooltip */
.tooltip {
  position: absolute; right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #FFFFFF; color: var(--gold-deep);
  border: 1px solid var(--border-soft);
  padding: 6px 12px; border-radius: 8px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: #FFFFFF;
}
.group:hover .tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 640px) { .tooltip { display: none; } }

/* Modal */
.modal {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(217, 106, 165, 0.15);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 12px;
  overflow-y: auto;
}
.modal.open { display: flex; }
.modal-panel {
  position: relative; width: 100%; max-width: 760px; margin: 20px 0;
  border-radius: 28px; padding: 24px;
  max-height: 92vh; overflow-y: auto;
  background: linear-gradient(180deg, #FFFFFF 0%, #FDF2F8 100%);
  border: 1px solid rgba(212,175,55,0.30);
  box-shadow: 0 30px 80px rgba(217, 106, 165, 0.20), 0 10px 30px rgba(212, 175, 55, 0.12);
  animation: modalIn .35s ease both;
  color: var(--text-dark);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: none; } }
@media (min-width: 768px) { .modal-panel { padding: 32px; } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(217,106,165,0.1);
  color: var(--text-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.modal-close:hover { background: rgba(217,106,165,0.2); }
.modal-close i { width: 16px; height: 16px; }

/* Stepper */
.stepper { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 4px 0 24px; }
.step-dot {
  width: 32px; height: 32px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  border: 1.5px solid rgba(212,175,55,0.4); color: var(--gold-deep); background: #FFFFFF;
}
.step-dot.active {
  background: linear-gradient(135deg, #E8C766, #D4AF37); color: #4A2C0A;
  border-color: #D4AF37;
  box-shadow: 0 0 24px rgba(212,175,55,0.5);
}
.step-dot.done { background: rgba(212,175,55,0.4); color: #4A2C0A; border-color: transparent; }
.step-dot i { width: 14px; height: 14px; }
.step-line { width: 22px; height: 2px; background: rgba(212,175,55,0.2); }
.step-line.done { background: var(--gold); }

.modal-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--text-dark); font-weight: 500; }
@media (min-width: 768px) { .modal-body h3 { font-size: 30px; } }
.modal-body .subtle { color: var(--text-muted); font-size: 14px; margin-top: 8px; }

/* Choice tiles */
.choice-grid { margin-top: 24px; display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .choice-grid { grid-template-columns: 1fr 1fr; } }
.choice-grid.three { grid-template-columns: 1fr; }
@media (min-width: 640px) { .choice-grid.three { grid-template-columns: repeat(3, 1fr); } }
.choice-tile {
  text-align: left; padding: 18px; border-radius: 18px;
  border: 1.5px solid rgba(212,175,55,0.20); background: #FFFFFF;
  transition: all .2s ease; cursor: pointer; width: 100%;
  color: var(--text-dark);
  box-shadow: 0 3px 10px rgba(212,175,55,0.06);
}
.choice-tile:hover { border-color: rgba(212,175,55,0.55); box-shadow: 0 8px 20px rgba(212,175,55,0.12); }
.choice-tile.selected {
  border-color: var(--gold); background: linear-gradient(135deg, #FFFFFF, #FDF2F8);
  box-shadow: 0 8px 20px rgba(212,175,55,0.20);
}
.choice-tile-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, #E8C766, #B8860B); color: #4A2C0A;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.choice-tile-icon.plain { background: linear-gradient(135deg, #F4CFE0, #D96AA5); color: #FFFFFF; }
.choice-tile-icon i { width: 20px; height: 20px; }
.choice-tile-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--text-dark); }
.choice-tile-desc { color: var(--text-muted); font-size: 12px; margin-top: 2px; }
.choice-tile-price { font-family: 'Cormorant Garamond', serif; font-size: 26px; float: right; margin-top: -8px; }

/* Inputs */
.input, textarea.input {
  width: 100%; background: #FFFFFF;
  border: 1.5px solid rgba(212,175,55,0.25);
  color: var(--text-dark); border-radius: 12px;
  padding: 12px 14px; outline: none;
  font: inherit;
  transition: all .2s ease;
}
.input:focus, textarea.input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }
.input::placeholder { color: var(--text-soft); }
textarea.input { resize: vertical; min-height: 100px; }
.field-label { color: var(--text-muted); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }

.input-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 20px; }
@media (min-width: 640px) { .input-grid { grid-template-columns: 1fr 1fr; } }
.input-grid .full { grid-column: 1 / -1; }

.chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.select-chip {
  padding: 10px 16px; border-radius: 999px;
  border: 1.5px solid rgba(212,175,55,0.3);
  background: #FFFFFF; color: var(--text-dark);
  cursor: pointer; transition: all .2s ease; font-size: 13px; font-weight: 500;
}
.select-chip:hover { border-color: var(--gold); background: #FDF2F8; }
.select-chip.selected {
  background: linear-gradient(135deg, #E8C766, #D4AF37); color: #4A2C0A;
  border-color: var(--gold); font-weight: 700;
}

/* Nav buttons row */
.modal-nav { margin-top: 32px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }

/* Booking summary */
.summary-box {
  margin-top: 24px; padding: 22px; border-radius: 20px;
  background: linear-gradient(135deg, #FFFFFF, #FDF2F8);
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 4px 14px rgba(212,175,55,0.08);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px; font-size: 14px;
  color: var(--text-dark);
}
.summary-item .k { color: var(--text-muted); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
.summary-item .v { margin-top: 2px; color: var(--text-dark); font-weight: 500; }

/* Payment section */
.pay-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 24px; align-items: start; }
@media (min-width: 768px) { .pay-grid { grid-template-columns: 1fr 1fr; } }
.qr-box {
  padding: 16px; border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  display: flex; justify-content: center; align-items: center;
}
.qr-box img { max-width: 100%; max-height: 380px; border-radius: 12px; }
.pay-info h4 { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin-top: 12px; color: var(--text-dark); font-weight: 600; }
.upi-box {
  margin-top: 16px; padding: 14px 16px; border-radius: 12px;
  background: #FDF2F8; border: 1px solid rgba(212,175,55,0.25);
  display: flex; justify-content: space-between; align-items: center;
}
.upi-box .k { color: var(--text-muted); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
.upi-box .v { font-family: monospace; font-weight: 600; }
.small-btn {
  padding: 6px 12px; border-radius: 8px; font-size: 12px;
  border: 1px solid rgba(212,175,55,0.5); color: var(--gold-deep);
  background: #FFFFFF;
  display: inline-flex; align-items: center; gap: 4px; font-weight: 600;
}
.small-btn:hover { background: rgba(212,175,55,0.08); }
.small-btn i { width: 12px; height: 12px; }

/* Upload */
.upload-box {
  margin-top: 16px; display: flex; align-items: center; gap: 12px;
  padding: 14px; border-radius: 14px;
  border: 1.5px dashed rgba(212,175,55,0.4);
  background: #FFFFFF;
  cursor: pointer; transition: background .2s ease, border-color .2s ease;
}
.upload-box:hover { background: #FDF2F8; border-color: var(--gold); }
.upload-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, #E8C766, #B8860B); color: #4A2C0A;
  display: inline-flex; align-items: center; justify-content: center;
}
.upload-icon i { width: 20px; height: 20px; }
.upload-text { flex: 1; min-width: 0; }
.upload-name { font-size: 14px; color: var(--text-dark); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upload-hint { color: var(--text-muted); font-size: 12px; margin-top: 2px; }
.preview { margin-top: 12px; position: relative; display: inline-block; }
.preview img { max-height: 144px; border-radius: 10px; border: 1px solid rgba(212,175,55,0.3); display: block; }
.preview-remove {
  position: absolute; top: -8px; right: -8px;
  width: 24px; height: 24px; border-radius: 999px;
  background: #FFFFFF; border: 1px solid rgba(212,175,55,0.4);
  color: var(--text-dark);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.preview-remove i { width: 12px; height: 12px; }

/* Confirmation */
.confirmed-header { text-align: center; }
.confirmed-header .chip { margin-bottom: 12px; }
.confirmed-header .chip i { color: #16a34a; }

.pay-later-box {
  margin-top: 24px; padding: 26px; border-radius: 22px;
  background: linear-gradient(135deg, #FFFFFF, #FDF2F8);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  display: flex; align-items: flex-start; gap: 16px;
}
.pay-later-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, #E8C766, #B8860B); color: #4A2C0A;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pay-later-icon i { width: 22px; height: 22px; }
.pay-later-h { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--text-dark); font-weight: 600; }
.pay-later-d { color: var(--text-muted); font-size: 14px; margin-top: 4px; line-height: 1.55; }
.pay-later-actions { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 12px; }

.paid-box {
  margin-top: 24px; padding: 28px; border-radius: 22px; text-align: center;
  background: linear-gradient(135deg, #F0FDF4, #FDF2F8);
  border: 1px solid rgba(22,163,74,0.35);
  box-shadow: 0 8px 24px rgba(22,163,74,0.10);
}
.paid-box h4 { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin-top: 8px; color: var(--text-dark); font-weight: 600; }
.paid-box p { color: var(--text-muted); font-size: 14px; margin-top: 8px; }

/* Animations */
.fade-in { animation: fadeIn 0.6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px);} to { opacity: 1; transform: none;} }
