/* ============================================================
   TRAVEL VISTA — Premium Travel Agency Theme
   Palette: Sky Blue • Navy • White • Gold
   ============================================================ */

:root {
  --sky: #0ea5e9;
  --sky-light: #38bdf8;
  --sky-pale: #e0f2fe;
  --navy: #0b1f3f;
  --navy-deep: #071429;
  --navy-soft: #16335e;
  --gold: #c9a227;
  --gold-light: #e6c968;
  --white: #ffffff;
  --off-white: #f6f9fc;
  --grey: #5b6b80;
  --grey-light: #dbe4ee;
  --shadow-sm: 0 2px 10px rgba(11, 31, 63, 0.08);
  --shadow-md: 0 8px 30px rgba(11, 31, 63, 0.12);
  --shadow-lg: 0 20px 60px rgba(11, 31, 63, 0.18);
  --radius: 18px;
  --radius-sm: 10px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --container: 1200px;
  --transition: all 0.35s cubic-bezier(0.25, 0.7, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.35rem; }

.section { padding: 96px 0; }
.section-alt { background: var(--off-white); }
.section-navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--white); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-head p { color: var(--grey); margin-top: 16px; font-size: 1.05rem; }
.section-navy .section-head p { color: rgba(255, 255, 255, 0.72); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-light) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(14, 165, 233, 0.5); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(201, 162, 39, 0.45); }
.btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-ghost { border-color: var(--sky); color: var(--sky); background: transparent; }
.btn-ghost:hover { background: var(--sky); color: var(--white); }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 18px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-header.scrolled {
  background: rgba(7, 20, 41, 0.92);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}
.logo { display: flex; align-items: center; gap: 12px; color: var(--white); }
.logo-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sky) 0%, var(--navy-soft) 100%);
  display: grid; place-items: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.45);
  flex-shrink: 0;
}
.logo-text { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; line-height: 1; }
.logo-text span { color: var(--gold-light); }
.logo-tag { display: block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 4px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > li { position: relative; }
.main-nav a {
  display: block;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}
.main-nav > li > a:hover, .main-nav > li > a.active { color: var(--gold-light); }
.main-nav .caret { font-size: 0.6rem; margin-left: 4px; opacity: 0.7; }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
}
.main-nav li:hover > .dropdown, .main-nav li:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a { color: var(--navy); padding: 11px 16px; border-radius: 8px; font-weight: 500; }
.dropdown a:hover { background: var(--sky-pale); color: var(--sky); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { color: var(--white); font-size: 0.88rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.header-phone span { color: var(--gold-light); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  position: relative;
  z-index: 1200;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  margin: 6px auto;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  padding: 160px 0 140px;
}
.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease, transform 8s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,20,41,0.55) 0%, rgba(7,20,41,0.35) 45%, rgba(7,20,41,0.75) 100%);
  z-index: -1;
}
.hero-inner { max-width: 860px; padding: 0 24px; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.hero .eyebrow::before, .hero .eyebrow::after { content: ""; width: 36px; height: 1px; background: var(--gold-light); }
.hero h1 { text-shadow: 0 4px 30px rgba(0,0,0,0.35); }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  margin: 22px auto 36px;
  font-size: 1.08rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.hero-sub .dot { color: var(--gold-light); margin: 0 6px; }
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero-dots { position: absolute; bottom: 130px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.hero-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.hero-dots button.active { background: var(--gold-light); width: 28px; border-radius: 999px; }

/* ---------- Search Bar ---------- */
.search-wrap { position: relative; z-index: 20; margin-top: -78px; }
.search-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 30px;
}
.search-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr) auto;
  gap: 16px;
  align-items: end;
}
.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

/* ---------- Destination Cards ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 26px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.dest-card:hover img { transform: scale(1.1); }
.dest-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7,20,41,0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: var(--white);
}
.dest-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.dest-card .desc { font-size: 0.88rem; color: rgba(255,255,255,0.82); margin-bottom: 12px; max-height: 0; overflow: hidden; opacity: 0; transition: var(--transition); }
.dest-card:hover .desc { max-height: 80px; opacity: 1; }
.dest-card .meta { display: flex; align-items: center; justify-content: space-between; }
.dest-card .price { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.dest-card .price strong { display: block; color: var(--gold-light); font-size: 1.15rem; }
.dest-card .badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Package Cards ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 30px; }
.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-media { position: relative; height: 230px; overflow: hidden; }
.pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.pkg-card:hover .pkg-media img { transform: scale(1.07); }
.pkg-tag {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pkg-duration {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(7,20,41,0.75);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}
.pkg-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.pkg-body h3 { margin-bottom: 10px; }
.pkg-highlights { margin: 4px 0 18px; flex: 1; }
.pkg-highlights li {
  font-size: 0.88rem;
  color: var(--grey);
  padding: 4px 0 4px 24px;
  position: relative;
}
.pkg-highlights li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}
.pkg-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--grey-light); padding-top: 18px; }
.pkg-price { font-size: 0.78rem; color: var(--grey); }
.pkg-price strong { display: block; font-size: 1.35rem; color: var(--navy); font-family: var(--font-display); }
.pkg-price strong span { color: var(--sky); }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 22px; }
.svc-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.svc-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 162, 39, 0.5);
}
.svc-icon {
  width: 66px; height: 66px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(14,165,233,0.25), rgba(56,189,248,0.1));
  border: 1px solid rgba(56,189,248,0.35);
  display: grid; place-items: center;
  font-size: 1.7rem;
}
.svc-card h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 8px; }
.svc-card p { font-size: 0.84rem; color: rgba(255,255,255,0.65); }

/* Light variant for inner pages */
.section-alt .svc-card, .section:not(.section-navy) .svc-card.light {
  background: var(--white);
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-sm);
}
.svc-card.light h3 { color: var(--navy); }
.svc-card.light p { color: var(--grey); }
.svc-card.light:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }

/* ---------- Why Choose ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 24px; }
.why-card {
  display: flex;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition);
}
.why-card:hover { border-color: rgba(201,162,39,0.4); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sky-pale), #fff);
  border: 1px solid rgba(14,165,233,0.25);
  display: grid; place-items: center;
  font-size: 1.4rem;
}
.why-card h3 { font-size: 1.02rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 6px; }
.why-card p { font-size: 0.86rem; color: var(--grey); }

/* ---------- Stats band ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat h3 { font-size: 2.6rem; color: var(--gold-light); }
.stat p { color: rgba(255,255,255,0.7); font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }

/* ---------- Testimonials ---------- */
.testi-carousel { position: relative; max-width: 820px; margin: 0 auto; }
.testi-track { overflow: hidden; }
.testi-slides { display: flex; transition: transform 0.7s cubic-bezier(0.3, 0.7, 0.3, 1); }
.testi-card {
  flex: 0 0 100%;
  text-align: center;
  padding: 20px 40px;
}
.testi-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 3px solid var(--gold-light);
  box-shadow: var(--shadow-md);
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 4px; margin-bottom: 16px; }
.testi-quote { font-size: 1.15rem; font-style: italic; color: var(--navy-soft); line-height: 1.8; max-width: 640px; margin: 0 auto 20px; }
.testi-name { font-weight: 700; }
.testi-loc { font-size: 0.85rem; color: var(--grey); }
.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.testi-nav button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--grey-light);
  background: var(--white);
  font-size: 1.1rem;
  color: var(--navy);
  transition: var(--transition);
}
.testi-nav button:hover { background: var(--sky); border-color: var(--sky); color: var(--white); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-media { height: 200px; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.blog-card:hover .blog-media img { transform: scale(1.08); }
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 14px; font-size: 0.76rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.blog-meta .cat { color: var(--sky); font-weight: 700; }
.blog-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-body p { font-size: 0.88rem; color: var(--grey); margin-bottom: 14px; }
.read-more { font-size: 0.85rem; font-weight: 700; color: var(--gold); }
.read-more:hover { color: var(--sky); }

/* ---------- Newsletter ---------- */
.newsletter {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  padding: 70px 40px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 60%, #1d4e89 100%);
  box-shadow: var(--shadow-lg);
}
.newsletter::before {
  content: "✈";
  position: absolute;
  font-size: 20rem;
  opacity: 0.05;
  right: -40px; top: -60px;
  transform: rotate(-15deg);
}
.newsletter h2 em { color: var(--gold-light); font-style: normal; }
.newsletter p { max-width: 540px; margin: 16px auto 32px; color: rgba(255,255,255,0.75); }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form input:focus { outline: none; border-color: var(--gold-light); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 170px 0 90px;
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,20,41,0.72) 0%, rgba(7,20,41,0.45) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumbs { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; font-weight: 600; }
.breadcrumbs a { color: rgba(255,255,255,0.8); }
.breadcrumbs a:hover { color: var(--white); }
.page-hero p.lede { max-width: 620px; margin-top: 16px; color: rgba(255,255,255,0.85); font-size: 1.08rem; }

/* ---------- Split / feature sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 460px; object-fit: cover; }
.split-media .float-card {
  position: absolute;
  bottom: -24px; right: -18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 20px 26px;
  display: flex; align-items: center; gap: 14px;
}
.float-card .num { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold); font-weight: 700; }
.float-card .lbl { font-size: 0.8rem; color: var(--grey); line-height: 1.4; }
.split-body .eyebrow {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  display: block; margin-bottom: 14px;
}
.split-body p { color: var(--grey); margin: 18px 0; }
.checklist li { padding: 7px 0 7px 32px; position: relative; font-weight: 500; }
.checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 7px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sky-pale);
  color: var(--sky);
  font-size: 0.75rem;
  font-weight: 800;
  display: grid; place-items: center;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--sky); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: 0;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
}
.faq-q .chev { transition: var(--transition); color: var(--sky); font-size: 0.8rem; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-a p { padding: 0 26px 24px; color: var(--grey); font-size: 0.94rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 42px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.single { grid-template-columns: 1fr; }
.contact-info-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow-lg);
}
.contact-info-card h3 { color: var(--gold-light); margin-bottom: 20px; }
.info-line { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.92rem; }
.info-line:last-of-type { border: 0; }
.info-line .ico { font-size: 1.2rem; }
.info-line small { display: block; color: rgba(255,255,255,0.55); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 60px; }
.map-embed iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--sky) 0%, #1d4e89 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 80px 0 0;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.site-footer h4::after { content: ""; display: block; width: 34px; height: 2px; background: var(--gold); margin-top: 10px; border-radius: 2px; }
.footer-about p { margin: 18px 0 24px; line-height: 1.8; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-row a:hover { background: var(--sky); border-color: var(--sky); color: #fff; transform: translateY(-3px); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact .ico { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal { display: flex; gap: 22px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 900;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { transform: translateY(-4px); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .search-grid { grid-template-columns: repeat(3, 1fr); }
  .search-grid .btn { grid-column: 1 / -1; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split-media img { height: 380px; }
  .header-phone { display: none; }
}

@media (max-width: 860px) {
  .section { padding: 68px 0; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(7, 20, 41, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1100;
  }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav a { font-size: 1.2rem; padding: 12px 20px; text-align: center; }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    background: transparent;
    box-shadow: none;
    min-width: 0;
    padding: 0;
    display: none;
  }
  .main-nav li.open-sub .dropdown { display: block; }
  .dropdown a { color: rgba(255,255,255,0.65); font-size: 0.95rem; padding: 8px; }
  .header-cta .btn { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .hero-dots { bottom: 100px; }
}

@media (max-width: 560px) {
  .search-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .dest-card { height: 320px; }
  .split-media .float-card { right: 8px; }
  .contact-form-card, .contact-info-card { padding: 28px; }
}
