:root{
  --accent: #FF9502;
  --navy: #05203C;
  --blue: #0062E3;
  --text: #0B1220;
  --muted: rgba(11,18,32,.72);
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --card: #ffffff;
  --border: rgba(11,18,32,.10);
  --shadow: 0 18px 55px rgba(2, 14, 28, 0.18);
  --shadow-soft: 0 10px 35px rgba(2, 14, 28, 0.10);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1160px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

a{
  color: var(--blue);
  text-decoration: none;
}
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* ---------------------------
   Topbar (bright, travel vibe)
---------------------------- */
.topbar{
  background: linear-gradient(90deg, rgba(255,149,2,.18), rgba(0,98,227,.10), rgba(255,255,255,1));
  color: rgba(11,18,32,.86);
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(11,18,32,.08);
}
.topbar__inner{
  padding: 10px 0;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
.topbar__badge{
  background: rgba(255,149,2,.16);
  color: rgba(5,32,60,.95);
  border: 1px solid rgba(255,149,2,.35);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .2px;
  white-space: nowrap;
}
.topbar__text{ opacity: .90; }
.topbar__link{
  color: rgba(0,98,227,.95);
  font-weight: 800;
  white-space: nowrap;
}

/* ---------------------------
   Header (light + premium)
---------------------------- */
.header{
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(11,18,32,.08);
  position: sticky;
  top: 41px; /* below topbar */
  z-index: 40;
  backdrop-filter: blur(12px);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand__logo{
  height: 34px;
  width: auto;
}

.nav{
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav a{
  color: rgba(11,18,32,.80);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
}
.nav a:hover{ color: rgba(5,32,60,1); }

.header__actions{
  display: flex;
  gap: 10px;
  align-items: center;
}

.hamburger{
  display: none;
  background: transparent;
  border: 1px solid rgba(11,18,32,.14);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}
.hamburger span{
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(11,18,32,.86);
  margin: 4px 0;
}

/* Mobile Menu (light) */
.mobile-menu{
  border-top: 1px solid rgba(11,18,32,.08);
  background: rgba(255,255,255,.96);
}
.mobile-menu__inner{
  padding: 16px 0 18px;
  display: grid;
  gap: 10px;
}
.mobile-link{
  color: rgba(11,18,32,.88);
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.85);
}
.mobile-link:hover{ background: rgba(0,98,227,.06); }
.mobile-link--cta{
  background: rgba(255,149,2,.14);
  border-color: rgba(255,149,2,.35);
}

/* ---------------------------
   Buttons
---------------------------- */
.btn{
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn--lg{
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 15px;
}
.btn--primary{
  background: var(--accent);
  color: #1a1306;
  box-shadow: 0 12px 28px rgba(255,149,2,.22);
}
.btn--primary:hover{
  box-shadow: 0 18px 42px rgba(255,149,2,.28);
  transform: translateY(-1px);
}
.btn--secondary{
  background: rgba(0,98,227,.10);
  border-color: rgba(0,98,227,.30);
  color: var(--blue);
}
.btn--secondary:hover{
  background: rgba(0,98,227,.14);
  transform: translateY(-1px);
}
.btn--ghost{
  background: rgba(0,98,227,.06);
  border-color: rgba(0,98,227,.18);
  color: rgba(0,98,227,.95);
}
.btn--ghost:hover{
  background: rgba(0,98,227,.10);
}

/* ---------------------------
   Hero (bright + image-led)
---------------------------- */
/* Hero with background image + soft overlay */
.hero{
  position: relative;
  color: rgba(11,18,32,.92);
  padding: 72px 0 70px;
  overflow: hidden;
  border-bottom: 1px solid rgba(11,18,32,.06);
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.88) 35%,
      rgba(255,255,255,.96) 100%
    ),
    url("images/hero-airport.jpg");
  background-size: cover;
  background-position: center;
}

.hero::after{
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background:
    radial-gradient(circle at 40% 40%, rgba(255,149,2,.30), transparent 60%),
    radial-gradient(circle at 60% 60%, rgba(0,98,227,.20), transparent 62%);
  filter: blur(2px);
  z-index: 0;
}

/* Ensure hero content stays above overlays */
.hero > *{
  position: relative;
  z-index: 1;
}



/* Background image layer */
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.96)),
    url("images/hero-airport.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.02);
  z-index: 0;
}

/* Soft brand glow */
.hero::after{
  content: "";
  position: absolute;
  inset: -120px -60px auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 40% 40%, rgba(255,149,2,.28), transparent 60%),
              radial-gradient(circle at 60% 60%, rgba(0,98,227,.18), transparent 62%);
  filter: blur(2px);
  z-index: 0;
}

.hero__grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pill{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,98,227,.18);
  background: rgba(255,255,255,.70);
  color: rgba(5,32,60,.92);
  font-weight: 800;
  font-size: 13px;
}
.pill__dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,149,2,.18);
}

.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.10;
  letter-spacing: -0.02em;
  color: rgba(5,32,60,1);
}
.lead{
  margin: 0 0 18px;
  font-size: 16px;
  color: rgba(11,18,32,.72);
  max-width: 62ch;
}
.hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}

.hero__trust{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 8px;
}
.trust-item{
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.78);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 12px 34px rgba(2,14,28,.08);
}
.trust-item__title{
  font-weight: 900;
  letter-spacing: .2px;
  color: rgba(5,32,60,1);
}
.trust-item__sub{
  font-size: 13px;
  opacity: .80;
  margin-top: 2px;
}

/* Hero visual card (travel offer look) */
.hero__visual{ position: relative; z-index: 1; }

.hero-card{
  border: 1px solid rgba(11,18,32,.10);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 55px rgba(2, 14, 28, 0.14);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.hero-card__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(90deg, rgba(255,149,2,.12), rgba(0,98,227,.08));
  border-bottom: 1px solid rgba(11,18,32,.08);
}
.hero-card__tag{
  font-size: 13px;
  font-weight: 900;
  color: rgba(5,32,60,.92);
}
.hero-card__badge{
  font-size: 12px;
  font-weight: 900;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,149,2,.20);
  border: 1px solid rgba(255,149,2,.35);
  color: rgba(5,32,60,.92);
}
.hero-card__img{
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-bottom: 1px solid rgba(11,18,32,.08);
}
.hero-card__bottom{
  display: grid;
  gap: 10px;
  padding: 14px 16px 16px;
}
.mini{
  display: flex;
  gap: 10px;
  align-items: center;
}
.mini__icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0,98,227,.10);
  border: 1px solid rgba(0,98,227,.20);
}
.mini__title{ font-weight: 900; color: rgba(5,32,60,1); }
.mini__sub{ font-size: 13px; color: rgba(11,18,32,.68); }

/* ---------------------------
   Sections
---------------------------- */
.section{
  padding: 64px 0;
}
.section--light{
  background: var(--bg-soft);
}
.section--dark{
  /* Keep brand navy but make it feel less “heavy” */
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(0,98,227,.22), transparent 60%),
    radial-gradient(800px 520px at 85% 15%, rgba(255,149,2,.18), transparent 60%),
    linear-gradient(180deg, rgba(5,32,60,1), rgba(5,32,60,.92));
  color: rgba(255,255,255,.94);
}

.section__head{
  max-width: 78ch;
  margin-bottom: 22px;
}
.section__head h2{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section__head p{
  margin: 0;
  color: var(--muted);
}
.section--dark .section__head p{ color: rgba(255,255,255,.80); }

.kicker{
  display: inline-block;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(11,18,32,.60);
  margin-bottom: 8px;
}
.kicker--accent{ color: rgba(255,149,2,.95); }

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.section--dark .card{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}

.grid-2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.grid-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 18px;
}
.list{
  margin: 14px 0 18px;
  padding-left: 18px;
  color: rgba(11,18,32,.82);
}
.section--dark .list{ color: rgba(255,255,255,.84); }
.muted{ color: var(--muted); }

/* Split layout */
.split{
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  align-items: center;
}
.split--reverse{
  grid-template-columns: 1.05fr .95fr;
}
.split__media img{
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(2,14,28,.10);
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.section--dark .split__media img{
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}
.split__content h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.split__content p{ margin: 0 0 14px; color: var(--muted); }
.section--dark .split__content p{ color: rgba(255,255,255,.84); }

/* Chips */
.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 18px;
}
.chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,98,227,.08);
  border: 1px solid rgba(0,98,227,.18);
  color: rgba(0,98,227,.95);
  font-weight: 800;
  font-size: 13px;
}
.chips--dark .chip{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
}
.actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Mini cards (Visa section) */
.mini-card{
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.92);
  border-radius: 18px;
  padding: 14px 14px;
  box-shadow: 0 10px 28px rgba(2,14,28,.08);
}
.section--dark .mini-card{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}
.mini-card__title{
  font-weight: 900;
  color: rgba(5,32,60,1);
}
.section--dark .mini-card__title{ color: rgba(255,255,255,.94); }
.mini-card__sub{
  margin-top: 4px;
  font-size: 13px;
  color: rgba(11,18,32,.70);
}
.section--dark .mini-card__sub{ color: rgba(255,255,255,.78); }

/* Destinations */
.destinations{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 18px;
}
.dest-card{
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(2,14,28,.10);
  display: grid;
  grid-template-rows: 190px auto;
  transition: transform .18s ease, box-shadow .18s ease;
}
.dest-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 55px rgba(2,14,28,.12);
}
.dest-card img{
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.dest-card__body{
  padding: 16px;
}
.dest-card__body h3{
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  font-weight: 900;
  color: rgba(5,32,60,1);
}
.dest-card__body p{
  margin: 0 0 12px;
  color: rgba(11,18,32,.70);
}

/* Callout */
.callout{
  margin-top: 22px;
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11,18,32,.10);
  background: linear-gradient(90deg, rgba(255,149,2,.12), rgba(0,98,227,.08));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.callout--light{
  background: linear-gradient(90deg, rgba(255,149,2,.14), rgba(255,255,255,1));
}
.callout__content h3{ margin: 0 0 6px; font-weight: 900; color: rgba(5,32,60,1); }
.callout__content p{ margin: 0; color: rgba(11,18,32,.78); }

/* ---------------------------
   Forms
---------------------------- */
.form-row{
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
label{
  font-weight: 800;
  font-size: 13px;
}
input, select, textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.14);
  padding: 12px 12px;
  font-family: inherit;
  outline: none;
  background: #fff;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(0,98,227,.50);
  box-shadow: 0 0 0 4px rgba(0,98,227,.10);
}
.form-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* Info card helpers */
.info-list{
  display: grid;
  gap: 10px;
  margin: 14px 0;
}
.info-item__label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .70;
}
.info-item__value{
  font-weight: 700;
  color: rgba(11,18,32,.86);
}
.divider{
  height: 1px;
  background: rgba(11,18,32,.10);
  margin: 18px 0;
}
.badge-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.badge{
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(11,18,32,.04);
}

/* ---------------------------
   Footer
---------------------------- */
.footer{
  background: #041b33;
  color: rgba(255,255,255,.90);
  padding: 42px 0 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__inner{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
}
.footer__brand img{
  height: 32px;
  margin-bottom: 10px;
}
.footer__brand p{
  margin: 0;
  color: rgba(255,255,255,.78);
  max-width: 62ch;
}
.footer__cols{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.footer__title{
  font-weight: 900;
  margin-bottom: 10px;
}
.footer a{
  color: rgba(255,255,255,.80);
  display: block;
  margin: 8px 0;
  text-decoration: none;
  font-weight: 700;
}
.footer a:hover{ color: #fff; }

.footer__bottom{
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: rgba(255,255,255,.70);
  font-weight: 700;
  font-size: 13px;
}
.footer__sep{ opacity: .5; }

/* ---------------------------
   Floating Back to Top
---------------------------- */
#backToTop {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #FF9502;
  color: #05203C; /* SVG uses currentColor */
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(255, 149, 2, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.2s ease;
  z-index: 999;
  border-radius: 10px;
}
#backToTop:hover {
  box-shadow: 0 16px 40px rgba(255, 149, 2, 0.45);
  transform: translateY(0);
}
#backToTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#backToTop svg{
  display: block;
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}
#backToTop:hover svg{
  transform: translateY(-2px);
}

/* ---------------------------
   Form feedback messages
---------------------------- */
.form-note {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  display: none; /* JS controls visibility */
  align-items: center;
  gap: 10px;
}
.form-note.success {
  display: flex;
  background: rgba(0, 170, 90, 0.12);
  border: 1px solid rgba(0, 170, 90, 0.35);
  color: #0a6b3c;
}
.form-note.error {
  display: flex;
  background: rgba(200, 30, 30, 0.12);
  border: 1px solid rgba(200, 30, 30, 0.35);
  color: #8b1d1d;
}
.form-note svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------------------------
   Responsive
---------------------------- */
@media (max-width: 980px){
  .nav{ display: none; }
  .hamburger{ display: inline-block; }

  .hero__grid{ grid-template-columns: 1fr; }
  .hero-card__img{ height: 240px; }
  .hero__trust{ grid-template-columns: 1fr; }

  .split, .split--reverse{ grid-template-columns: 1fr; }
  .split__media img{ height: 300px; }

  .destinations{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }

  .footer__inner{ grid-template-columns: 1fr; }
  .footer__cols{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .topbar__text{ display: none; }
  .btn--lg{ width: 100%; }
  .callout{ flex-direction: column; align-items: stretch; }

  #backToTop {
    right: 14px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }
  #backToTop svg{
    width: 18px;
    height: 18px;
  }
}

/* Make topbar fully opaque so nothing shows behind it while scrolling */
.topbar{
  background: #ffffff !important;              /* solid base */
  border-bottom: 1px solid rgba(11,18,32,.08);
}

/* Re-apply your nice “travel” gradient as an overlay (still opaque overall) */
.topbar::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255,149,2,.22),
    rgba(0,98,227,.14),
    rgba(255,255,255,1)
  );
  pointer-events: none;
  z-index: -1; /* sits behind the content but above the white base */
}

/* Ensure stacking context is correct */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar{ isolation: isolate; }  /* ensures ::before layers correctly */

/* ===== Hero background: swap image for mobile ===== */
@media (max-width: 720px){
  .hero{
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,.92) 0%,
        rgba(255,255,255,.88) 35%,
        rgba(255,255,255,.96) 100%
      ),
      url("images/hero-airport-mobile.jpg");
    background-size: cover;
    background-position: center top; /* or center 30% */
  }
}

/* ===== Fix header logo stretching on mobile ===== */
.brand__logo{
  height: 34px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Mobile-specific correction */
@media (max-width: 980px){
  .brand__logo{
    height: 30px;        /* slightly smaller on mobile */
    width: auto;
    max-height: 30px;
  }
}

/* ===== Global radius refinement (travel-style, less rounded) ===== */
:root{
  --radius: 10px;
  --radius-lg: 10px;
}

/* Cards */
.card,
.hero-card,
.trust-item,
.dest-card,
.mini-card,
.callout,
.form-note{
  border-radius: 10px !important;
}

/* Buttons */
.btn,
.btn--lg{
  border-radius: 10px !important;
}

/* Inputs */
input,
select,
textarea{
  border-radius: 10px !important;
}

/* Images inside cards */
.split__media img,
.dest-card img{
  border-radius: 10px 10px 0 0;
}

/* Pills & chips stay softer for contrast */
.pill,
.chip,
.badge,
.hero-card__badge{
  border-radius: 999px;
}

/* ===== Tour cards upgrade ===== */
.dest-card{
  overflow: hidden;
}

.dest-card__media{
  position: relative;
}

.dest-card__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.05) 0%,
    rgba(0,0,0,.18) 45%,
    rgba(0,0,0,.55) 100%
  );
  pointer-events: none;
}

.dest-card__badges{
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}

.dest-badge{
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.55);
  color: rgba(5,32,60,.95);
  backdrop-filter: blur(8px);
}

.dest-badge--popular{
  background: rgba(255,149,2,.92);
  border-color: rgba(255,149,2,.55);
  color: #1a1306;
}

.dest-badge--deal{
  background: rgba(0,98,227,.92);
  border-color: rgba(0,98,227,.55);
  color: #fff;
}

.dest-badge--premium{
  background: rgba(5,32,60,.92);
  border-color: rgba(5,32,60,.45);
  color: #fff;
}

.dest-card__meta{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  color: #fff;
}

.dest-card__title{
  font-weight: 950;
  letter-spacing: -0.01em;
  font-size: 18px;
  line-height: 1.2;
}

.dest-card__sub{
  font-size: 13px;
  opacity: .92;
  margin-top: 2px;
}

.dest-card__body{
  padding: 14px 14px 16px;
}

.dest-card__row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.dest-price{
  display: grid;
  gap: 2px;
}
.dest-price__label{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(11,18,32,.62);
}
.dest-price__value{
  font-size: 16px;
  font-weight: 950;
  color: rgba(5,32,60,1);
}

.dest-rating{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,98,227,.08);
  border: 1px solid rgba(0,98,227,.16);
  color: rgba(0,98,227,.95);
  font-weight: 900;
  font-size: 13px;
}
.dest-rating__star{
  color: var(--accent);
}

.dest-card__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.dest-card__actions .btn{
  flex: 1 1 auto;
}

/* ===== Mobile horizontal scroll for destination cards ===== */
@media (max-width: 820px){
  .destinations{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    gap: 14px;

    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    padding: 6px 6px 14px;
    margin-left: -6px;
    margin-right: -6px;
  }

  .destinations::-webkit-scrollbar{
    height: 8px;
  }
  .destinations::-webkit-scrollbar-thumb{
    background: rgba(11,18,32,.18);
    border-radius: 999px;
  }
  .destinations::-webkit-scrollbar-track{
    background: rgba(11,18,32,.06);
    border-radius: 999px;
  }

  .dest-card{
    scroll-snap-align: start;
  }
}

/* Smaller phones: show a bit more of the next card to encourage swiping */
@media (max-width: 520px){
  .destinations{
    grid-auto-columns: 86%;
  }
}

/* ===== Right-edge fade hint for mobile horizontal scroll ===== */
@media (max-width: 820px){
  .destinations{
    position: relative;
  }

  .destinations::after{
    content: "";
    position: sticky;
    right: 0;
    top: 0;
    height: 100%;
    width: 48px;
    pointer-events: none;
    z-index: 5;
    background: linear-gradient(
      to left,
      rgba(255,255,255,0.95),
      rgba(255,255,255,0)
    );
  }
}

/* Slightly stronger fade on very small screens */
@media (max-width: 520px){
  .destinations::after{
    width: 64px;
    background: linear-gradient(
      to left,
      rgba(255,255,255,0.98),
      rgba(255,255,255,0)
    );
  }
}

/* ===== FAQ styling (clean, native, no gradients) ===== */
.faq{
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-item{
  background: #ffffff;
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 8px 22px rgba(5,32,60,.05);
}

.faq-item h3{
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(11,18,32,.95);
}

.faq-item p{
  margin: 0;
  color: rgba(11,18,32,.72);
  line-height: 1.7;
}

/* Subtle hover polish (desktop only) */
@media (hover:hover){
  .faq-item:hover{
    border-color: rgba(11,18,32,.18);
    box-shadow: 0 12px 32px rgba(5,32,60,.08);
  }
}

/* ===== Fix: destination card extra blank space (mobile + overall) ===== */
.dest-card{
  height: auto !important;
  min-height: 0 !important;
  display: flex;
  flex-direction: column;
}

.dest-card__body{
  flex: 0 0 auto;
}

.dest-card__actions{
  margin-top: 12px;
}

/* If some older CSS forces big button height, keep them normal */
.dest-card__actions .btn{
  height: auto;
}

/* ===== Fix: anchor scroll offset for fixed header ===== */
.section,
[id]{
  scroll-margin-top: 120px;
}

@media (max-width: 980px){
  .section,
  [id]{
    scroll-margin-top: 140px; /* mobile header is usually taller */
  }
}

