@import url('tokens.css');

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ PLACEHOLDER PHOTO BLOCKS ============ */
/* Clearly marked so the client knows exactly what real photography goes here */
.photo-slot {
  position: relative;
  background: repeating-linear-gradient(
    135deg,
    var(--paper-deep) 0px, var(--paper-deep) 14px,
    #E9DCC2 14px, #E9DCC2 28px
  );
  border: 1.5px dashed var(--brass);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-slot__label {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  text-align: center;
  max-width: 80%;
}

/* ============ TOP UTILITY BAR ============ */
.utility-bar {
  background: var(--ink);
  color: var(--paper-deep);
  font-size: 13px;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.01em;
}
.utility-bar strong { color: var(--saffron-pale); font-weight: 600; }

/* ============ HEADER / NAV ============ */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo { flex-shrink: 0; margin-right: 40px; }
.main-nav { flex: 1; justify-content: center; }
.header-actions { flex-shrink: 0; }
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.logo .logo-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--betel);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper);
  font-size: 16px;
}
.logo small {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--saffron-deep);
  text-transform: uppercase;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  margin-right: 36px;
}
.main-nav a:last-child { margin-right: 0; }
.main-nav a:hover { color: var(--ink); }
.main-nav a.is-active { color: var(--ink); }
.main-nav a.is-active::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--saffron);
}
.header-actions { display: flex; align-items: center; gap: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--saffron); color: var(--ink); box-shadow: var(--shadow-soft); }
.btn--primary:hover { background: var(--saffron-deep); color: var(--paper); }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--whatsapp { background: #25303B; color: #fff; }
.btn--whatsapp:hover { background: #182026; }
.btn--small { padding: 9px 16px; font-size: 13.5px; }

/* ============ HERO ============ */
.hero {
  background: var(--paper);
  padding: 64px 0 0;
  position: relative;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 64px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--betel-pale);
  color: var(--betel-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 16px 8px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.hero-eyebrow .seal-mini { width: 20px; height: 20px; }
h1.hero-title {
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 22px;
}
h1.hero-title em {
  font-style: normal;
  color: var(--saffron-deep);
  position: relative;
}
h1.hero-title .underline-swipe {
  position: relative;
  display: inline-block;
}
h1.hero-title .underline-swipe::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 6px;
  height: 11px;
  background: var(--saffron-pale);
  z-index: -1;
  border-radius: 3px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-cta-row { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.trust-stat { display: flex; flex-direction: column; margin-right: 28px; }
.trust-divider { width: 1px; height: 32px; background: var(--line); margin-right: 28px; }
.trust-stat strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.trust-stat span {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.trust-divider { width: 1px; height: 32px; background: var(--line); }

.hero-visual {
  position: relative;
}
.hero-visual .photo-slot {
  aspect-ratio: 4/5;
  width: 100%;
}
.hero-visual .seal-float {
  position: absolute;
  bottom: -22px; left: -22px;
  width: 128px; height: 128px;
  filter: drop-shadow(0 10px 24px rgba(33,24,6,0.25));
}
.hero-visual .badge-float {
  position: absolute;
  top: 24px; right: -18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 220px;
}
.badge-float .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--betel); flex-shrink: 0; }

/* ============ MARQUEE STRIP (destinations ticker) ============ */
.dest-marquee {
  background: var(--ink);
  color: var(--paper-deep);
  padding: 14px 0;
  font-size: 14px;
  letter-spacing: 0.03em;
  overflow: hidden;
  white-space: nowrap;
}
.dest-marquee span { margin: 0 28px; opacity: 0.85; }
.dest-marquee span strong { color: var(--saffron-pale); }

/* ============ SECTION SCAFFOLDING ============ */
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section--ink { background: var(--ink); color: var(--paper-deep); }
.section--pale { background: var(--paper-deep); }
.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  margin-bottom: 14px;
  display: block;
}
.section--ink .section-eyebrow { color: var(--saffron); }
h2.section-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
}
.section--ink h2.section-title { color: var(--paper); }
.section-sub {
  font-size: 16.5px;
  color: var(--ink-soft);
  margin-top: 14px;
  line-height: 1.6;
}
.section--ink .section-sub { color: rgba(251,246,236,0.72); }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============ THE VERIFICATION SEAL — signature element ============ */
.seal-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}
.seal-visual { position: relative; display: flex; justify-content: center; }
.verification-seal {
  width: 230px; height: 230px;
}
.verify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.verify-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}
.verify-item .vi-num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--saffron-deep);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.verify-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.verify-item p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

/* ============ DESTINATION CARDS ============ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--paper-deep);
  display: block;
}
.dest-card .photo-slot {
  aspect-ratio: 3/4;
  width: 100%;
  border-radius: 0;
  border: none;
  align-items: flex-start;
  padding: 50px 14px 14px;
}
.dest-card .photo-slot__label { font-size: 11px; max-width: 100%; }
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(33,24,6,0.86) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.dest-card__name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 4px;
}
.dest-card__meta {
  font-size: 12.5px;
  color: var(--saffron-pale);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dest-card__verified {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--betel);
  color: var(--paper);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============ PACKAGE CARDS ============ */
.pkg-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.pkg-tab {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--paper);
  cursor: pointer;
}
.pkg-tab.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.pkg-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pkg-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.pkg-card .photo-slot {
  aspect-ratio: 16/10;
  width: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--line);
  align-items: flex-end;
  padding: 12px;
}
.pkg-card .photo-slot__label { font-size: 11px; }
.pkg-card__nights {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.pkg-card__dhamaka {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--sindoor);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
}
.pkg-card__body { padding: 22px; }
.pkg-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.pkg-card__rating strong { color: var(--ink); }
.pkg-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pkg-card__cities {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pkg-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--betel-deep);
  background: var(--betel-pale);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.pkg-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pkg-card__price span { font-size: 12px; color: var(--ink-soft); display: block; }
.pkg-card__price strong { font-family: var(--font-display); font-size: 22px; color: var(--ink); }

/* ============ DHAMAKA SUB-BRAND BAND ============ */
.dhamaka-band {
  background: var(--sindoor);
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 22px);
  color: #fff;
  padding: 64px 0;
}
.dhamaka-band .section-eyebrow { color: #FFD9C6; }
.dhamaka-band h2.section-title { color: #fff; font-style: italic; }
.dhamaka-band .section-sub { color: rgba(255,255,255,0.82); }
.dhamaka-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.dhamaka-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  color: var(--ink);
}
.dhamaka-card .photo-slot {
  aspect-ratio: 16/10; width: 100%; border-radius: 0; border: none;
}
.dhamaka-card__body { padding: 20px; position: relative; }
.dhamaka-card__price-tag {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--sindoor-deep);
}
.dhamaka-card__price-tag small { font-size: 13px; font-weight: 500; color: var(--ink-soft); }
.dhamaka-card__title { font-weight: 700; font-size: 16px; margin: 8px 0 10px; }
.dhamaka-card__facts {
  display: flex; gap: 14px; font-size: 12.5px; color: var(--ink-soft); margin-bottom: 14px; flex-wrap: wrap;
}
.dhamaka-card__urgency {
  font-size: 12px;
  font-weight: 700;
  color: var(--sindoor-deep);
  margin-top: 4px;
}

/* ============ TESTIMONIAL / SOCIAL PROOF ============ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 26px;
}
.testi-stars { color: var(--saffron); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 15px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 20px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--betel-pale); color: var(--betel-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.testi-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.testi-trip { font-size: 12.5px; color: var(--ink-soft); }

/* ============ LEAD FORM ============ */
.lead-section {
  background: var(--betel-deep);
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06), transparent 50%);
  border-radius: 28px;
  padding: 64px;
  margin: 0 auto;
  max-width: var(--container);
  color: var(--paper);
}
.lead-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: flex-start; }
.lead-section .section-eyebrow { color: var(--saffron-pale); }
.lead-section h2.section-title { color: var(--paper); }
.lead-section .section-sub { color: rgba(251,246,236,0.78); }
.lead-points { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.lead-point { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; }
.lead-point .lp-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--saffron); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}
.lead-form-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 32px;
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.form-field input, .form-field select {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--ink);
}
.form-field input:focus, .form-field select:focus {
  outline: none; border-color: var(--saffron-deep);
}
.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--ink-soft); margin: 18px 0;
  line-height: 1.5;
}
.form-consent input { margin-top: 3px; }
.form-actions { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink); color: rgba(251,246,236,0.75); padding: 72px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(251,246,236,0.12);
}
.footer-brand .logo { color: var(--paper); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 280px; color: rgba(251,246,236,0.65); }
.footer-col h5 {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--saffron-pale); margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 14.5px; margin-bottom: 11px; color: rgba(251,246,236,0.78); }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 13px; color: rgba(251,246,236,0.5);
  flex-wrap: wrap; gap: 12px;
}

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25303B;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 60;
  cursor: pointer;
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--paper-deep);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 70;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 13.5px; max-width: 640px; line-height: 1.5; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

@supports not (display: grid) {
  .hero .wrap, .verify-grid, .dest-grid, .pkg-grid, .dhamaka-grid,
  .testi-grid, .footer-grid, .lead-grid, .form-row {
    display: flex;
    flex-wrap: wrap;
  }
  .hero-copy { flex: 1 1 54%; min-width: 320px; }
  .hero-visual { flex: 1 1 40%; min-width: 280px; }
  .verify-item { flex: 1 1 45%; min-width: 220px; margin: 0 11px 22px; }
  .dest-card { flex: 1 1 22%; min-width: 220px; margin: 0 11px 22px; }
  .pkg-card { flex: 1 1 30%; min-width: 280px; margin: 0 11px 22px; }
  .dhamaka-card { flex: 1 1 30%; min-width: 280px; margin: 0 11px 22px; }
  .testi-card { flex: 1 1 30%; min-width: 280px; margin: 0 11px 22px; }
  .footer-col, .footer-brand { flex: 1 1 22%; min-width: 200px; margin-right: 24px; }
  .lead-grid > div { flex: 1 1 45%; min-width: 280px; margin-right: 24px; }
  .form-field { flex: 1 1 45%; min-width: 200px; margin-right: 16px; }
}

@media (max-width: 1024px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid, .dhamaka-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .seal-block { grid-template-columns: 1fr; }
  .lead-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .main-nav { display: none; }
  h1.hero-title { font-size: 38px; }
  .dest-grid, .pkg-grid, .dhamaka-grid, .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .lead-section { padding: 36px; border-radius: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
}
