/* ============================================
   KERALA TRAVEL COMPANION — STYLESHEET
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #0f3d2e;
  --green-deep: #1a5c42;
  --green-mid:  #2d7a5a;
  --green-soft: #e6f1ec;
  --gold:       #c9a24a;
  --gold-soft:  #f5e8c8;
  --gold-deep:  #8a6a20;
  --ivory:      #fbf8f1;
  --cream:      #f5efe2;
  --dark:       #142022;
  --text:       #1c2a26;
  --muted:      #6b7a73;
  --line:       #e3dccc;
  --white:      #ffffff;
  --shadow-sm:  0 2px 10px rgba(15, 61, 46, 0.08);
  --shadow-md:  0 10px 30px rgba(15, 61, 46, 0.12);
  --shadow-lg:  0 20px 50px rgba(15, 61, 46, 0.18);
  --radius:     14px;
  --radius-lg:  22px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-dark);
}

p { color: var(--text); }
a { color: inherit; text-decoration: none; transition: color .25s; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(15,61,46,.25);
}
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(15,61,46,.35); }

.btn-outline {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255,255,255,.2); border-color: #fff; }

.btn-outline-light {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-light:hover { background: var(--gold); color: var(--dark); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  font-size: 1rem;
  padding: 16px 32px;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }
.wa-icon { font-size: 1.2rem; }

.btn-full { width: 100%; padding: 16px; font-size: 1rem; }

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(251, 248, 241, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,61,46,.06);
  transition: all .35s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green-dark);
}
.logo-icon { font-size: 1.6rem; }
.logo-text span { color: var(--gold); font-style: italic; font-weight: 400; }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  white-space: nowrap;
  flex: 0 0 auto;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s;
}
.nav-link:hover { color: var(--green-dark); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--green-dark);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 30px;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-deep); }
.nav-cta::after { display: none; }

@media (max-width: 1280px) {
  .header-inner {
    gap: 18px;
  }

  .nav {
    gap: 16px;
  }

  .nav-link {
    font-size: 0.88rem;
  }

  .nav-cta {
    padding: 9px 16px;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-dark);
  transition: all .3s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  will-change: opacity, transform;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(15,61,46,.45) 0%, rgba(15,61,46,.25) 40%, rgba(20,32,34,.85) 100%),
    linear-gradient(135deg, rgba(15,61,46,.55) 0%, rgba(20,32,34,.55) 100%);
}

/* ----- HERO META (caption + indicators) ----- */
.hero-meta {
  position: absolute;
  bottom: 18px;
  right: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100% - 44px);
}
.hero-caption {
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,.96);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 0.76rem;
  letter-spacing: 0.4px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.18);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: opacity .5s;
}
.hero-indicators {
  display: flex;
  gap: 6px;
}
.indicator {
  width: 22px; height: 3px;
  background: rgba(255,255,255,.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
}
.indicator:hover { background: rgba(255,255,255,.55); }
.indicator.active {
  background: var(--gold);
  width: 34px;
}
/* ----- HERO 2-COLUMN LAYOUT with tile row below ----- */
.hero-layout {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.15fr 420px;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "tiles tiles"
    "left  right";
  column-gap: 50px;
  row-gap: 32px;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 24px 28px 22px;
  min-height: calc(100vh - 80px);
}
.hero-left  { grid-area: left;  align-self: center; }
.hero-right { grid-area: right; align-self: center; }
.hero-buckets-wrap { grid-area: tiles; width: 100%; }
.hero-left {
  color: #fff;
  text-align: left;
}
.hero-tag {
  display: inline-block;
  background: rgba(201,162,74,.22);
  color: var(--gold-soft);
  border: 1px solid rgba(201,162,74,.45);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 0.74rem;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-title {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 14px;
  font-weight: 600;
}
.hero-title em {
  color: var(--gold-soft);
  font-weight: 400;
  font-style: italic;
  display: block;
}
.hero-subtitle {
  color: rgba(255,255,255,.92);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  margin: 0 0 26px;
  line-height: 1.6;
  max-width: 520px;
}

/* ----- HERO STATS ----- */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  max-width: 520px;
}
.hero-stats span {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.3px;
}

/* ----- HERO PLANNER CARD (right side) ----- */
.hero-right { width: 100%; }
.hero-planner-card {
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 18px;
  padding: 26px 26px 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero-planner-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.hero-planner-icon {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}
.hero-planner-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: 0;
}
.hero-planner-sub {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0 0 18px;
}
.hero-field {
  margin-bottom: 12px;
}
.hero-field label {
  display: block;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--green-dark);
  margin-bottom: 5px;
  letter-spacing: 0.2px;
}
.hero-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: var(--ivory);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color .25s, background .25s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f3d2e' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}
.hero-field select:focus {
  outline: none;
  border-color: var(--green-dark);
  background-color: #fff;
}
.hero-planner-card .btn-hero-cta {
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  font-size: 0.98rem;
}
.hero-planner-alt {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 12px 0 0;
}
.hero-planner-alt a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(15,61,46,.3);
}
.hero-planner-alt a:hover { text-decoration-color: var(--green-dark); }

/* ----- HERO BUCKETS (replaces old tile row) -----
   Accordion on mobile, tabs on desktop, no JS.
   Radio buttons drive both layouts via :checked sibling selectors. */

.hero-buckets-intro {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 14px;
  padding: 0 4px;
}
.hero-buckets-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(201,162,74,.18);
  border: 1px solid rgba(201,162,74,.42);
  padding: 5px 12px;
  border-radius: 30px;
}
.hero-buckets-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.92);
}

.hero-buckets {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bk-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px; height: 1px;
}
.bk-label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .25s, border-color .25s, transform .2s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.bk-label::before {
  /* gold accent bar that animates in on active */
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.bk-label::after {
  content: "+";
  margin-left: auto;
  font-size: 1.5rem;
  color: var(--gold-soft);
  line-height: 1;
  font-weight: 300;
  flex-shrink: 0;
}
.bk-label:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(201,162,74,.55);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.bk-radio:focus-visible + .bk-label { outline: 2px solid var(--gold); outline-offset: 3px; }
.bk-radio:checked + .bk-label {
  background: linear-gradient(135deg, rgba(15,61,46,.94) 0%, rgba(26,92,66,.94) 100%);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(0,0,0,.30), inset 0 0 0 1px rgba(201,162,74,.25);
}
.bk-radio:checked + .bk-label::before { transform: scaleY(1); }
.bk-radio:checked + .bk-label::after { content: "−"; color: var(--gold); }

.bk-icon {
  font-size: 1.7rem;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(201,162,74,.18);
  border: 1px solid rgba(201,162,74,.35);
  border-radius: 11px;
  transition: background .25s, border-color .25s, transform .25s;
}
.bk-radio:checked + .bk-label .bk-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
}
.bk-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.bk-num {
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.bk-radio:checked + .bk-label .bk-num { color: var(--gold); }
.bk-title {
  font-weight: 600;
  font-size: 1.02rem;
  color: #fff;
  line-height: 1.2;
}
.bk-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,.7);
  line-height: 1.3;
}

.bk-panel {
  display: none;
  padding: 18px 18px 20px;
  background: rgba(255,255,255,.97);
  border-radius: 12px;
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.bk-radio:checked + .bk-label + .bk-panel { display: block; }

.bk-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: 0 0 12px;
}
.bk-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bk-list li {
  font-size: 0.9rem;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.bk-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-weight: 700;
}
.bk-list strong { color: var(--green-dark); font-weight: 600; }
.bk-list a {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-color: rgba(15,61,46,.35);
  font-weight: 500;
}
.bk-list a:hover { text-decoration-color: var(--green-dark); }

.bk-cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
}
.bk-cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
}
.bk-cta-ghost {
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--green-dark);
  background: transparent;
  border: 1px solid rgba(15,61,46,.25);
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
}
.bk-cta-ghost:hover {
  background: var(--green-soft);
  border-color: var(--green-dark);
}
.bk-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

/* ----- Panel header: title + stat chips ----- */
.bk-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.bk-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bk-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(15,61,46,.12);
  padding: 5px 11px;
  border-radius: 30px;
  letter-spacing: 0.2px;
}

/* ----- Journey strip (Panel 1) ----- */
.bk-journey {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 16px;
}
.bk-stop {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  padding: 6px;
  border-radius: 12px;
  background: var(--ivory);
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.bk-stop:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15,61,46,.12);
  border-color: var(--gold);
}
.bk-stop-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  margin-bottom: 4px;
}
.bk-stop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bk-stop-num {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.bk-stop-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.1;
}
.bk-stop-days {
  font-size: 0.72rem;
  color: var(--muted);
}
.bk-stop-arrow {
  align-self: center;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
}

/* ----- Image card grid (Panels 2 & 3) ----- */
.bk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.bk-card {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.bk-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15,61,46,.18);
  border-color: var(--gold);
}
.bk-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid), var(--gold));
}
.bk-card-body {
  padding: 9px 12px 11px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bk-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.15;
}
.bk-card-sub {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ----- Restaurant city grid (Panel 4) ----- */
.bk-rest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.bk-rest-city {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px 14px;
  border-top: 3px solid var(--gold);
  transition: transform .2s, box-shadow .2s;
}
.bk-rest-city:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15,61,46,.12);
}
.bk-rest-city h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: 0 0 8px;
  line-height: 1.2;
}
.bk-rest-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-soft);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}
.bk-rest-tag--biryani { color: #8b3a1a; background: #f8e0d4; }
.bk-rest-tag--hill    { color: #2d5c3a; background: #d9ead9; }
.bk-rest-tag--water   { color: #1e5a7a; background: #d6e7f0; }
.bk-rest-city ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bk-rest-city li {
  font-size: 0.82rem;
  color: var(--text);
  padding-left: 12px;
  position: relative;
}
.bk-rest-city li::before {
  content: "·";
  position: absolute;
  left: 2px;
  color: var(--gold);
  font-weight: 700;
}

/* ----- Prep checklist (Panel 5) ----- */
.bk-prep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.bk-prep {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.bk-prep:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15,61,46,.10);
  border-color: var(--gold);
}
.bk-prep-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: 9px;
}
.bk-prep-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.bk-prep-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-dark);
  line-height: 1.2;
}
.bk-prep-sub {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}
.bk-prep-sub a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(15,61,46,.3);
}
.bk-prep-sub a:hover { text-decoration-color: var(--green-dark); }

/* ----- The tip line (all panels) ----- */
.bk-tip {
  background: linear-gradient(135deg, var(--gold-soft), #fff);
  border: 1px solid var(--gold);
  border-left-width: 4px;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.86rem;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.5;
}
.bk-tip strong { color: var(--gold-deep); }

/* ----- Subtle panel fade-in when switched ----- */
@keyframes bkFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bk-radio:checked + .bk-label + .bk-panel {
  animation: bkFadeIn .35s cubic-bezier(.2,.8,.2,1);
}

/* ===== DESKTOP: TABS LAYOUT (≥900px) ===== */
@media (min-width: 900px) {
  .hero-buckets {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: auto;
    column-gap: 10px;
    row-gap: 0;
  }
  .bk-label {
    grid-row: 1;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 14px 14px 16px;
    border-radius: 14px 14px 0 0;
    border-bottom: none;
  }
  .bk-label::after { display: none; }
  .bk-label::before {
    /* on desktop the accent becomes a TOP bar, not a side bar */
    inset: 0 0 auto 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: center;
  }
  .bk-icon {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
    border-radius: 9px;
  }
  .bk-num { font-size: 0.6rem; letter-spacing: 1.2px; }
  .bk-title { font-size: 0.94rem; line-height: 1.15; }
  .bk-sub { font-size: 0.72rem; }

  .bk-radio:checked + .bk-label {
    background: #fff;
    border-color: var(--gold);
    border-bottom-color: #fff;
    box-shadow: 0 -6px 20px rgba(0,0,0,.12);
    position: relative;
    z-index: 2;
    transform: translateY(1px);
  }
  .bk-radio:checked + .bk-label::before { transform: scaleX(1); }
  .bk-radio:checked + .bk-label .bk-num { color: var(--gold-deep); }
  .bk-radio:checked + .bk-label .bk-title { color: var(--green-dark); }
  .bk-radio:checked + .bk-label .bk-sub { color: var(--muted); }
  .bk-radio:checked + .bk-label .bk-icon {
    background: var(--gold);
    border-color: var(--gold);
  }

  .bk-panel {
    grid-row: 2;
    grid-column: 1 / -1;
    border-radius: 0 14px 14px 14px;
    padding: 28px 32px 24px;
    border: 1px solid var(--gold);
    border-top-width: 3px;
  }
  .bk-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
  }
  .bk-list li { font-size: 0.95rem; }
}

@media (min-width: 1200px) {
  .bk-list { grid-template-columns: 1fr 1fr 1fr; }
}

/* ----- HERO PRIMARY CTA ----- */
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  border-radius: 50px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.4px;
  box-shadow: 0 10px 28px rgba(201,162,74,.45);
  transition: all .3s cubic-bezier(.2,.8,.2,1);
}
.btn-hero-cta:hover {
  background: #d6b057;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(201,162,74,.55);
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 100px 0;
  position: relative;
}
.section-ivory { background: var(--ivory); }
.section-dark { background: linear-gradient(135deg, var(--green-dark) 0%, var(--dark) 100%); color: #fff; }
.section-green-dark { background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%); color: #fff; }
.section-green-soft { background: var(--green-soft); }
.section-nature {
  background:
    linear-gradient(135deg, rgba(15,61,46,.92) 0%, rgba(26,92,66,.88) 100%),
    url('https://commons.wikimedia.org/wiki/Special:FilePath/House_Boat_DSW.jpg?width=1600') center/cover fixed;
  color: #fff;
}
.section-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b88a35 100%);
  color: var(--dark);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-header-light .section-title { color: #fff; }
.section-tag {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.section-tag-gold {
  background: rgba(201,162,74,.18);
  color: var(--gold-soft);
  border: 1px solid rgba(201,162,74,.35);
}
.section-tag-dark {
  background: rgba(20,32,34,.15);
  color: var(--dark);
  border: 1px solid rgba(20,32,34,.2);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.text-light { color: #fff !important; }
.text-light-muted { color: rgba(255,255,255,.75) !important; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  line-height: 1.8;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.fact-card {
  background: #fff;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem;
  transition: transform .25s, box-shadow .25s;
}
.fact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.fact-icon { font-size: 1.6rem; }

.about-image-stack {
  position: relative;
  height: 520px;
}
.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.about-img-1 {
  width: 78%; height: 70%;
  top: 0; right: 0;
}
.about-img-2 {
  width: 55%; height: 45%;
  bottom: 0; left: 0;
  border: 8px solid var(--ivory);
}

/* ---------- TIMELINE (HISTORY) ---------- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.timeline-item {
  position: relative;
  padding-bottom: 50px;
}
.timeline-dot {
  position: absolute;
  left: -34px;
  top: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--green-dark);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-content {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,162,74,.18);
  padding: 24px 28px;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.timeline-era {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.timeline-title {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.timeline-content p {
  color: rgba(255,255,255,.85);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ---------- CULTURE TABS ---------- */
.culture-tabs, .language-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  padding: 8px;
  background: #fff;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin-left: auto; margin-right: auto;
}
.culture-tab, .lang-tab {
  padding: 12px 22px;
  border-radius: 40px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: all .25s;
  white-space: nowrap;
}
.culture-tab:hover, .lang-tab:hover { background: var(--green-soft); }
.culture-tab.active, .lang-tab.active {
  background: var(--green-dark);
  color: #fff;
}

.culture-panel, .lang-panel {
  display: none;
  animation: fadeIn .4s ease;
}
.culture-panel.active, .lang-panel.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.culture-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
}
.culture-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.culture-img, .culture-img-placeholder {
  width: 100%; height: 200px;
  object-fit: cover;
  color: #fff;
}
.culture-body { padding: 22px; }
.culture-body h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.culture-tag {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.culture-body p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ---------- FOOD ---------- */
.food-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}
.food-intro p {
  color: rgba(255,255,255,.9);
  font-size: 1.08rem;
  line-height: 1.8;
}
.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.food-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,162,74,.2);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(8px);
  transition: transform .3s, border-color .3s;
}
.food-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.food-emoji { font-size: 2.4rem; margin-bottom: 14px; }
.food-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.food-category {
  display: block;
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.food-card p {
  color: rgba(255,255,255,.85);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.food-tip {
  background: rgba(201,162,74,.12);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--gold-soft);
}
.food-note {
  margin-top: 40px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 18px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.food-note-icon { font-size: 2rem; flex-shrink: 0; }
.food-note { color: rgba(255,255,255,.92); font-size: 0.95rem; }

/* ---------- MONUMENTS / DESTINATIONS / NATURE / ITINERARIES — SHARED CARD STYLES ---------- */
.monuments-grid, .nature-grid, .dest-grid, .itinerary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 26px;
}
.monument-card, .nature-card, .dest-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.monument-card:hover, .nature-card:hover, .dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.monument-img, .nature-img, .dest-img {
  width: 100%; height: 220px;
  object-fit: cover;
}
.monument-body, .nature-body, .dest-body {
  padding: 22px;
  flex: 1;
  display: flex; flex-direction: column;
}
.monument-location {
  display: inline-block;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.monument-body h3, .nature-body h3, .dest-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.monument-body p, .dest-body p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
}
.monument-tag {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 500;
  margin-top: auto;
}

/* nature card overrides (dark section) */
.section-nature .nature-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}
.section-nature .nature-body h3 { color: #fff; }
.section-nature .nature-body p { color: rgba(255,255,255,.85); }
.nature-badge {
  display: inline-block;
  background: rgba(201,162,74,.2);
  color: var(--gold-soft);
  border: 1px solid rgba(201,162,74,.4);
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* destinations */
.dest-meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.dest-badge {
  font-size: 0.74rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.dest-badge-green { background: #d4ebe0; color: var(--green-dark); }
.dest-badge-blue  { background: #d0e3f0; color: #134e6f; }
.dest-badge-gold  { background: var(--gold-soft); color: var(--gold-deep); }
.dest-stay {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}
.dest-tip {
  background: #fff3e0;
  color: #8a5a00;
  font-size: 0.85rem;
  padding: 10px 14px;
  border-radius: 6px;
  border-left: 3px solid #d99a3e;
  margin-top: 12px;
}

/* ---------- LANGUAGE ---------- */
.language-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}
.language-intro p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
}
.word-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.word-card {
  background: #fff;
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
  transition: all .3s;
}
.word-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.word-card-urgent {
  background: #fff5f5;
  border-color: #f1c0c0;
}
.word-ml {
  font-size: 1.6rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}
.word-roman {
  font-size: 1rem;
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 8px;
}
.word-en {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 6px;
}
.word-use {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}
.language-tip {
  margin-top: 40px;
  background: var(--green-soft);
  border-left: 4px solid var(--green-dark);
  padding: 20px 26px;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 14px;
  font-size: 0.95rem;
  color: var(--text);
}
.lang-tip-icon { font-size: 1.8rem; flex-shrink: 0; }

/* ---------- TRAVELLER TYPES ---------- */
.traveller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.traveller-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  cursor: pointer;
  transition: all .3s;
}
.traveller-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-dark);
  box-shadow: var(--shadow-md);
}
.traveller-icon { font-size: 2.6rem; margin-bottom: 12px; }
.traveller-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.traveller-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.traveller-tip {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
}

/* ---------- PLANNER ---------- */
.planner-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.planner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.planner-field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.planner-field select, .planner-field input, .form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--ivory);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color .25s;
}
.planner-field select:focus, .planner-field input:focus, .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  background: #fff;
}
#generatePlan { margin-top: 12px; }

.planner-output {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.plan-result {
  background: var(--green-soft);
  padding: 28px;
  border-radius: var(--radius);
  border-left: 4px solid var(--green-dark);
}
.plan-result h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--green-dark);
}
.plan-result ul { padding-left: 22px; margin: 12px 0; }
.plan-result li { margin-bottom: 6px; }
.plan-day {
  background: #fff;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 10px;
  border-left: 3px solid var(--gold);
}
.plan-day strong { color: var(--green-dark); }

/* ---------- ITINERARIES ---------- */
.itinerary-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,162,74,.2);
  border-radius: var(--radius);
  padding: 30px;
  transition: all .3s;
}
.itinerary-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: rgba(255,255,255,.07);
}
.itinerary-header { margin-bottom: 16px; }
.itinerary-days {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.itinerary-card h3 {
  color: #fff;
  font-size: 1.4rem;
}
.itinerary-meta {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.75);
}
.itinerary-card p {
  color: rgba(255,255,255,.82);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ---------- ACCORDION ---------- */
.accordion-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 12px;
}
.accordion-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.accordion-btn {
  width: 100%;
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  text-align: left;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 500;
  transition: background .25s;
}
.accordion-btn:hover { background: rgba(255,255,255,.05); }
.acc-icon { font-size: 1.4rem; flex-shrink: 0; }
.acc-arrow {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--gold);
  transition: transform .3s;
}
.accordion-item.open .acc-arrow { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
  padding: 0 24px;
}
.accordion-item.open .accordion-body {
  max-height: 1200px;
  padding: 6px 24px 24px;
}
.accordion-body p {
  color: rgba(255,255,255,.85);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.accordion-body p:last-child { margin-bottom: 0; }
.accordion-body strong { color: var(--gold-soft); }

/* ---------- MISTAKES ---------- */
.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.mistake-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.mistake-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.mistake-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 8px;
}
.mistake-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
}
.mistake-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ---------- CONTACT ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  margin: 14px 0 18px;
  line-height: 1.15;
}
.contact-desc {
  color: rgba(20,32,34,.85);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 26px;
}
.contact-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(20,32,34,.7);
  font-weight: 500;
}

.enquiry-form {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.enquiry-form h3 {
  font-size: 1.5rem;
  margin-bottom: 22px;
  color: var(--green-dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-success {
  margin-top: 14px;
  padding: 12px 16px;
  background: #d4f1e0;
  color: var(--green-dark);
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}

/* ---------- BLOG ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  transition: all .3s;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--green-dark);
}
.blog-tag {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-card h4 {
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.blog-card { display: flex; flex-direction: column; }
.blog-card-read {
  margin-top: auto;
  font-size: 0.78rem;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.blog-card:hover .blog-card-read { color: var(--green-dark); }
.blog-card-soon .blog-card-read {
  color: var(--muted);
  font-style: italic;
}

/* ---------- FOOTER ---------- */
.footer {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--dark) 100%);
  color: rgba(255,255,255,.85);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  margin-bottom: 22px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.footer-wa {
  display: inline-block;
  background: rgba(37,211,102,.15);
  color: #4ade80;
  border: 1px solid rgba(37,211,102,.3);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all .3s;
}
.footer-wa:hover { background: #25D366; color: #fff; }
.footer-mail {
  display: inline-block;
  font-size: 0.88rem;
  color: rgba(255,255,255,.75);
  transition: color .25s;
}
.footer-mail:hover { color: var(--gold-soft); }

.contact-email {
  margin-top: 14px;
  font-size: 0.92rem;
  color: rgba(20,32,34,.8);
}
.contact-email a {
  color: var(--dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(20,32,34,.4);
}
.contact-email a:hover { text-decoration-color: var(--dark); }

.footer-col h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
  transition: color .25s;
}
.footer-col a:hover { color: var(--gold-soft); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom p { margin-bottom: 6px; color: inherit; }

/* ---------- MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,61,46,.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn .25s;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
  animation: modalIn .3s cubic-bezier(.2,.8,.2,1);
}
@keyframes modalIn {
  from { transform: translateY(20px) scale(.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ivory);
  font-size: 1.2rem;
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.modal-close:hover { background: var(--green-dark); color: #fff; }
.modal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}
.modal-content .modal-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.modal-day {
  background: var(--ivory);
  padding: 18px 22px;
  border-radius: 10px;
  margin-bottom: 12px;
  border-left: 4px solid var(--gold);
}
.modal-day strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}
.modal-day p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
}

/* ---------- FLOATING WIDGETS ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover { background: var(--green-deep); transform: translateY(-3px); }

.float-wa {
  position: fixed;
  bottom: 30px; left: 30px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  z-index: 999;
  animation: pulse 2.5s infinite;
}
.float-wa:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  50%      { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* ---------- FADE-IN ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- IMAGE FALLBACK (KERALA-THEMED PLACEHOLDER) ---------- */
img.img-fallback {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid), var(--gold));
  position: relative;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform .35s;
    border-bottom: 1px solid var(--line);
  }
  .nav.open { transform: translateY(0); }
  .nav-link {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-cta {
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }
  .menu-toggle { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-image-stack { height: 420px; }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .timeline { padding-left: 28px; }
  .timeline-dot { left: -22px; }
}

@media (max-width: 960px) {
  /* Hero stacks: buckets → text → form
     Buckets first so the user lands on actionable content immediately */
  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 24px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "tiles"
      "left"
      "right";
    gap: 22px;
    padding: 16px 24px 22px;
    max-width: 620px;
    min-height: auto;
  }
  .hero-left { text-align: center; align-self: auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero-right { max-width: 480px; margin: 0 auto; align-self: auto; width: 100%; }
  .hero-buckets { max-width: 620px; margin: 0 auto; }
  .hero-buckets-wrap { max-width: 760px; margin: 0 auto; }
  .bk-rest-grid { grid-template-columns: repeat(3, 1fr); }
  .bk-prep-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .container { padding: 0 18px; }

  .hero-meta {
    bottom: 12px; right: 12px; left: 12px;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 8px;
  }
  .hero-caption { font-size: 0.7rem; padding: 5px 12px; }
  .indicator { width: 18px; }
  .indicator.active { width: 26px; }

  .hero { padding-top: 80px; }
  .hero-layout { padding: 16px 16px 26px; gap: 22px; }
  .hero-tag { font-size: 0.68rem; padding: 6px 14px; margin-bottom: 14px; }
  .hero-title { margin-bottom: 10px; font-size: 1.7rem; }
  .hero-subtitle { margin-bottom: 18px; font-size: 0.92rem; }
  .hero-stats { font-size: 0.72rem; gap: 4px 12px; }
  .hero-planner-card { padding: 20px 18px 16px; border-radius: 14px; }
  .hero-planner-card h2 { font-size: 1.3rem; }
  .hero-planner-sub { font-size: 0.8rem; margin-bottom: 14px; }
  .hero-field { margin-bottom: 10px; }
  .hero-field select { padding: 10px 12px; font-size: 0.88rem; }
  .btn-hero-cta { padding: 12px 24px; font-size: 0.92rem; }

  .hero-buckets-intro { margin-bottom: 10px; }
  .hero-buckets-headline { font-size: 0.92rem; }
  .hero-buckets { max-width: 480px; margin: 0 auto; gap: 7px; }
  .bk-label { padding: 13px 14px; gap: 12px; border-radius: 11px; }
  .bk-icon { width: 38px; height: 38px; font-size: 1.4rem; border-radius: 9px; }
  .bk-title { font-size: 0.95rem; }
  .bk-sub { font-size: 0.72rem; }
  .bk-num { font-size: 0.62rem; }
  .bk-panel { padding: 18px 16px 20px; border-radius: 11px; }
  .bk-panel-title { font-size: 1.05rem; }
  .bk-list li { font-size: 0.88rem; }

  /* Rich panels collapse to compact grids on mobile */
  .bk-head { margin-bottom: 12px; padding-bottom: 10px; }
  .bk-stats { gap: 5px; }
  .bk-stat { font-size: 0.68rem; padding: 4px 9px; }
  .bk-journey {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .bk-stop-arrow { display: none; }
  .bk-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .bk-rest-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .bk-prep-grid { grid-template-columns: 1fr; gap: 8px; }
  .bk-card img { aspect-ratio: 16 / 11; }
  .bk-card-name { font-size: 0.95rem; }
  .bk-card-sub { font-size: 0.74rem; }
  .bk-stop-name { font-size: 0.92rem; }
  .bk-stop-days { font-size: 0.68rem; }
  .bk-rest-city { padding: 10px 12px; }
  .bk-rest-city h4 { font-size: 0.9rem; }
  .bk-rest-city li { font-size: 0.78rem; }
  .bk-prep-icon { width: 36px; height: 36px; font-size: 1.3rem; }
  .bk-prep-name { font-size: 0.88rem; }
  .bk-prep-sub { font-size: 0.74rem; }
  .bk-tip { font-size: 0.8rem; padding: 9px 12px; }
  .bk-cta { font-size: 0.82rem; padding: 7px 14px; }
  .bk-cta-ghost { font-size: 0.82rem; padding: 7px 14px; }

  .about-facts { grid-template-columns: 1fr 1fr; }

  .planner-wrap { padding: 26px 20px; }
  .planner-row, .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .culture-tabs, .language-tabs {
    border-radius: var(--radius);
    flex-direction: column;
  }
  .culture-tab, .lang-tab { width: 100%; text-align: center; }

  .modal-box { padding: 28px 20px; }
  .modal-content h2 { font-size: 1.4rem; }

  .float-wa { width: 52px; height: 52px; font-size: 1.5rem; left: 20px; bottom: 20px; }
  .back-to-top { width: 44px; height: 44px; right: 20px; bottom: 20px; }
}
