:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --sky: #60a5fa;
  --slate: #0f172a;
  --muted: #64748b;
  --soft: #f8fafc;
  --line: #e5e7eb;
  --blue-accent: #1d4ed8;
  --blue-soft: #dbeafe;
  --sky-soft: #bfdbfe;
  --shadow: 0 22px 55px rgba(15, 23, 42, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate);
  background: var(--soft);
  letter-spacing: 0;
}
body.support-active { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; border: 0; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.narrow { max-width: 850px; }
main {
  display: flex;
  flex-direction: column;
}
main .hero { order: 0; }
main .planning-board { order: 1; }
main .deals { order: 2; }
main .service-band { order: 3; }
main .destination-cluster { order: 4; }
main .city-cluster { order: 5; }
main .beach-cluster { order: 6; }
main .reviews-section { order: 7; }
main .magazine-section { order: 8; }
main .faq { order: 9; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  padding: 14px 16px 0;
}
.nav-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .14);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 22px;
  white-space: nowrap;
}
.brand > span:last-child span {
  color: #2563eb;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  box-shadow: 0 12px 22px rgba(37, 99, 235, .26);
}
.brand-mark i { transform: rotate(-45deg); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  justify-content: center;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #475569;
  font-weight: 650;
  font-size: 14px;
}
.nav-links a:hover, .nav-links .active {
  color: var(--blue);
  background: #eff6ff;
}
.airline-menu { position: relative; }
.airline-menu > button {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  background: transparent;
  font-weight: 700;
}
.airline-panel {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  width: 210px;
  display: grid;
  gap: 6px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: .2s ease;
}
.airline-menu:hover .airline-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.airline-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  font-weight: 700;
  color: #334155;
}
.airline-panel a:hover { background: #f1f5f9; }
.airline-panel img, .airline-panel i { width: 22px; height: 22px; color: var(--blue); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #475569;
  white-space: nowrap;
}
.nav-actions a { color: var(--blue); font-weight: 800; }
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--blue);
  background: #eff6ff;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 136px 16px 64px;
  display: grid;
  place-items: center;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?ixlib=rb-4.0.3&auto=format&fit=crop&w=2021&q=80");
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 28, .56), rgba(8, 14, 28, .28) 44%, rgba(8, 14, 28, .5));
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 15px;
  color: #dbeafe;
  background: rgba(37, 99, 235, .24);
  border: 1px solid rgba(147, 197, 253, .38);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 700;
}
.hero h1 {
  margin: 22px 0 16px;
  color: #fff;
  font-size: clamp(42px, 8vw, 74px);
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 12px 35px rgba(0, 0, 0, .35);
}
.hero h1 span { color: #bfdbfe; }
.hero p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(239, 246, 255, .92);
  line-height: 1.65;
}
.hero p strong { color: #fff; }
.hero-booking-layout {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: end;
  text-align: left;
}
.hero-booking-layout .hero-copy {
  align-self: center;
}
.hero-booking-layout h1 {
  margin-top: 24px;
}
.hero-booking-layout p {
  margin: 0;
  max-width: 520px;
}
.hero-booking-layout .search-card {
  align-self: end;
}
.hero-booking-layout .search-grid {
  grid-template-columns: 1fr 42px 1fr;
}
.hero-booking-layout .compact,
.hero-booking-layout .travelers {
  grid-column: span 1;
}
.hero-booking-layout .search-btn {
  grid-column: 1 / -1;
}
.search-card {
  text-align: left;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: visible;
}
.search-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid #eef2f7;
  background: rgba(248, 250, 252, .72);
  border-radius: 28px 28px 0 0;
}
.trip-options {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.trip-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.trip-options input { accent-color: var(--blue); }
.search-top select {
  min-height: 40px;
  padding: 0 36px 0 12px;
  border: 1px solid transparent;
  color: #475569;
  background: transparent;
  font-weight: 800;
  outline: 0;
}
.search-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr auto 1.1fr .8fr .8fr .8fr auto;
  align-items: stretch;
  gap: 8px;
  padding: 12px;
}
.field {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "label label" "icon input";
  align-content: center;
  gap: 4px 10px;
  min-height: 76px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #fff;
}
.field:hover, .field:focus-within {
  background: #f8fafc;
  border-color: #dbeafe;
}
.field span {
  grid-area: label;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.field i { grid-area: icon; color: #94a3b8; align-self: center; }
.field input {
  grid-area: input;
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  color: #1f2937;
  background: transparent;
  font-weight: 800;
}
.field input::placeholder { color: #9ca3af; }
.compact input { font-size: 13px; }
.swap {
  align-self: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 8px 16px rgba(15, 23, 42, .1);
}
.travelers { position: relative; }
.traveler-toggle {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: #1f2937;
  background: #fff;
  border-radius: 16px;
}
.traveler-toggle:hover { background: #f8fafc; }
.traveler-toggle span { display: grid; gap: 5px; text-align: left; }
.traveler-toggle small {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.traveler-toggle strong { font-size: 14px; }
.traveler-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  width: 260px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .2s ease;
}
.travelers.open .traveler-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.traveler-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}
.traveler-panel span { display: grid; gap: 3px; }
.traveler-panel small { color: var(--muted); }
.traveler-panel button {
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  color: #fff;
  background: var(--blue);
  border-radius: 12px;
  font-weight: 800;
}
.search-btn {
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 18px;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 15px 26px rgba(37, 99, 235, .28);
}

.section { padding: 78px 0; }
.white { background: #fff; }
.soft { background: #f8fafc; }
.planning-board {
  border-bottom: 1px solid #e2e8f0;
}
.planning-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 28px;
  align-items: stretch;
}
.planning-copy {
  padding: 34px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  box-shadow: 0 18px 44px rgba(37, 99, 235, .18);
}
.planning-copy span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #dbeafe;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.planning-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}
.planning-copy p {
  margin: 0;
  color: #dbeafe;
  line-height: 1.7;
}
.planning-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.planning-steps article {
  padding: 26px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .07);
}
.planning-steps b {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--blue);
  background: #dbeafe;
}
.planning-steps h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.planning-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.inner-page {
  min-height: 60vh;
  background: #f8fafc;
}
.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 150px 0 76px;
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(180deg, rgba(8, 14, 28, .52), rgba(8, 14, 28, .68)), var(--page-img);
  background-size: cover;
  background-position: center;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  max-width: 820px;
  margin: 20px 0 16px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 14px 34px rgba(0,0,0,.28);
}
.page-hero p {
  max-width: 680px;
  margin: 0;
  color: #e0f2fe;
  line-height: 1.7;
  font-size: 18px;
}
.page-search {
  display: grid;
  grid-template-columns: 1.1fr .75fr .75fr .9fr auto;
  gap: 8px;
  padding: 12px;
  transform: translateY(-30px);
  margin-bottom: -30px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-grid article, .info-card, .contact-card {
  padding: 30px;
  border: 1px solid #eef2f7;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(15, 23, 42, .07);
}
.feature-grid i, .contact-card > i {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  font-size: 23px;
}
.feature-grid h3, .info-card h3, .contact-card h2 {
  margin: 0 0 10px;
  font-size: 21px;
}
.feature-grid p, .info-card p, .contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.split-panel h2 {
  margin: 8px 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
}
.split-panel p {
  color: var(--muted);
  line-height: 1.75;
}
.mini-label {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 10px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}
.step-list {
  display: grid;
  gap: 14px;
}
.step-list article, .route-list article {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .07);
}
.step-list b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}
.step-list span {
  display: grid;
  gap: 4px;
}
.step-list small {
  color: var(--muted);
  line-height: 1.45;
}
.route-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.route-list article {
  justify-content: space-between;
  font-size: 17px;
}
.route-list i { color: var(--blue); }
.route-list span {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: #eff6ff;
  font-weight: 900;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stats-row span {
  min-height: 130px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}
.stats-row b { font-size: 34px; }
.stats-row small { color: #dbeafe; font-weight: 800; }
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.tag-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--blue);
  background: #eff6ff;
  font-weight: 900;
}
.tag-cloud.warm a {
  color: #1d4ed8;
  background: #dbeafe;
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}
.form-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(15, 23, 42, .07);
}
.form-card label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 850;
}
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  outline: 0;
  background: #f8fafc;
}
.form-card textarea {
  min-height: 120px;
  resize: vertical;
}
.legal-page {
  padding-top: 0;
}
.legal-page .section:first-child {
  padding-top: 136px;
}
.legal-page h1 {
  margin-top: 28px;
  font-size: clamp(34px, 5vw, 54px);
}
.legal-page h2 {
  margin-top: 28px;
}
.legal-page p {
  color: var(--muted);
  line-height: 1.75;
}
.trust { margin-top: -10px; background: #f8fafc; }
.service-band {
  padding-top: 56px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-band .trust-grid {
  grid-template-columns: 1.25fr repeat(2, 1fr);
}
.service-band article:first-child {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  background: linear-gradient(135deg, #ffffff, #eff6ff);
}
.service-band article:first-child i {
  margin-right: auto;
  margin-left: 0;
}
.trust article {
  padding: 30px;
  text-align: center;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 35px rgba(15, 23, 42, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.trust article:hover { transform: translateY(-7px); box-shadow: 0 22px 50px rgba(15, 23, 42, .12); }
.trust i {
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--blue);
  background: #dbeafe;
  font-size: 24px;
}
.trust article:nth-child(2) i { color: #1d4ed8; background: #dbeafe; }
.trust article:nth-child(3) i { color: #2563eb; background: #dbeafe; }
.trust article:nth-child(4) i { color: #1d4ed8; background: #dbeafe; }
.trust article:nth-child(5) i { color: #1d4ed8; background: #dbeafe; }
.trust article:nth-child(6) i { color: #2563eb; background: #dbeafe; }
.trust h3 { margin: 0 0 8px; font-size: 20px; }
.trust p { margin: 0; color: var(--muted); line-height: 1.6; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.section-head span, .center-head span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-head h2, .center-head h2, .deals-head h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
}
.section-head a {
  color: #64748b;
  font-weight: 800;
}
.section-head a:hover { color: var(--blue); }
.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.destination-grid .destination:first-child {
  grid-column: span 2;
}
.destination-grid .destination:nth-child(2) {
  min-height: 300px;
}
.destination {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 26px;
  overflow: hidden;
  border-radius: 26px;
  color: #fff;
  background-image: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.18) 58%, rgba(0,0,0,.05)), var(--img);
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .14);
  transition: transform .25s ease, background-size .25s ease;
}
.destination:hover { transform: translateY(-6px); }
.destination h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  text-shadow: 0 8px 20px rgba(0,0,0,.32);
}
.destination p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
}
.destination span { color: #bfdbfe; font-weight: 800; }
.destination b {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  font-size: 13px;
}

.deals { border-top: 1px solid #eef2f7; }
.deals-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}
.deals-head h2 i { color: #1d4ed8; }
.deals-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #1d4ed8;
  background: #dbeafe;
  font-weight: 900;
}
.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.deal {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid #eef2f7;
  border-radius: 20px;
  background: #fff;
  transition: .2s ease;
}
.deal:hover { box-shadow: 0 18px 40px rgba(15, 23, 42, .12); transform: translateY(-4px); }
.deal img {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  object-fit: cover;
}
.deal small {
  display: inline-block;
  padding: 5px 8px;
  color: var(--blue);
  background: #eff6ff;
  border-radius: 8px;
  font-weight: 900;
}
.deal h3 { margin: 8px 0 6px; font-size: 18px; }
.deal p { margin: 0; display: flex; align-items: center; gap: 10px; }
.deal s { color: #94a3b8; }
.deal b { color: #1d4ed8; font-size: 22px; }
.deal footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  color: #64748b;
  font-size: 14px;
  font-weight: 750;
}
.deal footer a { color: var(--blue); }

.center-head { text-align: center; margin-bottom: 34px; }
.center-head p { color: var(--muted); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-grid article {
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 13px 30px rgba(15, 23, 42, .06);
}
.stars { color: #1d4ed8; letter-spacing: 2px; }
.testimonial-grid p { color: #475569; line-height: 1.7; }
.testimonial-grid footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-grid img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.testimonial-grid span { display: grid; gap: 3px; }
.testimonial-grid small { color: #94a3b8; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-grid article { position: relative; }
.blog-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
}
.blog-grid small {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #334155;
  font-weight: 900;
}
.blog-grid p { color: #64748b; font-size: 13px; font-weight: 700; }
.blog-grid h3 { font-size: 21px; line-height: 1.25; }
.blog-grid a { color: var(--blue); font-weight: 900; }

.faq-list { display: grid; gap: 14px; }
.faq-list article {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
.faq-list button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: #1f2937;
  background: #fff;
  text-align: left;
  font-weight: 900;
}
.faq-list i { transition: transform .2s ease; }
.faq-list article.open i { transform: rotate(180deg); }
.faq-list p {
  max-height: 0;
  margin: 0;
  padding: 0 22px;
  overflow: hidden;
  color: #64748b;
  line-height: 1.65;
  transition: .25s ease;
}
.faq-list article.open p {
  max-height: 150px;
  padding-bottom: 18px;
}

.site-footer {
  padding: 62px 0 24px;
  color: #cbd5e1;
  background: #0f172a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(2, 1fr);
  gap: 28px;
}
.footer-brand { color: #fff; margin-bottom: 14px; }
.site-footer p { color: #94a3b8; line-height: 1.65; }
.site-footer h3 { margin: 0 0 16px; color: #fff; font-size: 16px; }
.site-footer a:not(.brand) {
  display: block;
  margin: 10px 0;
  color: #cbd5e1;
}
.site-footer a:hover { color: #fff; }
.rating strong {
  display: block;
  color: #fff;
  font-size: 30px;
}
.legal {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, .2);
  font-size: 13px;
}

.support-trigger {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 18px 35px rgba(37, 99, 235, .34);
  font-weight: 900;
}
.support-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}
.support-modal.open { opacity: 1; pointer-events: auto; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, .62); backdrop-filter: blur(4px); }
.modal-card {
  position: relative;
  width: min(380px, 100%);
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(.97);
  transition: .2s ease;
}
.support-modal.open .modal-card { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.14);
}
.modal-top {
  padding: 30px;
  text-align: center;
  color: #fff;
  background: var(--blue);
}
.modal-top i {
  width: 72px;
  height: 72px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  font-size: 28px;
}
.modal-top h2 { margin: 14px 0 4px; }
.modal-top p { margin: 0; color: #dbeafe; }
.modal-body { padding: 26px; text-align: center; }
.modal-body p { color: #64748b; line-height: 1.6; }
.modal-body a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  margin: 20px 0 14px;
  border-radius: 16px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}
.modal-body a + a {
  margin-top: 0;
  background: linear-gradient(135deg, var(--sky), #60a5fa);
}
.modal-body button { color: #64748b; background: transparent; font-weight: 800; }

.cta-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(37, 99, 235, .26);
}
.cta-number.inline {
  margin: 12px 0;
  color: #fff;
}
.cta-number.secondary {
  background: linear-gradient(135deg, var(--sky), #60a5fa);
  font-size: 20px;
}

@media (max-width: 1120px) {
  .nav-links, .airline-menu, .nav-actions { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-shell.open {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .nav-shell.open .nav-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    order: 5;
  }
  .search-grid {
    grid-template-columns: 1fr 42px 1fr;
  }
  .hero-booking-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-booking-layout p {
    margin: 0 auto 4px;
  }
  .compact, .travelers, .search-btn { grid-column: span 1; }
  .search-btn { grid-column: 1 / -1; }
  .destination-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-grid .destination:first-child { grid-column: span 1; }
  .deal-grid, .testimonial-grid, .blog-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .planning-grid { grid-template-columns: 1fr; }
  .planning-steps { grid-template-columns: repeat(3, 1fr); }
  .trust-grid, .service-band .trust-grid, .route-list { grid-template-columns: repeat(2, 1fr); }
  .service-band article:first-child { grid-row: auto; text-align: center; }
  .service-band article:first-child i { margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .page-search { grid-template-columns: repeat(2, 1fr); }
  .page-search .search-btn { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-header { padding: 8px; }
  .nav-shell { border-radius: 18px; padding: 10px 12px; min-height: 60px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 38px; height: 38px; border-radius: 12px; }
  .nav-shell.open .nav-links { grid-template-columns: 1fr; }
  .hero { padding: 108px 12px 40px; align-items: start; }
  .hero-booking-layout { gap: 24px; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 14px; }
  .search-top { align-items: flex-start; flex-direction: column; padding: 16px; }
  .trip-options { gap: 12px; }
  .search-grid { grid-template-columns: 1fr; padding: 10px; }
  .swap { display: none; }
  .field, .traveler-toggle, .search-btn { min-height: 68px; }
  .traveler-panel { left: 0; right: auto; width: 100%; }
  .section { padding: 56px 0; }
  .section-head, .deals-head { align-items: flex-start; flex-direction: column; }
  .section-head a { display: none; }
  .page-hero { min-height: 450px; padding: 118px 0 58px; }
  .page-hero p { font-size: 15px; }
  .page-search, .destination-grid, .deal-grid, .testimonial-grid, .blog-grid, .trust-grid, .service-band .trust-grid, .footer-grid, .feature-grid, .split-panel, .route-list, .stats-row, .planning-grid, .planning-steps { grid-template-columns: 1fr; }
  .destination { min-height: 320px; }
  .deal { grid-template-columns: 88px 1fr; }
  .deal img { width: 88px; height: 88px; }
  .footer-grid { gap: 18px; }
  .support-trigger { right: 16px; bottom: 16px; min-height: 52px; }
}
