*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #3fa9f5;
  --secondary: #1488db;
  --light: #ddf1ff;
  --navy: #0b1437;
  --border: #ceebff;
  --white: #ffffff;
  --black: #181818;
  --dark: #3b3b3b;
  --offwhite: #f0f4ff;
  --text-muted: #7a838f;
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 5%;
  background: rgb(255 255 255);
  backdrop-filter: blur(18px);
  box-shadow: 0px 0px 6px 0px rgba(71, 71, 71, 0.116);
}

.logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-dot {
  color: var(--accent);
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 50px;
  list-style: none;
}
.nav-links a {
  color: rgb(46, 46, 46);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--dark);
}

.nav-cta {
  background: var(--primary);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--secondary);
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  width: 100%;
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 110px 5% 60px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(
      180deg,
      rgba(28, 48, 78, 0.897) 0%,
      rgba(6, 13, 40, 0.795) 100%
    ),
    url("../images/hero-ban.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

/* .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(37, 99, 235, 0.35) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 50% at 85% 40%,
      rgba(249, 115, 22, 0.18) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #0b1437 0%, #060d28 100%),
    url(../images/hero-ban.webp) center/cover no-repeat;
} */

/* Stars */
.stars {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(
      1px 1px at 20% 15%,
      rgba(255, 255, 255, 0.6) 0%,
      transparent 100%
    ),
    radial-gradient(
      1.5px 1.5px at 60% 8%,
      rgba(255, 255, 255, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 80% 22%,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 35% 35%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 90% 45%,
      rgba(255, 255, 255, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 10% 50%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 50% 65%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 100%
    );
}

/* Floating plane */
.plane-icon {
  position: absolute;
  z-index: 2;
  font-size: 28px;
  opacity: 0.15;
  animation: floatPlane 14s ease-in-out infinite;
}
.plane-icon.p1 {
  top: 18%;
  left: 8%;
  animation-delay: 0s;
}
.plane-icon.p2 {
  top: 35%;
  right: 10%;
  animation-delay: -5s;
  font-size: 18px;
}
.plane-icon.p3 {
  top: 60%;
  left: 15%;
  animation-delay: -9s;
  font-size: 14px;
}

@keyframes floatPlane {
  0%,
  100% {
    transform: translate(0, 0) rotate(-8deg);
  }
  33% {
    transform: translate(12px, -8px) rotate(-5deg);
  }
  66% {
    transform: translate(-6px, 10px) rotate(-12deg);
  }
}

.hero-tag {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: var(--accent2);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 22px;
}
.hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero h1 {
  position: relative;
  z-index: 5;
  /* font-family: "Syne", sans-serif; */
  font-size: clamp(30px, 6vw, 32px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 1px;
  max-width: 700px;
  color: rgb(255 255 255);
  margin: 0px auto 18px;
}
.hero h1 span {
  color: var(--accent);
}

.hero p {
  position: relative;
  z-index: 5;
  color: rgb(255 255 255);
  font-size: clamp(15px, 2vw, 16px);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ── SEARCH BOX ── */
.search-box {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 860px;
  background: rgba(14, 28, 78, 0.85);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px 28px 24px;
}

.trip-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
}

.tab-btn {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.tab-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr 1fr;
  gap: 10px;
  align-items: end;
  margin-bottom: 14px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  text-transform: uppercase;
  text-align: left;
}

.field-input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #a8a8a8;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 11px 14px;
  width: 100%;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.field-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}
.field-input:focus {
  border-color: rgba(37, 99, 235, 0.6);
  background: rgba(255, 255, 255, 0.1);
}
.field-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.4);
}

.field-input option:checked {
  background-color: grey;
  color: #fff;
}

/* Swap button */
.swap-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: var(--sky);
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  margin-bottom: 2px;
  transition: all 0.2s;
}
.swap-btn:hover {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky);
  transform: rotate(180deg);
}

.search-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.search-btn:hover {
  background: var(--secondary);
  transform: translateY(-1px);
}
.search-btn:active {
  transform: scale(0.99);
}

/* Passenger row */
.pax-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

/* ── TRUST BADGES ── */
.trust-row {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.trust-icon {
  font-size: 16px;
}

/* ── SECTION ── */
section {
  padding: 50px 5%;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 40px;
  line-height: 1.2;
}

/* ── DEALS ── */
.deals-section {
  background: #ffffff;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.deal-card {
  background: rgb(22, 26, 41);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.25s,
    border-color 0.25s,
    background 0.25s;
  cursor: pointer;
}
.deal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.4);
  background: rgb(17, 21, 34);
}

.section-title.wht {
  color: #1a1a1a;
}

.deal-img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}
.deal-img-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
}

.deal-body {
  padding: 16px;
}

.deal-route {
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.deal-airline {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 12px;
}

.deal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.deal-price {
  /* font-family: "Syne", sans-serif; */
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
}
.deal-price small {
  font-size: 11px;
  color: var(--text-muted);
  font-family: "DM Sans";
  font-weight: 400;
}

.deal-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--accent2);
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s;
}
.deal-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  background: #182a6c;
  /* border: 1px solid var(--card-border); */
  border-radius: 16px;
  padding: 24px 20px;
  transition: border-color 0.2s;
}
.why-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.why-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--offwhite);
}
.why-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: #040b1f;
  padding: 40px 5% 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-top {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.footer-col {
  text-align: center;
}
.footer-col h4 {
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  margin-bottom: 0px;
  color: rgba(255, 255, 255, 0.459);
  font-size: 13px;
  text-align: center;
}

/* ── RESULTS PANEL ── */
.results-panel {
  display: none;
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 860px;
  margin-top: 14px;
  background: rgba(14, 28, 78, 0.92);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.results-header {
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.results-header strong {
  color: var(--white);
  font-family: "Syne", sans-serif;
  font-size: 15px;
}

.result-item {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
  cursor: pointer;
}
.result-item:last-child {
  border-bottom: none;
}
.result-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.airline-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.flight-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.flight-times {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Syne", sans-serif;
  font-size: 17px;
  font-weight: 700;
}
.flight-times span {
  font-size: 12px;
  color: var(--text-muted);
  font-family: "DM Sans";
  font-weight: 400;
}
.flight-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
}
.flight-line::after {
  content: "›";
  position: absolute;
  right: -4px;
  top: -9px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}
.flight-meta {
  font-size: 12px;
  color: var(--text-muted);
}
.badge-stop {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(251, 191, 36, 0.15);
  color: var(--gold);
  font-weight: 600;
}
.badge-direct {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  font-weight: 600;
}

.result-price {
  text-align: right;
}
.result-amount {
  font-family: "Syne", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
}
.result-pp {
  font-size: 10px;
  color: var(--text-muted);
}

.book-btn-sm {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.book-btn-sm:hover {
  background: var(--accent2);
}

.support-call {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  column-gap: 6px;
  border: 1px solid #eee;
  padding: 8px 20px;
  border-radius: 15px;
}

/* ─── MODAL POPUP ─── */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
  max-width: 500px;
  width: 90%;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 3px 15px;
  text-align: right;
  border-bottom: none !important;
  padding-bottom: 0px !important;
  /* border-bottom: 1px solid var(--border); */
}

.modal-close-btn {
  font-size: 28px;
  font-weight: bold;
  color: var(--dark);
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close-btn img {
  height: 15px;
  opacity: 0.7;
}

.modal-close-btn:hover {
  color: var(--dark);
}

.modal-close-btn:hover img {
  opacity: 1;
}

.modal-body {
  padding: 10px 30px 30px;
  text-align: center;
}

.modal-icon {
  font-size: 50px;
  margin-bottom: 0px;
}

.modal-icon img {
  height: 60px;
}

.modal-body h2 {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--dark);
  margin-top: 20px;
  margin-bottom: 26px;
  font-weight: 800;
}

.modal-body p {
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.modal-subtext {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px !important;
}

.modal-btn {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: none;
}

.modal-btn:hover {
  background: var(--teal2);
}

/* ======================= PHONE HIGHLIGHT ===================== */

.phone-section {
  background-color: var(--white);
  padding: 52px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.phone-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    rgba(13, 148, 136, 0.18) 0%,
    transparent 70%
  ); */
}
.phone-section-inner {
  position: relative;
  z-index: 1;
  max-width: 767px;
  margin: 0 auto;
  box-shadow: 0px 0px 10px 0px #eee;
  border-radius: 20px;
  padding: 30px 40px;
}
.phone-section h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 30px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
}
.phone-section p {
  color: rgba(44, 44, 44, 0.849);
  font-size: 16px;
  margin-bottom: 30px;
}

.big-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 100px;
  padding: 16px 36px;
  text-decoration: none;
  color: #4e4e4e;
  transition:
    background 0.2s,
    transform 0.15s;
  margin-bottom: 18px;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.big-phone-link:hover {
  background: var(--accent2);
  transform: scale(1.03);
}
.big-phone-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  animation: phone-ring 2.5s ease-in-out infinite;
}
.big-phone-text {
  text-align: left;
}
.big-phone-text small {
  display: block;
  font-size: 11px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
}
.big-phone-num {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  color: #000;
}
.phone-hours {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  margin-top: 10px;
}

.content-section {
  width: 100%;
  padding: 40px 15px;
  background-color: #fff;
}

.privacy-terms-sect {
  /* padding-top: 100px; */
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.content-section h1,
h2,
h3 {
  color: var(--dark);
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 21px;
  line-height: 28px;
}

.content-section h1:first-child,
h2:first-child,
h3:first-child {
  margin-top: 10px;
}

.content-section p {
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.content-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.content-section ul li {
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Loading shimmer */
.shimmer {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 25%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(255, 255, 255, 0.04) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 6px;
  height: 62px;
}
@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

.footer-logo img {
  height: 50px;
  filter: brightness(0) invert(1);
}

.hero-support {
  margin-bottom: 40px;
}

.banner-sect {
  width: 100%;
  height: 300px;
  position: relative;
  background-image:
    linear-gradient(180deg, rgb(0 0 0 / 81%), rgb(0 0 0 / 45%)),
    url(../images/banner.webp);
  background-size: cover;
  background-position: center center;
}

.banner-text {
  width: 100%;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.banner-text h2 {
  color: #fff;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-about-box {
  max-width: 650px;
  margin: 0 auto 5px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #282c36;
}

.footer-abt-text {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.6;
}

.footer-logo a {
  margin-bottom: 0px;
}

/* FAQ SECTION */
.faq-section {
  background: #fff;
  padding: 80px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.accordion-flush .accordion-item {
  width: 100%;
  border-bottom: none;
}

.accordion-flush .accordion-item:first-child {
  /* border-top: 1px solid var(--border); */
}

.accordion-flush .accordion-button {
  padding: 14px 15px;
  color: #444;
  font-weight: 600;
  font-size: 1rem;
  background-color: #fff;
  box-shadow: none;
  border: 1px solid #ddd !important;
  border-radius: 10px !important;
}

.accordion-flush .accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: transparent;
  box-shadow: none;
}

.accordion-flush .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
  color: var(--primary);
}

.accordion-body {
  padding: 20px 0;
  color: var(--light-dark);
  font-size: 0.95rem;
  line-height: 1.8;
}

.content-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ── RESPONSIVE ── */

@media (max-width: 1440px) {
  .hero h1 {
    font-size: clamp(28px, 8vw, 38px);
  }
}

@media (max-width: 768px) {
  nav {
    padding: 8px 2%;
  }
  .nav-links {
    display: none;
  }

  .search-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .swap-btn {
    width: 100%;
    border-radius: 8px;
    height: 36px;
    margin: 0;
  }

  .pax-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }
  .hero {
    padding-top: 90px;
  }

  .trust-row {
    gap: 16px;
  }

  footer .footer-links {
    gap: 24px;
  }
  .result-item {
    grid-template-columns: 36px 1fr auto;
  }
  .book-btn-sm {
    display: none;
  }
}

@media (max-width: 640px) {
  .logo {
    font-size: 16px;
  }
  .nav-cta {
    padding: 7px 10px;
  }

  .footer-col ul {
    gap: 16px 20px;
  }
  footer {
    padding: 20px 5% 24px;
  }

  .footer-top {
    gap: 10px;
  }

  .phone-section-inner {
    padding: 25px 18px;
  }

  .phone-section h2 {
    font-size: clamp(21px, 3vw, 24px);
  }

  .content-section h1,
  h2,
  h3 {
    font-size: 18px;
    line-height: 26px;
  }

  .banner-sect {
    height: 220px;
  }

  .banner-text h2 {
    font-size: clamp(21px, 5vw, 32px);
  }
}

@media (max-width: 480px) {
  .search-box {
    padding: 20px 16px 18px;
    border-radius: 16px;
  }
  .deal-img {
    height: 100px;
  }
  section {
    padding: 60px 4%;
  }

  .logo {
    font-size: 15px;
  }
  .nav-cta {
    padding: 7px 8px;
  }

  .logo img {
    height: 40px;
  }
}
