/* ═══════════════════════════════════════
   VISTA MY TRIP — Global Stylesheet
   Colors: Navy #0A2F5F | Red #D12024 | Gold #F7CA2E
═══════════════════════════════════════ */

/* ── FLAG EMOJI POLYFILL (Ensures flags render on Windows/Chrome) ── */
@font-face {
  font-family: "Twemoji Country Flags";
  src: url("https://cdn.jsdelivr.net/npm/country-flag-emoji-polyfill@0.1.3/dist/TwemojiCountryFlags.woff2") format("woff2");
  unicode-range: U+1F1E6-1F1FF, U+1F3F4, U+E0062-E0063, U+E0065, U+E0067, U+E006C, U+E006E, U+E0073-E0074, U+E0077, U+E007F;
}

:root {
  --navy:       #0A2F5F;
  --navy-dark:  #071E3D;
  --navy-mid:   #163E78;
  --navy-light: #EAF0F9;
  --red:        #D12024;
  --red-dark:   #A81A1D;
  --red-light:  #FDEAEA;
  --gold:       #F7CA2E;
  --gold-dark:  #C9A100;
  --gold-light: #FFFBEA;
  --white:  #FFFFFF;
  --off:    #F8F7F4;
  --border: #E4E8F0;
  --text:   #1A1A2E;
  --muted:  #5B6B8A;
  --light:  #F4F6FB;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --sh-sm: 0 2px 12px rgba(10,47,95,.08);
  --sh-md: 0 6px 30px rgba(10,47,95,.12);
  --sh-lg: 0 16px 50px rgba(10,47,95,.18);
  --fd: "Twemoji Country Flags", 'Playfair Display', Georgia, serif;
  --fb: "Twemoji Country Flags", 'DM Sans', system-ui, sans-serif;
  --ease: all 0.28s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:var(--fb); background:var(--white); color:var(--text); line-height:1.6; overflow-x:hidden; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
ul { list-style:none; }

/* ── ANNOUNCE BAR ── */
.announce {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy-mid));
  color: white; text-align:center; padding:9px 20px;
  font-size:13px; font-weight:500; position:relative; z-index:1001;
}
.announce strong { color:var(--gold); }
.announce a { color:var(--gold); font-weight:700; }

/* ════════════════════════════════════
   NAVBAR — Full (1025px+)
════════════════════════════════════ */
.site-nav {
  position: sticky; top:0; z-index:1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width:1280px; margin:0 auto;
  display:flex; align-items:center; gap:10px;
  height:100px; padding:0 28px;
}

/* Logo */
.nav-logo { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-logo img { height:100px; width:auto; object-fit:contain; }
.nav-logo-text span {
  font-family:var(--fd); font-size:17px; font-weight:700;
  color:var(--navy); display:block; line-height:1.1;
}
.nav-logo-text small {
  font-size:9px; font-weight:500; color:var(--muted);
  letter-spacing:.07em; text-transform:uppercase;
}

/* Desktop links */
.nav-links {
  display:flex; align-items:center; gap:2px; flex:1;
  justify-content: center;
}
.nav-link {
  padding:7px 9px; border-radius:var(--r-sm);
  font-size:13px; font-weight:500; color:var(--text);
  transition:var(--ease); white-space:nowrap;
}
.nav-link:hover, .nav-link.active { background:var(--navy-light); color:var(--navy); }

/* Desktop right */
.nav-end { display:flex; align-items:center; gap:10px; margin-left:auto; flex-shrink:0; }
.nav-phone {
  display:flex; align-items:center; gap:6px;
  font-size:13px; font-weight:700; color:var(--navy);
  background:var(--navy-light); padding:7px 13px; border-radius:var(--r-sm);
  white-space:nowrap;
}
.nav-phone i { color:var(--red); font-size:12px; }

/* Buttons */
.btn-red {
  background:var(--red); color:white; padding:9px 20px;
  border-radius:var(--r-sm); font-size:13.5px; font-weight:700;
  transition:var(--ease); display:inline-flex; align-items:center; gap:6px;
}
.btn-red:hover { background:var(--red-dark); transform:translateY(-1px); box-shadow:0 4px 14px rgba(209,32,36,.35); }

.btn-navy {
  background:var(--navy); color:white; padding:9px 20px;
  border-radius:var(--r-sm); font-size:13.5px; font-weight:700;
  transition:var(--ease); display:inline-flex; align-items:center; gap:6px;
}
.btn-navy:hover { background:var(--navy-dark); transform:translateY(-1px); }

.btn-gold {
  background:var(--gold); color:var(--navy); padding:9px 20px;
  border-radius:var(--r-sm); font-size:13.5px; font-weight:800;
  transition:var(--ease); display:inline-flex; align-items:center; gap:6px;
}
.btn-gold:hover { background:var(--gold-dark); color:white; transform:translateY(-1px); }

/* Hamburger button — hidden on desktop */
.burger-btn {
  display:none; flex-direction:column; justify-content:space-between;
  width:26px; height:18px; cursor:pointer; background:none; border:none;
  padding:0; z-index:1010; flex-shrink:0;
}
.burger-btn span {
  width:100%; height:2.5px; background:var(--navy);
  border-radius:4px; transition:all .3s ease; display:block;
}
.burger-btn.open span:nth-child(1) { transform:translateY(7.75px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.burger-btn.open span:nth-child(3) { transform:translateY(-7.75px) rotate(-45deg); }

/* ════════════════════════════════════
   HAMBURGER DRAWER (tablet + mobile)
════════════════════════════════════ */
.mob-drawer {
  position:fixed; inset:0; z-index:999;
  pointer-events:none; /* inactive by default */
}

/* Dark backdrop */
.mob-drawer-backdrop {
  position:absolute; inset:0;
  background:rgba(7,30,61,.5);
  opacity:0; transition:opacity .35s ease;
}

/* Slide-in panel */
.mob-drawer-panel {
  position:absolute; top:0; right:0; bottom:0;
  width:min(320px, 85vw);
  background:white;
  display:flex; flex-direction:column;
  transform:translateX(100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(10,47,95,.18);
  overflow-y:auto;
}

/* Open state */
.mob-drawer.open { pointer-events:all; }
.mob-drawer.open .mob-drawer-backdrop { opacity:1; }
.mob-drawer.open .mob-drawer-panel { transform:translateX(0); }

/* Panel header */
.mob-panel-head {
  display:flex; align-items:center; justify-content:space-between;
  padding:27px 20px; border-bottom:1px solid var(--border);
  flex-shrink:0;
  margin-top: 93px;
}
.mob-panel-head .logo img { height:42px; }
.mob-close-btn {
  width:36px; height:36px; background:var(--light);
  border-radius:var(--r-sm); display:flex; align-items:center; justify-content:center;
  color:var(--navy); font-size:18px; cursor:pointer; border:none;
  transition:var(--ease); flex-shrink:0;
}
.mob-close-btn:hover { background:var(--red-light); color:var(--red); }

/* Panel links */
.mob-panel-links {
  display:flex; flex-direction:column; padding:12px 0; flex:1;
}
.mob-panel-link {
  display:flex; align-items:center; gap:12px;
  padding:13px 22px; font-size:15px; font-weight:600; color:var(--text);
  border-bottom:1px solid var(--border); transition:var(--ease);
}
.mob-panel-link:last-child { border-bottom:none; }
.mob-panel-link:hover { background:var(--navy-light); color:var(--navy); padding-left:28px; }
.mob-panel-link i { width:20px; text-align:center; color:var(--red); font-size:14px; }

/* Panel CTA */
.mob-panel-cta {
  padding:20px; border-top:1px solid var(--border); flex-shrink:0;
  display:flex; flex-direction:column; gap:10px;
}
.mob-panel-cta .btn-red,
.mob-panel-cta .btn-navy { justify-content:center; padding:12px 20px; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  min-height:92vh; position:relative;
  display:flex; align-items:center; overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0;
  background:linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
}
.hero-img {
  position:absolute; inset:0;
  background-image:url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1600&q=80');
  background-size:cover; background-position:center; opacity:.25;
}
.hero-grad {
  position:absolute; inset:0;
  background:linear-gradient(to right, rgba(7,30,61,.9) 0%, rgba(10,47,95,.65) 55%, rgba(10,47,95,.1) 100%);
}
.hero::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:5px;
  background:linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
}
.hero-content {
  position:relative; z-index:1;
  max-width:1280px; margin:0 auto;
  padding:90px 28px 70px; width:100%;
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
}
.hero-pill {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(247,202,46,.18); border:1px solid rgba(247,202,46,.45);
  color:var(--gold); padding:6px 15px; border-radius:100px;
  font-size:11px; font-weight:700; letter-spacing:.07em; text-transform:uppercase; margin-bottom:22px;
}
.hero-pill span { width:6px; height:6px; background:var(--gold); border-radius:50%; display:inline-block; }
.hero-h1 {
  font-family:var(--fd); font-size:clamp(36px,5vw,66px);
  font-weight:700; color:white; line-height:1.1; margin-bottom:20px;
}
.hero-h1 em { font-style:normal; color:var(--gold); }
.hero-h1 .ar { color:#FF7A7A; }
.hero-sub {
  font-size:15.5px; color:rgba(255,255,255,.72);
  max-width:440px; line-height:1.7; margin-bottom:34px;
}
.hero-acts { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:44px; }
.btn-wh-outline {
  border:2px solid rgba(255,255,255,.42); color:white;
  padding:10px 24px; border-radius:var(--r-sm);
  font-size:14px; font-weight:700; transition:var(--ease);
  display:inline-flex; align-items:center; gap:7px;
}
.btn-wh-outline:hover { border-color:white; background:rgba(255,255,255,.1); }
.h-stats { display:flex; gap:32px; flex-wrap:wrap; }
.h-stat .num { font-family:var(--fd); font-size:26px; font-weight:700; color:var(--gold); line-height:1; }
.h-stat .lbl { font-size:11px; color:rgba(255,255,255,.6); margin-top:3px; font-weight:500; }

/* Search card */
.hero-search {
  background:white; border-radius:var(--r-lg);
  padding:26px 24px; box-shadow:var(--sh-lg); border-top:5px solid var(--gold);
}
.srch-title { font-family:var(--fd); font-size:19px; font-weight:700; color:var(--navy); margin-bottom:3px; }
.srch-sub { font-size:12.5px; color:var(--muted); margin-bottom:20px; }
.sf { margin-bottom:13px; }
.sf label {
  font-size:10px; font-weight:700; color:var(--navy);
  letter-spacing:.07em; text-transform:uppercase; display:block; margin-bottom:5px;
}
.sf select, .sf input {
  width:100%; padding:10px 13px;
  border:1.5px solid var(--border); border-radius:var(--r-sm);
  font-family:inherit; font-size:13.5px; color:var(--text);
  background:var(--light); appearance:none; -webkit-appearance:none;
  outline:none; transition:var(--ease);
}
.sf select:focus, .sf input:focus { border-color:var(--navy); background:white; }
.sf-row { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.srch-btn {
  width:100%; padding:13px; border-radius:var(--r-sm);
  background:var(--navy); color:white;
  font-size:14.5px; font-weight:700; font-family:inherit;
  display:flex; align-items:center; justify-content:center; gap:8px;
  margin-top:6px; transition:var(--ease); cursor:pointer; border:none;
}
.srch-btn:hover { background:var(--navy-dark); box-shadow:0 5px 18px rgba(10,47,95,.38); }
.srch-note { text-align:center; font-size:11.5px; color:var(--muted); margin-top:10px; }
.srch-note a { color:var(--red); font-weight:700; }

/* ════════════════════════════════════
   SECTION COMMON
════════════════════════════════════ */
section { padding:72px 24px; }
.container { max-width:1280px; margin:0 auto; }
.sec-tag {
  display:inline-flex; align-items:center; gap:6px;
  font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  padding:5px 12px; border-radius:100px; margin-bottom:10px;
}
.tn { background:var(--navy-light); color:var(--navy); }
.tr { background:var(--red-light); color:var(--red); }
.tg { background:var(--gold-light); color:var(--gold-dark); }
.sec-title {
  font-family:var(--fd); font-size:clamp(24px,3.2vw,38px);
  font-weight:700; color:var(--navy); line-height:1.15; margin-bottom:9px;
}
.sec-sub { font-size:15px; color:var(--muted); max-width:500px; line-height:1.65; }
.sec-hd {
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:16px; margin-bottom:36px; flex-wrap:wrap;
}
.view-all {
  font-size:13.5px; font-weight:700; color:var(--red);
  display:flex; align-items:center; gap:5px; transition:var(--ease); white-space:nowrap;
}
.view-all:hover { gap:9px; }

/* PAGE HERO (inner pages) */
.page-hero {
  background:linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding:70px 28px 60px; position:relative; overflow:hidden;
}
.page-hero::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
}
.page-hero-bg {
  position:absolute; inset:0; opacity:.15;
  background-size:cover; background-position:center;
}
.page-hero-inner { position:relative; z-index:1; max-width:1280px; margin:0 auto; }
.page-hero-breadcrumb {
  display:flex; align-items:center; gap:8px;
  font-size:12px; color:rgba(255,255,255,.55); margin-bottom:14px;
}
.page-hero-breadcrumb a { color:rgba(255,255,255,.55); }
.page-hero-breadcrumb a:hover { color:var(--gold); }
.page-hero-breadcrumb i { font-size:10px; }
.page-hero h1 {
  font-family:var(--fd); font-size:clamp(28px,4vw,50px);
  font-weight:700; color:white; line-height:1.15; margin-bottom:12px;
}
.page-hero p { font-size:16px; color:rgba(255,255,255,.72); max-width:580px; line-height:1.65; }

/* Filter Bar (inner pages) */
.filter-bar {
  background:white; border-bottom:1px solid var(--border);
  padding:0 28px; position:sticky; top:100px; z-index:99;
}
.filter-bar-inner {
  max-width:1280px; margin:0 auto;
  display:flex; align-items:center; gap:8px;
  overflow-x:auto; height:56px;
  scrollbar-width:none;
}
.filter-bar-inner::-webkit-scrollbar { display:none; }
.filter-chip {
  padding:7px 18px; border-radius:100px; white-space:nowrap;
  font-size:13px; font-weight:600; color:var(--muted);
  background:var(--light); border:1.5px solid transparent;
  transition:var(--ease); cursor:pointer; flex-shrink:0;
}
.filter-chip.on { background:var(--navy); color:white; border-color:var(--navy); }
.filter-chip:hover:not(.on) { border-color:var(--navy); color:var(--navy); }

/* ── PACKAGE DETAIL PAGES ── */
.detail-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 58%, var(--navy-mid) 100%);
}
.detail-hero::after {
  content:'';
  position:absolute;
  inset:auto 0 0;
  height:4px;
  background:linear-gradient(90deg, var(--gold), var(--red), var(--gold));
}
.detail-hero-bg {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:.2;
}
.detail-hero-ov {
  position:absolute;
  inset:0;
  background:linear-gradient(to right, rgba(7,30,61,.9) 0%, rgba(10,47,95,.72) 30%, rgba(10,47,95,.18) 100%);
}
.detail-hero-inner {
  position:relative;
  z-index:1;
  max-width:1280px;
  margin:0 auto;
  padding: 0 28px;
  display:grid;
  grid-template-columns:minmax(0, 1.12fr) minmax(310px, .88fr);
  gap:28px;
  align-items:center;
}
.detail-crumb {
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
  color:rgba(255,255,255,.62);
  font-size:12px;
  margin-bottom:14px;
}
.detail-crumb a { color:rgba(255,255,255,.75); }
.detail-crumb a:hover { color:var(--gold); }
.detail-crumb i { font-size:10px; }
.detail-labels {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.detail-pill {
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:7px 14px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.detail-pill.navy {
  color:var(--gold);
  background:rgba(247,202,46,.14);
  border:1px solid rgba(247,202,46,.28);
}
.detail-pill.red {
  color:white;
  background:rgba(209,32,36,.2);
  border:1px solid rgba(209,32,36,.34);
}
.detail-title {
  font-family:var(--fd);
  font-size:clamp(32px, 5vw, 58px);
  color:white;
  line-height:1.08;
  margin-bottom:15px;
}
.detail-sub {
  color:rgba(255,255,255,.75);
  font-size:15.5px;
  line-height:1.75;
  max-width:640px;
  margin-bottom:24px;
}
.detail-meta-row {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:26px;
}
.detail-meta-chip {
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.12);
  color:white;
  font-size:12.5px;
  font-weight:600;
}
.detail-meta-chip i { color:var(--gold); }
.detail-hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.detail-side {
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:24px;
  backdrop-filter:blur(14px);
  box-shadow:var(--sh-lg);
}
.detail-side-title {
  font-family:var(--fd);
  font-size:28px;
  color:white;
  margin-bottom:6px;
}
.detail-side-sub {
  color:rgba(255,255,255,.68);
  font-size:13px;
  margin-bottom:18px;
}
.detail-price-line {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:16px;
  margin-bottom:18px;
}
.detail-price-line .price {
  font-family:var(--fd);
  font-size:38px;
  line-height:1;
  color:var(--gold);
}
.detail-price-line .per {
  color:rgba(255,255,255,.72);
  font-size:12px;
}
.detail-rating {
  text-align:right;
  color:white;
  font-size:12px;
}
.detail-rating .stars {
  color:var(--gold);
  letter-spacing:2px;
  font-size:13px;
  margin-bottom:4px;
}
.detail-facts {
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
  margin-bottom:18px;
}
.detail-fact {
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  padding:14px;
}
.detail-fact .k {
  display:block;
  color:rgba(255,255,255,.6);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:5px;
}
.detail-fact .v {
  color:white;
  font-size:14px;
  font-weight:700;
  line-height:1.45;
}
.detail-side-list {
  display:grid;
  gap:10px;
  margin-bottom:20px;
}
.detail-side-list li {
  display:flex;
  gap:10px;
  color:rgba(255,255,255,.8);
  font-size:13.5px;
  line-height:1.6;
}
.detail-side-list i { color:var(--gold); margin-top:3px; }
.detail-side-actions {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.detail-intro {
  margin-top:-34px;
  position:relative;
  z-index:2;
}
.trip-gallery-wrap {
  margin-top:-26px;
  position:relative;
  z-index:2;
}
.trip-gallery-shell {
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--sh-md);
  padding:22px;
}
.trip-gallery-top {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
  flex-wrap:wrap;
}
.trip-gallery-top p {
  font-size:14px;
  color:var(--muted);
  line-height:1.65;
}
.trip-gallery-stage {
  position:relative;
  border-radius:20px;
  overflow:hidden;
  background:var(--navy-dark);
}
.trip-gallery-main {
  display:flex;
  overflow:hidden;
}
.trip-gallery-slide {
  min-width:100%;
  position:relative;
  display:none;
}
.trip-gallery-slide.active { display:block; }
.trip-gallery-slide img {
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
}
.trip-gallery-caption {
  position:absolute;
  inset:auto 0 0;
  padding:16px 18px;
  background:linear-gradient(to top, rgba(7,30,61,.82), rgba(7,30,61,.15), transparent);
  color:white;
}
.trip-gallery-caption strong {
  display:block;
  font-family:var(--fd);
  font-size:18px;
  margin-bottom:4px;
}
.trip-gallery-caption span {
  display:block;
  color:rgba(255,255,255,.76);
  font-size:13px;
}
.trip-gallery-nav {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:var(--sh-sm);
  z-index:2;
}
.trip-gallery-nav:hover { background:white; }
.trip-gallery-nav.prev { left:16px; }
.trip-gallery-nav.next { right:16px; }
.trip-gallery-count {
  position:absolute;
  top:16px;
  right:16px;
  z-index:2;
  background:rgba(7,30,61,.72);
  color:white;
  font-size:12px;
  font-weight:700;
  padding:7px 12px;
  border-radius:999px;
  backdrop-filter:blur(8px);
}
.trip-gallery-thumbs {
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}
.trip-gallery-thumb {
  border:2px solid transparent;
  border-radius:14px;
  overflow:hidden;
  background:transparent;
  padding:0;
}
.trip-gallery-thumb.active {
  border-color:var(--red);
  box-shadow:0 0 0 3px rgba(209,32,36,.12);
}
.trip-gallery-thumb img {
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
}
.trip-gallery-thumb:hover img { transform:scale(1.03); }
.trip-gallery-thumb img { transition:var(--ease); }
.detail-intro-card,
.detail-card {
  background:white;
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--sh-sm);
}
.detail-intro-card {
  padding:30px;
  display:grid;
  grid-template-columns:minmax(0,1.18fr) minmax(260px,.82fr);
  gap:22px;
}
.detail-intro-card p,
.detail-card p {
  color:var(--muted);
  font-size:14px;
  line-height:1.75;
}
.detail-info-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}
.detail-info-box {
  background:var(--light);
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
}
.detail-info-box h3 {
  font-family:var(--fd);
  font-size:17px;
  color:var(--navy);
  margin-bottom:6px;
}
.detail-grid-2 {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:22px;
}
.detail-card {
  padding:28px 24px;
}
.detail-card h3 {
  font-family:var(--fd);
  font-size:23px;
  color:var(--navy);
  margin-bottom:14px;
}
.detail-list {
  display:grid;
  gap:10px;
}
.detail-list li {
  display:flex;
  gap:10px;
  color:var(--muted);
  font-size:13.8px;
  line-height:1.7;
}
.detail-list i { color:var(--red); margin-top:4px; }
.detail-itinerary {
  display:grid;
  gap:16px;
}
.detail-day {
  background:white;
  border:1px solid var(--border);
  border-radius:20px;
  padding:22px;
  transition:var(--ease);
}
.detail-day:hover {
  transform:translateY(-4px);
  box-shadow:var(--sh-sm);
}
.detail-day-top {
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.detail-day-top h3 {
  font-family:var(--fd);
  font-size:20px;
  color:var(--navy);
}
.detail-day-badge {
  background:var(--navy-light);
  color:var(--navy);
  font-size:11px;
  font-weight:700;
  padding:7px 12px;
  border-radius:999px;
  white-space:nowrap;
}
.detail-day p {
  color:var(--muted);
  font-size:14px;
  line-height:1.75;
}
.detail-day-points {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:14px;
}
.detail-day-points span {
  font-size:11.5px;
  font-weight:700;
  color:var(--navy);
  background:var(--navy-light);
  border-radius:999px;
  padding:6px 11px;
}

@media (max-width: 1080px) {
  .detail-hero-inner,
  .detail-intro-card,
  .detail-grid-2 {
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px) {
  .detail-hero-inner { padding:72px 18px 56px; }
  .detail-hero-actions a,
  .detail-side-actions a { width:100%; justify-content:center; }
  .trip-gallery-shell { padding:16px; }
  .trip-gallery-nav {
    width:38px;
    height:38px;
  }
  .trip-gallery-nav.prev { left:10px; }
  .trip-gallery-nav.next { right:10px; }
  .trip-gallery-thumbs {
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
  .detail-facts,
  .detail-info-grid { grid-template-columns:1fr; }
  .detail-intro-card,
  .detail-card,
  .detail-day { padding:22px 18px; }
  .detail-price-line {
    flex-direction:column;
    align-items:flex-start;
  }
  .detail-rating { text-align:left; }
}

/* ── TABS ── */
.tab-row { display:flex; gap:6px; margin-bottom:28px; flex-wrap:wrap; }
.tab {
  padding:7px 18px; border-radius:100px; font-size:13px; font-weight:600;
  color:var(--muted); background:var(--light); border:1.5px solid transparent;
  transition:var(--ease); cursor:pointer;
}
.tab.on { background:var(--navy); color:white; border-color:var(--navy); }
.tab:hover:not(.on) { border-color:var(--navy); color:var(--navy); }

/* ── DEST CARDS ── */
.dest-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(190px,1fr)); gap:16px; }
.dest-card {
  position:relative; border-radius:var(--r-md); overflow:hidden;
  aspect-ratio:3/4; cursor:pointer; display:block; transition:var(--ease);
}
.dest-card:hover { transform:translateY(-6px); box-shadow:var(--sh-lg); }
.dest-card img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.dest-card:hover img { transform:scale(1.07); }
.dest-grad { position:absolute; inset:0; background:linear-gradient(to top, rgba(7,30,61,.85) 0%, rgba(0,0,0,.05) 55%, transparent 100%); }
.dest-body { position:absolute; bottom:0; left:0; right:0; padding:16px 14px; color:white; }
.dest-name { font-family:var(--fd); font-size:17px; font-weight:700; line-height:1.2; }
.dest-pkgs { font-size:11px; color:rgba(255,255,255,.7); margin-top:3px; }
.dest-badge {
  position:absolute; top:12px; left:0;
  background:var(--red); color:white; font-size:10px; font-weight:700;
  padding:4px 11px 4px 9px; border-radius:0 100px 100px 0; letter-spacing:.03em; text-transform:uppercase;
}
.dest-badge.gb { background:var(--gold-dark); }

/* ── STATS BANNER ── */
.stats-banner { background:var(--navy); padding:52px 24px; }
.stats-inner {
  max-width:1280px; margin:0 auto;
  display:grid; grid-template-columns:repeat(auto-fit, minmax(150px,1fr)); gap:28px; text-align:center;
}
.stat-item .num { font-family:var(--fd); font-size:44px; font-weight:700; color:var(--gold); line-height:1; }
.stat-item .lbl { font-size:12.5px; color:rgba(255,255,255,.65); font-weight:500; margin-top:7px; }

/* ── PKG CARDS ── */
.pkg-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px,1fr)); gap:22px; }
.pkg-card {
  background:white; border-radius:var(--r-md); overflow:hidden;
  border:1px solid var(--border); transition:var(--ease); display:flex; flex-direction:column;
}
.pkg-card:hover { transform:translateY(-7px); box-shadow:var(--sh-md); border-color:transparent; }
.pkg-img { position:relative; aspect-ratio:16/10; overflow:hidden; }
.pkg-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.pkg-card:hover .pkg-img img { transform:scale(1.06); }
.pkg-off {
  position:absolute; top:12px; left:0;
  background:var(--red); color:white; font-size:10.5px; font-weight:700;
  padding:4px 11px 4px 9px; border-radius:0 100px 100px 0;
}
.pkg-dur {
  position:absolute; top:12px; right:12px;
  background:rgba(10,47,95,.78); color:white; font-size:10.5px; font-weight:600;
  padding:3px 10px; border-radius:100px; backdrop-filter:blur(6px);
}
.pkg-body { padding:16px 18px 18px; display:flex; flex-direction:column; flex:1; }
.pkg-title { font-family:var(--fd); font-size:16px; font-weight:700; color:var(--navy); margin-bottom:8px; line-height:1.3; }
.pkg-meta { display:flex; align-items:center; gap:12px; font-size:12.5px; color:var(--muted); margin-bottom:9px; flex-wrap:wrap; }
.pkg-meta span { display:flex; align-items:center; gap:4px; }
.pkg-meta i { color:var(--red); font-size:11px; }
.pkg-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:10px; }
.pkg-tag { font-size:11px; font-weight:700; color:var(--navy); background:var(--navy-light); padding:4px 10px; border-radius:4px; }
.pkg-desc { font-size:13px; color:var(--muted); line-height:1.6; margin-bottom:10px; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.pkg-stars { color:var(--gold-dark); font-size:12px; letter-spacing:1px; }
.pkg-rev { font-size:12px; color:var(--muted); }
.pkg-foot {
  display:flex; align-items:flex-end; justify-content:space-between;
  margin-top:auto; padding-top:12px; border-top:1px solid var(--border);
}
.pkg-old { font-size:12px; color:var(--muted); text-decoration:line-through; }
.pkg-new { font-family:var(--fd); font-size:21px; font-weight:700; color:var(--navy); line-height:1; }
.pkg-per { font-size:10.5px; color:var(--muted); }
.pkg-cta {
  background:var(--navy-light); color:var(--navy); padding:8px 15px;
  border-radius:var(--r-sm); font-size:12.5px; font-weight:700; transition:var(--ease);
}
.pkg-card:hover .pkg-cta { background:var(--navy); color:white; }
.pkg-enq {
  background:var(--red); color:white; padding:8px 15px;
  border-radius:var(--r-sm); font-size:12.5px; font-weight:700; transition:var(--ease);
  border: none; cursor: pointer; font-family: inherit;
}
.pkg-card:hover .pkg-enq { background:var(--red-dark); }
.pkg-actions { display: flex; gap: 6px; }

/* ── WEEKEND CARDS ── */
.wknd-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(260px,1fr)); gap:20px; }
.wknd-card {
  background:white; border-radius:var(--r-md); overflow:hidden;
  border:1px solid var(--border); transition:var(--ease); display:block;
}
.wknd-card:hover { transform:translateY(-5px); box-shadow:var(--sh-md); border-color:var(--navy-light); }
.wknd-img { position:relative; height:195px; overflow:hidden; }
.wknd-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.wknd-card:hover .wknd-img img { transform:scale(1.06); }
.wknd-off {
  position:absolute; top:11px; left:0;
  background:var(--gold-dark); color:white; font-size:10px; font-weight:700;
  padding:4px 10px 4px 8px; border-radius:0 100px 100px 0;
}
.wknd-body { padding:15px 17px 17px; }
.wknd-title { font-family:var(--fd); font-size:15.5px; font-weight:700; color:var(--navy); margin-bottom:7px; }
.wknd-meta { display:flex; gap:10px; font-size:12px; color:var(--muted); flex-wrap:wrap; }
.wknd-meta span { display:flex; align-items:center; gap:4px; }
.wknd-meta i { color:var(--red); font-size:10px; }
.wknd-foot { display:flex; align-items:center; justify-content:space-between; margin-top:12px; padding-top:11px; border-top:1px solid var(--border); }
.wknd-price { font-family:var(--fd); font-size:19px; font-weight:700; color:var(--navy); }
.wknd-cta { background:var(--red); color:white; padding:7px 13px; border-radius:var(--r-sm); font-size:12px; font-weight:700; transition:var(--ease); }
.wknd-card:hover .wknd-cta { background:var(--red-dark); }

/* ── THEME CARDS ── */
.theme-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(165px,1fr)); gap:14px; }
.theme-card {
  position:relative; border-radius:var(--r-md); overflow:hidden;
  aspect-ratio:1; cursor:pointer; display:block; transition:var(--ease);
}
.theme-card:hover { transform:translateY(-5px); box-shadow:var(--sh-md); }
.theme-card img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.theme-card:hover img { transform:scale(1.09); }
.theme-ov { position:absolute; inset:0; background:linear-gradient(to top, rgba(7,30,61,.8) 0%, rgba(0,0,0,.05) 100%); }
.theme-lbl { position:absolute; bottom:0; left:0; right:0; padding:14px 10px; text-align:center; color:white; }
.theme-emo { font-size:24px; display:block; margin-bottom:4px; }
.theme-nm { font-family:var(--fd); font-size:14px; font-weight:700; }

/* ── INTERNATIONAL CARDS ── */
.intl-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(210px,1fr)); gap:18px; }
.intl-card {
  position:relative; border-radius:var(--r-md); overflow:hidden;
  aspect-ratio:4/5; cursor:pointer; display:block; transition:var(--ease);
}
.intl-card:hover { transform:translateY(-6px); box-shadow:var(--sh-lg); }
.intl-card img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.intl-card:hover img { transform:scale(1.07); }
.intl-ov { position:absolute; inset:0; background:linear-gradient(to top, rgba(7,30,61,.88) 0%, rgba(0,0,0,0) 55%); }
.intl-body { position:absolute; bottom:0; left:0; right:0; padding:16px 15px; }
.intl-flag { font-size:20px; margin-bottom:3px; }
.intl-name { font-family:var(--fd); font-size:18px; font-weight:700; color:white; }
.intl-nights { font-size:11px; color:rgba(255,255,255,.7); margin-top:2px; }
.intl-price { font-size:13px; font-weight:700; color:var(--gold); margin-top:6px; }

/* ── WHY ── */
.why-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(240px,1fr)); gap:20px; }
.why-card {
  background:white; border-radius:var(--r-md); padding:26px 22px;
  border:1px solid var(--border); transition:var(--ease); display:flex; flex-direction:column; gap:13px;
}
.why-card:hover { border-color:var(--navy); transform:translateY(-4px); box-shadow:var(--sh-sm); }
.why-icon { width:50px; height:50px; border-radius:var(--r-sm); display:flex; align-items:center; justify-content:center; font-size:20px; }
.wi-n { background:var(--navy-light); color:var(--navy); }
.wi-r { background:var(--red-light); color:var(--red); }
.wi-g { background:var(--gold-light); color:var(--gold-dark); }
.why-card h3 { font-family:var(--fd); font-size:16px; font-weight:700; color:var(--navy); }
.why-card p { font-size:13.5px; color:var(--muted); line-height:1.65; }

/* ── REVIEWS ── */
.review-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(290px,1fr)); gap:18px; }
.review-card {
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1);
  border-top:3px solid var(--gold); border-radius:var(--r-md); padding:22px; transition:var(--ease);
}
.review-card:hover { background:rgba(255,255,255,.11); }
.rev-stars { color:var(--gold); font-size:14px; letter-spacing:2px; margin-bottom:12px; }
.rev-text { font-size:14px; line-height:1.7; color:rgba(255,255,255,.82); margin-bottom:16px; font-style:italic; }
.rev-author { display:flex; align-items:center; gap:10px; }
.rev-av {
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:700; color:white; flex-shrink:0; background:var(--red);
}
.rev-name { font-size:13.5px; font-weight:700; color:white; }
.rev-trip { font-size:11.5px; color:rgba(255,255,255,.45); margin-top:2px; }

/* ── RATING STRIP ── */
.rating-strip { background:var(--gold); padding:18px 24px; }
.rating-inner {
  max-width:1280px; margin:0 auto;
  display:flex; align-items:center; justify-content:center; gap:18px; flex-wrap:wrap;
}
.rating-text { font-size:15px; font-weight:700; color:var(--navy); }
.rating-stars { font-size:18px; color:var(--navy); letter-spacing:3px; }
.rating-count { font-size:13px; color:var(--navy-mid); font-weight:600; }
.rating-div { width:1px; height:26px; background:rgba(10,47,95,.25); }

/* ── CTA STRIP ── */
.cta-strip {
  background:linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-mid));
  padding:68px 24px; text-align:center; position:relative; overflow:hidden;
}
.cta-strip::before {
  content:''; position:absolute; top:-40px; right:-40px;
  width:280px; height:280px; border-radius:50%; background:rgba(247,202,46,.07); pointer-events:none;
}
.cta-strip::after {
  content:''; position:absolute; bottom:-60px; left:-60px;
  width:360px; height:360px; border-radius:50%; background:rgba(209,32,36,.06); pointer-events:none;
}
.cta-strip h2 { font-family:var(--fd); font-size:clamp(26px,3.8vw,44px); font-weight:700; color:white; margin-bottom:14px; }
.cta-strip h2 span { color:var(--gold); }
.cta-strip p { font-size:15px; color:rgba(255,255,255,.7); margin-bottom:32px; max-width:480px; margin-left:auto; margin-right:auto; }
.cta-btns { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; position:relative; z-index:1; }
.cta-gold {
  background:var(--gold); color:var(--navy); padding:13px 30px;
  border-radius:var(--r-sm); font-size:14.5px; font-weight:800; transition:var(--ease);
  display:flex; align-items:center; gap:7px;
}
.cta-gold:hover { background:var(--gold-dark); color:white; transform:translateY(-2px); box-shadow:0 8px 24px rgba(247,202,46,.38); }
.cta-wh {
  background:rgba(255,255,255,.1); border:2px solid rgba(255,255,255,.4); color:white;
  padding:13px 30px; border-radius:var(--r-sm); font-size:14.5px; font-weight:700;
  transition:var(--ease); display:flex; align-items:center; gap:7px;
}
.cta-wh:hover { background:rgba(255,255,255,.18); border-color:white; }
.cta-wa { background:rgba(37,211,102,.18); border:2px solid rgba(37,211,102,.5); }

/* ── FOOTER ── */
footer { background:var(--navy-dark); color:rgba(255,255,255,.7); padding:60px 24px 26px; }
.footer-inner { max-width:1280px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:1.6fr repeat(3,1fr); gap:44px; margin-bottom:44px; }
.ft-brand .logo { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.ft-brand .logo img { height:38px; }
.ft-brand .logo span { font-family:var(--fd); font-size:17px; color:white; font-weight:700; }
.ft-tagline { font-size:11.5px; color:var(--gold); font-weight:600; letter-spacing:.04em; margin-bottom:12px; font-style:italic; }
.ft-brand p { font-size:13.5px; line-height:1.7; color:rgba(255,255,255,.5); margin-bottom:18px; }
.socials { display:flex; gap:8px; flex-wrap:wrap; }
.soc {
  width:34px; height:34px; background:rgba(255,255,255,.07);
  border-radius:var(--r-sm); display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.6); font-size:13.5px; transition:var(--ease);
}
.soc:hover { background:var(--red); color:white; }
.soc.wa:hover { background:#25D366; }
.ft-col h4 {
  font-size:11px; font-weight:700; color:var(--gold);
  letter-spacing:.1em; text-transform:uppercase; margin-bottom:16px;
}
.ft-links { display:flex; flex-direction:column; gap:9px; }
.ft-links a {
  font-size:13.5px; color:rgba(255,255,255,.5); transition:var(--ease);
  display:flex; align-items:center; gap:5px;
}
.ft-links a:hover { color:white; padding-left:4px; }
.ft-links a i { font-size:9px; color:var(--red); }
.c-list { display:flex; flex-direction:column; gap:12px; }
.c-item { display:flex; align-items:flex-start; gap:9px; font-size:13.5px; color:rgba(255,255,255,.55); }
.c-item i { color:var(--gold); font-size:13px; margin-top:2px; flex-shrink:0; }
.ft-bottom {
  border-top:1px solid rgba(255,255,255,.08); padding-top:22px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px;
}
.ft-bottom p { font-size:12.5px; color:rgba(255,255,255,.35); }
.ft-blinks { display:flex; gap:18px; }
.ft-blinks a { font-size:12.5px; color:rgba(255,255,255,.35); transition:var(--ease); }
.ft-blinks a:hover { color:rgba(255,255,255,.7); }

/* ── WHATSAPP FAB ── */
.wa-fab {
  position:fixed; bottom:24px; right:22px;
  width:52px; height:52px; background:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:white; font-size:25px;
  box-shadow:0 4px 16px rgba(37,211,102,.5); z-index:995; transition:var(--ease);
}
.wa-fab:hover { transform:scale(1.12); box-shadow:0 6px 22px rgba(37,211,102,.65); }

/* ════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════ */

/* ── 1240px — Squeeze desktop nav to fit screens down to 1025px ── */
@media (max-width:1300px) {
  .nav-inner { padding: 0 14px; gap: 5px; }
  .nav-link { padding: 6px 6px; font-size: 13px; }
  .nav-end { gap: 8px; }
  .nav-phone { padding: 6px 10px; font-size: 12px; }
  .nav-logo img { height: 70px; }
  .nav-end .btn-red { padding: 7px 14px; font-size: 12.5px; }
}

/* ── 1024px — Tablet landscape: show hamburger, hide desktop nav ── */
@media (max-width:1024px) {
  /* Show burger, hide nav links + phone + CTA */
  .burger-btn  { display:flex; }
  .nav-links   { display:none; }
  .nav-phone   { display:none; }
  .nav-end .btn-red { display:none; }

  .nav-inner { height: 80px; padding:0 20px; justify-content:space-between; }
  .nav-logo img { height:100px; }

  /* Hero stack */
  .hero-content {
    grid-template-columns:1fr; gap:36px;
    padding:70px 20px 60px; text-align:center;
  }
  .hero-h1 { font-size:clamp(30px,5vw,46px); margin-left:auto; margin-right:auto; }
  .hero-sub { margin-left:auto; margin-right:auto; }
  .hero-acts { justify-content:center; }
  .h-stats   { justify-content:center; }
  .hero-search { max-width:540px; margin:0 auto; text-align:left; }

  /* Filter bar sticks below nav at new height */
  .filter-bar { top:80px; }

  /* Footer */
  .footer-top { grid-template-columns:1fr 1fr; gap:30px; }
}

/* ── 768px — Tablet portrait ── */
@media (max-width:768px) {
  section { padding:52px 18px; }

  .dest-grid { grid-template-columns:repeat(auto-fill, minmax(155px,1fr)); }
  .pkg-grid  { grid-template-columns:1fr; }
  .intl-grid { grid-template-columns:repeat(auto-fill, minmax(170px,1fr)); }
  .theme-grid{ grid-template-columns:repeat(3,1fr); }

  .stats-inner { grid-template-columns:repeat(2,1fr); }
  .sf-row { grid-template-columns:1fr; }
}

/* ── INQUIRY POPUP MODAL ── */
.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.inquiry-modal.show {
  visibility: visible;
  opacity: 1;
}
.inquiry-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 30, 61, 0.7);
  backdrop-filter: blur(4px);
}
.inquiry-modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: all 0.3s ease;
  text-align: left;
}
.inquiry-modal.show .inquiry-modal-content {
  transform: translateY(0);
}
.inquiry-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--navy);
  cursor: pointer;
  transition: var(--ease);
}
.inquiry-close-btn:hover {
  background: var(--red-light);
  color: var(--red);
}

/* ── 600px — Mobile ── */
@media (max-width:600px) {
  .nav-inner { height:70px; padding:0 16px; }
  .nav-logo img { height:80px; }

  section { padding:44px 14px; }

  .footer-top { grid-template-columns:1fr; gap:24px; }
  .ft-bottom { flex-direction:column; gap:8px; }
  .ft-blinks { flex-wrap:wrap; gap:12px; }

  .h-stats { gap:18px; }
  .hero-content { padding:56px 14px 44px; }

  .cta-btns { flex-direction:column; align-items:center; }

  .theme-grid { grid-template-columns:repeat(2,1fr); }
  .dest-grid  { grid-template-columns:repeat(2,1fr); }

  .stats-inner { grid-template-columns:1fr 1fr; }
  .stat-item .num { font-size:34px; }
}

/* ── 375px — Small mobile ── */
@media (max-width:375px) {
  .dest-grid  { grid-template-columns:1fr; }
  .theme-grid { grid-template-columns:1fr 1fr; }
}

/* ════════════════════════════════════
   ANIMATIONS
════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(26px); }
  to   { opacity:1; transform:none; }
}
.hero-left > * { animation:fadeUp .75s ease both; }
.hero-left > *:nth-child(1) { animation-delay:.08s; }
.hero-left > *:nth-child(2) { animation-delay:.18s; }
.hero-left > *:nth-child(3) { animation-delay:.28s; }
.hero-left > *:nth-child(4) { animation-delay:.38s; }
.hero-left > *:nth-child(5) { animation-delay:.50s; }
.hero-search { animation:fadeUp .75s .3s ease both; }

  /* Region cards */
  .region-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:14px; margin-bottom:52px; }
  .region-card {
    background:var(--navy-light); border-radius:var(--r-md); padding:20px 18px;
    display:flex; flex-direction:column; align-items:center; gap:10px;
    text-align:center; cursor:pointer; transition:var(--ease);
    border:1.5px solid transparent;
  }
  .region-card:hover, .region-card.on { background:var(--navy); border-color:var(--navy); }
  .region-card:hover .rc-name,
  .region-card.on .rc-name { color:white; }
  .region-card:hover .rc-count,
  .region-card.on .rc-count { color:rgba(255,255,255,.7); }
  .rc-flag  { font-size:32px; }
  .rc-name  { font-family:var(--fd); font-size:15px; font-weight:700; color:var(--navy); transition:var(--ease); }
  .rc-count { font-size:12px; color:var(--muted); transition:var(--ease); }

  /* Visa info strip */
  .visa-strip {
    background:var(--gold-light); border:1px solid var(--gold);
    border-radius:var(--r-md); padding:18px 22px;
    display:flex; align-items:center; gap:14px;
    margin-bottom:40px;
  }
  .visa-strip i { color:var(--gold-dark); font-size:20px; flex-shrink:0; }
  .visa-strip p { font-size:14px; color:var(--navy); font-weight:500; }
  .visa-strip strong { color:var(--red); }


/* ── PAGE-SPECIFIC CORPORATE STYLES ── */
.corp-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a4a8a 100%);
  padding: 90px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.corp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?w=1600&q=60') center/cover;
  opacity: 0.12;
}
.corp-hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.corp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(247,202,46,.15); border: 1px solid rgba(247,202,46,.4);
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
}
.corp-hero h1 {
  font-family: var(--fd); font-size: clamp(32px,5vw,54px);
  font-weight: 700; color: white; line-height: 1.2; margin-bottom: 18px;
}
.corp-hero h1 span { color: var(--gold); }
.corp-hero p { font-size: 16px; color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }
.corp-hero-acts { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.corp-breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 22px; font-size: 13px; color: rgba(255,255,255,.5); }
.corp-breadcrumb a { color: rgba(255,255,255,.6); transition: var(--ease); }
.corp-breadcrumb a:hover { color: var(--gold); }
.corp-breadcrumb i { font-size: 9px; }

/* Services grid */
.corp-services { background: var(--off); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px; margin-top: 44px;
}
.services-grid .service-card:nth-child(5) {
  grid-column: 2 / 3;
}
.services-grid .service-card:nth-child(6) {
  grid-column: 3 / 4;
}
.service-card {
  background: white; border-radius: var(--r-md);
  padding: 32px 28px; border: 1.5px solid var(--border);
  transition: var(--ease); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--navy), var(--red));
  opacity: 0; transition: var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 58px; height: 58px; background: var(--navy-light);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px; transition: var(--ease);
}
.service-card:hover .service-icon { background: var(--navy); }
.service-card h3 { font-family: var(--fd); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Why choose */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px; margin-top: 44px;
}
.why-item {
  background: white; border-radius: var(--r-md); padding: 28px 24px;
  box-shadow: var(--sh-sm); text-align: center; transition: var(--ease);
  border: 1.5px solid transparent;
}
.why-item:hover { border-color: var(--navy-light); box-shadow: var(--sh-md); }
.why-icon { font-size: 36px; margin-bottom: 14px; margin: auto; }
.why-item h4 { font-family: var(--fd); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* MICE section */
.mice-section { background: var(--navy-dark); padding: 80px 24px; }
.mice-inner { max-width: 1280px; margin: 0 auto; }
.mice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mice-text h2 { font-family: var(--fd); font-size: clamp(26px,3.5vw,40px); color: white; margin-bottom: 16px; }
.mice-text h2 span { color: var(--gold); }
.mice-text p { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 24px; }
.mice-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.mice-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: rgba(255,255,255,.75);
}
.mice-list li i { color: var(--gold); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.mice-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mice-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 24px 20px; text-align: center; transition: var(--ease);
}
.mice-card:hover { background: rgba(255,255,255,.1); border-color: var(--gold); }
.mice-card .mc-icon { font-size: 30px; margin-bottom: 10px; }
.mice-card h4 { font-family: var(--fd); font-size: 15px; color: white; font-weight: 700; }
.mice-card p { font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 5px; }

/* Destinations for corporates */
.corp-dest-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px; margin-top: 44px;
}
.corp-dest-card {
  border-radius: var(--r-md); overflow: hidden; position: relative;
  height: 200px; cursor: pointer; transition: var(--ease);
}
.corp-dest-card:hover { transform: scale(1.03); box-shadow: var(--sh-lg); }
.corp-dest-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--ease); }
.corp-dest-card:hover img { transform: scale(1.08); }
.corp-dest-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,30,61,.85) 0%, transparent 55%); }
.corp-dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 14px; }
.corp-dest-name { font-family: var(--fd); font-size: 16px; color: white; font-weight: 700; }
.corp-dest-tag { font-size: 11px; color: var(--gold); font-weight: 600; margin-top: 3px; }

/* Quote form */
.corp-form-section { background: var(--off); }
.corp-form-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; margin-top: 44px; }
.corp-form-info h3 { font-family: var(--fd); font-size: 26px; color: var(--navy); font-weight: 700; margin-bottom: 14px; }
.corp-form-info p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.contact-chips { display: flex; flex-direction: column; gap: 14px; }
.contact-chip {
  display: flex; align-items: center; gap: 14px;
  background: white; border-radius: var(--r-md); padding: 16px 18px;
  box-shadow: var(--sh-sm); border: 1.5px solid var(--border);
}
.contact-chip .ci { width: 40px; height: 40px; background: var(--navy-light); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-chip .ci i { color: var(--navy); font-size: 16px; }
.contact-chip .ct { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.contact-chip .cv { font-size: 14.5px; color: var(--text); font-weight: 700; }

.corp-form {
  background: white; border-radius: var(--r-lg); padding: 36px 32px;
  box-shadow: var(--sh-md); border: 1.5px solid var(--border);
}
.corp-form h3 { font-family: var(--fd); font-size: 22px; color: var(--navy); margin-bottom: 22px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 12.5px; font-weight: 700; color: var(--navy); letter-spacing: .04em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 11px 14px; font-size: 14px; font-family: var(--fb);
  color: var(--text); background: var(--off); transition: var(--ease);
  outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); background: white; box-shadow: 0 0 0 3px rgba(10,47,95,.08); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Testimonials */
.corp-testimonials { background: var(--light); }
.test-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 22px; margin-top: 44px; }
.test-card {
  background: white; border-radius: var(--r-md); padding: 28px;
  box-shadow: var(--sh-sm); border: 1.5px solid var(--border);
  transition: var(--ease);
}
.test-card:hover { box-shadow: var(--sh-md); }
.test-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.test-card p { font-size: 14px; color: var(--muted); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy-light); display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 16px; font-weight: 700; color: var(--navy); flex-shrink: 0; }
.test-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.test-company { font-size: 12px; color: var(--muted); }

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid .service-card {
    grid-column: auto !important;
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .mice-grid { grid-template-columns: 1fr; gap: 36px; }
  .corp-form-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}


/* ── PAGE-SPECIFIC ABOUT STYLES ── */
.about-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 90px 24px 80px; text-align: center; position: relative; overflow: hidden;
}
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600&q=60') center/cover;
  opacity: 0.1;
}
.about-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.about-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(247,202,46,.15); border: 1px solid rgba(247,202,46,.4);
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
}
.about-hero h1 { font-family: var(--fd); font-size: clamp(30px,5vw,52px); font-weight: 700; color: white; margin-bottom: 16px; }
.about-hero h1 span { color: var(--gold); }
.about-hero p { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.75; }
.about-breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 22px; font-size: 13px; color: rgba(255,255,255,.5); }
.about-breadcrumb a { color: rgba(255,255,255,.6); }
.about-breadcrumb i { font-size: 9px; }

/* Who we are */
.who-section { background: white; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.who-img-wrap { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.who-img-wrap img { width: 100%; height: 460px; object-fit: cover; display: block; }
.who-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: white; border-radius: var(--r-md); padding: 16px 20px;
  box-shadow: var(--sh-lg); display: flex; align-items: center; gap: 12px;
}
.wib-icon { font-size: 28px; }
.wib-text .wt { font-size: 22px; font-weight: 800; color: var(--navy); font-family: var(--fd); }
.wib-text .ws { font-size: 12px; color: var(--muted); }
.who-text h2 { font-family: var(--fd); font-size: clamp(26px,3.5vw,38px); font-weight: 700; color: var(--navy); margin-bottom: 18px; line-height: 1.25; }
.who-text h2 span { color: var(--red); }
.who-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.who-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.who-badge {
  display: flex; align-items: center; gap: 7px;
  background: var(--navy-light); border-radius: 50px;
  padding: 7px 14px; font-size: 13px; font-weight: 600; color: var(--navy);
}
.who-badge i { color: var(--red); font-size: 12px; }

/* Mission / Vision / Values */
.mvv-section { background: var(--off); }
.mvv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 44px; }
.mvv-card {
  background: white; border-radius: var(--r-lg); padding: 36px 28px;
  box-shadow: var(--sh-sm); border: 1.5px solid var(--border); text-align: center;
  transition: var(--ease); position: relative; overflow: hidden;
}
.mvv-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red)); opacity: 0; transition: var(--ease);
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.mvv-card:hover::after { opacity: 1; }
.mvv-icon { font-size: 44px; margin-bottom: 18px; }
.mvv-card h3 { font-family: var(--fd); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.mvv-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* Stats */
.about-stats { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 72px 24px; }
.about-stats-inner { max-width: 1280px; margin: 0 auto; }
.as-title { font-family: var(--fd); font-size: clamp(24px,3vw,36px); color: white; text-align: center; margin-bottom: 48px; }
.as-title span { color: var(--gold); }
.as-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.as-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); padding: 32px 20px; text-align: center; transition: var(--ease);
}
.as-card:hover { background: rgba(255,255,255,.12); border-color: var(--gold); }
.as-num { font-family: var(--fd); font-size: 46px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.as-label { font-size: 13.5px; color: rgba(255,255,255,.65); font-weight: 500; }
.as-icon { font-size: 28px; margin-bottom: 12px; }

/* What we offer */
.offer-section { background: white; }
.offer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 20px; margin-top: 44px; }
.offer-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--off); border-radius: var(--r-md); padding: 22px 18px;
  border: 1.5px solid var(--border); transition: var(--ease);
}
.offer-item:hover { background: white; box-shadow: var(--sh-md); border-color: transparent; }
.offer-ico { width: 44px; height: 44px; background: var(--navy-light); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.offer-text h4 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.offer-text p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Why choose */
.why-section { background: var(--off); }
.why-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.why-row {
  display: flex; gap: 16px; align-items: flex-start;
  background: white; border-radius: var(--r-md); padding: 20px 18px;
  box-shadow: var(--sh-sm); border: 1.5px solid var(--border); transition: var(--ease);
}
.why-row:hover { box-shadow: var(--sh-md); border-color: var(--navy-light); }
.wr-num { width: 38px; height: 38px; background: var(--navy); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; font-weight: 800; flex-shrink: 0; font-family: var(--fd); }
.wr-text h4 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.wr-text p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.why-img { border-radius: var(--r-lg); overflow: hidden; }
.why-img img { width: 100%; height: 500px; object-fit: cover; }

/* Team */
.team-section { background: white; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 24px; margin-top: 44px; }
.team-card {
  background: var(--off); border-radius: var(--r-lg); overflow: hidden;
  border: 1.5px solid var(--border); transition: var(--ease); text-align: center;
}
.team-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); }
.team-img { height: 220px; background: var(--navy-light); display: flex; align-items: center; justify-content: center; font-size: 64px; }
.team-info { padding: 20px 16px; }
.team-name { font-family: var(--fd); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 12.5px; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.team-bio { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Partners / Certifications */
.partners-section { background: var(--off); padding: 60px 24px; }
.partners-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.partners-title { font-family: var(--fd); font-size: 22px; color: var(--navy); margin-bottom: 36px; font-weight: 700; }
.partners-row { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; }
.partner-badge {
  background: white; border-radius: var(--r-md); padding: 16px 28px;
  border: 1.5px solid var(--border); font-size: 13.5px; font-weight: 700;
  color: var(--navy); display: flex; align-items: center; gap: 10px;
  box-shadow: var(--sh-sm); transition: var(--ease);
}
.partner-badge:hover { box-shadow: var(--sh-md); }
.partner-badge i { color: var(--red); font-size: 18px; }

@media (max-width:1024px) {
  .who-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-about-grid { grid-template-columns: 1fr; gap: 36px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .as-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:600px) {
  .as-grid { grid-template-columns: 1fr 1fr; }
}

/* ── PAGE-SPECIFIC BLOG STYLES ── */
.blog-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  padding: 80px 24px 70px; text-align: center; position: relative; overflow: hidden;
}
.blog-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1600&q=60') center/cover;
  opacity: 0.1;
}
.blog-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.blog-hero h1 { font-family: var(--fd); font-size: clamp(30px,5vw,50px); font-weight: 700; color: white; margin-bottom: 14px; }
.blog-hero h1 span { color: var(--gold); }
.blog-hero p { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 30px; }
.blog-breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 20px; font-size: 13px; color: rgba(255,255,255,.5); }
.blog-breadcrumb a { color: rgba(255,255,255,.6); }
.blog-breadcrumb i { font-size: 9px; }

/* Search bar */
.blog-search-wrap {
  max-width: 500px; margin: 0 auto;
  background: white; border-radius: var(--r-md); padding: 6px 6px 6px 18px;
  display: flex; align-items: center; gap: 10px; box-shadow: var(--sh-lg);
}
.blog-search-wrap input {
  flex: 1; border: none; outline: none; font-size: 14px; font-family: var(--fb);
  color: var(--text); background: transparent;
}
.blog-search-wrap button {
  background: var(--red); color: white; border: none; padding: 10px 20px;
  border-radius: var(--r-sm); font-size: 13.5px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; gap: 7px; transition: var(--ease);
}
.blog-search-wrap button:hover { background: var(--red-dark); }

/* Category filter */
.blog-filter { background: white; border-bottom: 1px solid var(--border); padding: 0 24px; position: sticky; top: 80px; z-index: 99; }
.blog-filter-inner { max-width: 1280px; margin: 0 auto; display: flex; gap: 4px; overflow-x: auto; padding: 12px 0; }
.blog-filter-inner::-webkit-scrollbar { height: 0; }
.bcat-chip {
  padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 600;
  color: var(--muted); background: var(--off); border: 1.5px solid var(--border);
  cursor: pointer; transition: var(--ease); white-space: nowrap; display: flex; align-items: center; gap: 6px;
}
.bcat-chip:hover, .bcat-chip.on { background: var(--navy); color: white; border-color: var(--navy); }

/* Featured post */
.blog-featured { background: var(--off); }
.featured-card {
  display: grid; grid-template-columns: 1.2fr 1fr; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-lg); background: white;
  border: 1.5px solid var(--border);
}
.featured-img { position: relative; min-height: 380px; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--red); color: white; font-size: 11px; font-weight: 800;
  padding: 5px 12px; border-radius: 50px; letter-spacing: .06em; text-transform: uppercase;
}
.featured-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.featured-cat {
  font-size: 11px; font-weight: 800; color: var(--red); letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 7px;
}
.featured-body h2 { font-family: var(--fd); font-size: clamp(22px,2.5vw,30px); font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1.3; }
.featured-body p { font-size: 14.5px; color: var(--muted); line-height: 1.75; margin-bottom: 22px; }
.featured-meta { display: flex; align-items: center; gap: 16px; font-size: 12.5px; color: var(--muted); margin-bottom: 24px; }
.featured-meta i { color: var(--red); }
.read-more {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: white; padding: 11px 22px;
  border-radius: var(--r-sm); font-size: 13.5px; font-weight: 700;
  transition: var(--ease); width: fit-content;
}
.read-more:hover { background: var(--red); transform: translateY(-2px); }

/* Blog grid */
.blog-section { background: white; }
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 44px; }
.blog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.blog-card {
  background: white; border-radius: var(--r-md); overflow: hidden;
  border: 1.5px solid var(--border); transition: var(--ease); display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); border-color: transparent; }
.blog-card-img { position: relative; height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-cat-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy); color: white; font-size: 10.5px; font-weight: 700;
  padding: 4px 11px; border-radius: 50px; text-transform: uppercase; letter-spacing: .05em;
}
.blog-card-body { padding: 20px 18px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.blog-card-meta i { color: var(--red); font-size: 11px; }
.blog-card h3 { font-family: var(--fd); font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
.blog-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-card-footer {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.blog-read-link {
  font-size: 13px; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 5px; transition: var(--ease);
}
.blog-read-link:hover { color: var(--red); }
.blog-card-time { font-size: 12px; color: var(--muted); }

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget {
  background: var(--off); border-radius: var(--r-md); padding: 24px;
  border: 1.5px solid var(--border);
}
.sw-title {
  font-family: var(--fd); font-size: 17px; font-weight: 700; color: var(--navy);
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.sw-title i { color: var(--red); }

/* Popular posts */
.pop-post { display: flex; gap: 12px; margin-bottom: 16px; }
.pop-post:last-child { margin-bottom: 0; }
.pop-post-img { width: 72px; height: 72px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; }
.pop-post-text h4 { font-size: 13.5px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 4px; }
.pop-post-text span { font-size: 12px; color: var(--muted); }

/* Categories list */
.cat-list { display: flex; flex-direction: column; gap: 10px; }
.cat-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; background: white; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); cursor: pointer; transition: var(--ease);
}
.cat-row:hover { background: var(--navy); border-color: var(--navy); color: white; }
.cat-row:hover .cat-count { background: rgba(255,255,255,.2); color: white; }
.cat-name { font-size: 13.5px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.cat-count { background: var(--navy-light); color: var(--navy); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px; }

/* Tags */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-tag {
  background: white; border: 1.5px solid var(--border); color: var(--muted);
  font-size: 12.5px; font-weight: 600; padding: 5px 13px; border-radius: 50px;
  cursor: pointer; transition: var(--ease);
}
.blog-tag:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* Newsletter widget */
.nl-widget { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); }
.nl-widget .sw-title { color: white; border-color: rgba(255,255,255,.15); }
.nl-widget p { font-size: 13.5px; color: rgba(255,255,255,.65); margin-bottom: 16px; line-height: 1.6; }
.nl-form { display: flex; flex-direction: column; gap: 10px; }
.nl-form input {
  border: 1.5px solid rgba(255,255,255,.2); border-radius: var(--r-sm);
  padding: 11px 14px; font-size: 14px; font-family: var(--fb);
  color: white; background: rgba(255,255,255,.08); outline: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,.4); }
.nl-form input:focus { border-color: var(--gold); }
.nl-form button {
  background: var(--gold); color: var(--navy); border: none; padding: 11px;
  border-radius: var(--r-sm); font-size: 14px; font-weight: 800;
  cursor: pointer; transition: var(--ease); font-family: var(--fb);
}
.nl-form button:hover { background: var(--gold-dark); color: white; }

/* Pagination */
.pagination { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 40px; }
.page-btn {
  width: 40px; height: 40px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; cursor: pointer; transition: var(--ease);
  background: var(--off); border: 1.5px solid var(--border); color: var(--text);
}
.page-btn:hover, .page-btn.on { background: var(--navy); color: white; border-color: var(--navy); }

@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .featured-card { grid-template-columns: 1fr; }
  .featured-img { min-height: 280px; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-filter { top: 58px; }
}

/* ── PAGE-SPECIFIC CONTACT STYLES ── */
.contact-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 82px 24px 70px; text-align: center; position: relative; overflow: hidden;
}
.contact-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1434082033009-b81d41d32e08?w=1600&q=60') center/cover;
  opacity: 0.1;
}
.contact-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.contact-hero h1 { font-family: var(--fd); font-size: clamp(30px,5vw,50px); font-weight: 700; color: white; margin-bottom: 14px; }
.contact-hero h1 span { color: var(--gold); }
.contact-hero p { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.7; }
.contact-breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 20px; font-size: 13px; color: rgba(255,255,255,.5); }
.contact-breadcrumb a { color: rgba(255,255,255,.6); }
.contact-breadcrumb i { font-size: 9px; }

/* Quick contact cards */
.quick-contact { background: var(--off); }
.qc-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px;
}
.qc-card {
  background: white; border-radius: var(--r-lg); padding: 30px 22px; text-align: center;
  border: 1.5px solid var(--border); transition: var(--ease); cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.qc-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); border-color: transparent; }
.qc-card:hover .qc-icon { transform: scale(1.1); }
.qc-icon {
  width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 24px; transition: var(--ease);
}
.qc-phone .qc-icon { background: var(--navy-light); }
.qc-wa .qc-icon { background: #e7faf0; }
.qc-email .qc-icon { background: var(--red-light); }
.qc-office .qc-icon { background: var(--gold-light); }
.qc-card h3 { font-family: var(--fd); font-size: 17px; font-weight: 700; color: var(--navy); }
.qc-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.qc-action {
  font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 5px;
  margin-top: 4px; transition: var(--ease);
}
.qc-phone .qc-action { color: var(--navy); }
.qc-wa .qc-action { color: #25D366; }
.qc-email .qc-action { color: var(--red); }
.qc-office .qc-action { color: var(--gold-dark); }

/* Main contact section */
.contact-main { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; }

/* Info side */
.contact-info h2 { font-family: var(--fd); font-size: clamp(24px,3vw,34px); font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.info-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--off); border-radius: var(--r-md); padding: 18px 16px;
  border: 1.5px solid var(--border); transition: var(--ease);
}
.info-item:hover { background: white; box-shadow: var(--sh-md); border-color: transparent; }
.ii-icon {
  width: 46px; height: 46px; border-radius: var(--r-md); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.ii-phone .ii-icon { background: var(--navy-light); }
.ii-wa .ii-icon { background: #e7faf0; }
.ii-email .ii-icon { background: var(--red-light); }
.ii-addr .ii-icon { background: var(--gold-light); }
.ii-time .ii-icon { background: var(--light); }
.ii-text .it-label { font-size: 11px; font-weight: 800; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.ii-text .it-value { font-size: 15px; font-weight: 700; color: var(--navy); }
.ii-text .it-sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* Social row */
.contact-socials h4 { font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; }
.soc-row { display: flex; gap: 10px; }
.soc-btn {
  width: 42px; height: 42px; border-radius: var(--r-sm); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  color: var(--muted); transition: var(--ease); text-decoration: none;
}
.soc-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }
.soc-btn.wa-btn:hover { background: #25D366; border-color: #25D366; }

/* Form side */
.contact-form-card {
  background: var(--off); border-radius: var(--r-lg); padding: 38px 34px;
  border: 1.5px solid var(--border);
}
.contact-form-card h3 { font-family: var(--fd); font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-form-card .fc-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.cf-group label { font-size: 12px; font-weight: 800; color: var(--navy); letter-spacing: .05em; text-transform: uppercase; }
.cf-group input,
.cf-group select,
.cf-group textarea {
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 12px 14px; font-size: 14px; font-family: var(--fb);
  color: var(--text); background: white; transition: var(--ease); outline: none; width: 100%;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,47,95,.07); }
.cf-group textarea { resize: vertical; min-height: 110px; }
.cf-submit {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white; border: none; padding: 14px; border-radius: var(--r-md);
  font-size: 15px; font-weight: 800; font-family: var(--fb);
  width: 100%; cursor: pointer; transition: var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 4px;
}
.cf-submit:hover { background: var(--red); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(209,32,36,.3); }
.cf-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.cf-note i { color: var(--navy); }

/* Map section */
.map-section { background: var(--off); padding: 70px 24px; }
.map-inner { max-width: 1280px; margin: 0 auto; }
.map-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 36px; align-items: start; margin-top: 40px; }
.map-details { background: white; border-radius: var(--r-lg); padding: 30px; border: 1.5px solid var(--border); }
.map-details h3 { font-family: var(--fd); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.map-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.map-item:last-child { margin-bottom: 0; }
.map-item i { color: var(--red); font-size: 16px; margin-top: 2px; flex-shrink: 0; width: 20px; text-align: center; }
.map-item .mv { font-size: 14px; color: var(--muted); line-height: 1.6; }
.map-item .mk { font-size: 12px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }
.map-embed {
  border-radius: var(--r-lg); overflow: hidden; border: 1.5px solid var(--border);
  height: 380px; background: var(--navy-light); display: flex; align-items: center; justify-content: center;
}
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* FAQ */
.faq-section { background: white; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 44px; }
.faq-item {
  background: var(--off); border-radius: var(--r-md); border: 1.5px solid var(--border);
  overflow: hidden; transition: var(--ease);
}
.faq-item:hover { box-shadow: var(--sh-sm); }
.faq-q {
  padding: 18px 20px; font-size: 14.5px; font-weight: 700; color: var(--navy);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-q i { color: var(--red); font-size: 13px; flex-shrink: 0; transition: var(--ease); }
.faq-a { padding: 0 20px 18px; font-size: 13.5px; color: var(--muted); line-height: 1.7; }

@media (max-width:1024px) {
  .qc-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .map-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width:600px) {
  .qc-grid { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
}

.theme-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}


.theme-grid::-webkit-scrollbar {
  height: 6px;
}

.theme-grid::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 10px;
}

.theme-grid::-webkit-scrollbar-thumb {
  background: #1e40af;
  border-radius: 10px;
}

/* cards fixed width for scroll */
.theme-card {
  min-width: 220px;  
  max-width: 240px;
  height: 260px;      
  flex: 0 0 auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width:1024px) {
  .theme-card{ max-width: 230px;}
}
.theme-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 10px;
}

.theme-controls button {
  background: #1e40af;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.theme-controls button:hover {
  background: #1c3aa9;
}
.theme-btn {
  text-align: center;
  margin-top: 20px;
}

.theme-btn a {
  background: #1e40af;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

.theme-btn a:hover {
  background: #1c3aa9;
}
.theme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.theme-ov {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.theme-lbl {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
}
.theme-nm {
  font-weight: 600;
  font-size: 14px;
}
.theme-card {
  height: 240px;
}
.theme-grid::-webkit-scrollbar {
  display: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-grid .why-item:nth-child(5),
.why-grid .why-card:nth-child(5) {
  grid-column: 2 / 3;
}
.why-grid .why-item:nth-child(6),
.why-grid .why-card:nth-child(6) {
  grid-column: 3 / 4;
}
@media (max-width: 1080px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid .why-item,
  .why-grid .why-card { grid-column: auto !important; }
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}
.review-grid{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;   /* horizontal center */

}

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rev-text {
  flex-grow: 1;
}

.rev-author {
  margin-top: auto;
}
.review-card {
  padding: 24px;
}

/* ABOUT SECTION  */

  .offer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.offer-grid .offer-item:nth-child(6) {
  grid-column: 2 / 3;
}

.offer-grid .offer-item:nth-child(7) {
  grid-column: 3 / 4;
}

.offer-grid .offer-item:nth-child(8) {
  grid-column: 4 / 5;
}
@media (max-width: 1024px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-grid .offer-item {
    grid-column: auto !important;
  }
}
@media (max-width: 600px) {
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.about-stats {
  padding: 60px 20px;
}

.about-stats-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.as-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.as-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.as-card {
  /* background: #fff; */
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
}

.as-card:hover {
  transform: translateY(-5px);
}

.as-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.as-num {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
}

.as-label {
  font-size: 14px;
  color: white;
}
@media (max-width: 1024px) {
  .as-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .as-grid {
    grid-template-columns: 1fr;
  }

  .as-title {
    font-size: 24px;
  }

  .as-card {
    padding: 20px;
  }
}
.as-card {
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

@media (max-width: 480px) {
  .as-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
   .as-card {
    padding: 14px 10px;
    border-radius: 10px;
  }
  .as-num {
    font-size: 20px;
  }
  .as-label {
    font-size: 12px;
    line-height: 1.3;
  }
  .as-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .as-icon {
    font-size: 20px;
  }
}

  .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 260px); /* fixed width */
  justify-content: center;  /* 👈 MAIN LINE */
  gap: 24px;
}
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 220px);
  }
}
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 260px);
  }
}
@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .team-card {
    width: 100%;
    max-width: 300px;
  }
}

/* ════════════════════════════════════
   DESTINATION PAGES (Kashmir, Kerala, Ladakh, etc.)
   Unified layout and components
════════════════════════════════════ */

.dest-hero {
  min-height: 76vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dest-hero-bg, linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 48%, var(--navy-mid) 100%));
}
.dest-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--dest-accent-grad, linear-gradient(90deg, var(--gold), var(--red), var(--gold)));
}
.dest-hero-bg,
.dest-hero-overlay,
.dest-hero-glow {
  position: absolute;
  inset: 0;
}
.dest-hero-bg {
  background: var(--dest-hero-img) center/cover no-repeat;
  opacity: .95;
}
.dest-hero-overlay {
  background: var(--dest-overlay-grad, linear-gradient(to right, rgba(7,30,61,.92) 0%, rgba(10,47,95,.72) 52%, rgba(10,47,95,.2) 100%));
}
.dest-hero-glow {
  background:
    radial-gradient(circle at top right, rgba(247,202,46,.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(209,32,36,.15), transparent 26%);
}
.dest-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 34px;
  align-items: center;
}
.dest-copy { max-width: 690px; }
.dest-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.dest-breadcrumb a { color: white; }
.dest-breadcrumb i { font-size: 10px; color: var(--gold); }
.dest-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(247,202,46,.16);
  border: 1px solid rgba(247,202,46,.34);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.dest-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  display: block;
}
.dest-title {
  font-family: var(--fd);
  font-size: clamp(36px, 5.6vw, 64px);
  line-height: 1.05;
  color: white;
  margin-bottom: 18px;
}
.dest-title strong { color: var(--gold); font-weight: 700; }
.dest-sub {
  color: rgba(255,255,255,.78);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 610px;
  margin-bottom: 26px;
}
.dest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.dest-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  color: white;
  font-size: 12.5px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.dest-chip i { color: var(--gold); }
.dest-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.dest-aside {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(14px);
  box-shadow: var(--sh-lg);
  color: white;
  justify-self: end;
  width: min(100%, 420px);
}
.dest-aside-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.dest-aside-head h2 {
  font-family: var(--fd);
  font-size: 28px;
  line-height: 1.15;
}
.dest-aside-head p {
  color: rgba(255,255,255,.72);
  font-size: 13.5px;
  margin-top: 6px;
}
.dest-aside-badge {
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 7px 12px;
}
.dest-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.dest-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 16px;
}
.dest-stat strong {
  display: block;
  font-family: var(--fd);
  font-size: 26px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 8px;
}
.dest-stat span {
  font-size: 12.5px;
  color: rgba(255,255,255,.72);
}
.dest-points {
  display: grid;
  gap: 11px;
  margin-bottom: 20px;
}
.dest-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,.82);
  font-size: 13.5px;
  line-height: 1.6;
}
.dest-point i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.dest-aside-contact {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dest-intro {
  margin-top: -38px;
  position: relative;
  z-index: 2;
}
.dest-intro-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--sh-md);
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .95fr);
  gap: 26px;
  align-items: start;
}
.dest-intro-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
}
.dest-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.dest-mini-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}
.dest-mini-card .mini-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.dest-mini-card i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-light);
  color: var(--navy);
}
.dest-mini-card h3 {
  font-family: var(--fd);
  font-size: 16px;
  color: var(--navy);
}
.dest-mini-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

/* Specific to Kashmir or complex grids */
.dest-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.dest-faq-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}
.dest-faq-card h3 {
  font-family: var(--fd);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}
.dest-faq-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .dest-hero-inner,
  .dest-intro-card {
    grid-template-columns: 1fr;
  }
  .dest-aside {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .dest-hero-inner {
    padding: 78px 18px 56px;
  }
  .dest-actions,
  .dest-aside-contact {
    flex-direction: column;
  }
  .dest-actions a,
  .dest-aside-contact a {
    width: 100%;
    justify-content: center;
  }
  .dest-stats,
  .dest-mini-grid,
  .dest-faq {
    grid-template-columns: 1fr;
  }
  .dest-intro-card {
    padding: 22px;
  }
}
