/* ============================================
   Portal Wisata Banyuwangi — Global Stylesheet
   Tema: Tropical · Nature · Warm & Modern
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── Design Tokens ── */
:root {
  /* Palette: deep forest, ocean, warm earth, sunrise orange */
  --forest:      #1A3C2E;
  --forest-mid:  #2D6A4F;
  --green:       #40916C;
  --green-light: #74C69D;
  --sage:        #D8F3DC;
  --ocean:       #1565A7;
  --ocean-light: #E3F2FD;
  --cream:       #FDF6EC;
  --warm-white:  #FFFBF5;
  --sand:        #F5E6C8;
  --orange:      #E8762C;
  --orange-soft: #FFF0E6;
  --gold:        #C9870A;
  --gold-light:  #FEF3C7;

  --text-dark:   #1A2E1A;
  --text-body:   #3D4F3D;
  --text-muted:  #6B7C6B;
  --border:      #E2EDE2;
  --white:       #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, sans-serif;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   36px;
  --r-full: 9999px;

  --shadow-sm: 0 1px 4px rgba(26,60,46,.08);
  --shadow-md: 0 4px 20px rgba(26,60,46,.12);
  --shadow-lg: 0 12px 48px rgba(26,60,46,.16);

  --trans: .28s cubic-bezier(.4,0,.2,1);
  --container: 1180px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ── Section Labels ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  color: var(--text-dark);
  line-height: 1.18;
  margin-bottom: 16px;
  font-weight: 700;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.text-center .eyebrow { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .01em;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,118,44,.38);
}
.btn-primary:hover {
  background: #C9610E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,118,44,.45);
}
.btn-white {
  background: var(--white);
  color: var(--forest);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-green {
  background: var(--forest-mid);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(45,106,79,.35);
}
.btn-green:hover {
  background: var(--forest);
  transform: translateY(-2px);
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(253,246,236,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-brand img { height: 40px; width: auto; }
.brand-text { line-height: 1.2; }
.brand-name    { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--forest); display: block; }
.brand-tagline { font-size: .7rem; color: var(--text-muted); display: block; }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 8px 15px;
  border-radius: var(--r-full);
  font-size: .86rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--trans);
}
.nav-link:hover { color: var(--green); background: var(--sage); }
.nav-link.active { color: var(--forest); background: var(--sage); }
.nav-link.nav-cta {
  background: var(--orange);
  color: var(--white);
  margin-left: 10px;
  padding: 9px 20px;
  box-shadow: 0 2px 10px rgba(232,118,44,.3);
}
.nav-link.nav-cta:hover { background: #C9610E; color: var(--white); }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--trans);
}
.hamburger:hover { background: var(--sage); }
.hamburger span { display: block; height: 2px; background: var(--forest); border-radius: 2px; transition: all var(--trans); }
.mobile-nav {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 13px 18px; border-radius: var(--r-md); font-size: .95rem; }

/* ── Breadcrumb ── */
.breadcrumb-bar {
  background: var(--sage);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--green); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb-sep { color: var(--green-light); }
.breadcrumb-current { color: var(--text-dark); font-weight: 600; }

/* ── Page Hero ── */
.page-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,60,46,.88) 40%, rgba(26,60,46,.25) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 44px 0;
  color: var(--white);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.08rem;
  opacity: .85;
  max-width: 580px;
  line-height: 1.72;
}

/* ── HOME HERO ── */
.home-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26,60,46,.92) 40%, rgba(64,145,108,.45) 100%);
}
.home-hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 0 112px;
  color: var(--white);
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.28);
  padding: 7px 18px;
  border-radius: var(--r-full);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }
.home-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 22px;
  font-weight: 700;
}
.home-hero h1 em {
  font-style: italic;
  color: var(--orange);
}
.home-hero .lead {
  font-size: 1.12rem;
  opacity: .88;
  line-height: 1.78;
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Highlight strip ── */
.highlight-strip {
  background: var(--forest);
  padding: 32px 0;
}
.hl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-md);
  overflow: hidden;
}
.hl-item {
  background: var(--forest);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.hl-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,.1); }
.hl-icon { font-size: 2rem; flex-shrink: 0; }
.hl-label { font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 2px; }
.hl-value { font-size: .95rem; font-weight: 700; color: var(--orange); }

/* ── Destination Cards ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dest-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--trans);
  cursor: pointer;
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.dest-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.dest-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.dest-card:hover .dest-card-img img { transform: scale(1.07); }
.dest-card-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  color: var(--forest);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  backdrop-filter: blur(6px);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.dest-card-body { padding: 24px; }
.dest-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.25;
}
.dest-card-body p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.dest-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dest-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: var(--green);
  font-weight: 600;
}
.dest-arrow {
  width: 32px; height: 32px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: all var(--trans);
  color: var(--forest);
}
.dest-card:hover .dest-arrow { background: var(--orange); color: var(--white); }

/* ── Feature Row ── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.flip .feature-text { order: 2; }
.feature-row.flip .feature-img  { order: 1; }
.feature-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-text .eyebrow { margin-bottom: 18px; }
.feature-text h2 { margin-bottom: 18px; }
.feature-text p  { margin-bottom: 28px; }

/* ── Check list ── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 700;
  margin-top: 1px;
}

/* ── Generic Cards ── */
.cards-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.cards-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all var(--trans);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.info-card-icon {
  width: 52px; height: 52px;
  background: var(--sage);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all var(--trans);
}
.info-card:hover .info-card-icon { background: var(--green); transform: scale(1.08); }
.info-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.info-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ── Kuliner card ── */
.food-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--trans);
  box-shadow: var(--shadow-sm);
}
.food-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.food-card-img {
  height: 200px;
  overflow: hidden;
}
.food-card-img img { width:100%; height:100%; object-fit:cover; transition: transform .5s; }
.food-card:hover .food-card-img img { transform: scale(1.06); }
.food-card-body { padding: 22px 22px 24px; }
.food-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.food-card-body p {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.68;
}
.food-badge {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

/* ── Itinerary ── */
.itinerary-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.itab {
  padding: 10px 24px;
  border-radius: var(--r-full);
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-muted);
  border: 2px solid var(--border);
  transition: all var(--trans);
}
.itab.active, .itab:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.itin-panel { display: none; }
.itin-panel.active { display: block; }
.itin-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.itin-item {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 32px;
}
.itin-item:last-child { padding-bottom: 0; }
.itin-item:last-child .itin-line { display: none; }
.itin-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
}
.itin-dot {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(232,118,44,.35);
}
.itin-line {
  flex: 1;
  width: 2px;
  background: var(--border);
  margin-top: 4px;
}
.itin-content { padding-top: 8px; }
.itin-time {
  font-size: .76rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.itin-content h4 {
  font-weight: 700;
  font-size: .98rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.itin-content p {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.68;
}

/* ── Highlight box ── */
.tip-box {
  background: var(--sage);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.tip-box strong { color: var(--forest); }
.tip-box p { font-size: .88rem; color: var(--text-muted); margin-top: 6px; }

.warn-box {
  background: var(--orange-soft);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.warn-box strong { color: #7A3B0A; }
.warn-box p { font-size: .88rem; color: #7A3B0A; margin-top: 6px; }

/* ── Event cards ── */
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--trans);
}
.event-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
  transform: translateX(4px);
}
.event-month {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  background: var(--sage);
  border-radius: var(--r-md);
  padding: 10px 6px;
}
.event-month .mon {
  font-size: .7rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
}
.event-month .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.event-info h4 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-size: .98rem;
}
.event-info p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.event-tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item.open { border-color: var(--green); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-weight: 700;
  font-size: .94rem;
  color: var(--text-dark);
  background: var(--white);
  transition: background var(--trans);
}
.faq-question:hover { background: var(--cream); }
.faq-item.open .faq-question { background: var(--sage); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--trans);
  color: var(--green);
}
.faq-item.open .faq-icon { background: var(--green); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.78;
  background: var(--sage);
}
.faq-item.open .faq-answer { display: block; }

/* ── Contact form ── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: .84rem; font-weight: 700; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-body);
  background: var(--warm-white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(64,145,108,.14);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 60%, var(--green) 100%);
  border-radius: var(--r-xl);
  padding: 68px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '🌿';
  position: absolute;
  font-size: 16rem;
  opacity: .05;
  right: -3rem; top: -3rem;
  line-height: 1;
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.05rem;
  opacity: .85;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ── Traveler tips cards ── */
.traveler-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all var(--trans);
}
.traveler-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.traveler-card .icon { font-size: 2rem; margin-bottom: 16px; }
.traveler-card h3 { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 10px; }
.traveler-card p  { font-size: .86rem; color: var(--text-muted); line-height: 1.72; }

/* ── Content intro ── */
.content-intro {
  background: linear-gradient(to right, var(--sage), var(--cream));
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.content-intro h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--forest);
  margin-bottom: 10px;
}
.content-intro p { font-size: .98rem; color: var(--text-muted); line-height: 1.8; max-width: 680px; }

/* ── Table ── */
.info-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.info-table th {
  background: var(--forest);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
}
.info-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); }
.info-table tr:nth-child(even) td { background: var(--cream); }
.info-table tr:last-child td { border-bottom: none; }

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 24px; }
.step-item { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .92rem;
  box-shadow: 0 3px 10px rgba(232,118,44,.3);
}
.step-content h4 { font-weight: 700; font-size: .96rem; color: var(--text-dark); margin-bottom: 5px; }
.step-content p  { font-size: .86rem; color: var(--text-muted); line-height: 1.68; }

/* ── Section BG variants ── */
.bg-cream  { background: var(--cream); }
.bg-sage   { background: var(--sage); }
.bg-forest { background: var(--forest); color: var(--white); }
.bg-white  { background: var(--white); }

/* ── Footer ── */
.footer {
  background: var(--forest);
  color: var(--white);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 52px;
  padding-bottom: 52px;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: .86rem;
  color: rgba(255,255,255,.58);
  line-height: 1.75;
}
.footer-col h4 {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.footer-nav { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a {
  font-size: .86rem;
  color: rgba(255,255,255,.6);
  transition: color var(--trans);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-nav a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: .86rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Weather / Best time badges ── */
.month-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.month-badge {
  padding: 12px 8px;
  border-radius: var(--r-md);
  text-align: center;
  font-size: .76rem;
  font-weight: 700;
  border: 2px solid var(--border);
  transition: all var(--trans);
}
.month-badge.peak { background: var(--green); color: var(--white); border-color: var(--green); }
.month-badge.good { background: var(--sage); color: var(--forest); border-color: var(--green-light); }
.month-badge.rainy { background: var(--cream); color: var(--text-muted); }
.month-badge .icon { font-size: 1.1rem; display: block; margin-bottom: 4px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .hl-grid { grid-template-columns: repeat(2, 1fr); }
  .hl-item:nth-child(2) { border-right: none; }
  .hl-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.1); border-top: 1px solid rgba(255,255,255,.1); }
  .hl-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .month-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .home-hero { min-height: 540px; }
  .home-hero-content { padding: 72px 0 88px; }
  .dest-grid { grid-template-columns: 1fr; }
  .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 36px; }
  .feature-row.flip .feature-text { order: 0; }
  .feature-row.flip .feature-img  { order: 0; }
  .cta-banner { padding: 44px 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { height: 320px; }
  .hl-grid { grid-template-columns: 1fr 1fr; }
  .month-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hl-grid { grid-template-columns: 1fr; }
  .hl-item:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .month-grid { grid-template-columns: repeat(2, 1fr); }
}
