/* ==========================================================================
   FLYNIVO HOLIDAYS — stylesheet
   Design tokens: navy/blue/cyan primary system + muted gold accent,
   Fraunces (display serif) + Plus Jakarta Sans (body/UI).
   ========================================================================== */

:root {
  /* colors */
  --navy: #0A1A3C;
  --navy-2: #0F2350;
  --ink: #10192E;
  --slate: #5C6B85;
  --slate-light: #8B96AC;
  --blue: #0B5FFF;
  --cyan: #00C2FF;
  --gold: #C9A24B;
  --gold-light: #E4C98A;
  --white: #FFFFFF;
  --off-white: #F6F8FC;
  --gray: #E7ECF5;
  --gray-line: #DDE4F0;

  --grad-primary: linear-gradient(135deg, var(--blue), var(--cyan));
  --grad-gold: linear-gradient(135deg, #E4C98A, #C9A24B);
  --grad-navy: linear-gradient(160deg, #0A1A3C 0%, #14284F 60%, #0B5FFF 130%);

  /* type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* elevation */
  --shadow-sm: 0 2px 10px rgba(10, 26, 60, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 26, 60, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 26, 60, 0.16);
  --shadow-gold: 0 10px 26px rgba(201, 162, 75, 0.28);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 15px; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 600;
}

.italic-accent { font-style: italic; font-weight: 500; color: var(--gold-light); }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-head.light .eyebrow { color: var(--gold-light); }
.section-head.light h2 { color: var(--white); }

.section { padding: 100px 0; }
.section-alt { background: var(--gray); }

.section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.section-sub { color: var(--slate); font-size: 16px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(11, 95, 255, 0.30);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(11, 95, 255, 0.40); }
.btn-ghost {
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.55);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* ripple */
.btn::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  opacity: 0;
  transform: scale(1);
  top: var(--ry, 50%); left: var(--rx, 50%);
  translate: -50% -50%;
}
.btn.rippling::after {
  animation: ripple .6s ease-out;
}
@keyframes ripple {
  from { opacity: .6; transform: scale(0); }
  to { opacity: 0; transform: scale(22); }
}

/* Reveal-on-scroll: only hide content if JS actually runs (html.js gets
   added by an inline script in <head>). If JS is blocked/fails, content
   stays visible instead of stuck at opacity:0. */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
html.js .reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-primary);
  z-index: 1200;
  transition: width .1s linear;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 3000;
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
  animation: forceHidePreloader 0s linear 3.5s forwards;
}
/* Only ever shown if JS confirmed it's running (html.js). No-JS visitors
   never see it, so they can never get stuck behind it. */
html.js .preloader { display: flex; opacity: 1; visibility: visible; }
/* Belt-and-suspenders: even with JS running, force it out of the way
   after 3.5s no matter what, in case script.js errors before hiding it. */
@keyframes forceHidePreloader { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.preloader p { font-family: var(--font-display); color: var(--white); font-size: 18px; letter-spacing: .04em; }
.preloader-plane svg { animation: preloaderSpin 1.4s ease-in-out infinite; }
@keyframes preloaderSpin {
  0%, 100% { transform: translateX(-14px) rotate(0deg); }
  50% { transform: translateX(14px) rotate(8deg); }
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 26, 60, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  padding: 10px 0;
  box-shadow: 0 8px 24px rgba(10,26,60,0.18);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 46px; width: auto; transition: height .4s var(--ease); filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); }
.site-header.scrolled .brand-logo { height: 38px; }

.nav-links {
  display: flex;
  gap: 30px;
  margin: 0 auto;
}
.nav-links a {
  color: var(--white);
  font-size: 14.5px;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--grad-gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  flex-shrink: 0;
}
.hamburger span {
  height: 2.5px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--grad-navy);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.08) translateY(0); }
  to { transform: scale(1.16) translateY(-1.5%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,26,60,0.55) 0%, rgba(10,26,60,0.55) 40%, rgba(10,26,60,0.92) 100%),
              linear-gradient(100deg, rgba(11,95,255,0.35), rgba(0,194,255,0.10));
}

.hero-sky { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.cloud { position: absolute; opacity: 0.55; filter: blur(0.3px); animation: driftCloud linear infinite; }
.cloud-1 { top: 14%; left: -10%; animation-duration: 55s; }
.cloud-2 { top: 30%; left: -20%; animation-duration: 75s; animation-delay: -20s; opacity: .4;}
.cloud-3 { top: 8%; left: -15%; animation-duration: 40s; animation-delay: -8s; opacity: .35; }
@keyframes driftCloud { from { transform: translateX(0); } to { transform: translateX(140vw); } }

.plane-fly {
  position: absolute;
  top: 22%;
  left: -10%;
  animation: flyAcross 16s linear infinite;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.3));
}
@keyframes flyAcross {
  0% { transform: translate(0, 0) rotate(-4deg); opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { transform: translate(130vw, -6vh) rotate(-4deg); opacity: 0; }
}

.float-icon {
  position: absolute;
  font-size: 26px;
  opacity: 0.5;
  animation: floatIcon 7s ease-in-out infinite;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}
.fi-1 { top: 66%; left: 8%; animation-delay: 0s; }
.fi-2 { top: 24%; left: 88%; animation-delay: 1.2s; font-size: 30px; }
.fi-3 { top: 78%; left: 82%; animation-delay: 2.4s; }
.fi-4 { top: 46%; left: 5%; animation-delay: .6s; font-size: 22px; }
@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(6deg); }
}

.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-content .eyebrow { color: var(--gold-light); }
.hero-title {
  font-size: clamp(40px, 6.2vw, 76px);
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero-sub {
  color: rgba(255,255,255,0.86);
  font-size: 18px;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute;
  top: 7px; left: 50%;
  width: 5px; height: 5px;
  background: var(--gold-light);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; top: 7px; }
  70% { opacity: 0; top: 24px; }
  100% { opacity: 0; top: 7px; }
}

/* ==========================================================================
   SEARCH PANEL
   ========================================================================== */
.search-wrap {
  position: relative;
  margin-top: -68px;
  z-index: 5;
}
.search-panel {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 20px;
  align-items: end;
}
.search-panel .field { display: flex; flex-direction: column; gap: 8px; }
.search-panel label {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--slate);
}
.search-panel input, .search-panel select {
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s, transform .2s;
}
.search-panel input:focus, .search-panel select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11,95,255,0.14);
  transform: translateY(-2px);
}
.search-btn { height: 48px; padding: 0 26px; }

/* ==========================================================================
   DESTINATIONS + signature flight-route
   ========================================================================== */
.flight-route {
  position: relative;
  height: 60px;
  margin: -20px 0 20px;
  display: none;
}
.flight-route svg { width: 100%; height: 100%; }
#routePath { animation: dashMove 40s linear infinite; }
@keyframes dashMove { to { stroke-dashoffset: -400; } }
.route-plane {
  position: absolute;
  top: 40%;
  left: 0;
  font-size: 20px;
  color: var(--blue);
  transform: translate(-50%, -50%) rotate(90deg);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.dest-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-card img { height: 200px; width: 100%; object-fit: cover; transition: transform .6s var(--ease); background: var(--gray); }
.dest-card:hover img { transform: scale(1.08); }
.dest-body { padding: 22px; }
.dest-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.dest-top h3 { font-size: 20px; }
.pin { font-size: 12px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.dest-body p { color: var(--slate); font-size: 14.5px; margin-bottom: 16px; }
.dest-foot { display: flex; align-items: center; justify-content: space-between; }
.price { font-weight: 800; color: var(--navy); font-size: 15px; }
.price em { font-style: normal; font-weight: 500; color: var(--slate-light); font-size: 12px; }
.link-arrow { color: var(--blue); font-weight: 700; font-size: 14px; transition: gap .25s; display: inline-flex; }
.link-arrow:hover { text-decoration: underline; }

/* ==========================================================================
   PACKAGES
   ========================================================================== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.pkg-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex;
  flex-direction: column;
}
.pkg-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-lg); }
.pkg-media { position: relative; height: 180px; background: var(--gray); }
.pkg-media img { height: 100%; width: 100%; object-fit: cover; }
.ribbon {
  position: absolute; top: 14px; left: -6px;
  background: var(--grad-gold);
  color: var(--navy);
  font-size: 11px; font-weight: 800; letter-spacing: .04em;
  padding: 5px 16px 5px 20px;
  box-shadow: var(--shadow-gold);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%, 0 60%);
}
.pkg-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pkg-top { display: flex; justify-content: space-between; align-items: flex-start; }
.pkg-top h3 { font-size: 19px; }
.rating { font-size: 13px; color: var(--gold); white-space: nowrap; }
.rating em { font-style: normal; color: var(--slate); margin-left: 3px; }
.pkg-meta { font-size: 13px; color: var(--slate-light); font-weight: 600; }
.pkg-highlights { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pkg-highlights li { font-size: 13.5px; color: var(--slate); padding-left: 18px; position: relative; }
.pkg-highlights li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.pkg-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; padding-top: 14px; border-top: 1px dashed var(--gray-line); }
.pkg-foot .price em { color: var(--slate-light); }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-section {
  background: var(--grad-navy);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,194,255,0.16), transparent 70%);
  top: -200px; right: -200px;
}
.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: transform .45s var(--ease), background .4s, border-color .4s;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); border-color: rgba(228,201,138,0.4); }
.why-icon { font-size: 32px; display: block; margin-bottom: 16px; }
.why-card h3 { color: var(--white); font-size: 18px; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 14px; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.service-item {
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 30px 18px;
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.service-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.s-icon { font-size: 30px; display: block; margin-bottom: 14px; transition: transform .4s var(--ease); }
.service-item:hover .s-icon { transform: scale(1.15) rotate(-6deg); }
.service-item h4 { font-size: 14.5px; font-family: var(--font-body); font-weight: 700; color: var(--navy); }

/* ==========================================================================
   CATEGORIES
   ========================================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-tile {
  position: relative;
  height: 220px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex; align-items: flex-end;
  transition: transform .5s var(--ease);
}
.cat-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,26,60,0.85));
}
.cat-tile span {
  position: relative;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  padding: 20px;
  z-index: 1;
  transition: transform .4s var(--ease);
}
.cat-tile:hover { transform: scale(1.03); }
.cat-tile:hover span { transform: translateY(-4px); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-section { background: var(--navy); overflow: hidden; }
.testi-carousel { max-width: 720px; margin: 0 auto; overflow: hidden; }
.testi-track { display: flex; transition: transform .6s var(--ease); }
.testi-card {
  flex: 0 0 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
}
.testi-stars { color: var(--gold-light); letter-spacing: 4px; margin-bottom: 18px; font-size: 18px; }
.testi-card p { color: rgba(255,255,255,0.88); font-size: 18px; font-family: var(--font-display); font-style: italic; margin-bottom: 26px; line-height: 1.5; }
.testi-person { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testi-person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-light); }
.testi-person strong { color: var(--white); display: block; font-size: 14px; }
.testi-person span { color: rgba(255,255,255,0.6); font-size: 12.5px; }
.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.testi-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background .3s, transform .3s;
}
.testi-dots button.active { background: var(--gold-light); transform: scale(1.3); }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats-section { background: var(--white); padding: 70px 0; border-bottom: 1px solid var(--gray-line); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat { position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 10%; height: 80%; width: 1px; background: var(--gray-line);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { color: var(--slate); font-size: 14px; font-weight: 600; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.masonry {
  column-count: 4;
  column-gap: 18px;
}
.gallery-img {
  width: 100%;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform .5s var(--ease), filter .4s;
}
.gallery-img:hover { transform: scale(1.03); filter: brightness(1.05); }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,26,60,0.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 2000;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
  padding: 40px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  color: var(--white); font-size: 36px; line-height: 1;
}

/* ==========================================================================
   FAQ / ACCORDION
   ========================================================================== */
.faq-wrap { max-width: 780px; }
.accordion { display: flex; flex-direction: column; gap: 14px; }
.acc-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-line);
  overflow: hidden;
}
.acc-head {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--navy);
  font-size: 15.5px;
  text-align: left;
}
.acc-head span { font-size: 20px; color: var(--blue); transition: transform .35s var(--ease); flex-shrink: 0; margin-left: 16px; }
.acc-item.open .acc-head span { transform: rotate(45deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.acc-body p { padding: 0 24px 22px; color: var(--slate); font-size: 14.5px; }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card img { height: 190px; width: 100%; object-fit: cover; }
.blog-body { padding: 22px; }
.blog-tag { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--gold); }
.blog-body h3 { font-size: 18px; margin: 10px 0 10px; }
.blog-body p { color: var(--slate); font-size: 14px; margin-bottom: 14px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.info-list { display: flex; flex-direction: column; gap: 20px; margin: 30px 0; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 16px;
}
.info-list strong { display: block; color: var(--navy); font-size: 14px; margin-bottom: 2px; }
.info-list a, .info-list span { color: var(--slate); font-size: 14.5px; }
.info-list a:hover { color: var(--blue); }

.social-row { display: flex; gap: 12px; margin-bottom: 26px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: var(--navy);
  transition: background .3s, color .3s, transform .3s;
}
.social-icon:hover { background: var(--grad-primary); color: var(--white); border-color: transparent; transform: translateY(-3px); }
.site-footer .social-icon { border-color: rgba(255,255,255,0.2); color: var(--white); }

.map-placeholder {
  height: 180px;
  border-radius: var(--radius-md);
  background: repeating-linear-gradient(135deg, var(--gray), var(--gray) 10px, #eef2f9 10px, #eef2f9 20px);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate);
  font-size: 13.5px;
  font-weight: 600;
  border: 1.5px dashed var(--gray-line);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 18px;
}
.contact-form .field { display: flex; flex-direction: column; gap: 8px; }
.contact-form label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--slate); }
.contact-form input, .contact-form textarea {
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  resize: vertical;
  transition: border-color .25s, box-shadow .25s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11,95,255,0.12);
}
.form-note { font-size: 13.5px; color: var(--blue); font-weight: 600; min-height: 18px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy); padding: 80px 0 0; color: rgba(255,255,255,0.75); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 50px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand p { font-size: 14px; margin-bottom: 20px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 18px; font-family: var(--font-body); }
.footer-col a, .footer-text { display: block; font-size: 14px; margin-bottom: 12px; color: rgba(255,255,255,0.68); transition: color .25s; }
.footer-col a:hover { color: var(--gold-light); }
.news-form { display: flex; gap: 8px; margin-bottom: 8px; }
.news-form input {
  flex: 1;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.news-form input::placeholder { color: rgba(255,255,255,0.5); }
.news-form button {
  width: 42px; border-radius: var(--radius-sm);
  background: var(--grad-primary); color: var(--white); font-size: 17px; font-weight: 700;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 24px; font-size: 13px; color: rgba(255,255,255,0.55);
}
.footer-bottom p:last-child { font-family: var(--font-display); font-style: italic; color: var(--gold-light); }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .dest-grid, .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .service-grid, .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { column-count: 3; }
  .search-panel { grid-template-columns: repeat(3, 1fr); }
  .search-btn { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--navy-2);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    z-index: 999;
    box-shadow: -12px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-links a { font-size: 18px; }

  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .stat:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .dest-grid, .pkg-grid, .why-grid, .service-grid, .cat-grid { grid-template-columns: 1fr; }
  .masonry { column-count: 2; }
  .search-panel { grid-template-columns: 1fr; padding: 24px; }
  .search-wrap { margin-top: -40px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
}
