/* ========================================
   JyotirGyan – Redesigned Styles
   Theme: Cosmic Indigo + Saffron Gold
   ======================================== */

:root {
  --bg: #0d061d;
  --bg-2: #1a0b2e;
  --bg-3: #221038;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 215, 130, 0.18);
  --text: #f5efe6;
  --text-muted: #c9bfd6;
  --primary: #ffb547;        /* saffron gold */
  --primary-2: #ff7a00;
  --accent: #b48cff;         /* mystic violet */
  --accent-2: #6a3df5;
  --success: #25d366;        /* whatsapp green */
  --danger: #ff5c7a;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 40px rgba(255, 181, 71, 0.25);
  --container: 1180px;
  --grad-primary: linear-gradient(135deg, #ffb547 0%, #ff7a00 100%);
  --grad-accent:  linear-gradient(135deg, #b48cff 0%, #6a3df5 100%);
  --grad-hero:    linear-gradient(135deg, #1a0b2e 0%, #2d1359 50%, #0d061d 100%);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
/* Defensive: ensure the [hidden] HTML attribute always wins over author CSS
   (this is the canonical fix for class rules that set display:flex/grid/etc) */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary); }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: .8rem;
}

/* ============== Cosmic Background ============== */
.cosmic-bg {
  position: fixed; inset: 0; z-index: -1;
  background: var(--grad-hero);
}
.stars, .twinkling {
  position: absolute; inset: 0;
}
.stars {
  background:
    radial-gradient(2px 2px at 20% 30%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 70% 80%, #fff, transparent),
    radial-gradient(2px 2px at 50% 50%, #fff, transparent),
    radial-gradient(1px 1px at 90% 20%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 10% 70%, #fff, transparent),
    radial-gradient(1px 1px at 33% 90%, #fff, transparent),
    radial-gradient(2px 2px at 85% 55%, #fff, transparent),
    radial-gradient(1px 1px at 60% 15%, #fff, transparent);
  background-size: 800px 800px;
  opacity: .55;
}
.twinkling {
  background-image: radial-gradient(1px 1px at 15% 25%, #ffd97b, transparent),
                    radial-gradient(1px 1px at 80% 60%, #b48cff, transparent),
                    radial-gradient(1px 1px at 45% 85%, #fff, transparent);
  background-size: 500px 500px;
  animation: twinkle 9s linear infinite;
  opacity: .8;
}
@keyframes twinkle {
  from { background-position: 0 0; }
  to   { background-position: 500px 500px; }
}

/* ============== Top Bar ============== */
.top-bar {
  background: linear-gradient(90deg, rgba(255,181,71,.15), rgba(180,140,255,.15));
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
  padding: 8px 0;
}
.top-bar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.top-bar__contact { display: flex; gap: 18px; flex-wrap: wrap; }
.top-bar i { color: var(--primary); margin-right: 6px; }

/* ============== Navbar ============== */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13, 6, 29, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: padding .25s, background .25s;
}
.navbar.scrolled { background: rgba(13, 6, 29, .92); }
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-primary);
  color: #1a0b2e; font-size: 1.3rem;
  box-shadow: var(--shadow-glow);
}
.brand__name { font-family: 'Cinzel', serif; font-weight: 700; font-size: 1.2rem; line-height: 1; }
.brand__tag  { font-size: .72rem; color: var(--text-muted); letter-spacing: .15em; text-transform: uppercase; }

.nav { display: flex; gap: 26px; }
.nav a { font-size: .95rem; font-weight: 500; position: relative; }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad-primary); transition: width .25s;
}
.nav a:hover::after { width: 100%; }

.nav__cta { display: inline-flex; }
.hamburger {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--border); border-radius: 8px;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
}
.hamburger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 14px;
  border-top: 1px solid var(--border);
  background: rgba(13, 6, 29, .96);
}
.mobile-menu.open { display: flex; }

/* ============== Buttons ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary); color: #1a0b2e;
  box-shadow: 0 10px 24px rgba(255,181,71,.35);
}
.btn-primary:hover { transform: translateY(-2px); color: #1a0b2e; box-shadow: 0 14px 32px rgba(255,181,71,.5); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-whatsapp {
  background: #0b8457; color: #fff;
  box-shadow: 0 10px 24px rgba(11, 132, 87, .35);
}
.btn-whatsapp:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 14px 32px rgba(11,132,87,.5); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 34px; font-size: 1.05rem; }
.btn-ghost { background: transparent; color: var(--text-muted); border: 1.5px solid var(--border); }
.btn-ghost:hover { color: var(--primary); border-color: var(--primary); }

/* ============== Hero ============== */
.hero {
  position: relative;
  padding: 60px 0 90px;
  overflow: hidden;
}
.hero__inner {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--border);
  font-size: .85rem; color: var(--primary); margin-bottom: 22px;
}
.hero__sub { font-size: 1.1rem; max-width: 560px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }
.hero__trust {
  display: flex; gap: 36px; margin-top: 30px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.hero__trust > div { display: flex; flex-direction: column; }
.hero__trust strong { font-size: 1.6rem; font-family: 'Cinzel', serif; color: var(--primary); }
.hero__trust span   { font-size: .82rem; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; }

/* Zodiac Wheel */
.zodiac-wheel {
  position: relative;
  width: min(440px, 92vw);
  height: min(440px, 92vw);
  margin: 0 auto;
  animation: rotate 60s linear infinite;
}
.zodiac-wheel__ring {
  position: absolute; inset: 0;
  border: 1.5px dashed rgba(255,181,71,.35);
  border-radius: 50%;
}
.zodiac-wheel__ring--2 {
  inset: 30px;
  border: 1px solid rgba(180,140,255,.35);
  animation: rotate 40s linear infinite reverse;
}
.zodiac-wheel__core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 130px; height: 130px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-primary); color: #1a0b2e;
  font-size: 4rem;
  box-shadow: var(--shadow-glow), 0 0 80px rgba(180,140,255,.3);
  animation: pulse 3s ease-in-out infinite;
}
.zodiac-dot {
  --i: 0;
  position: absolute;
  left: 50%; top: 50%;
  width: 44px; height: 44px;
  margin: -22px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1.2rem; color: var(--primary);
  transform: rotate(calc(var(--i) * 30deg)) translateY(calc(min(220px, 46vw) * -1)) rotate(calc(var(--i) * -30deg));
}
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes pulse  { 50% { box-shadow: var(--shadow-glow), 0 0 120px rgba(255,181,71,.55); } }

/* ============== Trust Strip ============== */
.trust-strip {
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-strip__inner {
  display: flex; justify-content: space-around; gap: 18px; flex-wrap: wrap;
  font-size: .9rem; color: var(--text-muted);
}
.trust-strip i { color: var(--primary); margin-right: 8px; }

/* ============== Sections ============== */
.section { padding: 90px 0; position: relative; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,.025), transparent); }
.section--contact { padding-bottom: 60px; }
.section__head {
  max-width: 720px; margin: 0 auto 50px; text-align: center;
}

/* Card */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s, border-color .25s, background .25s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,181,71,.45); background: var(--surface-2); }

/* Grid layouts */
.grid { display: grid; gap: 24px; }
.grid--services       { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--steps          { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--pricing        { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); align-items: stretch; }
.grid--testimonials   { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Service */
.service { text-align: left; }
.service .card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-accent); color: #fff; font-size: 1.4rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(106,61,245,.35);
}
.service h3 { color: var(--text); margin-bottom: 8px; }
.card__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: .9rem;
  margin-top: 6px;
}
.card__link i { transition: transform .2s; }
.card__link:hover i { transform: translateX(4px); }

/* About */
.about {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center;
}
.about__media { position: relative; }
.about__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: var(--grad-accent);
  display: grid; place-items: center;
  color: rgba(255,255,255,.85);
  font-size: 6rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow);
}
.about__photo::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(13,6,29,.9) 0%, rgba(13,6,29,0) 45%),
              radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 50%);
}
.about__photo img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.about__photo span {
  position: absolute; bottom: 18px; left: 22px; right: 150px; z-index: 3;
  text-align: left; font-family: 'Cinzel', serif; font-size: 1.05rem; color: #fff;
  line-height: 1.25; text-shadow: 0 1px 6px rgba(0,0,0,.65);
}
.about__sticker {
  position: absolute; bottom: -20px; right: -20px; z-index: 4;
  background: var(--bg-2); border: 1px solid var(--border);
  padding: 14px 18px; border-radius: 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
}
.about__sticker i { color: var(--primary); font-size: 1.6rem; }
.about__sticker strong { display: block; font-family: 'Cinzel', serif; font-size: 1.15rem; }
.about__sticker span { font-size: .8rem; color: var(--text-muted); }

.check-list { margin: 18px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--text); }
.check-list i {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-primary); color: #1a0b2e; font-size: .7rem;
  margin-top: 4px;
}

/* Steps */
.step { text-align: left; position: relative; padding-top: 20px; }
.step__num {
  font-family: 'Cinzel', serif; font-size: 3.5rem; line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 16px;
}

/* Pricing */
.pricing { display: flex; flex-direction: column; text-align: center; position: relative; }
.pricing .price {
  font-family: 'Cinzel', serif; font-size: 3rem; color: var(--primary);
  margin: 6px 0 20px;
}
.pricing .price span { font-size: 1.4rem; vertical-align: super; margin-right: 4px; }
.pricing ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; text-align: left; }
.pricing ul li { display: flex; gap: 10px; align-items: center; font-size: .92rem; }
.pricing ul i { color: var(--success); width: 18px; }
.pricing ul li.muted { color: var(--text-muted); text-decoration: line-through; }
.pricing ul li.muted i { color: var(--danger); }
.pricing .btn { margin-top: auto; }
.pricing--featured {
  background: linear-gradient(160deg, rgba(255,181,71,.12), rgba(180,140,255,.12));
  border-color: rgba(255,181,71,.5);
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
}
.ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad-primary); color: #1a0b2e;
  padding: 5px 16px; border-radius: 999px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}

/* Testimonials */
.testimonial { display: flex; flex-direction: column; gap: 10px; }
.testimonial .stars { color: var(--primary); font-size: 1rem; letter-spacing: 2px; }
.testimonial blockquote { margin: 0; font-style: italic; color: var(--text); font-size: .98rem; }
.testimonial figcaption { font-size: .85rem; color: var(--text-muted); margin-top: 8px; }

/* Free Kundli CTA */
.kundli-cta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: linear-gradient(135deg, rgba(255,181,71,.15), rgba(106,61,245,.15));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px;
}
.kundli-cta__form { display: flex; flex-direction: column; gap: 12px; }
.kundli-cta__form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Kundli result */
.kundli-result { margin-top: 40px; }
.kundli-result__head { text-align: center; margin-bottom: 28px; }
.kundli-result__head h3 { font-size: 1.7rem; margin-bottom: 6px; }
.kundli-result__meta { color: var(--text-muted); font-size: .95rem; }
.kundli-result__grid {
  display: grid; grid-template-columns: minmax(0, 360px) 1fr; gap: 32px;
  align-items: start;
}
.kundli-chart-wrap { text-align: center; }
.kundli-chart {
  background: rgba(13,6,29,.45); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px;
}
.kchart-svg { width: 100%; height: auto; display: block; }
.kchart-svg .kc-line { stroke: var(--gold, #ffb547); stroke-width: 1.2; fill: none; opacity: .55; }
.kchart-svg .kc-sign { fill: var(--text-muted); font-size: 9px; text-anchor: middle; opacity: .8; }
.kchart-svg .kc-planet { fill: #fff; font-size: 11px; font-weight: 600; text-anchor: middle; }
.kchart-svg .kc-asc { fill: var(--gold, #ffb547); font-weight: 700; }
.kundli-chart__cap { margin-top: 10px; font-size: .85rem; color: var(--text-muted); }

.ksum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ksum-cell {
  background: rgba(255,181,71,.08); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 14px; display: flex; flex-direction: column; gap: 4px;
}
.ksum-k { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .4px; }
.ksum-v { font-size: 1.05rem; font-weight: 700; color: #fff; }

.kundli-tables { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; margin-top: 32px; }
.kundli-table h4 { font-size: 1.1rem; margin-bottom: 12px; }
.kundli-table table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.kundli-table th, .kundli-table td {
  text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--border);
}
.kundli-table th { color: var(--text-muted); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .3px; }
.kundli-table td { color: #ede7f6; }
.kundli-table tr.kd-now td { color: var(--gold, #ffb547); font-weight: 700; }

.kundli-result__cta {
  text-align: center; margin-top: 34px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.kundli-cta__upsell { max-width: 640px; margin: 0 auto 18px; color: var(--text-muted); }
.kundli-result__cta .btn-ghost { margin-left: 12px; }

@media (max-width: 860px) {
  .kundli-result__grid { grid-template-columns: 1fr; }
  .kundli-tables { grid-template-columns: 1fr; }
  .kundli-chart { max-width: 360px; margin: 0 auto; }
}
@media (max-width: 520px) {
  .ksum-grid { grid-template-columns: 1fr; }
  .kundli-result__cta .btn-ghost { margin-left: 0; margin-top: 12px; }
}

/* Forms */
input, select, textarea {
  width: 100%;
  background: rgba(13,6,29,.6);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 10px;
  font-family: inherit; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,181,71,.18);
}
input::placeholder, textarea::placeholder { color: rgba(201,191,214,.6); }
select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23ffb547' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-note { font-size: .78rem; color: var(--text-muted); margin: 0; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 22px;
  transition: background .2s;
}
.faq details[open] { background: var(--surface-2); border-color: rgba(255,181,71,.45); }
.faq summary {
  list-style: none; cursor: pointer;
  font-family: 'Cinzel', serif; font-weight: 500; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; color: var(--primary); font-size: 1.6rem; line-height: 1; transition: transform .25s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 12px 0 0; }

/* Contact */
.contact {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start;
}
.contact__list { display: flex; flex-direction: column; gap: 18px; margin: 24px 0; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__list i {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--surface-2); color: var(--primary);
  border: 1px solid var(--border);
}
.contact__list strong { display: block; font-family: 'Cinzel', serif; color: var(--text); }
.contact__list a { color: var(--text-muted); font-size: .95rem; }
.contact__list a:hover { color: var(--primary); }

.socials { display: flex; gap: 12px; margin-top: 12px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text); font-size: 1rem;
  transition: transform .2s, background .2s, color .2s;
}
.socials a:hover { transform: translateY(-2px); background: var(--grad-primary); color: #1a0b2e; }

.contact__form { display: flex; flex-direction: column; gap: 14px; }
.contact__form h3 { font-family: 'Cinzel', serif; }
.contact__form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Footer */
.footer {
  background: rgba(0,0,0,.4);
  border-top: 1px solid var(--border);
  padding: 60px 0 20px;
  margin-top: 20px;
}
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
}
.footer h4, .footer__heading {
  font-family: 'Cinzel', serif; font-size: 1rem;
  color: var(--primary); margin-bottom: 16px;
  letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer__about { font-size: .9rem; max-width: 320px; margin-top: 14px; }
.footer i { margin-right: 8px; color: var(--primary); }
.footer__bottom {
  border-top: 1px solid var(--border);
  margin-top: 40px; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .85rem; color: var(--text-muted);
}
.footer__bottom i { color: var(--danger); }

/* Floating buttons */
.fab-whatsapp, .fab-top {
  position: fixed; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.6rem; color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
  border: none; cursor: pointer;
  transition: transform .2s;
}
.fab-whatsapp { bottom: 24px; right: 24px; background: var(--success); }
.fab-whatsapp:hover { transform: scale(1.08); color: #fff; }
.fab-whatsapp__pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--success); opacity: .5;
  animation: ping 2s ease-out infinite; z-index: -1;
}
@keyframes ping {
  0%   { transform: scale(1);   opacity: .5; }
  80%, 100% { transform: scale(1.8); opacity: 0; }
}
.fab-top {
  bottom: 92px; right: 24px;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--primary);
  opacity: 0; pointer-events: none; font-size: 1rem;
  transition: opacity .25s, transform .25s;
}
.fab-top.visible { opacity: 1; pointer-events: auto; }
.fab-top:hover { transform: translateY(-3px); }

/* ============== Responsive ============== */
@media (max-width: 960px) {
  .nav, .nav__cta { display: none; }
  .hamburger { display: flex; }
  .hero__inner, .about, .contact, .kundli-cta, .footer__inner {
    grid-template-columns: 1fr;
  }
  .pricing--featured { transform: none; }
  .about__sticker { right: 20px; bottom: 20px; }
  .section { padding: 70px 0; }
  .top-bar__contact { display: none; }
  .kundli-cta { padding: 30px; }
}

@media (max-width: 560px) {
  .hero__trust { gap: 18px; }
  .hero__trust strong { font-size: 1.3rem; }
  .kundli-cta__form .row, .contact__form .row { grid-template-columns: 1fr; }
  .top-bar__inner { justify-content: center; text-align: center; }
  h1 { font-size: 2.1rem; }
}

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============== Additions (v2) ============== */

/* Top-bar live indicator + language toggle */
.top-bar__right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.live-dot {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; color: #e6ffe6;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(37, 211, 102, .15); border: 1px solid rgba(37,211,102,.4);
}
.live-dot__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(37,211,102,.7);
  animation: livepulse 1.6s ease-out infinite;
}
@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
/* Offline (outside working hours): grey, no blinking */
.live-dot.is-offline {
  color: #d8d8e0;
  background: rgba(150,150,170,.14); border-color: rgba(150,150,170,.4);
}
.live-dot.is-offline .live-dot__pulse {
  background: #9aa0b5; box-shadow: none; animation: none;
}
/* Off-hours modal extras */
.offhours__icon {
  width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.5rem;
  color: var(--primary); background: rgba(255,181,71,.14); border: 1px solid rgba(255,181,71,.4);
}
#offHoursModal .modal__card { text-align: center; }
.offhours__label {
  display: block; text-align: left; margin: 16px 0 6px;
  font-size: .85rem; color: var(--text-muted); font-weight: 600;
}
.offhours__draft {
  width: 100%; resize: vertical; min-height: 120px; margin-bottom: 14px;
}
#offHoursModal .btn-block { margin-bottom: 10px; }
.offhours__hours { margin-top: 6px; opacity: .85; }
.lang-toggle {
  display: inline-flex; border: 1px solid var(--border); border-radius: 999px; overflow: hidden;
  background: rgba(255,255,255,.05);
}
.lang-btn {
  background: transparent; border: none; color: var(--text-muted);
  padding: 4px 12px; font-size: .8rem; font-weight: 600;
  font-family: inherit;
}
.lang-btn.active { background: var(--grad-primary); color: #1a0b2e; }

/* Daily Horoscope */
.section--compact { padding: 60px 0; }
.zodiac-strip {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}
.zodiac-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 6px;
  text-align: center;
  cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.zodiac-card:hover, .zodiac-card.active {
  transform: translateY(-4px);
  background: linear-gradient(160deg, rgba(255,181,71,.18), rgba(180,140,255,.12));
  border-color: rgba(255,181,71,.55);
}
.zodiac-card__glyph { font-size: 1.6rem; color: var(--primary); }
.zodiac-card__name  { font-size: .72rem; font-weight: 600; color: var(--text); letter-spacing: .03em; }

.zodiac-reading {
  margin-top: 26px; position: relative;
  background: linear-gradient(135deg, rgba(255,181,71,.12), rgba(106,61,245,.15));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.zodiac-reading__close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text);
  font-size: 1.3rem; line-height: 1;
}
.zodiac-reading__head { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.zodiac-reading__glyph {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-primary); color: #1a0b2e; font-size: 2rem;
}
.zodiac-reading h3 { margin: 0; font-family: 'Cinzel', serif; }
.zodiac-reading__date { font-size: .85rem; color: var(--text-muted); }
.zodiac-reading__meta {
  display: flex; gap: 22px; flex-wrap: wrap;
  margin: 14px 0 20px;
  padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  font-size: .9rem; color: var(--text-muted);
}
.zodiac-reading__meta strong { color: var(--primary); }

@media (max-width: 960px) {
  .zodiac-strip { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 480px) {
  .zodiac-strip { grid-template-columns: repeat(4, 1fr); }
}

/* Articles */
.grid--articles { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.article { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.article__img {
  aspect-ratio: 16 / 9;
  display: grid; place-items: center;
  font-size: 3rem; color: #fff;
  background: var(--grad-accent);
}
.article__img--1 { background: linear-gradient(135deg, #ff6a88, #ff99ac); }
.article__img--2 { background: linear-gradient(135deg, #6a3df5, #b48cff); }
.article__img--3 { background: linear-gradient(135deg, #ffb547, #ff7a00); }
.article__img--4 { background: linear-gradient(135deg, #232c5c, #5a6bd8); }
.article__img--5 { background: linear-gradient(135deg, #e0457b, #ff8aa8); }
.article__img--6 { background: linear-gradient(135deg, #0f8a6e, #46c9a8); }
.articles__cta { text-align: center; margin-top: 2.5rem; }
.article__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.article__tag {
  display: inline-block; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--primary); font-weight: 700;
}
.article h3 { font-size: 1.1rem; margin: 4px 0; }

/* Sticky bottom bar (mobile) */
.sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 55;
  background: rgba(13,6,29,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 8px 6px calc(env(safe-area-inset-bottom, 8px) + 8px);
}
.sticky-bar__item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  padding: 8px 4px;
  font-size: .72rem; font-weight: 600;
  border-radius: 12px;
  color: var(--text);
}
.sticky-bar__item i { font-size: 1.2rem; color: var(--primary); }
.sticky-bar__item--wa i { color: var(--success); }
.sticky-bar__item--book { background: var(--grad-primary); color: #1a0b2e; }
.sticky-bar__item--book i { color: #1a0b2e; }

@media (max-width: 720px) {
  .sticky-bar { display: flex; gap: 6px; }
  .fab-whatsapp, .fab-top { bottom: 84px; }
  .fab-top { bottom: 152px; }
  body { padding-bottom: 70px; }
}

/* =============== v3 additions =============== */

/* Panchang */
.panchang-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.panchang-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: transform .2s, background .2s;
}
.panchang-card:hover { transform: translateY(-4px); background: var(--surface-2); }
.panchang-card i { font-size: 1.4rem; color: var(--primary); margin-bottom: 4px; }
.panchang-card__label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); }
.panchang-card strong { font-family: 'Cinzel', serif; font-size: 1.15rem; color: var(--text); }
.panchang-card--wide { grid-column: span 4; background: linear-gradient(135deg, rgba(255,181,71,.12), rgba(106,61,245,.12)); }
@media (max-width: 720px) {
  .panchang-grid { grid-template-columns: repeat(2, 1fr); }
  .panchang-card--wide { grid-column: span 2; }
}

/* Tools tabs */
.tools-tabs {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 30px;
}
.tools-tab {
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  padding: 10px 18px; border-radius: 999px;
  font-family: inherit; font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.tools-tab i { margin-right: 6px; color: var(--primary); }
.tools-tab:hover { border-color: var(--primary); transform: translateY(-2px); }
.tools-tab.active {
  background: var(--grad-primary); color: #1a0b2e; border-color: transparent;
}
.tools-tab.active i { color: #1a0b2e; }

.tool-panel { display: none; max-width: 760px; margin: 0 auto; }
.tool-panel.active { display: block; }
.tool-panel__intro { text-align: center; margin-bottom: 24px; }
.tool-panel__intro h3 { font-family: 'Cinzel', serif; }

.tool-form {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.tool-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tool-form--grid fieldset {
  border: 1px solid var(--border); border-radius: 14px; padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
  background: rgba(255,255,255,.02);
}
.tool-form--grid legend { padding: 0 8px; font-family: 'Cinzel', serif; color: var(--primary); }

.tool-result {
  margin-top: 18px; padding: 22px;
  background: linear-gradient(135deg, rgba(255,181,71,.14), rgba(106,61,245,.14));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.tool-result h4 { font-family: 'Cinzel', serif; color: var(--primary); margin-bottom: 10px; }
.tool-result .num-big {
  font-family: 'Cinzel', serif; font-size: 4rem; line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-align: center; margin: 10px 0;
}
.tool-result .compat-bar {
  height: 14px; background: rgba(255,255,255,.08); border-radius: 999px; overflow: hidden;
  margin: 14px 0;
}
.tool-result .compat-bar > span {
  display: block; height: 100%;
  background: var(--grad-primary);
  transition: width 1s ease-out;
}
.tool-result .grid-mini {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; margin-top: 14px;
}
.tool-result .grid-mini div {
  padding: 10px; background: rgba(255,255,255,.04); border-radius: 10px; text-align: center; font-size: .9rem;
}
.tool-result .grid-mini strong { display: block; color: var(--primary); font-size: 1.1rem; }

/* Reviews */
.rating-summary {
  display: inline-flex; align-items: center; gap: 16px;
  margin-top: 12px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.rating-summary__big {
  font-family: 'Cinzel', serif; font-size: 2rem;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rating-summary .stars { color: var(--primary); font-size: 1rem; letter-spacing: 2px; }
.rating-summary__count { font-size: .8rem; color: var(--text-muted); }

.reviews-toolbar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 14px; margin: 30px 0 20px;
}
.reviews-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  padding: 6px 14px; border-radius: 999px;
  font-family: inherit; font-size: .82rem; font-weight: 500; cursor: pointer;
  transition: all .2s;
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { background: var(--grad-primary); color: #1a0b2e; border-color: transparent; font-weight: 700; }

.reviews-trust {
  text-align: center; font-size: .9rem; color: var(--text-muted); margin-top: 30px;
}
.reviews-trust i { color: var(--primary); margin: 0 6px; }
.reviews-trust a { color: var(--primary); text-decoration: underline; }
.reviews-more { text-align: center; margin-top: 26px; }
.reviews-more[hidden] { display: none !important; }
.reviews-more .btn { min-width: 240px; }

/* ===== Blog / Article pages ===== */
.article-wrap { padding-top: 120px; padding-bottom: 60px; }
.breadcrumbs { font-size: .85rem; color: var(--text-muted); margin-bottom: 18px; }
.breadcrumbs a { color: var(--primary); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.article-head { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.article-head .article__tag {
  display: inline-block; background: rgba(212,175,55,.14); color: var(--primary);
  padding: 5px 14px; border-radius: 999px; font-size: .8rem; letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 16px;
}
.article-head h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.2; margin-bottom: 14px; }
.article-meta { font-size: .85rem; color: var(--text-muted); display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.article-meta i { color: var(--primary); margin-right: 5px; }
.article-body { max-width: 760px; margin: 0 auto; font-size: 1.05rem; line-height: 1.8; color: var(--text); }
.article-body h2 { font-family: 'Cinzel', serif; font-size: 1.5rem; margin: 38px 0 14px; color: var(--text-strong, #fff); }
.article-body h3 { font-size: 1.2rem; margin: 26px 0 10px; color: var(--primary); }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; display: flex; flex-direction: column; gap: 9px; }
.article-body li { line-height: 1.7; }
.article-body strong { color: var(--text-strong, #fff); }
.article-body blockquote {
  border-left: 3px solid var(--primary); padding: 8px 20px; margin: 24px 0;
  background: rgba(255,255,255,.03); border-radius: 8px; font-style: italic; color: var(--text-muted);
}
.article-cta {
  margin: 40px auto 0; max-width: 760px; text-align: center;
  background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(124,58,237,.12));
  border: 1px solid rgba(212,175,55,.25); border-radius: 18px; padding: 32px 24px;
}
.article-cta h3 { font-family: 'Cinzel', serif; font-size: 1.4rem; margin-bottom: 10px; }
.article-cta p { color: var(--text-muted); margin-bottom: 20px; }
.article-cta .btn { margin: 6px; }
.blog-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 36px; color: var(--primary); text-decoration: none; }
.blog-back:hover { text-decoration: underline; }
.blog-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }


/* Modal */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  padding: 20px;
}
/* CRITICAL: ensure the [hidden] attribute actually hides the modal,
   since the .modal class explicitly sets display:grid which would
   otherwise override the browser's default [hidden] { display:none } */
.modal[hidden] { display: none !important; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(13,6,29,.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn .2s ease-out;
}
.modal__card {
  position: relative; z-index: 1;
  width: 100%; max-width: 520px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  max-height: 90vh; overflow-y: auto;
  animation: zoomIn .25s ease-out;
}
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text);
  font-size: 1.4rem; line-height: 1;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { transform: scale(.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.star-input { display: inline-flex; gap: 4px; font-size: 1.8rem; color: rgba(255,255,255,.2); cursor: pointer; }
.star-input span { transition: color .15s, transform .15s; }
.star-input span:hover, .star-input span.active { color: var(--primary); transform: scale(1.1); }

.review-card { display: flex; flex-direction: column; gap: 8px; position: relative; }
.review-card__head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-accent); color: #fff;
  display: grid; place-items: center; font-weight: 700;
  flex-shrink: 0;
}
.review-card__meta { flex: 1; }
.review-card__meta strong { display: block; font-size: .95rem; }
.review-card__meta span { font-size: .8rem; color: var(--text-muted); }
.review-card__tag {
  background: rgba(255,181,71,.12); color: var(--primary);
  padding: 3px 10px; border-radius: 999px; font-size: .7rem;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
}
.review-card .stars { color: var(--primary); letter-spacing: 1px; font-size: .9rem; }
.review-card blockquote { margin: 0; font-style: italic; }

/* Payment */
.payment-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; align-items: stretch;
}
.payment-qr, .payment-pick { padding: 30px; }
.payment-qr h3, .payment-pick h3 { font-family: 'Cinzel', serif; margin-bottom: 18px; }
.payment-qr h3 i, .payment-pick h3 i { color: var(--primary); margin-right: 8px; }

.qr-box {
  background: #fff; padding: 16px; border-radius: 14px;
  width: 220px; height: 220px; margin: 0 auto 18px;
  display: grid; place-items: center;
}
.qr-box img { width: 100%; height: 100%; display: block; }
.upi-id {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05); border: 1px dashed var(--border);
  border-radius: 10px; padding: 10px 14px; margin-bottom: 12px;
  flex-wrap: wrap;
}
.upi-id span { color: var(--text-muted); font-size: .85rem; }
.upi-id code {
  flex: 1; font-family: 'Courier New', monospace; color: var(--primary);
  font-size: 1rem; font-weight: 700;
}
.btn-mini {
  background: var(--grad-primary); color: #1a0b2e;
  padding: 6px 12px; border-radius: 8px; border: none;
  font-family: inherit; font-size: .8rem; font-weight: 700; cursor: pointer;
}
.btn-mini:hover { transform: translateY(-1px); }
.upi-apps { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }
.upi-app {
  flex: 1; min-width: 80px; text-align: center;
  padding: 8px; background: rgba(255,255,255,.05);
  border: 1px solid var(--border); border-radius: 10px;
  font-size: .78rem; color: var(--text);
}
.upi-app i { display: block; font-size: 1.2rem; color: var(--primary); margin-bottom: 4px; }
.upi-app:hover { background: var(--surface-2); border-color: var(--primary); color: var(--primary); }

.amount-picker { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.amount-btn {
  flex: 1; min-width: 100px;
  background: rgba(255,255,255,.05); border: 1.5px solid var(--border); color: var(--text);
  padding: 14px; border-radius: 12px;
  font-family: inherit; font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all .2s;
}
.amount-btn:hover { border-color: var(--primary); }
.amount-btn.active {
  background: linear-gradient(135deg, rgba(255,181,71,.2), rgba(255,122,0,.15));
  border-color: var(--primary); color: var(--primary);
}
.amount-custom {
  flex: 1 1 100%;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05); border: 1.5px solid var(--border); border-radius: 12px;
  padding: 0 12px;
}
.amount-custom span { color: var(--primary); font-weight: 700; font-size: 1.1rem; }
.amount-custom input { background: transparent; border: none; padding: 12px 0; }
.amount-custom input:focus { box-shadow: none; }

.amount-summary {
  text-align: center; padding: 12px;
  background: rgba(255,255,255,.04); border-radius: 10px; margin-bottom: 14px;
  font-size: .95rem; color: var(--text-muted);
}
.amount-summary strong { color: var(--text); }

.payment-pick .btn { margin-bottom: 10px; }
.trust-mini { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; font-size: .82rem; color: var(--text-muted); }
.trust-mini i { color: var(--success); margin-right: 6px; }

@media (max-width: 860px) { .payment-wrap { grid-template-columns: 1fr; } }

/* Newsletter */
.newsletter {
  padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center;
  background: linear-gradient(135deg, rgba(255,181,71,.12), rgba(106,61,245,.18));
}
.newsletter h2 { margin-bottom: 6px; }
.newsletter__form {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.newsletter__form input { flex: 1; min-width: 200px; }
@media (max-width: 720px) {
  .newsletter { grid-template-columns: 1fr; }
}

/* Booking */
.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 28px;
}
.step-card {
  padding: 24px 22px;
  position: relative;
  text-align: left;
}
.step-card .step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #1a0b2e;
  font-weight: 800;
  font-family: 'Cinzel', serif;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(255, 181, 71, 0.35);
}
.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.step-card h3 i { color: var(--primary); margin-right: 6px; }
.step-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.booking-cta {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 28px 24px;
}
.booking-cta h3 { margin: 0 0 6px; font-size: 1.25rem; }
.booking-cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}
@media (max-width: 760px) {
  .booking-steps { grid-template-columns: 1fr; }
  .booking-cta__buttons .btn { width: 100%; }
}

