/*
  Mett Holidays — Middle East Holidays
  REAL palette from mettholidays.ae theme CSS
  PRIMARY: #000 black · SECONDARY: #17a74a emerald (logo compass arrow)
  Accents: #003024 forest · #63AB45 leaf · #FFF8EB cream · #e6f7f4 mint
  Footer: #050505 · Deal red: #e31e24 · Sand gold: #e7cc6a
  FONT: Urbanist (Google) — entire site
*/

:root {
  --primary: #000000;
  --secondary: #17a74a;
  --secondary-dark: #128a3c;
  --black: #000000;
  --light-black: #121212;
  --black-02: #54595F;
  --black-03: #5e5e5e;
  --white: #ffffff;
  --red: #e31e24;
  --green: #003024;
  --green-02: #63AB45;
  --mint: #e6f7f4;
  --cream: #FFF8EB;
  --gray: #bbbbbb;
  --gray-02: #c1c1c1;
  --gray-03: #9e9e9e;
  --gray-04: #f2f4f4;
  --dark-blue: #063348;
  --soft-blush: #e7cc6a;
  --footer-bg: #050505;
  --line: #e5e7eb;

  --container: 1280px;
  --radius: 14px;
  --radius-lg: 24px;
  --t: 0.3s cubic-bezier(.4,0,.2,1);
  --shadow-sm: 0 4px 14px rgba(0,0,0,0.06);
  --shadow: 0 14px 40px rgba(0,0,0,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; }
html, body { max-width: 100vw; overflow-x: hidden; }
body {
  font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  scroll-padding-top: 90px;
}
/* iOS-safe scroll containers */
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
html:focus-within { scroll-behavior: auto; }
img, video, picture, svg { max-width: 100%; height: auto; }
section { scroll-margin-top: 90px; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ============ TYPE ============ */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; color: var(--black); }
h1 { font-size: clamp(2rem, 5vw, 4.375rem); font-weight: 800; }
h2 { font-size: clamp(1.625rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { color: var(--black-03); line-height: 1.7; }
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--secondary);
  padding: 6px 16px;
  background: var(--mint);
  border-radius: 999px;
  margin-bottom: 18px;
}
.section { padding: clamp(2.5rem, 6vw, 6rem) 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 14px; font-size: 17px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.01em;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn-sm { padding: 11px 22px; font-size: 13px; }
.btn-primary { background: var(--secondary); color: var(--white); }
.btn-primary:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(23,167,74,0.25); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--light-black); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-ghost { background: rgba(255,255,255,0.1); color: var(--white); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); }
.btn-block { width: 100%; justify-content: center; padding: 16px; }

/* ============ HEADER ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: all var(--t);
}
.header.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.06); border-bottom-color: var(--line); }
.header-inner {
  max-width: 1380px; margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px;
}
.header .logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 15px; font-weight: 500;
  color: var(--black); padding: 8px 0;
  transition: color var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--secondary); }
.nav-links .has-sub > a::after {
  content: '▾'; font-size: 10px; margin-left: 4px; opacity: 0.7;
}
.nav-sub {
  position: absolute; top: 100%; left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--t);
  border: 1px solid var(--line);
}
.has-sub:hover .nav-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-sub li a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 14px;
}
.nav-sub li a:hover { background: var(--mint); color: var(--secondary); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--black); transition: all var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .header-actions .btn { display: none; }
  .hamburger { display: flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 80px 0 0 0; z-index: 99;
  background: var(--white);
  padding: 30px 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 30px; }
.mobile-menu a {
  display: block; padding: 14px 8px;
  font-size: 18px; font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover { color: var(--secondary); }
.mobile-menu .mobile-sub { padding-left: 16px; }
.mobile-menu .mobile-sub a { font-size: 15px; font-weight: 400; }

/* ============ PAGE HEADER (interior) ============ */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--mint) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; right: -100px; top: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(23,167,74,0.10), transparent 70%);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: var(--black-03); margin-bottom: 16px; }
.breadcrumb a { color: var(--black-03); }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb i { font-style: normal; opacity: 0.5; }
.page-hero h1 { max-width: 760px; }
.page-hero .lede { max-width: 640px; margin-top: 18px; font-size: 18px; color: var(--black-02); }

/* ============ HERO (home) ============ */
.hero {
  position: relative;
  min-height: 92vh; min-height: 92dvh;
  padding-top: 80px;
  overflow: hidden;
  background: var(--white);
  isolation: isolate;
}
/* Hero background layers: dot grid + faint compass rings + soft gradient wash */
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle, rgba(23,167,74,0.16) 1px, transparent 1.5px);
  background-size: 26px 26px;
  background-position: 0 0;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 85%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'><g fill='none' stroke='%2317a74a' stroke-width='1' opacity='0.18'><circle cx='110' cy='460' r='40'/><circle cx='110' cy='460' r='80'/><circle cx='110' cy='460' r='130'/><circle cx='110' cy='460' r='200'/><circle cx='110' cy='460' r='290'/></g><g fill='none' stroke='%23000' stroke-width='0.7' opacity='0.07'><path d='M0 520 Q150 460 300 510 T600 480'/><path d='M0 460 Q150 400 300 440 T600 410'/><path d='M0 400 Q150 350 300 380 T600 360'/></g><g fill='%2317a74a' opacity='0.12'><circle cx='110' cy='460' r='3.5'/></g></svg>"),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(23,167,74,0.06), transparent 60%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(0,48,36,0.04), transparent 65%);
  background-repeat: no-repeat;
  background-position: bottom left, top right, bottom left;
  background-size: cover, auto, auto;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: calc(92vh - 80px);
  padding: 60px 0;
}
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: var(--mint);
  color: var(--secondary);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.hero-tag i { font-style: normal; width: 6px; height: 6px; background: var(--secondary); border-radius: 50%; }
.hero h1 { margin: 22px 0 22px; }
.hero h1 em { font-style: normal; color: var(--secondary); }
.hero .lede { font-size: 18px; color: var(--black-03); max-width: 560px; margin-bottom: 36px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stats strong { display: block; font-size: 32px; font-weight: 800; color: var(--black); line-height: 1; }
.hero-stats span { font-size: 13px; color: var(--black-03); margin-top: 6px; display: block; }
.hero-stats em { font-style: normal; color: var(--secondary); }

.hero-media {
  position: relative;
  min-height: 540px;
}
.hero-img-main {
  position: absolute; top: 0; right: 0;
  width: 80%; height: 75%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-img-sub {
  position: absolute; bottom: 0; left: 0;
  width: 55%; height: 45%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 8px solid var(--white);
}
.hero-floating-card {
  position: absolute; top: 55%; left: 8%;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
}
.hero-floating-card .star { color: var(--secondary); font-size: 18px; }
.hero-floating-card strong { display: block; font-size: 18px; font-weight: 800; }
.hero-floating-card span { font-size: 12px; color: var(--black-03); }
@media (max-width: 968px) {
  .hero-media { min-height: 360px; }
  .hero-floating-card { top: auto; bottom: 40%; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--black);
  padding: 22px 0;
  overflow: hidden;
  color: var(--white);
}
.marquee-track {
  display: inline-flex; align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
}
.marquee-track span { padding: 0 28px; }
.marquee-track i { font-style: normal; color: var(--secondary); font-size: 0.8em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ FEATURES ============ */
.features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 968px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--mint);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--t);
}
.feature-card:hover { transform: translateY(-6px); }
.feature-card .icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feature-card .icon img { width: 38px; height: 38px; }
.feature-card h3 { margin-bottom: 10px; font-size: 18px; }
.feature-card p { font-size: 14px; color: var(--black-03); }

/* ============ DESTINATION CARDS ============ */
.dest-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 968px) { .dest-grid { grid-template-columns: 1fr; } }
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: block;
  background: var(--black);
}
.dest-card.large { aspect-ratio: 4/5; }
@media (min-width: 969px) { .dest-card.large { aspect-ratio: auto; height: 100%; } }
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.dest-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.85) 100%);
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px;
  color: var(--white);
  z-index: 2;
}
.dest-card-body .country {
  display: inline-block;
  padding: 4px 12px;
  background: var(--secondary);
  border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.dest-card-body h3 { color: var(--white); font-size: 28px; margin-bottom: 8px; font-weight: 700; }
.dest-card-body p { color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 16px; }
.dest-card-body .price { font-size: 13px; color: rgba(255,255,255,0.7); }
.dest-card-body .price strong { color: var(--white); font-size: 22px; display: block; margin-top: 2px; }
.dest-card-arrow {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: translateX(60px); opacity: 0;
  transition: all var(--t);
  z-index: 3;
}
.dest-card:hover .dest-card-arrow { transform: translateX(0); opacity: 1; }
.dest-card-arrow svg { color: var(--black); }

/* ============ PACKAGES GRID ============ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 968px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: all var(--t);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--secondary); }
.pkg-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.pkg-card:hover .pkg-img img { transform: scale(1.05); }
.pkg-deal {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 14px;
  background: var(--red); color: var(--white);
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em;
}
.pkg-deal.green { background: var(--secondary); }
.pkg-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.pkg-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--black-03);
  margin-bottom: 12px;
}
.pkg-meta i { font-style: normal; color: var(--secondary); }
.pkg-meta svg { color: var(--secondary); }
.pkg-card h3 { font-size: 22px; margin-bottom: 10px; }
.pkg-card .desc { font-size: 14px; color: var(--black-03); margin-bottom: 20px; flex: 1; }
.pkg-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pkg-price small { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--black-03); }
.pkg-price strong { display: block; font-size: 22px; color: var(--secondary); font-weight: 800; }
.pkg-price del { color: var(--black-03); font-size: 13px; }

/* ============ WHY US ============ */
.why-us { background: var(--mint); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 968px) { .why-grid { grid-template-columns: 1fr; } }
.why-list { display: grid; gap: 22px; margin-top: 30px; }
.why-item { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; }
.why-item .num {
  width: 56px; height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--secondary); font-size: 20px;
}
.why-item h4 { margin-bottom: 6px; font-size: 17px; }
.why-item p { font-size: 14px; color: var(--black-02); }
.why-media { position: relative; min-height: 480px; }
.why-media img { position: absolute; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow); }
.why-media .m1 { top: 0; left: 0; width: 70%; height: 60%; }
.why-media .m2 { bottom: 0; right: 0; width: 55%; height: 55%; border: 8px solid var(--mint); }
.why-stamp {
  position: absolute; top: 50%; left: 60%;
  background: var(--secondary); color: var(--white);
  padding: 22px;
  border-radius: 50%;
  width: 130px; height: 130px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  font-weight: 800;
  z-index: 3;
  box-shadow: var(--shadow);
}
.why-stamp strong { font-size: 32px; line-height: 1; }
.why-stamp span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; opacity: 0.9; }

/* ============ STATS BAND ============ */
.stats-band {
  background: var(--black);
  color: var(--white);
  padding: 60px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
@media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
.stat-num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.1em; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--cream); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}
@media (max-width: 768px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.testi .stars { color: var(--secondary); font-size: 16px; letter-spacing: 0.1em; margin-bottom: 14px; }
.testi p { font-size: 17px; line-height: 1.7; color: var(--black); margin-bottom: 22px; }
.testi footer { display: flex; align-items: center; gap: 14px; }
.testi .avatar {
  width: 48px; height: 48px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 17px;
}
.testi strong { display: block; font-size: 14px; }
.testi small { color: var(--black-03); font-size: 12px; }

/* ============ VOICES (UGC) ============ */
.voices { background: var(--white); }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 968px) { .voices-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .voices-grid { grid-template-columns: 1fr; } }
.voice-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
}
.voice-card video { width: 100%; height: 100%; object-fit: cover; }
.voice-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.8));
  pointer-events: none;
}
.voice-meta {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--white);
  font-size: 13px;
}
.voice-meta strong { font-weight: 600; }
.voice-meta i { font-style: normal; color: var(--secondary); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--green) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1), transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06), transparent 40%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); max-width: 720px; margin: 0 auto 18px; }
.cta-band p { color: rgba(255,255,255,0.92); font-size: 18px; max-width: 600px; margin: 0 auto 32px; }
.cta-band .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--white); color: var(--secondary); }
.cta-band .btn-primary:hover { background: var(--cream); }

/* ============ FOOTER ============ */
.footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .logo img { height: 56px; margin-bottom: 18px; }
.footer .footer-tag { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer h5 {
  color: var(--white);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.footer a {
  display: block; padding: 5px 0;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color var(--t);
}
.footer a:hover { color: var(--secondary); }
.footer .branches { display: grid; gap: 6px; }
.footer .branches a { font-size: 13px; }
.footer .socials { display: flex; gap: 10px; margin-top: 18px; }
.footer .socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  transition: background var(--t);
}
.footer .socials a:hover { background: var(--secondary); }
.footer .socials svg { color: var(--white); }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 12px;
}
.footer-bar a { display: inline; padding: 0; color: var(--secondary); }

/* ============ FORM ============ */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 540px) { .form-card { padding: 28px 22px; } }
.form-row { margin-bottom: 18px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .form-row.two { grid-template-columns: 1fr; } }
.form-row label {
  display: block;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--black-02);
  margin-bottom: 8px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  background: var(--gray-04);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: inherit; font-size: 15px;
  color: var(--black);
  transition: all var(--t);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; background: var(--white); border-color: var(--secondary);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: var(--mint);
  color: var(--secondary-dark);
  border-radius: 10px;
  font-size: 14px; text-align: center; font-weight: 600;
}
.form-success.show { display: block; }
.form-note { font-size: 12px; color: var(--black-03); text-align: center; margin-top: 14px; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px;
  background: #25D366; color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform var(--t);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float::before {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid #25D366;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

/* ============ ITINERARY (tour detail) ============ */
.tour-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  margin-top: 50px;
}
@media (max-width: 968px) { .tour-layout { grid-template-columns: 1fr; } }

.tour-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
  height: 420px;
}
@media (max-width: 540px) { .tour-gallery { grid-template-columns: 1fr 1fr; height: 320px; } }
.tour-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.tour-gallery .g1 { grid-row: span 2; }
@media (max-width: 540px) { .tour-gallery .g1 { grid-column: span 2; grid-row: span 1; } }

.tour-tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--line); margin-bottom: 30px; flex-wrap: wrap; }
.tour-tab {
  padding: 14px 20px;
  font-weight: 600; font-size: 14px;
  color: var(--black-03);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--t);
}
.tour-tab.active { color: var(--secondary); border-bottom-color: var(--secondary); }
.tour-tab:hover { color: var(--secondary); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.itinerary { background: var(--cream); border-radius: var(--radius-lg); padding: 36px; }
.itin-day {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px dashed rgba(0,48,36,0.2);
}
.itin-day:last-child { border-bottom: 0; }
.itin-day h6 {
  font-size: 13px; font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase; letter-spacing: 0.15em;
}
.itin-day h6 strong { display: block; font-size: 32px; color: var(--green); margin-top: 4px; }
.itin-day h5 { font-size: 18px; margin-bottom: 8px; font-weight: 700; }
.itin-day p { font-size: 14px; color: var(--black-02); }

.incl-list { display: grid; gap: 12px; }
.incl-list li { display: flex; gap: 10px; align-items: start; font-size: 15px; color: var(--black-02); }
.incl-list li::before { content: "✓"; color: var(--secondary); font-weight: 700; flex-shrink: 0; }
.excl-list li::before { content: "✕"; color: var(--red); }

.book-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: sticky; top: 100px;
  box-shadow: var(--shadow-sm);
}
.book-card .price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.book-card .price-row strong { font-size: 36px; color: var(--secondary); font-weight: 800; }
.book-card .price-row del { color: var(--black-03); font-size: 16px; }
.book-card .per { font-size: 13px; color: var(--black-03); margin-bottom: 24px; display: block; }
.book-card hr { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }
.book-card .quick { display: grid; gap: 10px; margin-bottom: 24px; font-size: 14px; }
.book-card .quick li { display: flex; justify-content: space-between; color: var(--black-02); }
.book-card .quick li strong { color: var(--black); font-weight: 600; }

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 968px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
.team-card { text-align: center; }
.team-card .avatar-circle {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--mint), var(--cream));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 48px; font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  transition: all var(--t);
}
.team-card:hover .avatar-circle { transform: translateY(-6px); background: var(--secondary); color: var(--white); }
.team-card h4 { font-size: 17px; margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--black-03); }

/* ============ BRANCHES ============ */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 968px) { .branch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .branch-grid { grid-template-columns: 1fr; } }
.branch-card {
  background: var(--mint);
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: all var(--t);
}
.branch-card.hq { background: var(--green); color: var(--white); }
.branch-card.hq h4, .branch-card.hq a { color: var(--white); }
.branch-card.hq p { color: rgba(255,255,255,0.85); }
.branch-card:hover { transform: translateY(-6px); }
.branch-card .flag { font-size: 22px; margin-bottom: 8px; }
.branch-card h4 { font-size: 18px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.branch-card h4 .badge {
  font-size: 10px; padding: 3px 10px; border-radius: 999px;
  background: var(--secondary); color: var(--white);
  letter-spacing: 0.1em;
}
.branch-card p { font-size: 13px; line-height: 1.6; margin-bottom: 12px; color: var(--black-02); }
.branch-card a { font-size: 13px; color: var(--secondary); font-weight: 600; }
.branch-card.hq a { color: var(--soft-blush); }

/* ============ CONTACT GRID ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 968px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============ PARTNERS ============ */
.partners { background: var(--white); padding: 60px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partners h6 {
  text-align: center;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--black-03);
  margin-bottom: 36px;
}
.partners-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 50px;
  align-items: center; justify-content: center;
}
@media (max-width: 768px) { .partners-strip { grid-template-columns: repeat(2, 1fr); gap: 24px 30px; } }
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  height: 60px;
}
.partner-logo img {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(1);
  transition: all var(--t);
}
.partner-logo:hover img { opacity: 1; filter: grayscale(0); }

/* ============ FAQ ACCORDION ============ */
.faq-list { display: grid; gap: 14px; max-width: 880px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all var(--t);
}
.faq-item.open { border-color: var(--secondary); box-shadow: 0 8px 24px rgba(23,167,74,0.08); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: inherit;
  font-size: 16px; font-weight: 600;
  color: var(--black);
}
.faq-q .icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 400; line-height: 1;
  transition: transform var(--t);
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--secondary); color: white; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 800px; }
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--black-02);
  font-size: 15px;
  line-height: 1.75;
}
@media (max-width: 540px) {
  .faq-q { padding: 16px 18px; font-size: 14px; gap: 12px; }
  .faq-q .icon { width: 28px; height: 28px; font-size: 18px; }
  .faq-a-inner { padding: 0 18px 18px; font-size: 14px; }
}

/* ============ WEATHER / MONTHS GRID ============ */
.weather-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 24px;
}
@media (max-width: 768px) { .weather-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .weather-grid { grid-template-columns: repeat(3, 1fr); } }
.weather-cell {
  background: var(--cream);
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  font-size: 12px;
}
.weather-cell strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--black); margin-bottom: 4px; }
.weather-cell span { color: var(--black-03); font-weight: 600; font-size: 13px; }
.weather-cell.peak { background: var(--secondary); color: var(--white); }
.weather-cell.peak strong, .weather-cell.peak span { color: var(--white); }
.weather-cell.shoulder { background: var(--mint); }
.weather-cell.hot { background: var(--soft-blush); }

/* ============ STICKY QUICK CTA PILL ============ */
.sticky-pill {
  position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 0);
  z-index: 89;
  background: var(--black); color: var(--white);
  padding: 12px 16px 12px 22px;
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; font-weight: 600;
  transition: transform 0.4s ease, opacity 0.3s;
}
.sticky-pill.hide { transform: translate(-50%, 140%); }
.sticky-pill .pill-btn {
  background: var(--secondary); color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
}
@media (max-width: 540px) {
  .sticky-pill { bottom: 16px; padding: 10px 12px 10px 18px; font-size: 12px; gap: 10px; right: 90px; left: 16px; transform: none; }
  .sticky-pill.hide { transform: translateY(140%); }
}

/* ============ PROCESS TIMELINE ============ */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
}
@media (max-width: 968px) { .process-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-timeline { grid-template-columns: 1fr; } }
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  transition: all var(--t);
}
.process-step:hover { border-color: var(--secondary); transform: translateY(-4px); }
.process-step .step-num {
  position: absolute; top: -20px; left: 24px;
  width: 40px; height: 40px;
  background: var(--secondary); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  border: 4px solid var(--bg, white);
}
.process-step h4 { margin-top: 12px; margin-bottom: 10px; font-size: 17px; }
.process-step p { font-size: 14px; color: var(--black-03); line-height: 1.65; }

/* ============ INFO PILLS ============ */
.info-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 20px 0;
}
.info-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: var(--mint);
  color: var(--secondary);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.02em;
}
.info-pill svg { width: 14px; height: 14px; }
.info-pill.dark { background: var(--black); color: var(--white); }
.info-pill.cream { background: var(--cream); color: var(--green); }

/* ============ CONTACT GRID ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 968px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============ MOBILE FIXES — applied globally ============ */
@media (max-width: 968px) {
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero-grid { min-height: auto; padding: 20px 0 0; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; padding-top: 24px; }
  .hero-stats strong { font-size: 24px; }
  .hero-stats span { font-size: 11px; }
  .hero-floating-card { display: none; } /* clutter on small */
  .hero-media { min-height: 320px; }
  .hero-img-main { width: 88%; height: 78%; }
  .hero-img-sub { width: 50%; height: 42%; border-width: 6px; }
  .tour-layout { gap: 30px; }
  .tour-gallery { height: 280px; gap: 8px; }
  .why-media { min-height: 380px; }
  .why-stamp { width: 100px; height: 100px; padding: 16px; }
  .why-stamp strong { font-size: 24px; }
  .why-stamp span { font-size: 9px; }
  .stats-row { gap: 30px; }
  .cta-band { padding: 60px 0; }
  .cta-band h2 { font-size: 1.875rem; }
  .cta-band p { font-size: 16px; }
  .footer { padding-top: 60px; }
  .page-hero { padding: 130px 0 50px; }
  .page-hero h1 { font-size: clamp(1.875rem, 8vw, 2.5rem); }
  .page-hero .lede { font-size: 16px; }
}
@media (max-width: 540px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; width: 100%; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-stats strong { font-size: 20px; }
  .container { padding: 0 18px; }
  .section { padding: 50px 0; }
  .section-head { margin-bottom: 36px; }
  .marquee-track { font-size: 18px; }
  .marquee-track span { padding: 0 18px; }
  .pkg-body { padding: 22px; }
  .pkg-body h3 { font-size: 19px; }
  .feature-card { padding: 28px 22px; }
  .branch-card { padding: 22px; }
  .testi { padding: 24px; }
  .testi p { font-size: 15px; }
  .footer-grid { gap: 28px; }
  .footer-bar { padding: 20px 0; font-size: 11px; }
  .why-grid { gap: 30px; }
  .why-list { gap: 16px; }
  .why-item { grid-template-columns: 48px 1fr; gap: 14px; }
  .why-item .num { width: 48px; height: 48px; font-size: 17px; }
  .book-card { padding: 24px; position: static; }
  .book-card .price-row strong { font-size: 30px; }
  .tour-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .tour-tabs::-webkit-scrollbar { display: none; }
  .tour-tab { white-space: nowrap; padding: 12px 16px; font-size: 13px; }
  .itinerary { padding: 24px 20px; }
  .itin-day { grid-template-columns: 70px 1fr; gap: 16px; padding: 18px 0; }
  .itin-day h6 strong { font-size: 24px; }
  .itin-day h5 { font-size: 16px; }
  .itin-day p { font-size: 13px; }
  .tour-gallery { height: 240px; grid-template-columns: 1fr 1fr; }
  .tour-gallery .g1 { grid-column: span 2; grid-row: span 1; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-num { font-size: 32px; }
  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 16px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ============ Force no horizontal scroll anywhere ============ */
* { max-width: 100%; }
.tour-gallery img, .hero-img-main, .hero-img-sub, .pkg-img img, .dest-card img { max-width: 100%; }
img { max-width: 100%; height: auto; }
