/* ==========================================================================
   KARMVEDAA — Design Tokens
   Palette: warm coral (energy) + deep teal (trust) + soft gold (premium)
   Base: soft cream/white, generous whitespace, card-forward, subtle 3D depth
   Type: Fraunces (display) + Inter (body/UI)
   ========================================================================== */
:root {
  --coral: #FF6B4A;
  --coral-dark: #E5502F;
  --coral-light: #FFE4DA;
  --teal: #0F5E5A;
  --teal-dark: #0A4643;
  --teal-light: #E3F2F0;
  --gold: #D9A441;
  --gold-light: #FBF0DA;
  --cream: #FFFBF5;
  --cream-2: #FFF6EB;
  --ink: #22201C;
  --ink-soft: #5B564E;
  --line: #EFE7DA;
  --white: #FFFFFF;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-soft: 0 2px 10px rgba(34, 32, 28, 0.05), 0 10px 30px rgba(34, 32, 28, 0.06);
  --shadow-lift: 0 8px 20px rgba(229, 80, 47, 0.14), 0 20px 45px rgba(15, 94, 90, 0.10);

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 .4em;
  letter-spacing: -0.01em;
  color: var(--ink);
}
p { line-height: 1.6; color: var(--ink-soft); margin: 0 0 1em; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--coral); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  font-family: var(--font-body);
}
.btn-primary { background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: #fff; box-shadow: 0 10px 24px rgba(229,80,47,.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(229,80,47,.36); }
.btn-outline { background: #fff; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--teal-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral-dark); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ---------- Top bar / Header ---------- */
.topbar { background: var(--teal-dark); color: #fff; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding: 8px 24px; flex-wrap: wrap; gap: 6px; }
.topbar a { color: #EAF4F2; opacity: .9; }
.topbar a:hover { opacity: 1; }
.lang-switch { display: flex; gap: 4px; }
.lang-switch a { padding: 3px 8px; border-radius: 999px; font-weight: 600; }
.lang-switch a.active { background: var(--gold); color: var(--teal-dark); }

.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,251,245,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--teal-dark); }
.logo span { color: var(--coral); }
.logo .mark {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px;
  box-shadow: 0 6px 14px rgba(217,164,65,.4);
}
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-weight: 600; font-size: 15px; color: var(--ink-soft); transition: color .15s; position: relative; }
.main-nav a:hover, .main-nav a.active { color: var(--coral-dark); }
.nav-toggle { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--teal-dark); }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 72px 0 90px; overflow: hidden;
  background:
    radial-gradient(680px 380px at 85% -10%, var(--gold-light) 0%, transparent 60%),
    radial-gradient(600px 420px at -10% 30%, var(--coral-light) 0%, transparent 55%),
    var(--cream);
}
.hero .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(34px, 4.6vw, 56px); line-height: 1.08; }
.hero h1 em { font-style: normal; color: var(--coral-dark); }
.hero p.lead { font-size: 18px; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-art {
  position: relative; aspect-ratio: 1/1; border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--teal), var(--teal-dark));
  box-shadow: var(--shadow-lift); overflow: hidden;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; opacity: .92; }
.hero-badge {
  position: absolute; bottom: 22px; left: 22px; background: #fff; border-radius: var(--radius-md);
  padding: 14px 18px; box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 12px;
}
.hero-badge .num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--coral-dark); }
.hero-badge .lbl { font-size: 12px; color: var(--ink-soft); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; }
.trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.trust-item .num { font-family: var(--font-display); font-size: 30px; color: var(--teal-dark); font-weight: 700; }
.trust-item .lbl { font-size: 13px; color: var(--ink-soft); font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 34px; gap: 20px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-soft); transition: transform .22s ease, box-shadow .22s ease;
  border: 1px solid var(--line); display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--teal-light); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-tag {
  position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.92); color: var(--teal-dark);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  padding: 5px 11px; border-radius: 999px;
}
.card-date {
  position: absolute; top: 12px; right: 12px; background: var(--coral); color: #fff;
  font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 999px;
}
.card-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-size: 19px; }
.card-meta { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--teal); font-weight: 600; }
.card-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--line); }
.price-tag .from { font-size: 11px; color: var(--ink-soft); display: block; }
.price-tag .amt { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--coral-dark); }
.mini-btn { padding: 9px 18px; border-radius: 999px; background: var(--teal); color: #fff; font-size: 13px; font-weight: 600; }
.mini-btn:hover { background: var(--teal-dark); }

/* ---------- Badges / trust ---------- */
.badge-verified { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--teal-dark); background: var(--teal-light); padding: 4px 10px; border-radius: 999px; }
.badge-verified::before { content: '✓'; }
.rating { display: inline-flex; align-items: center; gap: 4px; font-size: 12.5px; font-weight: 700; color: var(--gold); }

/* ---------- Detail page ---------- */
.detail-hero { position: relative; }
.detail-gallery { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 16/8; background: var(--teal-light); }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; }
.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; margin-top: 36px; align-items: start; }
.detail-block { background: #fff; border-radius: var(--radius-md); border: 1px solid var(--line); padding: 26px; margin-bottom: 22px; box-shadow: var(--shadow-soft); }
.detail-block h3 { font-size: 18px; margin-bottom: 12px; }
.booking-panel {
  background: #fff; border-radius: var(--radius-md); border: 1px solid var(--line);
  padding: 26px; box-shadow: var(--shadow-soft); position: sticky; top: 100px;
}
.booking-panel .price { font-family: var(--font-display); font-size: 32px; color: var(--coral-dark); font-weight: 700; }
.addon-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.addon-row:last-child { border-bottom: none; }
.addon-row label { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.addon-row input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--coral); }
.total-row { display: flex; justify-content: space-between; align-items: center; margin: 18px 0; padding-top: 14px; border-top: 2px solid var(--ink); font-family: var(--font-display); font-size: 20px; font-weight: 700; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.form-control {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  font-family: var(--font-body); font-size: 15px; background: var(--cream-2); transition: border-color .15s, box-shadow .15s;
}
.form-control:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px var(--coral-light); background: #fff; }
textarea.form-control { resize: vertical; min-height: 90px; }

/* ---------- Status pages ---------- */
.status-page { padding: 100px 0; text-align: center; }
.status-icon { width: 90px; height: 90px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 42px; color: #fff; }
.status-icon.success { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.status-icon.cancel { background: linear-gradient(135deg, var(--coral), var(--coral-dark)); }
.ref-box { display: inline-block; background: var(--gold-light); border: 1.5px dashed var(--gold); padding: 12px 26px; border-radius: var(--radius-sm); font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--teal-dark); margin: 18px 0; }

/* ---------- Banner ---------- */
.test-banner { background: var(--gold); color: var(--teal-dark); text-align: center; font-weight: 700; font-size: 13.5px; padding: 8px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-dark); color: #DDEDEA; padding: 60px 0 24px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.site-footer a { color: #B9D6D1; font-size: 14px; display: block; margin-bottom: 10px; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; font-size: 13px; color: #9FC2BC; flex-wrap: wrap; gap: 10px; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed; right: 20px; z-index: 60; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(37,211,102,.42);
  color: #fff; font-size: 28px; transition: transform .2s;
  /* bottom is set by JS using Visual Viewport API */
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Modal (policy popups) ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(34,32,28,.55); display: none; align-items: center; justify-content: center; z-index: 100; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal-box { background: #fff; border-radius: var(--radius-md); max-width: 640px; width: 100%; max-height: 82vh; overflow-y: auto; padding: 32px; box-shadow: var(--shadow-lift); }
.modal-box h3 { color: var(--teal-dark); }
.modal-close { float: right; background: var(--cream-2); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 16px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { max-width: 420px; margin: 0 auto; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .booking-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .main-nav { position: fixed; top: 0; right: -100%; height: 100vh; width: 78%; max-width: 320px;
    background: #fff; flex-direction: column; align-items: flex-start; padding: 90px 28px; gap: 22px;
    box-shadow: -10px 0 40px rgba(0,0,0,.15); transition: right .28s ease; }
  .main-nav.open { right: 0; }
  .nav-toggle { display: block; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .trust-strip .container { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
