:root {
  --navy: #0a1628;
  --navy2: #112040;
  --blue: #1a56db;
  --sky: #38bdf8;
  --gold: #f59e0b;
  --gold2: #fbbf24;
  --white: #ffffff;
  --offwhite: #f8faff;
  --text: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --shadow: 0 4px 32px rgba(10, 22, 40, 0.1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  background: var(--offwhite);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── COMMON CONTAINER ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}
nav.scrolled {
  height: 60px;
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-logo {
  font-family: sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo span {
  color: var(--sky);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  letter-spacing: 0.02em;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover {
  color: var(--sky);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-weight: 700;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.25);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.logo-img {
  width: 300px;
  height: 50px;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: url("./image/airline.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 5vw 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero > * {
  position: relative;
  z-index: 2;
}
/* Multi-layer overlay for depth */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 22, 40, 0.85) 0%,
      rgba(10, 22, 40, 0.45) 40%,
      rgba(10, 22, 40, 0.7) 100%
    ),
    radial-gradient(
      ellipse at 50% 0%,
      rgba(56, 189, 248, 0.12) 0%,
      transparent 60%
    );
  z-index: 1;
}
/* Subtle vignette */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(10, 22, 40, 0.5) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  color: rgba(56, 189, 248, 0.15);
  font-size: 1.4rem;
  animation: particleFloat 12s ease-in-out infinite;
}
.p1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
  font-size: 1.8rem;
}
.p2 {
  top: 25%;
  right: 12%;
  animation-delay: 2s;
  font-size: 1rem;
}
.p3 {
  top: 60%;
  left: 15%;
  animation-delay: 4s;
  font-size: 0.9rem;
  color: rgba(245, 158, 11, 0.12);
}
.p4 {
  top: 70%;
  right: 8%;
  animation-delay: 6s;
  font-size: 2rem;
}
.p5 {
  top: 40%;
  left: 5%;
  animation-delay: 3s;
  font-size: 0.8rem;
  color: rgba(245, 158, 11, 0.1);
}
.p6 {
  top: 80%;
  right: 20%;
  animation-delay: 5s;
  font-size: 1.2rem;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-10px) rotate(-3deg);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-25px) rotate(4deg);
    opacity: 0.7;
  }
}

/* Badge with shimmer */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--sky);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.6s ease both;
  position: relative;
  overflow: hidden;
}
.hero-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 189, 248, 0.15),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

/* Heading with glow */
.hero h1 {
  font-family: sans-serif;
  font-size: clamp(2.6rem, 6.5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  max-width: 820px;
  animation: fadeUp 0.7s 0.1s ease both;
  text-shadow: 0 0 60px rgba(56, 189, 248, 0.15);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--sky), var(--gold2), var(--sky));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 580px;
  margin: 1.4rem auto 0;
  line-height: 1.85;
  letter-spacing: 0.01em;
  animation: fadeUp 0.7s 0.2s ease both;
}

/* Hero CTA buttons */
.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-family: sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}
.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45);
}
.hero-btn-outline {
  color: var(--white);
  font-family: sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
}
.hero-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Trust pills — glassmorphism */
.hero-trust {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}
.trust-pill {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  transition: all 0.2s;
}
.trust-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(56, 189, 248, 0.3);
}
.trust-pill::before {
  content: "✓";
  color: var(--sky);
  font-weight: 700;
  font-size: 0.75rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: fadeUp 0.7s 0.6s ease both;
}
.scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

/* ─── SEARCH BOX ─── */
.search-wrap {
  width: 100%;
  max-width: 900px;
  margin: 2.5rem auto 0;
  animation: fadeUp 0.7s 0.45s ease both;
  position: relative;
  z-index: 2;
}
.search-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.5);
}
.search-tabs {
  display: flex;
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
  padding: 0.25rem;
  gap: 0.25rem;
}
.tab-btn {
  flex: 1;
  padding: 0.85rem 1rem;
  background: none;
  border: none;
  font-family: sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
  border-bottom: 3px solid transparent;
  border-radius: 12px;
  position: relative;
}
.tab-btn.active {
  color: var(--blue);
  background: var(--white);
  border-bottom-color: var(--blue);
  box-shadow: 0 2px 8px rgba(26, 86, 219, 0.08);
}
.tab-btn:hover:not(.active) {
  color: var(--text);
  background: rgba(26, 86, 219, 0.04);
}

.search-form {
  padding: 1.8rem 1.8rem 1.6rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 0.85rem;
  align-items: end;
}
.form-row.round-trip {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.form-group input,
.form-group select {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-family: sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--offwhite);
  transition: all 0.25s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
  background: var(--white);
  transform: translateY(-1px);
}
.form-group input::placeholder {
  color: #aab;
}

.swap-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--offwhite);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
  align-self: flex-end;
  margin-bottom: 2px;
  font-size: 1rem;
  flex-shrink: 0;
  position: absolute;
  top: 20px;
  right: -20px;
  z-index: 2;
}
.swap-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: rotate(180deg);
}

.search-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  border: none;
  border-radius: 14px;
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-end;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
}
.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.4);
}
.search-btn:active {
  transform: translateY(0);
}

/* passengers row */
.form-extras {
  display: flex;
  gap: 1rem;
  margin-top: 0.85rem;
  flex-wrap: wrap;
}
.extra-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.extra-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.counter-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-weight: 600;
  color: var(--blue);
}
.counter-btn:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.counter-val {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 18px;
  text-align: center;
}
.class-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.42rem 0.75rem;
  font-family: sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  background: var(--offwhite);
  outline: none;
  cursor: pointer;
}

/* results */
.results-area {
  margin-top: 1.2rem;
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.results-area.open {
  max-height: 600px;
  overflow-y: auto;
}
.results-header {
  padding: 1rem 1.5rem 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.flight-card {
  margin: 0 1rem 0.75rem;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  cursor: pointer;
  transition: all 0.18s;
  background: white;
}
.flight-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.1);
}
.airline-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.airline-logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.airline-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
.airline-code {
  font-size: 0.75rem;
  color: var(--muted);
}
.flight-times {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.time-block {
  text-align: center;
}
.time-val {
  font-family: sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
.time-city {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}
.duration-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.dur-text {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}
.dur-bar {
  width: 80px;
  height: 1.5px;
  background: var(--border);
  position: relative;
}
.dur-bar::after {
  content: "✈";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--blue);
}
.stops-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}
.stops-badge.nonstop {
  background: #dcfce7;
  color: #16a34a;
}
.stops-badge.one {
  background: #fef9c3;
  color: #a16207;
}
.price-block {
  text-align: right;
}
.price-val {
  font-family: sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
}
.price-per {
  font-size: 0.72rem;
  color: var(--muted);
}
.book-now-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.book-now-btn:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}

/* ─── FEATURES ─── */
.features {
  padding: 7rem 5vw;
  background: var(--white);
  position: relative;
}
.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.section-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.section-title {
  font-family: sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  max-width: 520px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.feat-card {
  background: var(--offwhite);
  border-radius: 20px;
  padding: 2.2rem 1.6rem;
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feat-card:hover {
  border-color: var(--blue);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(26, 86, 219, 0.12);
}
.feat-card:hover::before {
  opacity: 1;
}
.feat-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  transition: all 0.3s ease;
}
.feat-card:hover .feat-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(26, 86, 219, 0.15);
}
.feat-card h3 {
  font-family: sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.feat-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  letter-spacing: 0.01em;
}

/* ─── DESTINATIONS ─── */
.destinations {
  padding: 7rem 5vw;
  background: var(--offwhite);
  position: relative;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.dest-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, #1a56db, #0a1628);
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.15);
}
.dest-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.3);
}
.dest-bg {
  position: absolute;
  inset: 0;
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
  transition: all 0.35s ease;
}
.dest-card:hover .dest-bg {
  opacity: 0.35;
  transform: scale(1.15);
}
.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.95) 0%,
    rgba(10, 22, 40, 0.4) 60%,
    transparent 100%
  );
  padding: 2.5rem 1.5rem 1.5rem;
  transition: all 0.3s ease;
}
.dest-city {
  font-family: sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}
.dest-country {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}
.dest-price {
  font-family: sans-serif;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(245, 158, 11, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

/* ─── CTA BANNER ─── */
.cta-band {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #1a3a6b 50%,
    #0f2654 100%
  );
  padding: 6rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "✈";
  position: absolute;
  font-size: 20rem;
  opacity: 0.03;
  right: -3rem;
  top: -4rem;
  pointer-events: none;
  animation: ctaPlane 20s linear infinite;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(56, 189, 248, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

@keyframes ctaPlane {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(-20px) rotate(-2deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

.cta-band h2 {
  font-family: sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-family: sans-serif;
  font-weight: 700;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: white;
  font-family: sans-serif;
  font-weight: 700;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ─── FOOTER ─── */
.footer {
  background: linear-gradient(180deg, #0f172a 0%, #0a1020 100%);
  color: #fff;
  padding: 3rem 5vw 2rem;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 189, 248, 0.2),
    transparent
  );
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}
.footer-logo span {
  color: #38bdf8;
}
.footer-brand p {
  font-size: 0.95rem;
  color: rgba(203, 213, 245, 0.7);
  margin-top: 8px;
  max-width: 300px;
  line-height: 1.75;
  letter-spacing: 0.01em;
}
.footer-links a {
  color: rgba(203, 213, 245, 0.7);
  text-decoration: none;
  margin-left: 20px;
  font-size: 0.95rem;
  transition: all 0.25s;
  position: relative;
  letter-spacing: 0.01em;
}
.footer-links a:hover {
  color: var(--sky);
}
.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sky);
  transition: width 0.25s ease;
}
.footer-links a:hover::after {
  width: 100%;
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(17, 32, 64, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem 5vw;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  z-index: 99;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: all 0.2s;
}
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--sky);
}
.mobile-menu a:last-child {
  border-bottom: none;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal.show {
  display: flex;
}
.modal-body p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
.modal-content {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  width: 90%;
  max-width: 420px;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 80px rgba(10, 22, 40, 0.4);
  animation: modalIn 0.3s ease both;
  border: 1px solid var(--border);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 1.3rem;
  cursor: pointer;
  border: none;
  background: var(--offwhite);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
}

.modal-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.modal-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
}
.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .form-row,
  .form-row.round-trip {
    grid-template-columns: 1fr 1fr;
  }
  .search-btn {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }
  .swap-btn {
    display: none;
  }
}
@media (max-width: 700px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .logo-img {
    width: 200px;
    height: 50px;
  }
  .hamburger {
    display: flex;
  }
  .tab-btn {
    font-size: 14px;
    padding: 12px 8px;
  }
  .footer-links a {
    margin: 4px 0;
    text-decoration: underline;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 90px;
  }
  .form-group .label {
    width: 100%;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-btn-primary,
  .hero-btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }
  .particle {
    display: none;
  }

  .form-row,
  .form-row.round-trip {
    grid-template-columns: 1fr;
  }

  .flight-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .price-block {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .dest-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .dest-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── TRIPMYBOOK CONTENT ─── */
.tripmybook-content {
  padding: 5rem 5vw;
  background: var(--white);
  position: relative;
}
.tripmybook-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.tripmybook-container {
  max-width: 1200px;
  margin: 0 auto;
}
.tripmybook-container h2 {
  font-family: sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 1.4rem;
}
.tripmybook-container h3 {
  font-family: sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
  margin-top: 2rem;
}
.tripmybook-container p {
  font-family: sans-serif;
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}
.tripmybook-container ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.tripmybook-container ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.75rem;
  font-family: sans-serif;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  letter-spacing: 0.01em;
}
.tripmybook-container ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
}
.tripmybook-intro,
.tripmybook-airlines,
.tripmybook-booking,
.tripmybook-strategies {
  margin-bottom: 3rem;
}
.tripmybook-strategies ul li strong {
  color: var(--navy);
}

/* ─── FAQ SECTION ─── */
.faq-section {
  padding: 7rem 5vw;
  background: var(--white);
  position: relative;
}
.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.faq-list {
  max-width: 800px;
  margin-top: 2.5rem;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--offwhite);
}
.faq-item:hover {
  border-color: rgba(26, 86, 219, 0.25);
}
.faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.08);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--blue);
}
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(26, 86, 219, 0.08);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.4rem;
}
.faq-answer p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  letter-spacing: 0.01em;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 1.4rem 1.2rem;
}
