/* ===================== Root & Reset ===================== */
:root {
  /* Palette sampled from the N Nano Travel logo: ring blue, teal-green wordmark, sky-blue accents */
  --navy: #0e5aa8;
  --navy-dark: #073a6e;
  --teal: #049c82;
  --gold: #2bb8ea;
  --gold-dark: #0f93c9;
  --sand: #eef6fc;
  --ink: #1c2a3a;
  --ink-soft: #56677e;
  --line: #e6e9ee;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(14, 90, 168, 0.08);
  --shadow-lg: 0 20px 50px rgba(14, 90, 168, 0.16);
  --container: 1180px;
  --transition: 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Noto Sans SC', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  color: var(--gold-dark);
  background: rgba(43, 184, 234, 0.12);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }

section { padding: 88px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; transform: none; }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(4, 156, 130, 0.35);
}
.btn-primary:hover { background: #037a63; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-block { width: 100%; justify-content: center; }

/* ===================== Header ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.is-scrolled,
.site-header.solid {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(14, 90, 168, 0.08);
  padding: 12px 0;
}

.site-header .container {
  max-width: 1360px;
}

/* Discreet admin entry point — not meant to be a visitor-facing nav item,
   but still needs to be findable, so it sits clear of the logo (not
   underneath/overlapping it) with enough contrast to notice on purpose. */
.admin-entry {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  background: var(--sand);
  opacity: 0.6;
  transition: opacity var(--transition), background var(--transition);
  z-index: 1001;
}
.admin-entry:hover { opacity: 1; background: var(--line); }
.admin-entry svg { width: 12px; height: 12px; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: color var(--transition);
  flex-shrink: 0;
}
.is-scrolled .logo, .solid .logo { color: var(--navy); }

.logo-mark {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-mark { height: 46px; }

.logo .brand {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.logo .name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  white-space: nowrap;
}

.logo .tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.9;
  white-space: nowrap;
}

.main-nav { display: flex; flex-shrink: 1; min-width: 0; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}

.main-nav a.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 11px;
  border-radius: 8px;
  font-size: 0.91rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--white);
  transition: background var(--transition), color var(--transition);
}
.is-scrolled .main-nav a.nav-link, .solid .main-nav a.nav-link { color: var(--ink); }

.main-nav a.nav-link:hover,
.main-nav li.active > a.nav-link {
  background: rgba(255,255,255,0.14);
}
.is-scrolled .main-nav a.nav-link:hover,
.solid .main-nav a.nav-link:hover,
.is-scrolled .main-nav li.active > a.nav-link,
.solid .main-nav li.active > a.nav-link {
  background: rgba(14, 90, 168, 0.07);
  color: var(--navy);
}

.main-nav .chevron { width: 10px; height: 10px; transition: transform var(--transition); }

.has-dropdown { position: relative; }
.has-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.dropdown a:hover { background: var(--sand); color: var(--navy); }
.dropdown-divider { height: 1px; background: var(--line); margin: 6px 4px; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .phone {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.is-scrolled .header-cta .phone, .solid .header-cta .phone { color: var(--ink-soft); }
.header-cta .phone svg { width: 15px; height: 15px; }

/* Language switcher */
.lang-switch { position: relative; flex-shrink: 0; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 600;
  font-family: inherit;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.lang-btn:hover { background: rgba(255,255,255,0.2); }
.lang-btn svg.globe { width: 15px; height: 15px; }
.lang-btn svg.chevron { width: 9px; height: 9px; transition: transform var(--transition); }
.lang-switch.open .lang-btn svg.chevron,
.lang-switch:hover .lang-btn svg.chevron { transform: rotate(180deg); }
.is-scrolled .lang-btn, .solid .lang-btn {
  background: rgba(14, 90, 168,0.06);
  border-color: var(--line);
  color: var(--ink);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  max-height: 300px;
  overflow-y: auto;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1200;
}
.lang-switch:hover .lang-menu,
.lang-switch.open .lang-menu,
.lang-switch:focus-within .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}
.lang-menu a:hover { background: var(--sand); color: var(--navy); }
.lang-menu a.active { color: var(--gold-dark); font-weight: 600; }
.lang-menu a.active::after { content: "✓"; font-weight: 700; }

/* Suppress Google Translate's default banner/highlighting so it doesn't shift layout.
   Google obfuscates most of its widget class names, so target the stable ones
   (.skiptranslate, .goog-te-*) rather than relying on a single exact class. */
body { top: 0 !important; position: static !important; }
iframe.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover { display: none !important; visibility: hidden !important; height: 0 !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
#google_translate_element { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1100;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.is-scrolled .nav-toggle span, .solid .nav-toggle span { background: var(--navy); }

/* ===================== Hero ===================== */
.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: 0;
}

.hero.hero-split {
  display: flex;
  align-items: stretch;
}

.hero-plane {
  position: absolute;
  opacity: 0.12;
  color: var(--white);
  z-index: 1;
}
.hero-plane.p2 { width: 130px; bottom: 18%; left: 6%; transform: rotate(-10deg); opacity: 0.08; }

.hero-content {
  position: relative;
  z-index: 2;
  flex: 0 0 36%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 22px;
  color: var(--white);
  background: var(--teal);
  padding: 150px 56px 64px 60px;
  overflow: hidden;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: -90px;
  left: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}
.hero-content > * { position: relative; z-index: 1; }

.hero-photo {
  flex: 1 1 64%;
  min-width: 0;
  position: relative;
  overflow: hidden;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .hero.hero-split { flex-direction: column; }
  .hero-content {
    flex: none;
    justify-content: center;
    padding: 110px 24px 36px;
  }
  .hero-photo { flex: none; height: 46vh; }
}

.hero-content .section-tag {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  box-shadow: none;
  width: fit-content;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  line-height: 1.2;
  margin: 0;
}
.hero-content h1 span {
  color: var(--white);
}

.hero-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 0; }
.hero-actions .btn-primary {
  background: var(--white);
  color: var(--teal);
  box-shadow: 0 10px 24px rgba(2, 10, 22, 0.2);
}
.hero-actions .btn-primary:hover { background: rgba(255, 255, 255, 0.9); }

/* Search / booking bar */
.search-bar {
  position: relative;
  z-index: 3;
  margin-top: -46px;
  margin-bottom: -10px;
}
.search-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr) auto;
  gap: 14px;
  align-items: end;
}
.search-field { display: flex; flex-direction: column; gap: 6px; }
.search-field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.search-field select,
.search-field input {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px 12px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--sand);
}
.search-field select:focus,
.search-field input:focus { outline: 2px solid var(--gold); }

/* ===================== Services ===================== */
.services {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-top: 150px;
}
.services .container { position: relative; z-index: 1; }

.services-deco {
  position: absolute;
  color: var(--navy);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.services-deco.plane { width: 240px; top: 30px; right: 5%; transform: rotate(18deg); }
.services-deco.suitcase { width: 150px; top: 360px; left: 4%; transform: rotate(-10deg); }
.services-deco.globe { width: 130px; top: 60px; left: 9%; transform: rotate(-4deg); }

.services .section-head .section-tag {
  background: linear-gradient(120deg, var(--teal), var(--gold));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(4, 156, 130, 0.3);
}

.services .section-head h2 span {
  background: linear-gradient(100deg, var(--teal) 0%, var(--gold) 55%, #5fe8c9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services-footnote {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-photo {
  position: relative;
  height: 168px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.service-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-photo img { transform: scale(1.08); }
.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 58, 110,0.55) 0%, rgba(7, 58, 110,0.05) 55%, transparent 75%);
}

/* For product-style images with a plain white background (no scenery to crop into) */
.service-photo.contain-photo { background: linear-gradient(135deg, #eef3f5, var(--sand)); }
.service-photo.contain-photo img { object-fit: contain; padding: 18px; }
.service-photo.contain-photo::after { display: none; }
.service-photo.contain-photo .service-photo-icon {
  background: var(--navy);
  border: none;
}

.service-photo-icon {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.service-photo-icon svg { width: 22px; height: 22px; }

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: var(--white);
}
.service-icon svg { width: 26px; height: 26px; }

.service-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 0.91rem; margin-bottom: 18px; flex: 1; }
.service-card .card-link {
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  transition: background var(--transition), color var(--transition);
}
.service-card .card-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card .card-link:hover { background: var(--teal); color: var(--white); }
.service-card .card-link:hover svg { transform: translateX(3px); }

/* ===================== Why us ===================== */
.why-us .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.why-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(160deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.why-visual:hover img { transform: scale(1.06); }

.why-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 58, 110,0.88) 0%, rgba(7, 58, 110,0.15) 45%, transparent 70%);
  pointer-events: none;
}

.why-visual-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why-visual-tag {
  display: inline-flex;
  align-self: flex-start;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
}
.why-visual-caption p {
  font-family: 'Poppins', 'Noto Sans SC', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white);
}

.office-collage {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 14px;
}
.office-collage-main { min-height: 100%; }
.office-collage-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.office-collage-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 200px;
}
.office-collage-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.office-collage-item:hover img { transform: scale(1.08); }
@media (max-width: 860px) {
  .office-collage-item { min-height: 160px; }
}
@media (max-width: 640px) {
  .office-collage { grid-template-columns: 1fr; }
  .office-collage-main { min-height: 280px; }
  .office-collage-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
}

.custom-visual { position: relative; padding: 14px 4px 46px 4px; }
.custom-visual-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform var(--transition);
}
.custom-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.custom-visual:hover .custom-visual-main { transform: rotate(-1deg); }
.custom-visual-main:hover img { transform: scale(1.06); }

.custom-visual-badge {
  position: absolute;
  left: 20px;
  bottom: 0;
  z-index: 4;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.custom-visual-badge .why-visual-tag { align-self: flex-start; }
.custom-visual-badge p {
  font-family: 'Poppins', 'Noto Sans SC', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0;
}

.corp-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.corp-gallery-item { position: relative; overflow: hidden; background: var(--sand); }
.corp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.corp-gallery-item:hover img { transform: scale(1.08); }
.corp-gallery-large { grid-column: 1 / 3; grid-row: 1 / 3; }
.corp-gallery-large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 58, 110, 0.75) 0%, rgba(7, 58, 110, 0.1) 40%, transparent 65%);
  pointer-events: none;
}
.corp-gallery-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.corp-gallery-caption p {
  font-family: 'Poppins', 'Noto Sans SC', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
}

.flight-visual { position: relative; padding: 20px 0 54px 20px; }
.flight-visual-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  height: 82%;
  background: linear-gradient(160deg, var(--teal), var(--navy));
  border-radius: 20px;
  z-index: 0;
}
.flight-visual-photo {
  position: relative;
  margin-left: 26px;
  margin-top: 26px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.flight-visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.flight-visual-photo:hover img { transform: scale(1.06); }
.flight-visual-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.flight-visual-badge .why-visual-tag { align-self: flex-start; }
.flight-visual-badge p {
  font-family: 'Poppins', 'Noto Sans SC', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0;
}

.gds-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
  padding: 16px 26px;
  background: var(--sand);
  border-radius: 999px;
}
.gds-label { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
.gds-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  box-shadow: var(--shadow);
}
.gds-badge svg { width: 18px; height: 18px; color: var(--teal); }
.gds-badge.has-logo { padding: 10px 28px; }
.gds-badge-logo { height: 42px; width: 60px; display: block; }

.airline-marquee {
  overflow: hidden;
  position: relative;
  padding: 6px 0;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.airline-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: airline-scroll 100s linear infinite;
}
.airline-marquee:hover .airline-track { animation-play-state: paused; }
.airline-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 26px;
  font-weight: 700;
  font-family: 'Poppins', 'Noto Sans SC', sans-serif;
  color: var(--navy);
  font-size: 1rem;
  box-shadow: var(--shadow);
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
}
.airline-logo:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.airline-logo svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }
@keyframes airline-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.why-float-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 96px;
}
.why-float-badge strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1.1;
}
.why-float-badge strong span { font-size: 0.85rem; color: var(--ink-soft); font-weight: 500; }
.why-float-badge > span { display: block; font-size: 0.7rem; color: var(--ink-soft); margin-top: 3px; white-space: nowrap; }

.why-list { position: relative; display: flex; flex-direction: column; gap: 26px; margin-top: 30px; }
.why-list::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 21px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--gold));
  opacity: 0.25;
  z-index: 0;
}
.why-item { position: relative; z-index: 1; display: flex; gap: 16px; }
.why-item .num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 18px rgba(4, 156, 130, 0.3);
}
.why-item h4 { font-size: 1.02rem; margin-bottom: 4px; }
.why-item p { color: var(--ink-soft); font-size: 0.92rem; }

.why-pledge {
  margin-top: 28px;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: var(--sand);
  border-radius: 0 12px 12px 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.6;
}

/* ===================== Packages ===================== */
.destinations { background: var(--sand); }

.pkg-slider {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pkg-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  min-width: 0;
}
.pkg-track::-webkit-scrollbar { display: none; }

.pkg-card {
  position: relative;
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pkg-photo { height: 190px; overflow: hidden; }
.pkg-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pkg-card:hover .pkg-photo img { transform: scale(1.08); }

.pkg-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.pkg-body h3 { font-size: 1.08rem; line-height: 1.35; margin-bottom: 10px; min-height: 2.7em; }

.pkg-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.pkg-duration svg { width: 15px; height: 15px; }

.pkg-body p { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.6; margin-bottom: 20px; flex: 1; }

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.pkg-price { display: flex; align-items: baseline; gap: 4px; }
.pkg-price span { font-size: 0.76rem; color: var(--ink-soft); }
.pkg-price strong { font-size: 1.15rem; color: var(--navy); font-family: 'Poppins', sans-serif; }

.pkg-btn {
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
}
.pkg-btn:hover { background: var(--navy-dark); transform: translateY(-2px); }

/* ---- Homepage horizontal promo banner(s) ---- */
.batam-promo { padding: 0 0 90px; }
.batam-promo-card {
  display: flex;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.batam-promo-card + .batam-promo-card { margin-top: 20px; }
.batam-promo-photo { flex: 0 0 42%; min-height: 260px; }
.batam-promo-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.batam-promo-body {
  flex: 1;
  min-width: 0;
  padding: 36px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.batam-promo-body .section-tag { align-self: flex-start; }
.batam-promo-body h3 { font-size: 1.4rem; color: var(--navy); margin: 0; }
.batam-promo-body p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.batam-promo-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 10px; flex-wrap: wrap; }
.batam-promo-footer .pkg-price strong { font-size: 1.5rem; }
@media (max-width: 760px) {
  .batam-promo-card { flex-direction: column; }
  .batam-promo-photo { flex: none; height: 200px; }
  .batam-promo-body { padding: 26px 24px; }
}

/* ---- Batam tour-detail: pricing table & optional add-ons (Batam only) ---- */
.batam-extra-section { padding: 40px 0 0; }
.batam-extra-section .section-head { text-align: left; margin-bottom: 18px; }
.batam-extra-section .section-head p { margin-top: 2px; font-size: 0.88rem; }
.batam-price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.batam-price-table th,
.batam-price-table td { padding: 11px 20px; text-align: left; font-size: 0.9rem; line-height: 1.3; }
.batam-price-table thead th {
  background: rgba(4, 156, 130, 0.1);
  color: var(--navy);
  font-weight: 700;
  padding: 10px 20px;
  font-size: 0.85rem;
}
.batam-price-table tbody tr { border-top: 1px solid var(--line); }
.batam-price-table tbody tr:nth-child(even) { background: rgba(4, 156, 130, 0.03); }
.batam-price-table tbody td:first-child { color: var(--ink); }
.batam-price-table tbody td:last-child { color: var(--teal); font-weight: 700; text-align: right; }
.batam-addons-section { padding: 30px 0 70px; }
.batam-addons-section .section-head { text-align: left; margin-bottom: 4px; }
.batam-addons-hint { color: var(--ink-soft); font-size: 0.85rem; margin: 0 0 16px; }
.batam-addons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.batam-addon-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.batam-addon-card:hover { border-color: rgba(4, 156, 130, 0.35); box-shadow: var(--shadow); }
.batam-addon-icon {
  flex: none;
  width: 30px;
  height: 30px;
  padding: 6px;
  box-sizing: border-box;
  color: var(--teal);
  background: rgba(4, 156, 130, 0.1);
  border-radius: 50%;
}
.batam-addon-body { min-width: 0; flex: 1; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.batam-addon-body h4 { margin: 0; font-size: 0.9rem; color: var(--ink); font-weight: 600; }
.batam-addon-note { color: var(--ink-soft); font-size: 0.76rem; margin: 2px 0 0; line-height: 1.4; flex-basis: 100%; }
.batam-addon-price { color: var(--teal); font-weight: 700; font-size: 0.88rem; white-space: nowrap; }
@media (max-width: 640px) {
  .batam-addons-grid { grid-template-columns: 1fr; }
  .batam-price-table th, .batam-price-table td { padding: 9px 14px; font-size: 0.84rem; }
}

/* ---- Batam dedicated booking page (batam-booking.html) ---- */
.batam-book-page { background: #faf7f2; padding: 40px 0 90px; }
.batam-book-header { margin-bottom: 26px; }
.batam-book-header h1 { font-size: 1.9rem; margin: 0 0 6px; }
.batam-book-header p { color: var(--ink-soft); margin: 0; }

.batam-book-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.batam-book-main { display: flex; flex-direction: column; gap: 22px; min-width: 0; }

.batam-book-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 30px; }
.batam-book-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.batam-book-step-num { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.92rem; }
.batam-book-card-head h2 { margin: 0; font-size: 1.12rem; color: var(--ink); }

.batam-book-date-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.batam-book-date-field { border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.batam-book-date-field svg { flex: none; width: 20px; height: 20px; color: var(--ink-soft); }
.batam-book-date-field > div { flex: 1; min-width: 0; }
.batam-book-date-field label { display: block; font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 2px; }
.batam-book-date-field input { border: none; outline: none; font-size: 0.94rem; color: var(--ink); width: 100%; font-family: inherit; background: transparent; padding: 0; }
.batam-book-date-field input:disabled { color: var(--ink-soft); }

.batam-book-hint { color: var(--ink-soft); font-size: 0.85rem; margin: 14px 0 0; }

.batam-book-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.batam-book-row + .batam-book-row { border-top: 1px solid var(--line); }
.batam-book-row-label { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.batam-book-row-sub { color: var(--ink-soft); font-size: 0.8rem; margin-top: 2px; }

.batam-book-counter { display: flex; align-items: center; gap: 14px; flex: none; }
.batam-book-counter-btn {
  width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--line);
  background: var(--white); color: var(--teal); font-size: 1.15rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.batam-book-counter-btn:hover:not(:disabled) { border-color: var(--teal); background: rgba(4, 156, 130, 0.08); }
.batam-book-counter-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.batam-book-counter-val { min-width: 18px; text-align: center; font-weight: 700; font-size: 1rem; }

.batam-book-warning, .batam-book-info {
  display: flex; align-items: flex-start; gap: 10px; border-radius: 12px;
  padding: 14px 16px; font-size: 0.86rem; line-height: 1.55; margin-top: 16px;
}
.batam-book-warning { background: #fdf1e0; color: #935e14; }
.batam-book-info { background: rgba(4, 156, 130, 0.08); color: #0c5643; }
.batam-book-warning svg, .batam-book-info svg { flex: none; width: 18px; height: 18px; margin-top: 1px; }

.batam-book-addons { display: flex; flex-direction: column; gap: 10px; }
.batam-book-addon-row {
  display: flex; align-items: flex-start; gap: 14px; border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 16px; cursor: pointer; transition: border-color var(--transition);
}
.batam-book-addon-row:hover { border-color: rgba(4, 156, 130, 0.4); }
.batam-book-addon-row input[type="checkbox"] { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--teal); flex: none; cursor: pointer; }
.batam-book-addon-body { flex: 1; min-width: 0; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.batam-book-addon-body strong { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.batam-book-addon-price { color: var(--teal); font-weight: 700; font-size: 0.9rem; white-space: nowrap; }
.batam-book-addon-note { color: var(--ink-soft); font-size: 0.78rem; margin: 3px 0 0; flex-basis: 100%; }

.batam-book-subhead { font-weight: 700; color: var(--ink); font-size: 0.95rem; margin: 22px 0 2px; padding-top: 18px; border-top: 1px solid var(--line); }
.batam-book-subhead-note { color: var(--ink-soft); font-size: 0.82rem; margin: 0 0 10px; }
.batam-book-covered-note { color: var(--ink-soft); font-size: 0.8rem; margin-top: 6px; }

.batam-book-upload-list { display: flex; flex-direction: column; gap: 10px; }
.batam-book-upload-row { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; }
.batam-book-upload-row.uploaded { border-color: rgba(4, 156, 130, 0.4); background: rgba(4, 156, 130, 0.04); }
.batam-book-upload-icon { flex: none; width: 34px; height: 34px; border-radius: 8px; background: var(--sand); display: flex; align-items: center; justify-content: center; color: var(--navy); }
.batam-book-upload-row.uploaded .batam-book-upload-icon { background: rgba(4, 156, 130, 0.15); color: var(--teal); }
.batam-book-upload-icon svg { width: 18px; height: 18px; }
.batam-book-upload-body { flex: 1; min-width: 0; }
.batam-book-upload-body strong { display: block; font-size: 0.88rem; color: var(--ink); }
.batam-book-upload-body span { display: block; font-size: 0.78rem; color: var(--ink-soft); margin-top: 1px; }
.batam-book-upload-btn { flex: none; display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-weight: 600; font-size: 0.85rem; cursor: pointer; border: none; background: none; padding: 6px 4px; }

.batam-book-summary { position: sticky; top: 90px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 26px; display: flex; flex-direction: column; }
.batam-book-summary h3 { margin: 0; font-size: 1.12rem; }
.batam-book-summary-meta { color: var(--ink-soft); font-size: 0.85rem; margin: 2px 0 14px; }
.batam-book-summary-divider { border-top: 1px solid var(--line); margin: 8px 0; }
.batam-book-summary-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 6px 0; font-size: 0.9rem; }
.batam-book-summary-row span:first-child { color: var(--ink-soft); }
.batam-book-summary-row span:last-child { font-weight: 600; color: var(--ink); white-space: nowrap; }
.batam-book-summary-row.warn span:first-child, .batam-book-summary-row.warn span:last-child { color: #b5670f; }
.batam-book-summary-row.warn span:first-child::before { content: '⚠ '; }
.batam-book-summary-total { display: flex; align-items: baseline; justify-content: space-between; padding-top: 12px; }
.batam-book-summary-total span { font-weight: 700; color: var(--ink); font-size: 1rem; }
.batam-book-summary-total strong { color: var(--teal); font-size: 1.5rem; }

.batam-book-ferry-box { background: #fdf6e3; border-radius: 12px; padding: 14px 16px; margin-top: 16px; font-size: 0.8rem; color: #7a5a12; line-height: 1.6; }
.batam-book-ferry-box strong { display: flex; align-items: center; gap: 6px; color: #935e14; margin-bottom: 4px; font-size: 0.82rem; }
.batam-book-ferry-box em { display: block; font-style: normal; opacity: 0.85; margin-top: 6px; font-size: 0.76rem; }

.batam-book-note { display: flex; align-items: center; gap: 8px; background: rgba(4, 156, 130, 0.08); color: #0c5643; border-radius: 10px; padding: 10px 14px; margin-top: 14px; font-size: 0.82rem; }
.batam-book-note svg { flex: none; width: 16px; height: 16px; }

.batam-book-submit { width: 100%; margin-top: 18px; }
.batam-book-error { color: #c0392b; font-size: 0.85rem; margin: 10px 0 0; text-align: center; }

/* These classes set their own `display`, which otherwise beats the browser's
   default [hidden]{display:none} (equal specificity, author styles win). */
.batam-book-main[hidden],
.batam-book-summary-row[hidden],
.batam-book-warning[hidden],
.batam-book-info[hidden],
#bbPaymentReceiptGroup[hidden] { display: none; }

@media (max-width: 960px) {
  .batam-book-layout { grid-template-columns: 1fr; }
  .batam-book-summary { position: static; }
}
@media (max-width: 640px) {
  .batam-book-card { padding: 22px 18px; }
  .batam-book-date-grid { grid-template-columns: 1fr; }
}

.tour-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 36px;
}
.tour-filter-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 240px;
  background: var(--sand);
  border-radius: 10px;
  padding: 0 14px;
}
.tour-filter-search svg { width: 18px; height: 18px; color: var(--ink-soft); flex-shrink: 0; }
.tour-filter-search input {
  border: none;
  background: transparent;
  padding: 12px 0;
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--ink);
  width: 100%;
}
.tour-filter-search input:focus { outline: none; }
.tour-filter-bar select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--white);
  flex: 1 1 160px;
}
.tour-filter-bar select:focus { outline: 2px solid var(--gold); }
.tour-filter-reset {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 10px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.tour-filter-reset:hover { background: var(--sand); border-color: var(--navy); }
.tour-filter-empty {
  text-align: center;
  color: var(--ink-soft);
  background: var(--sand);
  border-radius: var(--radius);
  padding: 32px 20px;
  margin-bottom: 20px;
}
.tour-filter-empty a { color: var(--navy); font-weight: 600; }
@media (max-width: 640px) {
  .tour-filter-bar { flex-direction: column; }
  .tour-filter-search,
  .tour-filter-bar select,
  .tour-filter-reset { flex: 0 0 auto; width: 100%; }
}

.tour-category-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 20px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
}
.tour-category-title:not(:first-of-type) { margin-top: 44px; }

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.tour-grid .pkg-card { width: 100%; }

/* ===================== Testimonials ===================== */
.testimonials { }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.test-slider {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 26px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  min-width: 0;
}
.test-track::-webkit-scrollbar { display: none; }

.test-nav {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.test-nav svg { width: 18px; height: 18px; }
.test-nav:hover { background: var(--navy); color: var(--white); transform: scale(1.06); }

.test-dots { display: flex; justify-content: center; gap: 8px; margin-top: 8px; }
.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.test-dot.active { background: var(--teal); transform: scale(1.3); }

.testimonials .section-head .section-tag {
  background: linear-gradient(120deg, var(--teal), var(--gold));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(4, 156, 130, 0.3);
}

.test-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  width: 340px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.test-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.test-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.test-card::after {
  content: "\201C";
  position: absolute;
  top: -6px;
  right: 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}
.test-card > * { position: relative; z-index: 1; }
.test-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.test-card p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 20px; flex: 1; }
.test-person { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-family: 'Poppins', sans-serif;
}
.test-person strong { display: block; font-size: 0.92rem; color: var(--navy); }
.test-person span { font-size: 0.8rem; color: var(--ink-soft); }

/* ===================== CTA / Newsletter ===================== */
.cta-band {
  background: linear-gradient(120deg, var(--navy-dark), var(--teal));
  color: var(--white);
  border-radius: 20px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); font-size: 1.7rem; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.78); }
.cta-form { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-form input {
  padding: 13px 16px;
  border-radius: 999px;
  border: none;
  min-width: 260px;
  font-family: inherit;
  font-size: 0.92rem;
}

/* WhatsApp community band */
.whatsapp-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #075e54, #25d366);
  border-radius: 24px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  color: var(--white);
}
.whatsapp-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 40px);
  pointer-events: none;
}

.whatsapp-content { position: relative; z-index: 1; max-width: 480px; }

.whatsapp-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.whatsapp-icon svg { width: 28px; height: 28px; color: var(--white); }

.whatsapp-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.whatsapp-content h2 { color: var(--white); font-size: 1.7rem; margin-bottom: 10px; }
.whatsapp-content p { color: rgba(255, 255, 255, 0.85); margin-bottom: 26px; }

.whatsapp-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.whatsapp-btn {
  background: var(--white);
  color: #075e54;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.whatsapp-btn svg { width: 18px; height: 18px; }
.whatsapp-btn:hover { background: #eafaf3; transform: translateY(-2px); }

.whatsapp-btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}
.whatsapp-btn-outline:hover { background: rgba(255, 255, 255, 0.12); }

.whatsapp-qr-group {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-qr {
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 24px 48px rgba(2, 10, 22, 0.3);
}
.whatsapp-qr img { width: 128px; height: 128px; }
.whatsapp-qr span { font-size: 0.8rem; font-weight: 600; color: #075e54; text-align: center; line-height: 1.4; }

/* ===================== Footer ===================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }

.footer-contact li { display: flex; gap: 10px; font-size: 0.88rem; margin-bottom: 14px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { margin-left: 18px; }
.footer-bottom a:hover { color: var(--white); }

/* ===================== Page Header (inner pages) ===================== */
.page-hero {
  background: linear-gradient(120deg, rgba(7, 58, 110,0.92), rgba(4, 156, 130,0.85)), url('') center/cover;
  background-color: var(--navy-dark);
  min-height: 46vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 12px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--gold); }

.page-hero-deco {
  position: absolute;
  color: var(--white);
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}
.page-hero-deco.plane { width: 130px; top: 36px; right: 8%; transform: rotate(15deg); }
.page-hero-deco.suitcase { width: 90px; bottom: 26px; right: 22%; transform: rotate(-8deg); }
.page-hero-deco.compass { width: 110px; top: 50%; right: 3%; transform: translateY(-50%) rotate(-6deg); }

/* ===================== About page ===================== */
.about-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.stats-strip {
  background: var(--navy-dark);
  padding: 48px 0;
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stats-strip strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  color: #fff;
}
.stats-strip span { color: #fff; font-size: 0.86rem; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-num {
  position: absolute;
  top: 12px;
  right: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--teal);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}
.feature-card .service-icon { margin-bottom: 18px; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }

.steps-grid { display: flex; align-items: flex-start; justify-content: center; gap: 18px; margin-top: 34px; }
.step-card {
  flex: 1;
  max-width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  box-shadow: 0 8px 18px rgba(4, 156, 130, 0.3);
}
.step-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }
.step-arrow { flex-shrink: 0; width: 22px; height: 22px; color: var(--line); align-self: center; margin-top: 46px; }

/* ===================== Contact page ===================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.contact-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}
.contact-card h4 { font-size: 0.98rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.88rem; color: var(--ink-soft); }
.contact-card a { color: var(--teal); font-weight: 600; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

/* ===================== Insurance quote form ===================== */
.trip-form-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.trip-info {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
}
.trip-info h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sand);
}
.trip-area-block { margin-bottom: 18px; }
.trip-area-block h4 { font-size: 0.95rem; color: var(--teal); font-weight: 700; margin-bottom: 6px; }
.trip-area-block p { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.6; }

.trip-doc-links { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; margin-bottom: 12px; }
.trip-doc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--teal);
  border-radius: 12px;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.trip-doc-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.trip-doc-link:hover { background: var(--teal); color: var(--white); }

.visa-coverage { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.visa-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.visa-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.visa-chip svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }

.trip-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.trip-form-head {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  padding: 16px 24px;
}
.trip-form-body { padding: 32px; }

.corp-section-title {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 34px 0 18px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.corp-section-title:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.meeting-details {
  background: var(--sand);
  border-radius: 14px;
  padding: 20px 20px 4px;
  margin-bottom: 20px;
}

/* ===================== Insurance purchase page ===================== */
.purchase-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  background: var(--sand);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 30px;
}
.summary-item { display: flex; flex-direction: column; gap: 4px; }
.summary-item span { font-size: 0.76rem; color: var(--ink-soft); }
.summary-item strong { font-size: 0.92rem; color: var(--navy); font-weight: 700; }

.person-block {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px 20px;
  margin: 28px 0 24px;
  box-shadow: var(--shadow);
}
.person-block-badge {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  box-shadow: 0 6px 14px rgba(4, 156, 130, 0.3);
}
.person-block-title { font-size: 1.02rem; color: var(--navy); margin: 4px 0 16px; }
.person-block-subtitle {
  font-size: 0.92rem;
  color: var(--teal);
  margin: 20px 0 12px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.beneficiary-item, .child-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px 4px;
  margin-bottom: 14px;
  background: var(--sand);
}
.beneficiary-item-head, .child-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
}
.beneficiary-remove-btn, .child-remove-btn {
  background: none;
  border: none;
  color: #c94a4a;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 2px 6px;
}
.beneficiary-remove-btn:hover, .child-remove-btn:hover { text-decoration: underline; }
.add-beneficiary-btn, .add-child-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1.5px dashed var(--teal);
  color: var(--teal);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 8px;
  transition: background var(--transition), color var(--transition);
}
.add-beneficiary-btn:hover, .add-child-btn:hover { background: var(--teal); color: var(--white); }

.payment-section { margin-top: 10px; padding-top: 24px; border-top: 1px dashed var(--line); }
.payment-section-title { font-size: 1.05rem; color: var(--navy); margin-bottom: 14px; }
.payment-bank-card {
  background: var(--sand);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 18px;
}
.payment-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  font-size: 0.92rem;
}
.payment-bank-row + .payment-bank-row { border-top: 1px solid rgba(14, 90, 168, 0.08); }
.payment-bank-row span { color: var(--ink-soft); }
.payment-bank-row strong { color: var(--navy); font-family: 'Poppins', sans-serif; text-align: right; }
.payment-bank-qr {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(14, 90, 168, 0.18);
}
.payment-bank-qr img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  flex-shrink: 0;
  background: var(--white);
  cursor: zoom-in;
  transition: transform var(--transition);
}
.payment-bank-qr img:hover { transform: scale(1.05); }
.payment-bank-qr span { color: var(--ink-soft); font-size: 0.84rem; line-height: 1.5; }

/* ---- Generic click-to-enlarge lightbox (built by script.js for any
   img.js-zoomable — currently just the payment QR codes) ---- */
.img-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 20, 30, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  z-index: 4000;
  cursor: zoom-out;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition);
}
.img-lightbox-overlay.show { opacity: 1; visibility: visible; }
.img-lightbox-overlay img {
  max-width: min(90vw, 520px);
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.img-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-lightbox-close:hover { background: rgba(255, 255, 255, 0.28); }
.payment-total-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 16px 22px;
  margin-bottom: 20px;
}
.payment-total-box span { font-size: 0.9rem; opacity: 0.85; }
.payment-total-box strong { font-size: 1.3rem; font-family: 'Poppins', sans-serif; }

.promo-code-group { margin-bottom: 20px; }
.promo-code-row { display: flex; gap: 10px; }
.promo-code-row input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.93rem;
  background: var(--sand);
  color: var(--ink);
}
.promo-code-row .btn { flex-shrink: 0; padding: 12px 22px; }
.promo-code-msg { font-size: 0.86rem; font-weight: 600; margin-top: 8px; }
.promo-code-msg.success { color: var(--teal); }
.promo-code-msg.error { color: #d64545; }

.trip-form-field { margin-bottom: 20px; }
.trip-form-field > label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.trip-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.trip-option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--ink);
  transition: border-color var(--transition), background var(--transition);
}
.trip-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.trip-option .check {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.trip-option.selected { border-color: var(--navy); background: var(--sand); }
.trip-option-disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.trip-option.selected .check { background: var(--navy); border-color: var(--navy); }
.trip-option.selected .check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.quote-estimate { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.quote-plan {
  display: block;
  text-align: center;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 8px;
  background: var(--sand);
  cursor: pointer;
  position: relative;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.quote-plan-radio { position: absolute; opacity: 0; width: 0; height: 0; }
.quote-plan.plan-selected { border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 2px var(--navy) inset; }
.quote-plan-name {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.quote-plan-price {
  display: block;
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
}
.quote-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 8px; line-height: 1.5; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--ink);
  background: var(--sand);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: 2px solid var(--gold); }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 10px; }
.form-success {
  display: none;
  background: rgba(4, 156, 130,0.1);
  color: var(--teal);
  border: 1px solid rgba(4, 156, 130,0.25);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.form-success.show { display: block; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--navy);
}
.faq-q svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 220px; padding: 0 22px 20px; }
.faq-a p { color: var(--ink-soft); font-size: 0.9rem; }

/* ===================== Tour Detail Page ===================== */
.page-hero.tour-hero { min-height: 50vh; }
.tour-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4,20,40,0) 40%, rgba(3,16,32,0.4) 100%);
  pointer-events: none;
}
.tour-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}
.tour-hero-meta span { display: flex; align-items: center; gap: 6px; }
.tour-hero-meta svg { width: 15px; height: 15px; }
.tour-hero-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.tour-hero-price strong { font-size: 1.15rem; color: var(--white); }

.tour-tabs {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(14, 90, 168, 0.06);
}
.tour-tabs-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 24px;
}
.tour-tabs-inner {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--sand);
  border-radius: 999px;
  padding: 5px;
}
.tour-tabs-inner::-webkit-scrollbar { display: none; }
.tour-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}
.tour-tab svg { width: 16px; height: 16px; }
.tour-tab:hover { color: var(--navy); }
.tour-tab.active { color: var(--white); background: var(--navy); box-shadow: 0 6px 16px rgba(14, 90, 168, 0.28); }
.tour-tabs-cta { flex-shrink: 0; padding: 11px 22px; font-size: 0.88rem; }

.tour-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.tour-highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tour-highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tour-highlight-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(14, 90, 168, 0.25);
}
.tour-highlight-icon svg { width: 20px; height: 20px; }
.tour-highlight-card p { color: var(--ink); font-size: 0.94rem; line-height: 1.6; margin: 0; }

.itinerary-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.lang-toggle {
  display: inline-flex;
  background: var(--sand);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}
.lang-toggle button {
  border: none;
  background: none;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: all var(--transition);
}
.lang-toggle button.active { background: var(--navy); color: var(--white); }
.itinerary-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--white);
  transition: all var(--transition);
}
.itinerary-pdf-btn:hover { background: var(--navy); color: var(--white); }
.itinerary-pdf-btn svg { width: 16px; height: 16px; }

.itinerary-list { position: relative; padding-left: 44px; }
.itinerary-list::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}
.itinerary-day { position: relative; padding-bottom: 30px; }
.itinerary-day:last-child { padding-bottom: 0; }
.itinerary-day-badge {
  position: absolute;
  left: -44px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: var(--shadow);
}
.itinerary-day-content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
}
.itinerary-day-content h3 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.itinerary-day-content p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.itinerary-day-desc p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.6; margin: 0 0 10px; }
.itinerary-day-desc p:last-child { margin-bottom: 0; }
.itinerary-day-desc strong { color: var(--ink); font-weight: 700; }

.departure-list { display: flex; flex-direction: column; gap: 16px; }
.departure-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.departure-card.departure-status-fast { border-left-color: #e07a1f; }
.departure-card.departure-status-available { border-left-color: #22b562; }
.departure-card.departure-status-few { border-left-color: #d64545; }
.departure-card.departure-status-full { border-left-color: var(--ink-soft); opacity: 0.75; }
.departure-card:hover { box-shadow: var(--shadow-lg); }
.departure-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
}
.departure-dates { flex: 1; min-width: 220px; }
.departure-dates strong { display: block; font-size: 0.98rem; color: var(--ink); margin-bottom: 6px; }
.departure-code { font-size: 0.78rem; color: var(--ink-soft); }
.departure-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}
.departure-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; }
.departure-badge.fast { background: #fdeee0; color: #c2661a; }
.departure-badge.fast::before { background: #e07a1f; }
.departure-badge.available { background: #e2f6ec; color: #1a8a4c; }
.departure-badge.available::before { background: #22b562; }
.departure-badge.few { background: #fdeaea; color: #c23a3a; }
.departure-badge.few::before { background: #d64545; }
.departure-badge.full { background: var(--sand); color: var(--ink-soft); }
.departure-badge.full::before { background: var(--ink-soft); }
.departure-airline { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
.departure-price-block { text-align: right; }
.departure-price-block span { display: block; font-size: 0.74rem; color: var(--ink-soft); }
.departure-price-block strong { font-family: 'Poppins', sans-serif; font-size: 1.35rem; color: var(--navy); }
.departure-actions { display: flex; align-items: center; gap: 10px; }
.departure-actions .btn { padding: 10px 18px; font-size: 0.84rem; }
.departure-chevron {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.departure-chevron svg { width: 15px; height: 15px; color: var(--navy); }
.departure-card.open .departure-chevron { transform: rotate(180deg); }

.departure-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--sand);
  border-top: 1px solid var(--line);
}
.departure-card.open .departure-body { max-height: 900px; }
.departure-body-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 22px;
}
.rate-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--line);
}
.rate-panel h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 14px; }
.rate-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.rate-box {
  background: var(--sand);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.rate-box span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5em;
  font-size: 0.72rem;
  line-height: 1.25;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.rate-box strong { font-family: 'Poppins', sans-serif; font-size: 0.9rem; color: var(--ink); margin-top: auto; }
.flight-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--line);
  overflow-x: auto;
}
.flight-panel h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 14px; }
.flight-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.flight-table th {
  text-align: left;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 0 10px 8px 0;
  border-bottom: 1px solid var(--line);
}
.flight-table td { padding: 10px 10px 10px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.flight-table tr:last-child td { border-bottom: none; }
.flight-table .flight-no { color: var(--navy); font-weight: 600; }

.tour-gallery {
  position: relative;
  margin-bottom: 44px;
}
.tour-gallery-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.tour-gallery-slide {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 220px;
}
.tour-gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tour-gallery-nav { display: none; }
.tour-gallery-nav.prev { left: 16px; }
.tour-gallery-nav.next { right: 16px; }
.tour-gallery-dots {
  display: none;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: rgba(255,255,255,0.85);
  padding: 7px 12px;
  border-radius: 999px;
  margin-top: 0;
}

.itinerary-day-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.itinerary-day-head h3 { margin: 0; }
.meal-badges { display: flex; gap: 5px; flex-shrink: 0; margin-top: 1px; }
.meal-badge {
  min-width: 24px;
  height: 24px;
  padding: 0 5px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--sand);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.meal-badge.included { background: var(--navy); color: var(--white); border-color: var(--navy); }

.departure-from { display: block; font-size: 0.78rem; color: var(--ink-soft); margin-top: 3px; }
.departure-from svg { width: 12px; height: 12px; vertical-align: -1px; margin-right: 3px; }

.tour-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 700;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(14, 90, 168, 0.14);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.tour-sticky-cta-price { display: flex; flex-direction: column; }
.tour-sticky-cta-price span { font-size: 0.72rem; color: var(--ink-soft); }
.tour-sticky-cta-price strong { font-family: 'Poppins', sans-serif; font-size: 1.15rem; color: var(--navy); }
.tour-sticky-cta .btn { padding: 12px 26px; flex-shrink: 0; }

@media (max-width: 900px) {
  .tour-sticky-cta { display: flex; }
  .tour-tabs-cta { display: none; }
  body.has-sticky-cta .back-to-top { bottom: 158px; }
  body.has-sticky-cta .whatsapp-float { bottom: 92px; }
}

.tcond-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}
.tcond-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.tcond-panel h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.tcond-panel h3 svg { width: 20px; height: 20px; }
.tcond-include h3 { color: #1a8a4c; }
.tcond-exclude h3 { color: #c2661a; }
.tcond-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.tcond-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.55;
}
.tcond-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}
.tcond-list.include li::before { content: '✓'; background: #e2f6ec; color: #1a8a4c; }
.tcond-list.exclude li::before { content: '✕'; background: #fdeee0; color: #c2661a; }

.tcond-remarks {
  background: #fff8ec;
  border: 1px solid #f3dfb0;
  border-radius: var(--radius);
  padding: 22px 26px;
}
.tcond-remarks h4 { color: #9a6b12; font-size: 0.98rem; margin-bottom: 12px; }
.tcond-remarks ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.tcond-remarks li { font-size: 0.88rem; color: #7a5a1a; padding-left: 16px; position: relative; }
.tcond-remarks li::before { content: '—'; position: absolute; left: 0; color: #c99a3a; }

.tcond-plain h4 { font-size: 0.95rem; color: var(--ink); margin-bottom: 12px; }
.tcond-plain-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.tcond-plain-list li { font-size: 0.86rem; color: var(--ink-soft); padding-left: 16px; position: relative; line-height: 1.55; }
.tcond-plain-list li::before { content: '•'; position: absolute; left: 0; color: var(--ink-soft); }

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.notes-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  text-align: center;
}
.notes-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 6px 14px rgba(14, 90, 168, 0.25);
}
.notes-icon svg { width: 24px; height: 24px; }
.notes-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.notes-card p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.6; margin: 0; }

.notes-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.notes-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.6;
  background: var(--sand);
  padding: 14px 18px;
  border-radius: 12px;
}
.notes-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--navy); flex-shrink: 0; margin-top: 7px; }

/* ===================== Careers ===================== */
.careers-highlight {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy) 55%, var(--teal));
  border-radius: var(--radius);
  padding: 48px 40px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.careers-highlight-deco { position: absolute; opacity: 0.12; pointer-events: none; }
.careers-highlight-deco.plane { width: 130px; top: 20px; right: 10%; transform: rotate(15deg); }
.careers-highlight-deco.compass { width: 150px; bottom: -20px; left: -20px; }
.careers-highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.careers-highlight-icon svg { width: 30px; height: 30px; }
.careers-highlight h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 10px; position: relative; z-index: 1; }
.careers-highlight p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: auto; position: relative; z-index: 1; }
.careers-highlight-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
  position: relative;
  z-index: 1;
}
.careers-highlight-stat { display: flex; flex-direction: column; gap: 4px; }
.careers-highlight-stat strong { font-family: 'Poppins', sans-serif; font-size: 1.7rem; font-weight: 700; color: var(--white); }
.careers-highlight-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.75); }
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.job-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.job-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px rgba(14, 90, 168, 0.25);
}
.job-card-icon svg { width: 26px; height: 26px; }
.job-card-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--sand);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  width: fit-content;
}
.job-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.job-card > p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.job-card-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.job-card-list li { font-size: 0.86rem; color: var(--ink); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.job-card-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.job-card .btn { align-self: flex-start; margin-top: auto; }

/* ===================== Booking Wizard ===================== */
.booking-breadcrumb-bar { padding: 18px 0; border-bottom: 1px solid var(--line); }
.booking-breadcrumb-bar .breadcrumb { color: var(--ink-soft); }
.booking-breadcrumb-bar .breadcrumb a { color: var(--ink-soft); }
.booking-breadcrumb-bar .breadcrumb a:hover { color: var(--navy); }
.booking-breadcrumb-bar .breadcrumb span { color: var(--ink); font-weight: 600; }

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 44px 0 50px;
  flex-wrap: wrap;
}
.step-indicator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 168px;
  position: relative;
  padding: 0 8px;
}
.step-indicator-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.step-indicator-item.completed:not(:last-child)::after { background: var(--navy); }
.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  border: 2px solid var(--line);
  color: var(--ink-soft);
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  transition: all var(--transition);
}
.step-indicator-item.active .step-circle { background: var(--navy); border-color: var(--navy); color: var(--white); box-shadow: 0 6px 16px rgba(14, 90, 168, 0.3); }
.step-indicator-item.completed .step-circle { background: var(--navy); border-color: var(--navy); color: var(--white); }
.step-indicator-item.completed .step-circle svg { width: 18px; height: 18px; }
.step-label { font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.step-desc { font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; }
.step-indicator-item:not(.active) .step-label { color: var(--ink-soft); }

.booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; padding-bottom: 70px; }
.booking-main { min-width: 0; }
.booking-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }
.booking-step-content { display: none; }
.booking-step-content.active { display: block; }
.booking-step-content h2 { font-size: 1.6rem; color: var(--ink); margin-bottom: 6px; }
.booking-step-content > p.step-intro { color: var(--ink-soft); margin-bottom: 28px; }

.sidebar-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.sidebar-card h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 12px; }
.sidebar-meta { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 4px; }
.sidebar-meta span { display: flex; align-items: center; gap: 6px; }
.sidebar-meta svg { width: 14px; height: 14px; flex-shrink: 0; }
.sidebar-divider { border-top: 1px solid var(--line); margin: 16px 0; }
.sidebar-dep-date { font-weight: 700; color: var(--ink); font-size: 0.92rem; margin-bottom: 4px; }
.sidebar-dep-code { font-size: 0.76rem; color: var(--ink-soft); margin-bottom: 10px; }
.sidebar-flight-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; font-size: 0.76rem; padding: 6px 0; border-bottom: 1px dashed var(--line); color: var(--ink-soft); }
.sidebar-flight-row:last-child { border-bottom: none; }
.sidebar-flight-row .flight-no { color: var(--navy); font-weight: 600; text-align: center; }
.sidebar-flight-row > span:last-child { text-align: right; }

.fare-table { width: 100%; font-size: 0.85rem; }
.fare-row { display: flex; justify-content: space-between; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.fare-row span:first-child { color: var(--ink-soft); }
.fare-total-row { display: flex; justify-content: space-between; padding-top: 14px; font-weight: 700; font-size: 1.15rem; color: var(--navy); }

.room-config-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; box-shadow: var(--shadow); }
.room-config-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.room-config-title { font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.room-remove-btn { font-size: 0.8rem; color: #c2661a; background: none; border: none; font-weight: 600; }
.room-remove-btn:hover { text-decoration: underline; }
.pax-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; }
.pax-field label { display: block; font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 8px; }
.pax-counter { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; width: fit-content; }
.pax-counter button {
  width: 34px;
  height: 34px;
  border: none;
  background: var(--sand);
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.pax-counter button:hover { background: var(--navy); color: var(--white); }
.pax-counter button:disabled { opacity: 0.4; cursor: not-allowed; }
.pax-counter button:disabled:hover { background: var(--sand); color: var(--navy); }
.pax-counter span { width: 42px; text-align: center; font-weight: 700; color: var(--ink); }

.booking-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 28px; }
.booking-nav .btn { min-width: 140px; justify-content: center; }
.booking-nav .btn:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; transform: none; }

.traveller-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 16px; box-shadow: var(--shadow); }
.traveller-block h4 { font-size: 0.98rem; color: var(--navy); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.traveller-badge { width: 26px; height: 26px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }

.review-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 18px; box-shadow: var(--shadow); }
.review-block h4 { font-size: 1rem; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px dashed var(--line); }
.review-row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; font-size: 0.88rem; }
.review-row span:first-child { color: var(--ink-soft); flex-shrink: 0; }
.review-row span:last-child { text-align: right; color: var(--ink); }

.confirmation-box { text-align: center; padding: 50px 20px; }
.confirmation-icon { width: 80px; height: 80px; border-radius: 50%; background: #e2f6ec; color: #1a8a4c; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.confirmation-icon svg { width: 40px; height: 40px; }
.confirmation-box h2 { font-size: 1.6rem; color: var(--ink); margin-bottom: 10px; }
.confirmation-ref { display: inline-block; background: var(--sand); padding: 10px 22px; border-radius: 999px; font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy); margin: 16px 0; }

@media (max-width: 980px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .step-indicator-item { width: 110px; }
  .step-desc { display: none; }
}

/* ===================== About Page ===================== */
.founder-card {
  display: flex;
  gap: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  align-items: flex-start;
}
.founder-avatar {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  box-shadow: 0 10px 24px rgba(14, 90, 168, 0.3);
}
.founder-body h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: 4px; }
.founder-body h3 span { font-weight: 500; color: var(--ink-soft); font-size: 1rem; margin-left: 8px; }
.founder-title { color: var(--teal); font-weight: 600; font-size: 0.92rem; margin-bottom: 16px; }
.founder-credentials { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.founder-credential { background: var(--sand); color: var(--navy); font-size: 0.78rem; font-weight: 600; padding: 6px 12px; border-radius: 999px; }
.founder-body > p { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.75; margin-bottom: 16px; }
.founder-quote {
  border-left: 3px solid var(--teal);
  background: var(--sand);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  font-size: 0.94rem;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.75;
}

.culture-layout { display: grid; grid-template-columns: 220px 1fr; gap: 44px; align-items: center; margin-bottom: 44px; }
.culture-dot-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.culture-dot {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold), var(--navy) 70%);
  box-shadow: 0 0 0 10px rgba(43, 184, 234, 0.12), 0 0 40px rgba(14, 90, 168, 0.35);
  position: relative;
}
.culture-dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 1px dashed var(--line); transform: scale(1.6); }
.culture-dot-visual span { font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--navy); background: var(--sand); padding: 6px 12px; border-radius: 999px; }
.culture-text p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.8; margin-bottom: 14px; }
.culture-text p:last-child { margin-bottom: 0; }
.culture-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.culture-pillar { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); text-align: center; }
.culture-pillar .service-icon { margin: 0 auto 14px; }
.culture-pillar h4 { font-size: 1.02rem; margin-bottom: 8px; color: var(--ink); }
.culture-pillar p { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.6; }

.award-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.award-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
}
.award-item .award-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.award-item .award-icon svg { width: 20px; height: 20px; }
.award-item span { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.award-item.platinum {
  grid-column: 1 / -1;
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(43, 184, 234, 0.1), rgba(15, 147, 201, 0.04));
}
.award-item.platinum .award-icon { background: var(--gold); color: var(--white); }
@media (max-width: 720px) {
  .award-list { grid-template-columns: 1fr; }
}

.members-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 14px;
}
.members-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  height: 110px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.members-logo:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.members-logo img { max-width: 100%; max-height: 64px; object-fit: contain; }
.members-logo-lg img { max-height: 96px; }
.logo-crop-tight { transform: scale(2.6); }
.logo-crop-edges { transform: scale(1.14); }
@media (max-width: 720px) {
  .members-logo { height: 84px; padding: 10px; }
  .members-logo img { max-height: 42px; }
  .members-logo-lg img { max-height: 60px; }
}
@media (max-width: 480px) {
  .members-logos { gap: 8px; }
  .members-logo { height: 64px; padding: 6px; }
  .members-logo img { max-height: 30px; }
  .members-logo-lg img { max-height: 42px; }
}

.license-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.license-doc {
  max-width: 340px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--white);
  padding: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.license-doc:hover { transform: translateY(-4px); }
.license-doc img { width: 100%; display: block; border-radius: 6px; }
.license-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.license-badge {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 140px;
}
.license-badge strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.license-badge span { font-size: 1.05rem; font-weight: 700; color: var(--navy); }

.closing-quote { max-width: 760px; margin: 0 auto; text-align: center; position: relative; padding: 10px 40px; }
.closing-quote::before {
  content: '\201C';
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  color: var(--sand);
  position: absolute;
  top: -34px;
  left: 0;
  line-height: 1;
}
.closing-quote p { font-size: 1.3rem; color: var(--navy); font-weight: 600; line-height: 1.6; position: relative; z-index: 1; }

@media (max-width: 860px) {
  .founder-card { flex-direction: column; align-items: center; text-align: center; }
  .founder-credentials { justify-content: center; }
  .culture-layout { grid-template-columns: 1fr; text-align: center; }
  .culture-pillars { grid-template-columns: 1fr; }
}

.about-year-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 20px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-year-stats > div { display: flex; flex-direction: column; gap: 2px; }
.about-year-stats strong { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--navy); }
.about-year-stats span { font-size: 0.78rem; color: var(--ink-soft); }

.activity-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.activity-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.activity-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.activity-gallery-item:hover img { transform: scale(1.08); }

@media (max-width: 768px) {
  .activity-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .activity-gallery { grid-template-columns: 1fr; }
}

/* ===================== Fair Popup ===================== */
.fair-popup {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 300px;
  max-width: calc(100vw - 48px);
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 20px;
  z-index: 950;
  transform: translateY(130%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.fair-popup.show { transform: translateY(0); opacity: 1; }
.fair-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sand);
  border: none;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.fair-popup-close:hover { background: var(--navy); color: var(--white); }
.fair-popup-close svg { width: 13px; height: 13px; }
.fair-popup-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; padding-right: 20px; }
.fair-popup-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fair-popup-icon svg { width: 22px; height: 22px; }
.fair-popup-tag { display: block; font-size: 0.7rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 2px; }
.fair-popup-header h4 { font-size: 1.02rem; color: var(--ink); margin: 0; font-family: 'Poppins', sans-serif; }
.fair-popup-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.fair-popup-item { display: flex; align-items: center; gap: 12px; background: var(--sand); border-radius: 12px; padding: 10px 12px; }
.fair-popup-date {
  flex-shrink: 0;
  width: 52px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.1;
}
.fair-popup-date span { display: block; font-size: 0.62rem; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.05em; margin-top: 2px; }
.fair-popup-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.fair-popup-info strong { font-size: 0.86rem; color: var(--ink); }
.fair-popup-info span { font-size: 0.76rem; color: var(--ink-soft); }
.fair-popup-btn { font-size: 0.85rem; padding: 11px; }

@media (max-width: 640px) {
  .fair-popup { left: 12px; right: 12px; bottom: 12px; width: auto; }
}

/* ===================== Marketing ad popup ===================== */
.ad-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 20, 0.62);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.ad-popup-overlay.show { opacity: 1; visibility: visible; }
.ad-popup {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}
.ad-popup-overlay.show .ad-popup { transform: scale(1); }
.ad-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.ad-popup-close:hover { background: rgba(0, 0, 0, 0.8); }
.ad-popup-close svg { width: 15px; height: 15px; }
.ad-popup-slider { position: relative; width: 100%; background: var(--sand); text-align: center; }
.ad-popup-slide { display: none; }
.ad-popup-slide.active { display: block; }
.ad-popup-slide img { display: block; width: auto; height: auto; max-width: 100%; max-height: 80vh; margin: 0 auto; }
.ad-popup-slide a { display: block; }
.ad-popup-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}
.ad-popup-arrow:hover { background: var(--white); }
.ad-popup-arrow-prev { left: 10px; }
.ad-popup-arrow-next { right: 10px; }
.ad-popup-arrow svg { width: 17px; height: 17px; color: var(--ink); }
.ad-popup-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ad-popup-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.ad-popup-dot.active { background: var(--white); }
@media (max-width: 480px) {
  .ad-popup { max-width: 100%; }
}

/* ===================== Back to top ===================== */
.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
  border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy-dark); }
.back-to-top svg { width: 18px; height: 18px; }

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 950;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 34px rgba(37, 211, 102, 0.4); }
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: whatsapp-pulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes whatsapp-pulse {
  0% { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}
@media (max-width: 640px) {
  .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .back-to-top { bottom: 82px; }
}
/* ===================== Responsive ===================== */
@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr; }
  .test-card { width: 300px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .search-card { grid-template-columns: repeat(2, 1fr); }
  .search-card .btn { grid-column: span 2; }
  .why-us .container, .about-intro .container { grid-template-columns: 1fr; }
  .trip-form-grid { grid-template-columns: 1fr; }
  .trip-options { grid-template-columns: 1fr; }
  .quote-plan-price { font-size: 0.92rem; }
  .quote-plan { padding: 12px 4px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 1180px) {
  .hero-gallery { display: none; }
  .main-nav { position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 85%); background: var(--white); box-shadow: -10px 0 30px rgba(0,0,0,0.15); padding: 100px 26px 26px; transition: right var(--transition); flex-direction: column; }
  .main-nav.open { right: 0; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
  .main-nav a.nav-link { color: var(--ink); width: 100%; }
  .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; padding-left: 12px; }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; }
  .nav-toggle { display: flex; }
  .header-cta .phone { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .service-grid, .feature-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-card { max-width: none; }
  .step-arrow { align-self: center; margin-top: 0; transform: rotate(90deg); }
  .custom-visual { padding: 10px 4px 40px 4px; }
  .corp-gallery { height: 300px; }
  .custom-visual-badge { padding: 12px 16px; }
  .test-card { width: 82vw; }
  .pkg-card { width: 82vw; }
  .test-nav { width: 38px; height: 38px; }
  .test-nav svg { width: 15px; height: 15px; }
  .search-card { grid-template-columns: 1fr; }
  .search-card .btn { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; flex-direction: column; text-align: center; }
  .whatsapp-band { padding: 36px 24px; flex-direction: column; text-align: center; }
  .whatsapp-content { max-width: none; }
  .whatsapp-icon { margin-left: auto; margin-right: auto; }
  .whatsapp-actions { justify-content: center; }
  .whatsapp-qr img { width: 108px; height: 108px; }
  .whatsapp-qr { padding: 12px; }
  .cta-form { justify-content: center; width: 100%; }
  .cta-form input { flex: 1; min-width: 0; }
  .stats-strip .container { grid-template-columns: 1fr 1fr; }
  .tour-highlights-grid { grid-template-columns: 1fr; }
  .departure-body-inner { grid-template-columns: 1fr; }
  .rate-grid { grid-template-columns: repeat(2, 1fr); }
  .departure-header { flex-direction: column; align-items: flex-start; }
  .departure-price-block { text-align: left; }
  .departure-actions { width: 100%; }
  .departure-actions .btn { flex: 1; }
  .itinerary-list { padding-left: 36px; }
  .itinerary-day-badge { left: -36px; width: 30px; height: 30px; font-size: 0.7rem; }
  .tour-gallery-track { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
  .tour-gallery-slide { height: 140px; }
  .itinerary-day-head { flex-direction: column; gap: 4px; }
  .tour-tab { padding: 14px 12px; font-size: 0.85rem; }
}

@media (max-width: 560px) {
  .header-cta .btn-primary { display: none; }
}

@media (max-width: 420px) {
  .logo .tag { display: none; }
  .lang-btn span { display: none; }
  .lang-btn { padding: 9px 10px; }
}

@media print {
  body.print-itinerary > *:not(.print-area) { display: none !important; }
  body.print-itinerary .print-area { display: block !important; padding: 20px; }
  body.print-itinerary .itinerary-list { padding-left: 36px; }
  body.print-itinerary .itinerary-toolbar,
  body.print-itinerary .itinerary-pdf-btn,
  body.print-itinerary .lang-toggle { display: none !important; }
}
