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

:root {
  --gold: #C9952A;
  --gold-light: #E8C06A;
  --saffron: #E8600A;
  --crimson: #A0192A;
  --ivory: #FAF7F2;
  --parchment: #F2EBD9;
  --dark: #1A1208;
  --dark-mid: #2E2210;
  --text: #3A2D1A;
  --text-muted: #7A6A50;
  --border: rgba(201,149,42,0.2);
  --font-display: 'Open Sans',sans-serif;
  --font-body: 'Open Sans',sans-serif;
  --font-sans: 'DM Sans', sans-serif;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }
body { background: var(--ivory); color: var(--text); font-family: var(--font-body); font-size: 18px; line-height: 1.7; overflow-x: hidden; }

/* ══ NAV ══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(26,18,8,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,149,42,0.15);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 2.5rem;
  max-width: 1500px; margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--gold-light); letter-spacing: 0.04em; text-decoration: none; flex-shrink: 0;
}
.nav-logo span { color: var(--saffron); font-style: italic; }

/* desktop list */
.nav-list { display: flex; align-items: center; list-style: none; height: 100%; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-item > a, .nav-item > button {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; text-decoration: none; background: none; border: none;
  padding: 0 0.95rem; height: 100%; cursor: pointer; transition: color 0.2s; white-space: nowrap;
}
.nav-item > a:hover, .nav-item > button:hover { color: var(--gold-light); }
.nav-item.has-mega:hover > button { color: var(--gold-light); }
.caret {
  display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; transition: transform 0.25s;
}
.nav-item.has-mega:hover .caret { transform: rotate(180deg); }

/* ══ MEGA MENU ══ */
.mega-wrap {
  position: absolute; top: var(--nav-h);
  background: var(--dark-mid);
  border: 1px solid rgba(201,149,42,0.15); border-top: 2px solid var(--gold);
  box-shadow: 0 24px 52px rgba(0,0,0,0.55);
  display: none; z-index: 300;
  padding: 2rem 2.5rem;
}
.mega-wrap.left-edge { left: 0; }
.mega-wrap.right-edge { right: 0; }
.mega-wrap.center { left: 50%; transform: translateX(-50%); }
.nav-item.has-mega:hover .mega-wrap { display: grid; }
.mega-grid { display: grid; gap: 0; }
.mega-grid-4 { grid-template-columns: repeat(4, 1fr); min-width: 860px; }
.mega-grid-3 { grid-template-columns: repeat(3, 1fr); min-width: 640px; }
.mega-col { padding: 0 1.5rem; }
.mega-col:first-child { padding-left: 0; }
.mega-col + .mega-col { border-left: 1px solid rgba(201,149,42,0.1); }
.mega-col-title {
  font-family: var(--font-sans); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.9rem; padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(201,149,42,0.15);
}
.mega-links { list-style: none; }
.mega-links li a {
  display: block; font-family: var(--font-sans); font-size: 0.8rem;
  color: #fff; text-decoration: none;
  padding: 0.42rem 0; border-bottom: 1px solid rgba(201,149,42,0.06);
  transition: color 0.18s, padding-left 0.18s;
}
.mega-links li a:hover { color: var(--gold-light); padding-left: 6px; }
.mega-featured {
  background: rgba(201,149,42,0.07); border: 1px solid rgba(201,149,42,0.15);
  padding: 1.1rem; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 150px; position: relative; overflow: hidden; text-decoration: none;
}
.mega-featured img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.32; transition: opacity 0.3s; }
.mega-featured:hover img { opacity: 0.5; }
.mega-feat-label { position: relative; z-index: 1; font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.mega-feat-title { position: relative; z-index: 1; font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--ivory); line-height: 1.3; }

/* ══ simple dropdown ══ */
.drop-wrap {
  position: absolute; top: var(--nav-h); left: 0;
  background: var(--dark-mid); border: 1px solid rgba(201,149,42,0.15); border-top: 2px solid var(--gold);
  min-width: 210px; display: none; flex-direction: column; z-index: 300;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.nav-item.has-drop:hover .drop-wrap { display: flex; }
.drop-wrap a {
  font-family: var(--font-sans); font-size: 0.76rem; color: rgba(249,240,220,0.62);
  text-decoration: none; padding: 0.65rem 1.15rem;
  border-bottom: 1px solid rgba(201,149,42,0.07);
  transition: color 0.18s, background 0.18s; display: block;
}
.drop-wrap a:hover { color: var(--gold-light); background: rgba(201,149,42,0.06); }

.nav-cta {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--white);
  background: var(--gold); padding: 0.52rem 1.3rem; border: none; cursor: pointer;
  text-decoration: none; transition: background 0.2s; white-space: nowrap; flex-shrink: 0; margin-left: 0.75rem;
}
.nav-cta:hover { background: var(--gold-light); color: var(--white)}

/* ══ HAMBURGER ══ */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold-light); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══ MOBILE DRAWER ══ */
.mobile-drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--dark); z-index: 190; overflow-y: auto;
  transform: translateX(-100%); transition: transform 0.35s ease;
  padding: 0 0 5rem; display: none;
}
.mobile-drawer.open { transform: translateX(0); }
.mob-item { border-bottom: 1px solid rgba(201,149,42,0.1); }
.mob-toggle {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem; font-family: var(--font-sans); font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(249,240,220,0.8); background: none; border: none; width: 100%; cursor: pointer; text-align: left;
}
.mob-toggle-link { display: block; text-decoration: none; color: rgba(249,240,220,0.8); }
.m-caret { display: inline-block; width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 5px solid rgba(201,149,42,0.55); transition: transform 0.25s; }
.mob-toggle.is-open .m-caret { transform: rotate(180deg); }
.mob-sub { display: none; background: rgba(201,149,42,0.04); padding-bottom: 0.5rem; }
.mob-sub.is-open { display: block; }
.mob-sub-title { font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); padding: 0.8rem 1.75rem 0.3rem; }
.mob-sub a { font-family: var(--font-sans); font-size: 0.79rem; color: rgba(249,240,220,0.52); text-decoration: none; padding: 0.45rem 1.75rem; display: block; transition: color 0.18s; }
.mob-sub a:hover { color: var(--gold-light); }
.mob-cta { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; }

/* ══ BUTTONS ══ */
.btn-primary { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); background: var(--gold); padding: 0.9rem 2.2rem; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ivory); padding: 0.9rem 1.75rem; border: 1px solid rgba(249,240,220,0.4); text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ══ HERO ══ */
.hero { position: relative; height: 100vh; min-height: 580px; display: flex; align-items: flex-end; overflow: hidden; background: var(--dark); }
.hero-slides { position: absolute; inset: 0; z-index: 1; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease; background-size: cover; background-position: center; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to bottom, rgba(26,18,8,.15) 0%, rgba(26, 18, 8, 0.8) 55%, rgba(26,18,8,.93) 100%); }
.hero-content { position: relative; z-index: 5; width: 100%; padding: 0 2.5rem 6rem; max-width: 1500px; margin: 0 auto; top:30%;}
.hero-eyebrow { font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 0.3s ease forwards; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.3rem, 6vw, 5.8rem); font-weight: 700; line-height: 1.05; color: var(--ivory); max-width: 740px; margin-bottom: 1.25rem; opacity: 0; transform: translateY(24px); animation: fadeUp 0.9s 0.5s ease forwards; }
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-subtitle { font-family: var(--font-body); font-size: 1.2rem; font-weight: 300; color: #fff; max-width: 450px; margin-bottom: 2.25rem; opacity: 0; transform: translateY(24px); animation: fadeUp 0.9s 0.7s ease forwards; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s 0.9s ease forwards; }
.hero-dots { position: absolute; bottom: 4.5rem; right: 2.5rem; z-index: 5; display: flex; flex-direction: column; gap: 8px; }
.slide-dot { width: 4px; height: 22px; background: rgba(249,240,220,.3); cursor: pointer; transition: all 0.3s; }
.slide-dot.active { background: var(--gold); height: 38px; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ══ SEARCH BAR ══ */
.search-bar { background: var(--dark-mid); border-top: 1px solid rgba(201,149,42,.15); padding: 1.2rem 2.5rem; display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.search-field { flex: 1; min-width: 150px; padding: 0 1.6rem; border-right: 1px solid rgba(201,149,42,.2); display: flex; flex-direction: column; gap: 2px; }
.search-field:first-child { padding-left: 0; }
.search-label { font-family: var(--font-sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.search-field select { background: transparent; border: none; color: var(--ivory); font-family: var(--font-body); font-size: 0.95rem; outline: none; cursor: pointer; width: 100%; }
.search-field select option { background: var(--dark-mid); }
.search-btn { margin-left: 1.5rem; font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; background: var(--gold); color: var(--white); padding: 0.85rem 2rem; border: none; cursor: pointer; transition: background 0.2s; white-space: nowrap; flex-shrink: 0; }
.search-btn:hover { background: var(--gold-light); }

/* ══ SECTION SHARED ══ */
section { padding: 5rem 2.5rem; }
.sec-inner { max-width: 1500px; margin: 0 auto; }
.section-eyebrow { font-family: var(--font-sans); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.55rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.9rem); font-weight: 600; line-height: 1.15; color: var(--dark); }
.section-title em { font-style: italic; color: var(--crimson); }
.divider { width: 52px; height: 2px; background: var(--gold); margin: 1.2rem 0; }
.section-lead { font-size: 1.05rem; color: var(--text-muted); max-width: 520px; font-weight: 300; }

/* ══ THEMES ══ */
.themes-section { background: var(--parchment); padding: 4rem 2.5rem; }
.themes-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.25rem; max-width: 1500px; margin-left: auto; margin-right: auto; margin-bottom: 2.25rem; }
.themes-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 1px; background: var(--border); max-width: 1500px; margin: 0 auto; }
.theme-card { background: var(--ivory); padding: 1.7rem 1rem; text-align: center; text-decoration: none; transition: all 0.25s; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.theme-card:hover { background: var(--dark); }
.theme-icon { font-size: 1.75rem; line-height: 1; }
.theme-name { font-family: var(--font-sans); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: #000; transition: color 0.25s; }
.theme-card:hover .theme-name { color: var(--white); }

/* ══ PACKAGES ══ */
.packages-section { background: var(--ivory); }
.packages-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.25rem; }
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.pkg-card { position: relative; overflow: hidden; cursor: pointer; text-decoration: none; display: block; background: var(--dark); }
/*.pkg-card:nth-child(1) { grid-row: span 2; }*/
.pkg-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.5s; filter: brightness(0.85); }
/*.pkg-card:nth-child(1) .pkg-img { aspect-ratio: unset; height: 100%; min-height: 420px; }*/
.pkg-card:hover .pkg-img { transform: scale(1.06); filter: brightness(0.7); }
.pkg-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,18,8,.9) 0%, rgba(26, 18, 8, 0.66) 60%); }
.pkg-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.pkg-badge { display: inline-block; font-family: var(--font-sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 0.17rem 0.52rem; margin-bottom: 0.45rem; }
.pkg-name { font-family: var(--font-display); font-size: 1.3rem !important; font-weight: 600 !important; color: var(--ivory); line-height: 1.2; margin-bottom: 0.28rem; }
.pkg-card:nth-child(1) .pkg-name { font-size: 1.85rem; }
.pkg-meta { font-family: var(--font-sans); font-size: 0.7rem; color: #fff }
.pkg-arrow { position: absolute; top: 1.25rem; right: 1.25rem; width: 34px; height: 34px; border: 1px solid rgba(201,149,42,.5); display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 1rem; opacity: 0; transform: translateX(-6px); transition: all 0.3s; }
.pkg-card:hover .pkg-arrow { opacity: 1; transform: translateX(0); }

/* ══ STATS ══ */
.stats-strip { background: var(--gold); padding: 2.75rem 2.5rem; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; }
.stat-item { padding: 0 1.5rem; border-right: 1px solid rgba(26,18,8,.15); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: var(--dark); line-height: 1; margin-bottom: 0.22rem; }
.stat-label { font-family: var(--font-sans); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(26,18,8,.6); }

/* ══ REGIONS ══ */
.regions-section { background: var(--dark); padding: 5rem 0; overflow: hidden; }
.regions-inner { padding: 0 2.5rem; max-width: 1500px; margin: 0 auto; }
.regions-scroll { display: flex; gap: 1.25rem; overflow-x: auto; overflow-y: visible; padding: 2.5rem 2.5rem 0; scrollbar-width: thin;  scrollbar-color: var(--gold) rgba(255,255,255,0.05); -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; cursor: grab; }
.regions-scroll:active { cursor: grabbing; }
.regions-scroll::-webkit-scrollbar { height: 4px; }
.regions-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.regions-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
/* ══ REGION CARD ══ */
.region-card {
  flex: 0 0 260px;        /* fixed width, never shrink */
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  scroll-snap-align: start;
  transition: transform 0.3s;
}
.region-card:hover { transform: translateY(-4px); }

.region-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
  filter: brightness(0.75);
}
.region-card:hover .region-img {
  transform: scale(1.05);
  filter: brightness(0.6);
}

.region-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.85) 0%, transparent 55%);
  pointer-events: none;
}

.region-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
}
.region-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.15rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.region-count {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.07em;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {
  .regions-scroll { padding: 2rem 1.25rem 1rem; gap: 1rem; }
  .region-card { flex: 0 0 200px; }
  .region-img { height: 270px; }
}
@media (max-width: 480px) {
  .region-card { flex: 0 0 170px; }
  .region-img { height: 230px; }
}

/* ══ FIRST TIMERS ══ */
.firsttime-section { background: var(--parchment); }
.firsttime-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.ft-item { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; border-bottom: 1px solid var(--border); text-decoration: none; transition: all 0.2s; gap: 1rem; }
.ft-item:first-child { border-top: 1px solid var(--border); }
.ft-item:hover { padding-left: 6px; }
.ft-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--dark); flex: 1; }
.ft-item:hover .ft-name { color: var(--crimson); }
.ft-days { font-family: var(--font-sans); font-size: 0.68rem; color: var(--text-muted); white-space: nowrap; }
.ft-arrow { color: var(--gold); font-size: 1.05rem; transition: transform 0.2s; }
.ft-item:hover .ft-arrow { transform: translateX(4px); }

/* ══ ABOUT ══ */
.about-section { display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
.about-image { position: relative; overflow: hidden; min-height: 480px; }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.9); }
.about-text { padding: 5rem 3.5rem; display: flex; flex-direction: column; justify-content: center; background: var(--dark); }
.about-text .section-title { color: var(--ivory); }
.about-body { font-size: 0.97rem; color: #fff; line-height: 1.9; font-weight: 300; margin-bottom: 1.2rem; }
.countries-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 2rem; }
.country-pill { font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.08em; color: var(--gold); border: 1px solid rgba(201,149,42,.3); padding: 0.18rem 0.62rem; }

/* ══ BLOG ══ */
.blog-section { background: var(--parchment); }
.blog-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.blog-card { text-decoration: none; display: block; }
.blog-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; filter: brightness(0.9); transition: filter 0.3s; margin-bottom: 0.85rem; }
.blog-card:hover .blog-img { filter: brightness(0.75); }
.blog-tag { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.32rem; }
.blog-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--dark); line-height: 1.3; transition: color 0.2s; }
.blog-card:hover .blog-title { color: var(--crimson); }
/* ══ CAR RENTAL ══ */
.car-section { background:url(../images/banner/innova-crysta.jpg) center/cover; position: relative; padding: 5rem 2.5rem; text-align: center; }
.car-section::before { content: ''; position: absolute; inset: 0; background: rgba(26,18,8,.82); }
.car-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.car-section .section-title { color: var(--ivory); text-align: center; }
.car-section .divider { margin: 1.2rem auto; }
.car-section .section-lead { color: #fff; text-align: center; max-width: 100%; margin-bottom: 1.75rem; }
.car-select-row { display: flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.car-select { font-family: var(--font-body); font-size: 0.95rem; background: rgba(249,240,220,.07); border: 1px solid rgba(201,149,42,.35); color: var(--ivory); padding: 0.75rem 1.1rem; min-width: 260px; outline: none; cursor: pointer; }
.car-select option { background: var(--dark-mid); }

/* ══ FOOTER ══ */
footer { background: var(--dark); padding: 4.5rem 2.5rem 2rem; border-top: 1px solid rgba(201,149,42,.1); }
.footer-inner { max-width: 1500px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3.5rem; }
.footer-brand .nav-logo { font-size: 1.4rem; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.87rem; color: #fff; font-weight: 300; line-height: 1.8; margin-bottom: 0.85rem; }
.footer-contact-item { font-family: var(--font-sans); font-size: 0.75rem; color: #fff; margin-bottom: 0.32rem; }
.footer-contact-item a { color: var(--gold); text-decoration: none; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.63rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.48rem; }
.footer-col ul a { font-family: var(--font-sans); font-size: 0.79rem; color: #fff; text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(201,149,42,.1); padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-family: var(--font-sans); font-size: 0.72rem; color: rgba(249,240,220,.28); }
.footer-bottom a { color: var(--gold); text-decoration: none; }
.badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.badge-pill { font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 0.1em; color: rgba(249,240,220,.35); border: 1px solid rgba(201,149,42,.2); padding: 0.18rem 0.62rem; }

/* WhatsApp */
.wa-float { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 500; width: 50px; height: 50px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(37,211,102,.35); text-decoration: none; transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 25px; height: 25px; fill: white; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ══ RESPONSIVE 1200px ══ */
@media(max-width:1200px){
  .nav-item > a, .nav-item > button { padding: 0 0.75rem; font-size: 0.68rem; }
  .packages-grid { grid-template-columns: repeat(2,1fr); }
  /*.pkg-card:nth-child(1) { grid-row: span 1; }*/
  /*.pkg-card:nth-child(1) .pkg-img { min-height: auto; }*/
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

/* ══ RESPONSIVE 1024px ══ */
@media(max-width:1024px){
  .nav-list { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { display: block; }
  section { padding: 4rem 1.75rem; }
  .search-bar { padding: 1.2rem 1.75rem; flex-wrap: wrap; gap: 0.6rem; }
  .search-field { border-right: none; padding: 0.45rem 0; border-bottom: 1px solid rgba(201,149,42,.13); flex-basis: 45%; }
  .search-btn { margin-left: 0; width: 100%; text-align: center; }
  .themes-section { padding: 3.5rem 1.75rem; }
  .themes-header { margin-bottom: 1.75rem; flex-wrap: wrap; gap: 1rem; }
  .themes-grid { grid-template-columns: repeat(4,1fr); }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  /*.pkg-card:nth-child(1) { grid-column: span 2; }*/
  /*.pkg-card:nth-child(1) .pkg-img { aspect-ratio: 16/7; height: auto; min-height: auto; }*/
  .stats-strip { grid-template-columns: repeat(2,1fr); gap: 1px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(26,18,8,.15); border-top: 1px solid rgba(26,18,8,.15); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(26,18,8,.15); border-right: none; }
  .stat-item { padding: 1.2rem 1rem; }
  .firsttime-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-section { grid-template-columns: 1fr; }
  .about-image { min-height: 300px; }
  .about-text { padding: 3rem 1.75rem; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}

/* ══ RESPONSIVE 768px ══ */
@media(max-width:768px){
  :root { --nav-h: 62px; }
  .nav-inner { padding: 0 1.25rem; }
  .nav-logo { font-size: 1.1rem; }
  section { padding: 7.5rem 1.25rem; }
  .hero-content { padding: 0 1.25rem 5rem; }
  .hero-dots { right: 1.25rem; bottom: 3.5rem; }
  .themes-section { padding: 3rem 1.25rem; }
  .themes-grid { grid-template-columns: repeat(4,1fr); }
  .theme-card { padding: 1.2rem 0.4rem; }
  .theme-icon { font-size: 1.4rem; }
  .packages-grid { grid-template-columns: 1fr; }
  /*.pkg-card:nth-child(1) { grid-column: span 1; }
  .pkg-card:nth-child(1) .pkg-img { aspect-ratio: 16/9; }*/
  .packages-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .regions-scroll { padding: 2rem 1.25rem 0; }
  .region-card { flex: 0 0 210px; }
  .region-img { width: 210px; height: 280px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .badges { justify-content: center; }
  .car-section { padding: 4rem 1.25rem; }
  .car-select-row { flex-direction: column; align-items: stretch; }
  .car-select { min-width: unset; width: 100%; }
  .search-bar { padding: 1rem 1.25rem; }
  .search-field { flex-basis: 100%; }
}

/* ══ RESPONSIVE 480px ══ */
@media(max-width:480px){
  .hero-title { font-size: 2.1rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 0.85rem 1.5rem; }
  .themes-grid { grid-template-columns: repeat(4,1fr); }
  .theme-name { font-size: 0.55rem; }
  .about-text { padding: 2.5rem 1.25rem; }
  footer { padding: 3rem 1.25rem 2rem; }
}
/* ── Package Price Tag (top-right badge) ── */
.pkg-price-tag {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  background: rgba(26,18,8,0.82);
  border: 1px solid rgba(201,149,42,0.45);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.75rem;
  display: flex; align-items: baseline; gap: 0.3rem;
  z-index: 3;
  transition: background 0.25s;
}
.pkg-card:hover .pkg-price-tag {
  background: rgba(201,149,42,0.18);
}
.pkg-price-from {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff
}
.pkg-price-amount {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.pkg-price-per {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  color: #fff
}

/* ── Inline price inside .pkg-info (below duration) ── */
.pkg-price-inline {
  display: flex; align-items: baseline; gap: 0.3rem;
  margin-top: 0.55rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(201,149,42,0.2);
}
.pkg-price-inline-from {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  color: #fff
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pkg-price-inline strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
}
.pkg-price-inline-per {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  color: #fff
}
/* ══ POPUP BACKDROP ══ */
.popup-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 800;
  background: rgba(26,18,8,0.72);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease;
}
.popup-backdrop.open { display: block; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translate(-50%,-48%) scale(0.97); } to { opacity: 1; transform: translate(-50%,-50%) scale(1); } }

/* ══ POPUP MODAL ══ */
.popup-modal {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 900;
  background: var(--dark-mid);
  border: 1px solid rgba(201,149,42,0.25);
  border-top: 3px solid var(--gold);
  width: min(680px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem 2.5rem 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.popup-modal.open { display: block; animation: slideUp 0.3s ease; }
.popup-modal::-webkit-scrollbar { width: 4px; }
.popup-modal::-webkit-scrollbar-thumb { background: var(--gold); }

/* close button */
.popup-close {
  position: absolute; top: 1rem; right: 1.1rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; line-height: 1;
  color: rgba(249,240,220,0.4);
  transition: color 0.2s, transform 0.2s;
}
.popup-close:hover { color: var(--gold-light); transform: rotate(90deg); }

/* header */
.popup-eyebrow {
  font-family: var(--font-sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.4rem;
}
.popup-title {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 600;
  color: var(--ivory); line-height: 1.15;
}
.popup-title em { font-style: italic; color: var(--gold-light); }
.popup-divider { width: 44px; height: 2px; background: var(--gold); margin: 1rem 0 1.5rem; }

/* vehicle display */
.popup-vehicle-display {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  color: var(--gold-light);
  background: rgba(201,149,42,0.08);
  border: 1px solid rgba(201,149,42,0.25);
  padding: 0.65rem 1rem;
  letter-spacing: 0.02em;
}

/* form layout */
.popup-form { display: flex; flex-direction: column; gap: 1rem; }
.popup-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.popup-field { display: flex; flex-direction: column; gap: 0.35rem; }
.popup-field-full { grid-column: span 2; }

.popup-label {
  font-family: var(--font-sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff
}
.req { color: var(--saffron); }

.popup-input {
  background: rgba(249,240,220,0.05);
  border: 1px solid rgba(201,149,42,0.2);
  color: var(--ivory);
  font-family: var(--font-body); font-size: 1rem;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.popup-input:focus {
  border-color: var(--gold);
  background: rgba(201,149,42,0.07);
}
.popup-input::placeholder { color: rgba(249,240,220,0.28); }
.popup-input option { background: var(--dark-mid); color: var(--ivory); }
input[type="date"].popup-input::-webkit-calendar-picker-indicator { filter: invert(0.6) sepia(1) saturate(3) hue-rotate(5deg); cursor: pointer; }

.popup-textarea { resize: vertical; min-height: 80px; }

/* footer */
.popup-footer { display: flex; align-items: center; gap: 1.25rem; margin-top: 0.5rem; flex-wrap: wrap; }
.popup-submit {
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--gold); color: var(--dark);
  border: none; padding: 0.9rem 2.5rem; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.popup-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.popup-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.popup-note {
  font-family: var(--font-sans); font-size: 0.72rem;
  color: rgba(249,240,220,0.35);
}

/* success state */
.popup-success { text-align: center; padding: 1rem 0 0.5rem; }
.popup-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(201,149,42,0.15); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--gold-light);
  margin: 0 auto 1rem;
}
.popup-success h4 {
  font-family: var(--font-display); font-size: 1.4rem;
  color: var(--ivory); margin-bottom: 0.5rem;
}
.popup-success p { font-family: var(--font-sans); font-size: 0.85rem; color: #fff }

/* ══ RESPONSIVE ══ */
@media (max-width: 600px) {
  .popup-modal { padding: 2rem 1.25rem 1.75rem; }
  .popup-row { grid-template-columns: 1fr; }
  .popup-field-full { grid-column: span 1; }
  .popup-title { font-size: 1.35rem; }
  .popup-footer { flex-direction: column; align-items: stretch; }
  .popup-submit { text-align: center; }
}
.open-button {
  /*background-color: #555;*/
  color: white;
  padding: 5px 30px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 15px;
  width: 180px;
  z-index: 1050;
}