/* ============================================================
   Events on Boat by KashiYatra — Landing Page Design System
   Theme: "Golden Hour Romance" — sunset ghats on the Ganga
   Built for paid-ad conversion: slim nav, cinematic hero,
   tiered packages, urgency, tracked CTAs.
   ============================================================ */

:root {
  /* Golden Hour Romance palette */
  --plum: #2A1533;
  --plum-2: #3D1F47;
  --plum-3: #4d2856;
  --ink: #2A1533;
  --body: #5c4a5f;
  --muted: #8d7a90;
  --cream: #FFF3E6;
  --cream-soft: #FFE9D6;
  --card: #FFFFFF;
  --line: #f3e2d2;

  --rose: #C9184A;
  --rose-dark: #9d0f38;
  --rose-soft: #ffe3ea;
  --coral: #FF7E5F;
  --coral-dark: #e35a3d;
  --gold: #FFC75F;
  --gold-dark: #e0a83e;
  --gold-soft: #fff2da;

  --wa: #25d366;
  --wa-dark: #1ebe5b;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 32px rgba(42, 21, 51, 0.12);
  --shadow-lg: 0 22px 60px rgba(42, 21, 51, 0.22);
  --shadow-cta: 0 10px 28px rgba(201, 24, 74, 0.38);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Dancing Script", cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--coral-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }

.script {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--rose);
  font-size: 1.15em;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul.checklist { list-style: none; }
ul.checklist li {
  padding-left: 1.9rem;
  position: relative;
  margin-bottom: .6rem;
  font-size: .92rem;
}
ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-weight: 800;
  font-size: .68rem;
  display: flex; align-items: center; justify-content: center;
}

.container { width: min(1180px, 92%); margin-inline: auto; }
.container-narrow { width: min(820px, 92%); margin-inline: auto; }
section { padding: clamp(3.4rem, 7.5vw, 5.8rem) 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2rem, 5vw, 3.2rem); }
.section-head .kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--rose); margin-bottom: .7rem;
}
.section-head .kicker::before, .section-head .kicker::after { content: ""; width: 22px; height: 1.5px; background: var(--gold); }
.section-head p { color: var(--muted); font-size: 1.02rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.8rem; border-radius: 999px;
  font-weight: 700; font-size: .95rem; font-family: var(--font-body);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-wa { background: var(--wa); color: #fff !important; box-shadow: 0 10px 26px rgba(37, 211, 102, .4); }
.btn-wa:hover { background: var(--wa-dark); }

.btn-primary { background: linear-gradient(135deg, var(--coral), var(--rose)); color: #fff !important; box-shadow: var(--shadow-cta); }
.btn-primary:hover { box-shadow: 0 14px 34px rgba(201,24,74,.48); }

.btn-outline { border-color: var(--rose); color: var(--rose) !important; background: transparent; }
.btn-outline:hover { background: var(--rose-soft); }

.btn-outline-light { border-color: rgba(255,255,255,.6); color: #fff !important; }
.btn-outline-light:hover { background: rgba(255,255,255,.14); }

.btn-sm { padding: .65rem 1.25rem; font-size: .85rem; }
.btn-block { width: 100%; }

/* ---------- Slim conversion header ---------- */
.topbar {
  background: var(--plum);
  color: #e4d3e8;
  font-size: .8rem;
  padding: .5rem 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar a { color: var(--gold); font-weight: 600; }
.topbar .tb-right { display: flex; gap: 1.2rem; }
@media (max-width: 640px) {
  .topbar .tb-loc { display: none; }
  .topbar .container { justify-content: center; }
}

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 243, 230, .94);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 28px rgba(42,21,51,.1); }

.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .65rem 0; }

.brand { display: flex; align-items: center; gap: .6rem; }
.brand .brand-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  display: grid; place-items: center; font-size: 1.5rem;
  box-shadow: var(--shadow);
}
.brand .brand-text { line-height: 1.15; }
.brand .brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; color: var(--ink); display: block; }
.brand .brand-tag { font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--rose); font-weight: 700; }

/* Primary nav is intentionally minimal for ad-traffic focus */
.main-nav { display: flex; align-items: center; gap: .3rem; }
.main-nav > ul { display: flex; list-style: none; gap: .1rem; align-items: center; }
.main-nav a {
  color: var(--ink); font-weight: 600; font-size: .9rem;
  padding: .55rem .75rem; border-radius: 8px; display: inline-block;
}
.main-nav a:hover, .main-nav a.active { color: var(--rose); background: var(--rose-soft); }

.has-drop { position: relative; }
.has-drop > a { display: inline-flex; align-items: center; gap: .3rem; }
.has-drop > a::after {
  content: ""; width: 7px; height: 7px; margin-left: 1px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .55;
  transition: transform .25s ease, opacity .25s ease;
}
.has-drop:hover > a::after, .has-drop:focus-within > a::after { transform: rotate(225deg) translateY(1px); opacity: .9; }

.dropdown {
  position: absolute; top: calc(100% + 14px); left: -10px; min-width: 300px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); list-style: none; padding: .6rem;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .22s ease;
  z-index: 1100;
}
.dropdown::before {
  content: ""; position: absolute; top: -6px; left: 28px; width: 12px; height: 12px;
  background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line);
  border-radius: 3px 0 0 0; transform: rotate(45deg);
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li + li { margin-top: .15rem; }
.dropdown a {
  display: flex; align-items: center; gap: .8rem;
  padding: .6rem .65rem; border-radius: 12px; font-size: .87rem;
  transition: background .18s ease, transform .18s ease;
}
.dropdown a:hover { background: var(--rose-soft); transform: translateX(2px); }
.dd-icon {
  flex: none; width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
  background: linear-gradient(135deg, var(--gold-soft), var(--rose-soft));
}
.dd-text { display: flex; flex-direction: column; line-height: 1.3; }
.dd-text strong { font-weight: 700; color: var(--ink); font-size: .87rem; }
.dd-text small { font-weight: 500; color: var(--muted); font-size: .73rem; margin-top: 1px; }

.header-contact { display: flex; align-items: center; gap: .7rem; margin-left: .4rem; }
.header-call {
  display: flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .88rem; color: var(--ink);
  padding: .5rem .7rem;
}
.header-call svg { width: 16px; height: 16px; fill: var(--rose); }

.nav-toggle {
  display: none; background: none; border: none; width: 44px; height: 44px; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: all .3s ease; }

@media (max-width: 992px) {
  .nav-toggle { display: flex; }
  .header-contact .btn { display: none; }
  .main-nav {
    position: fixed; inset: 0; background: var(--plum);
    flex-direction: column; justify-content: flex-start;
    padding: 5.5rem 1.5rem 6rem; transform: translateX(100%);
    transition: transform .32s ease; overflow-y: auto; z-index: 999;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; width: 100%; gap: .3rem; }
  .main-nav > ul > li { width: 100%; }
  .main-nav a { color: #fff; font-size: 1.05rem; width: 100%; }
  .main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,.08); color: var(--gold); }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: rgba(255,255,255,.05); border: none; box-shadow: none; display: none; margin-top: .3rem;
    min-width: 0; padding: .3rem;
  }
  .dropdown::before { display: none; }
  .has-drop.open .dropdown { display: block; }
  .dropdown a { color: #fff; font-size: .95rem; }
  .dropdown a:hover { background: rgba(255,255,255,.07); transform: none; }
  .dropdown .dd-icon { background: rgba(255,255,255,.08); }
  .dropdown .dd-text strong { color: #fff; }
  .dropdown .dd-text small { color: #cbb3d1; }
  .nav-toggle { position: relative; z-index: 1001; }
  body.nav-open .site-header { backdrop-filter: none; }
  body.nav-open .nav-toggle span { background: #fff; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }
  .header-contact-mobile { display: flex !important; }
}
.header-contact-mobile { display: none; gap: .6rem; margin-top: 1.5rem; }

/* ---------- Cinematic hero ---------- */
.hero {
  position: relative; overflow: hidden;
  color: #fff;
  padding: clamp(3.6rem, 9vw, 6rem) 0 0;
}
.hero-scene { position: absolute; inset: 0; z-index: 0; }
.hero-scene svg { width: 100%; height: 100%; display: block; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(42,21,51,.25) 0%, rgba(42,21,51,.55) 55%, rgba(42,21,51,.92) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 820px; text-align: center; margin-inline: auto; padding-bottom: clamp(3.2rem, 7vw, 5rem); }
.hero h1 { color: #fff; margin-bottom: 1.1rem; text-shadow: 0 4px 24px rgba(0,0,0,.25); }
.hero .hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255, 199, 95, .18); border: 1px solid rgba(255, 199, 95, .5);
  color: var(--gold); font-size: .8rem; font-weight: 700; padding: .45rem 1.2rem;
  border-radius: 999px; margin-bottom: 1.4rem; letter-spacing: .03em;
}
.hero p.lead { font-size: 1.1rem; color: #f3e6ef; max-width: 660px; margin: 0 auto 1.9rem; }
.hero-ctas { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; font-size: .85rem; color: #e4d3e8; }
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }

.breadcrumb {
  font-size: .8rem; color: #d8bfe0; margin-bottom: 1rem;
  display: flex; gap: .45rem; justify-content: center; flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span[aria-current] { color: #fff; }

/* ---------- Trust bar with counters ---------- */
.trustbar { background: var(--plum); padding: 1.8rem 0; color: #fff; position: relative; z-index: 2; }
.trustbar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.trust-item .t-num { font-family: var(--font-display); font-size: clamp(1.5rem, 3.2vw, 2rem); font-weight: 700; color: var(--gold); }
.trust-item .t-label { font-size: .78rem; color: #cbb3d1; letter-spacing: .04em; }
@media (max-width: 700px) { .trustbar .container { grid-template-columns: repeat(2, 1fr); gap: 1.3rem .6rem; } }

/* ---------- Image slot placeholders ---------- */
.img-slot {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255,199,95,.16), rgba(201,24,74,.14)),
    repeating-linear-gradient(45deg, rgba(42,21,51,.04) 0 2px, transparent 2px 14px),
    var(--plum-2);
  border: 1.5px dashed rgba(255,199,95,.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: rgba(255,255,255,.7); aspect-ratio: 4/3; padding: 1.2rem;
}
.img-slot .is-icon { width: 34px; height: 34px; opacity: .6; margin-bottom: .6rem; color: var(--gold); }
.img-slot .is-icon svg { width: 100%; height: 100%; }
.img-slot .is-label { font-weight: 700; font-size: .82rem; color: #fff; line-height: 1.3; }
.img-slot .is-spec { font-size: .68rem; opacity: .6; margin-top: .3rem; letter-spacing: .02em; }
.img-slot.is-square { aspect-ratio: 1/1; }
.img-slot.is-wide { aspect-ratio: 16/9; }
.img-slot.is-tall { aspect-ratio: 3/4; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 992px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-body { padding: 1.5rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .5rem; }
.card-body p { font-size: .92rem; color: var(--body); flex: 1; }
.card-links { margin-top: 1.2rem; display: flex; gap: .6rem; flex-wrap: wrap; }
.card-meta { display: flex; gap: .9rem; flex-wrap: wrap; font-size: .78rem; color: var(--muted); margin: .2rem 0 .8rem; }
.card-meta span { display: inline-flex; align-items: center; gap: .3rem; }
.card-tag {
  position: absolute; top: 12px; left: 12px; background: rgba(42,21,51,.75); color: var(--gold);
  font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 999px; backdrop-filter: blur(4px); z-index: 2;
}
.card-media-wrap { position: relative; }

/* ---------- Dark band section ---------- */
.section-dark {
  background:
    radial-gradient(ellipse at 15% 10%, rgba(255,126,95,.14), transparent 55%),
    radial-gradient(ellipse at 88% 90%, rgba(255,199,95,.14), transparent 55%),
    var(--plum);
  color: #ecdff0;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-head p { color: #cbb3d1; }
.section-dark .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.section-dark .card p { color: #d7c5db; }
.section-dark .card h3 { color: #fff; }
.section-dark .img-slot { background: linear-gradient(150deg, rgba(255,199,95,.12), rgba(255,126,95,.1)), rgba(255,255,255,.04); border-color: rgba(255,199,95,.3); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; padding: 2.1rem 1.5rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.section-dark .step { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.step .step-num {
  width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--rose)); color: #fff;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  display: grid; place-items: center; box-shadow: var(--shadow-cta);
}
.step p { font-size: .9rem; }

/* ---------- Feature row ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .feature-row { grid-template-columns: 1fr; } }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

/* ---------- Specs table ---------- */
.specs-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.specs-table th, .specs-table td { padding: 1rem 1.3rem; text-align: left; font-size: .92rem; border-bottom: 1px solid var(--line); }
.specs-table th { background: var(--plum); color: var(--gold); font-family: var(--font-body); font-weight: 700; width: 38%; }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: none; }
.table-scroll { overflow-x: auto; border-radius: var(--radius); }

/* ---------- Comparison table ---------- */
.compare-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-width: 560px; }
.compare-table th, .compare-table td { padding: .95rem 1.2rem; text-align: center; font-size: .88rem; border-bottom: 1px solid var(--line); }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; font-weight: 600; color: var(--ink); }
.compare-table thead th { background: var(--plum); color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .82rem; letter-spacing: .02em; }
.compare-table thead th.is-highlight { background: var(--rose); color: #fff; }
.compare-table tbody td.is-highlight { background: var(--rose-soft); font-weight: 600; color: var(--rose-dark); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--wa-dark); font-weight: 700; }
.compare-table .no { color: var(--muted); }

/* ---------- Add-ons grid ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 900px) { .addon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .addon-grid { grid-template-columns: 1fr; } }
.addon-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.3rem 1.4rem; display: flex; gap: .9rem; align-items: flex-start; }
.section-dark .addon-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.addon-card .addon-icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.addon-card h4 { font-family: var(--font-body); font-size: .96rem; font-weight: 700; color: var(--ink); margin-bottom: .25rem; }
.section-dark .addon-card h4 { color: #fff; }
.addon-card p { font-size: .84rem; color: var(--muted); }
.section-dark .addon-card p { color: #cbb3d1; }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.section-dark .timeline::before { background: rgba(255,255,255,.14); }
.timeline-item { position: relative; display: flex; gap: 1.2rem; padding-bottom: 1.7rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-time {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--coral), var(--rose));
  color: #fff; display: grid; place-items: center; font-size: .72rem; font-weight: 700; text-align: center; line-height: 1.15;
  box-shadow: var(--shadow-cta); position: relative; z-index: 1;
}
.timeline-body h4 { font-family: var(--font-body); font-size: .98rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem; padding-top: .5rem; }
.section-dark .timeline-body h4 { color: #fff; }
.timeline-body p { font-size: .86rem; color: var(--muted); }
.section-dark .timeline-body p { color: #cbb3d1; }

/* ---------- Trust badge strip ---------- */
.trust-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem 1rem; margin: 1.6rem 0 0; }
.trust-strip span {
  display: inline-flex; align-items: center; gap: .4rem; background: var(--gold-soft); color: var(--plum);
  border: 1px solid var(--gold); border-radius: 999px; padding: .5rem 1rem; font-size: .82rem; font-weight: 600;
}

/* ---------- Package tier cards ---------- */
.pkg {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.7rem;
  position: relative; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg.featured { border: 2px solid var(--gold); box-shadow: var(--shadow-lg); }
.pkg .pkg-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--coral), var(--rose)); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem 1.1rem; border-radius: 999px; white-space: nowrap; box-shadow: var(--shadow-cta);
}
.pkg h3 { margin-bottom: .2rem; }
.pkg .pkg-sub { font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; }
.pkg ul { flex: 1; margin-bottom: 1.5rem; }
.pkg .btn { width: 100%; }

/* ---------- Urgency / countdown banner ---------- */
.urgency-band {
  background: linear-gradient(120deg, var(--plum) 0%, #4a1f3a 100%);
  border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.6rem); color: #fff;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  position: relative; overflow: hidden;
}
.urgency-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,199,95,.18), transparent 50%);
}
.urgency-text { position: relative; z-index: 1; }
.urgency-text .u-kicker { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.urgency-text h3 { color: #fff; margin-bottom: .3rem; }
.urgency-text p { color: #dcc6e0; font-size: .9rem; }
.countdown { display: flex; gap: .7rem; position: relative; z-index: 1; }
.countdown .cd-unit { background: rgba(255,255,255,.08); border: 1px solid rgba(255,199,95,.3); border-radius: var(--radius-sm); padding: .7rem 1rem; text-align: center; min-width: 68px; }
.countdown .cd-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.countdown .cd-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: #cbb3d1; margin-top: .3rem; }

/* ---------- Testimonials ---------- */
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; position: relative; }
.testi .stars { color: var(--gold-dark); letter-spacing: .15em; margin-bottom: .7rem; font-size: .9rem; }
.testi p { font-size: .92rem; font-style: italic; }
.testi .t-who { margin-top: 1.2rem; display: flex; align-items: center; gap: .8rem; font-style: normal; }
.testi .t-avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 700; color: #fff; font-size: .95rem;
  background: linear-gradient(135deg, var(--rose), var(--coral));
}
.testi .t-name { font-weight: 700; color: var(--ink); font-size: .9rem; line-height: 1.3; }
.testi .t-info { font-size: .76rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .9rem; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.15rem 3.2rem 1.15rem 1.4rem; font-family: var(--font-body); font-size: .98rem; font-weight: 700;
  color: var(--ink); cursor: pointer; position: relative;
}
.faq-q::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--rose); transition: transform .25s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 1.4rem 1.25rem; font-size: .92rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(255,126,95,.28), transparent 55%),
    radial-gradient(ellipse at 90% 85%, rgba(255,199,95,.24), transparent 55%),
    linear-gradient(135deg, var(--plum), var(--plum-3));
  border-radius: var(--radius); padding: clamp(2.6rem, 6vw, 4.2rem); text-align: center; color: #fff;
}
.cta-band h2 { color: #fff; margin-bottom: .7rem; }
.cta-band p { color: #dcc6e0; max-width: 560px; margin: 0 auto 1.8rem; }
.cta-band .hero-ctas { margin: 0; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Content / SEO prose ---------- */
.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { margin: 2.2rem 0 .9rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 1.6rem 0 .6rem; }
.prose ul:not(.checklist) { padding-left: 1.4rem; margin-bottom: 1rem; }
.prose ul:not(.checklist) li { margin-bottom: .4rem; }

.highlight-box {
  background: var(--gold-soft); border-left: 4px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem; margin: 1.5rem 0; font-size: .95rem;
}

/* ---------- Contact page ---------- */
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.1rem 1.8rem; text-align: center; }
.contact-card .cc-icon { width: 62px; height: 62px; margin: 0 auto 1rem; border-radius: 16px; display: grid; place-items: center; font-size: 1.7rem; background: var(--rose-soft); }
.contact-card h3 { margin-bottom: .4rem; }
.contact-card p { font-size: .9rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--plum); color: #cbb3d1; padding: clamp(3rem, 6vw, 4.5rem) 0 0; font-size: .88rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.2rem; padding-bottom: 2.5rem; }
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .95rem; font-weight: 700; margin-bottom: 1.1rem; letter-spacing: .04em; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: .55rem; }
.site-footer a { color: #cbb3d1; }
.site-footer a:hover { color: var(--gold); }
.footer-about p { font-size: .85rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0; text-align: center; font-size: .78rem; color: #9a84a0; }
.footer-bottom a { color: #b89bc0; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 84px; z-index: 900; width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37, 211, 102, .5);
  animation: wa-pulse 2.2s infinite;
}
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes wa-pulse {
  0% { box-shadow: 0 12px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 12px 30px rgba(37,211,102,.5), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}
@media (min-width: 993px) { .wa-float { bottom: 26px; } }

/* ---------- Mobile sticky action bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; display: none;
  grid-template-columns: 1fr 1fr; background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px rgba(42,21,51,.14);
}
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 1rem .5rem; font-weight: 700; font-size: .92rem; }
.mobile-bar .mb-call { color: var(--ink); background: var(--gold-soft); }
.mobile-bar .mb-wa { color: #fff; background: var(--wa); }
@media (max-width: 992px) { .mobile-bar { display: grid; } body { padding-bottom: 58px; } }

/* ---------- Lightbox ---------- */
.lightbox-item { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 2rem;
  background: rgba(20, 8, 24, .88); opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner { position: relative; width: min(90vw, 640px); }
.lightbox-inner .img-slot { aspect-ratio: 4/3; cursor: default; }
.lightbox-close {
  position: absolute; top: -46px; right: 0; width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.12); color: #fff; font-size: 1.3rem; line-height: 1; cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; left: 18px; bottom: 84px; z-index: 900; width: 48px; height: 48px; border-radius: 50%;
  background: var(--plum); color: var(--gold); border: 1px solid rgba(255,199,95,.4); font-size: 1.2rem;
  display: grid; place-items: center; box-shadow: var(--shadow-lg); cursor: pointer;
  opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .25s ease, transform .25s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
@media (min-width: 993px) { .back-to-top { bottom: 26px; } }

/* ---------- Testimonial mobile carousel ---------- */
@media (max-width: 640px) {
  .testi-row { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .5rem; margin: 0 -1.1rem; padding-left: 1.1rem; padding-right: 1.1rem; }
  .testi-row .testi { flex: 0 0 85%; scroll-snap-align: center; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wa-float { animation: none; }
}
