/* ==========================================================================
   Hour House Travel — Design System
   ========================================================================== */

:root {
  --maroon-deep: #6F1330;
  --maroon: #8B1A39;
  --maroon-bright: #C41E4D;
  --ink: #1F1E1C;
  --gold: #D9A441;
  --gold-dark: #B9822E;
  --cream: #F8F5F3;
  --white: #FFFFFF;
  --grey-mid: #6B6864;
  --grey-line: #E7E1DD;

  --gradient-maroon: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 100%);
  --gradient-dark: linear-gradient(160deg, #101012 0%, #1c0a13 50%, var(--maroon-deep) 100%);

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-card: 0 12px 30px rgba(31, 30, 28, 0.09);
  --shadow-card-hover: 0 18px 40px rgba(139, 26, 57, 0.18);

  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--grey-mid); }

.accent { color: var(--maroon); }
.accent-gold { color: var(--gold-dark); }

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

section { position: relative; }

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.text-center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 48px; }
.section-head.left { margin: 0 0 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .03em;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-maroon);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(139, 26, 57, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(139, 26, 57, 0.36); }

.btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: var(--white); color: var(--maroon); }

.btn-outline-dark {
  border-color: var(--maroon);
  color: var(--maroon);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--maroon); color: var(--white); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--maroon-deep);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

.btn-sm { padding: 9px 20px; font-size: .82rem; }

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .03em;
  color: var(--maroon);
}
.pill-link .circle-arrow { width: 26px; height: 26px; }

.circle-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-maroon);
  color: var(--white);
  flex-shrink: 0;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: var(--maroon-deep);
  border-bottom-color: rgba(255,255,255,.1);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
}

.nav-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  height: 60px;
  width: auto;
  background: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
  white-space: nowrap;
  color: var(--white);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  text-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); border-color: var(--gold); }

.nav-disabled {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
  white-space: nowrap;
  color: var(--white);
  opacity: .4;
  padding: 6px 2px;
  cursor: not-allowed;
  user-select: none;
}

.link-disabled {
  opacity: .45;
  cursor: not-allowed;
  user-select: none;
}

.has-dropdown { position: relative; }
.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s ease;
  z-index: 50;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  border-bottom: none;
  font-size: .88rem;
  color: var(--ink);
  text-shadow: none;
}
.dropdown-menu li a:hover { background: var(--cream); color: var(--maroon); }
.dropdown-caret { font-size: .6rem; margin-left: 3px; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-join {
  border: 2px solid var(--white);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  padding: 9px 22px;
  border-radius: 50px;
  transition: all .2s;
}
.btn-join:hover { background: var(--white); color: var(--maroon-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Clear the fixed header (~100px) so hero text never sits under the nav */
  padding-top: 100px;
  background: var(--gradient-dark);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(23,22,26,.94) 0%, rgba(43,18,32,.82) 38%, rgba(139,26,57,.35) 62%, rgba(139,26,57,.08) 100%);
}

.hero-diagonal {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 55%, rgba(217,164,65,.12) 55.3%, rgba(217,164,65,.12) 57%, transparent 57.3%, transparent 68%, rgba(255,255,255,.06) 68.3%, rgba(255,255,255,.06) 70%, transparent 70.3%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 0;
}

.hero-content .eyebrow { color: var(--gold); margin-bottom: 18px; }
.hero-content h1 { color: var(--white); margin-bottom: 22px; }
.hero-content p { color: rgba(255,255,255,.86); font-size: 1.05rem; max-width: 520px; margin-bottom: 28px; }
.hero-content p:last-child { margin-bottom: 0; }

.hero-small { min-height: 500px; }

/* ---------- Card grid ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }

.card-img { height: 190px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.08); }

.card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { font-size: .92rem; flex: 1; }

/* ---------- Overlapping image-behind-card tiles ---------- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
}

.tile {
  position: relative;
  padding-top: 130px;
  min-height: 300px;
}

.tile-image {
  position: absolute;
  top: 0;
  width: 82%;
  height: 190px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.tile-image img { width: 100%; height: 100%; object-fit: cover; }

.tile-body {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 44px rgba(31, 30, 28, 0.14);
  padding: 26px 28px;
  width: 84%;
}

.tile-body h3 { margin-bottom: 10px; }
.tile-body p { font-size: .92rem; margin-bottom: 18px; }

/* even tiles: image top-left, card bottom-right */
.tile:nth-child(odd) .tile-image { left: 0; }
.tile:nth-child(odd) .tile-body { margin-left: auto; }

/* odd tiles: image top-right, card bottom-left */
.tile:nth-child(even) .tile-image { right: 0; }
.tile:nth-child(even) .tile-body { margin-right: auto; }

@media (max-width: 980px) {
  .tile-grid { grid-template-columns: 1fr; gap: 90px 0; }
}
@media (max-width: 480px) {
  .tile-image, .tile-body { width: 100%; }
  .tile:nth-child(odd) .tile-body,
  .tile:nth-child(even) .tile-body { margin-left: 0; margin-right: 0; }
}

/* ---------- Feature rows (icon + text) ---------- */
.feature-row {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--grey-line);
}
.feature-row:last-child { border-bottom: none; }

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 700;
}

.feature-text h3 { margin-bottom: 6px; font-size: 1.05rem; }
.feature-text p { margin: 0; font-size: .92rem; }

/* alternating image/text split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img { border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.split.reverse .split-media { order: 2; }

/* ---------- Process strip ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
}
.process-num {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gradient-maroon);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: .88rem; margin: 0; }

/* ---------- Dark CTA band ---------- */
.cta-band {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.82); max-width: 620px; margin: 0 auto 26px; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-strip .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--gold);
}
.stat-strip .label { font-size: .84rem; color: rgba(255,255,255,.75); }

/* ---------- Contact CTA split panel ---------- */
.contact-cta {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  box-shadow: var(--shadow-card);
}
.contact-cta::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--maroon-bright), var(--maroon));
}
.cta-photo {
  position: relative;
  min-height: 380px;
}
.cta-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.cta-photo-label {
  position: absolute;
  top: 26px;
  left: 26px;
  color: var(--white);
  z-index: 2;
  font-family: var(--font-head);
}
.cta-photo-label .eyebrow { color: var(--gold); }
.cta-photo-label h3 { color: var(--white); font-size: 1.5rem; margin: 0; }
.cta-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,22,26,.55), rgba(23,22,26,.15) 40%, rgba(23,22,26,.65));
  z-index: 1;
}

.cta-form {
  background: rgba(139, 26, 57, 0.93);
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-form form { display: flex; flex-direction: column; gap: 20px; }
.cta-form form button[type="submit"] { align-self: flex-start; }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.field {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
}
.field::placeholder { color: rgba(255,255,255,.7); }
textarea.field { resize: vertical; min-height: 90px; }

.field:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.18); }

/* ---------- Forms (standalone, on light bg) ---------- */
.form-light .field {
  border: 1px solid var(--grey-line);
  background: var(--cream);
  color: var(--ink);
}
.form-light .field::placeholder { color: var(--grey-mid); }

/* ---------- Info cards (contact icons) ---------- */
.info-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
}
.info-card .icon-circle {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.info-card h3 { font-size: .95rem; margin-bottom: 6px; }
.info-card p { font-size: .88rem; margin: 0; }

/* ---------- Airline directory ---------- */
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--grey-line);
  border-radius: 50px;
  padding: 6px 8px 6px 22px;
  background: var(--white);
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
}
.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 10px 0;
}
.search-box input:focus { outline: none; }

.airline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.airline-card {
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  transition: box-shadow .2s, transform .2s;
}
.airline-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.airline-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
}
.airline-name span { display: block; font-family: var(--font-body); font-weight: 400; font-size: .78rem; color: var(--grey-mid); margin-top: 2px; }

.airline-badge {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient-maroon);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  flex-shrink: 0;
}

.no-results { display: none; text-align: center; padding: 40px 0; color: var(--grey-mid); }

/* ---------- Footer ---------- */
.site-footer {
  background: #17161a;
  color: rgba(255,255,255,.78);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img {
  height: 42px;
  margin-bottom: 16px;
  background: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 11px; font-size: .88rem; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: .88rem; color: rgba(255,255,255,.7); }

.newsletter { display: flex; margin-top: 14px; }
.newsletter input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 50px 0 0 50px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-size: .85rem;
}
.newsletter input:focus { outline: none; }
.newsletter button {
  border-radius: 0 50px 50px 0;
  border: none;
  padding: 0 20px;
  background: var(--gradient-maroon);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: 12px;
}
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.social-icons a:hover { background: var(--maroon); border-color: var(--maroon); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: 48px; }
.mb-lg { margin-bottom: 48px; }
.narrow { max-width: 760px; }

.badge-list { list-style: none; padding: 0; margin: 0; }
.badge-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: .93rem;
  color: var(--grey-mid);
}
.badge-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gradient-maroon);
}

.tag-row { display: flex; gap: 12px; flex-wrap: wrap; }
.tag {
  border: 1px solid var(--grey-line);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .82rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
}
.tag.active { background: var(--gradient-maroon); color: var(--white); border-color: transparent; }

.blog-card .card-img { height: 210px; }
.blog-meta { font-size: .8rem; color: var(--grey-mid); display: flex; gap: 14px; margin-top: 10px; }

.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}
.leader-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow-card);
}
.leader-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--gradient-maroon);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.2rem;
  flex-shrink: 0;
}
.leader-info h3 { margin-bottom: 2px; font-size: 1.3rem; }
.leader-info .role { color: var(--maroon); font-weight: 600; font-size: .88rem; font-family: var(--font-head); margin-bottom: 12px; display: block; }

.partner-logo {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--grey-mid);
}

/* ---------- Responsive ---------- */
@media (max-width: 1140px) {
  .nav-links { position: fixed; top: 100px; left: 0; right: 0; bottom: 0; background: var(--white);
    flex-direction: column; align-items: flex-start; padding: 30px 24px; gap: 20px;
    transform: translateX(-100%); transition: transform .3s ease; overflow-y: auto; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--ink); text-shadow: none; font-size: 1rem; }
  .nav-links a:hover, .nav-links a.active { color: var(--maroon); border-color: var(--maroon); }
  .nav-disabled { color: var(--ink); font-size: 1rem; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: var(--cream); margin-top: 10px;
    display: none;
  }
  .has-dropdown.open .dropdown-menu { display: block; }
  .dropdown-caret { transition: transform .2s; }
  .has-dropdown.open .dropdown-caret { transform: rotate(180deg); }
}

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
  .contact-cta { grid-template-columns: 1fr; }
  .cta-photo { min-height: 260px; }
  .partner-logos { grid-template-columns: repeat(3, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 760px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .airline-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-form-row { grid-template-columns: 1fr; }
  .partner-logos { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
  .hero { padding-top: 88px; min-height: 520px; }
  .hero-small { min-height: 440px; }
  .hero-content { padding: 40px 0; }
}
