*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
:root {
  --b900: #0a1628;
  --b800: #0f2244;
  --b700: #1a3a6e;
  --b600: #1e4d9b;
  --b500: #2563eb;
  --b400: #3b82f6;
  --b300: #93c5fd;
  --b200: #bfdbfe;
  --b100: #dbeafe;
  --b50: #eff6ff;
  --sky: #0ea5e9;
  --sky2: #38bdf8;
  --gold: #f59e0b;
  --gold2: #fbbf24;
  --white: #fff;
  --call: #2563eb;
  --call2: #1d4ed8;
  --muted: #64748b;
  --border: #e2e8f0;
  --H: "Raleway", sans-serif;
  --B: "Lato", sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}
body {
  font-family: var(--B);
  color: #1e293b;
  background: #fff;
  overflow-x: hidden;
}

/* ─── KEYFRAME ANIMATIONS ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes glow {
  0%,
  100% {
    box-shadow:
      0 0 10px rgba(37, 99, 235, 0.5),
      0 8px 24px rgba(37, 99, 235, 0.2);
  }
  50% {
    box-shadow:
      0 0 20px rgba(37, 99, 235, 0.8),
      0 12px 40px rgba(37, 99, 235, 0.4);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}
@keyframes glow-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.8));
  }
}
@keyframes ring {
  0%,
  80%,
  100% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(-18deg);
  }
  20% {
    transform: rotate(18deg);
  }
  30% {
    transform: rotate(-12deg);
  }
  40% {
    transform: rotate(12deg);
  }
  50% {
    transform: rotate(-6deg);
  }
  60% {
    transform: rotate(6deg);
  }
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}
@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}
@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fbounce {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.55);
  }
  50% {
    box-shadow: 0 14px 42px rgba(37, 99, 235, 0.75);
    transform: translateX(-50%) translateY(-3px);
  }
}

/* ── HEADER ── */
header {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.6s ease-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hdr {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
  gap: 16px;
}
.logo {
  font-family: var(--H);
  font-weight: 900;
  font-size: 26px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
  animation: slideInLeft 0.6s ease-out 0.1s both;
  transition: transform 0.3s ease;
}
.logo-img {
  width: 250px;
  height: 50dpx;
  transition: all 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}
.logo-mark {
  background: linear-gradient(135deg, var(--b500), var(--sky));
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.logo:hover .logo-mark {
  box-shadow: 0 0 24px rgba(14, 165, 233, 0.6);
  transform: rotate(-5deg);
}
.logo-word span {
  color: var(--sky2);
}

.nav {
  display: flex;
  gap: 4px;
}
.nav a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: fadeInDown 0.6s ease-out both;
  position: relative;
}
.nav a:nth-child(1) {
  animation-delay: 0.2s;
}
.nav a:nth-child(2) {
  animation-delay: 0.3s;
}
.nav a:nth-child(3) {
  animation-delay: 0.4s;
}
.nav a:nth-child(4) {
  animation-delay: 0.5s;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav a:hover::after {
  width: 60%;
}
.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hdr-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--call);
  border-radius: 50px;
  padding: 10px 22px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  flex-shrink: 0;
  animation: slideInRight 0.6s ease-out 0.2s both;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}
.hdr-phone:hover {
  background: var(--call2);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.5);
}
.phone-ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  animation: ring 2.8s ease-in-out infinite;
}
.phone-copy small {
  display: block;
  font-size: 10px;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 700;
}
.phone-num {
  font-family: var(--H);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--b900);
  padding: 0 5% 20px;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}
.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.mobile-nav-phone {
  background: var(--call) !important;
  color: #fff !important;
  text-align: center;
  border-radius: 50px !important;
  margin-top: 8px;
  font-weight: 800 !important;
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 5% 60px;
  background: url("images/flight-banner.jpg") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgb(2 14 40 / 78%) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgb(6 21 27 / 72%) 0%, #00000047 50%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 90% 70% at 60% 30%,
      rgba(37, 99, 235, 0.28) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 60% at 90% 80%,
      rgba(14, 165, 233, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 50% at 5% 60%,
      rgba(30, 77, 155, 0.22) 0%,
      transparent 65%
    );
  animation: pulse 5s ease-in-out infinite;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(147, 197, 253, 0.5);
  border-radius: 50%;
  animation: particleFloat 12s linear infinite;
}
.particle:nth-child(1) {
  left: 10%;
  bottom: 0;
  animation-delay: 0s;
  animation-duration: 14s;
}
.particle:nth-child(2) {
  left: 30%;
  bottom: 0;
  animation-delay: 3s;
  animation-duration: 11s;
  width: 3px;
  height: 3px;
}
.particle:nth-child(3) {
  left: 55%;
  bottom: 0;
  animation-delay: 6s;
  animation-duration: 16s;
  width: 5px;
  height: 5px;
}
.particle:nth-child(4) {
  left: 75%;
  bottom: 0;
  animation-delay: 2s;
  animation-duration: 13s;
}
.particle:nth-child(5) {
  left: 90%;
  bottom: 0;
  animation-delay: 8s;
  animation-duration: 10s;
  width: 3px;
  height: 3px;
}

.hero-diag {
  position: absolute;
  right: -120px;
  top: -60px;
  width: 600px;
  height: 600px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.12),
    rgba(14, 165, 233, 0.06)
  );
  border-radius: 40px;
  transform: rotate(25deg);
  filter: blur(40px);
  z-index: 1;
}
.hero-diag2 {
  position: absolute;
  right: -60px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), transparent);
  border-radius: 50%;
  animation: pulse 5s ease-in-out infinite;
  filter: blur(60px);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0.18),
    rgba(14, 165, 233, 0.15)
  );
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: var(--b300);
  font-size: 11px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 22px;
  animation: fadeInUp 0.8s ease-out;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
}
.hero h1 {
  font-family: var(--H);
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}
.hero h1 .hl {
  color: transparent;
  background: linear-gradient(90deg, var(--sky2), var(--b300));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.5));
}
.hero-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Live dot */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
  animation: livePulse 2s ease-in-out infinite;
}

/* Phone hero block */
.hero-phone-box {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.15),
    rgba(14, 165, 233, 0.1)
  );
  border: 1px solid rgba(147, 197, 253, 0.25);
  border-radius: 20px;
  padding: 24px 26px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
}
.hero-phone-box:hover {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.25),
    rgba(14, 165, 233, 0.15)
  );
  border-color: rgba(147, 197, 253, 0.4);
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
}
.hero-phone-box-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--b500), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  animation: ring 2.8s ease-in-out infinite;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}
.hero-phone-box:hover .hero-phone-box-icon {
  box-shadow: 0 0 32px rgba(37, 99, 235, 0.6);
  transform: scale(1.1);
}
.hero-phone-box-text small {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 800;
  margin-bottom: 4px;
}
.hero-phone-big {
  display: block;
  font-family: var(--H);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  text-decoration: none;
  line-height: 1.1;
  transition: all 0.3s ease;
}
.hero-phone-big:hover {
  color: var(--sky2);
  transform: scale(1.05);
}
.hero-avail {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  font-weight: 500;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.btn-blue {
  font-family: var(--H);
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--b500), var(--b600));
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}
.btn-blue:hover {
  background: linear-gradient(135deg, var(--b600), var(--b700));
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
}
.btn-ghost {
  font-family: var(--H);
  font-size: 15px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 15px 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.35);
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ── SEARCH CARD ── */
.search-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(59, 130, 246, 0.06)
  );
  backdrop-filter: blur(40px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 34px 30px;
  animation: slideInRight 0.8s ease-out 0.2s both;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
}
.search-card:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    rgba(59, 130, 246, 0.1)
  );
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
}
.search-card h3 {
  font-family: var(--H);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tab-row {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 3px;
}
.stab {
  font-family: var(--H);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 30px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}
.stab.on {
  background: var(--b500);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}
.stab:not(.on):hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}
.srow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.sg {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.slabel {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}
.sinput {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-family: var(--B);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 16px;
  outline: none;
  width: 100%;
  transition: all 0.3s ease;
  -webkit-appearance: none;
}
.sinput::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
}
.sinput option {
  background: var(--b800);
  color: #fff;
}
.sinput:focus {
  border-color: rgba(59, 130, 246, 0.7);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.sinput[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.35);
  cursor: pointer;
}
.swap-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.swap-btn2 {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--b300);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.swap-btn2:hover {
  background: var(--b500);
  color: #fff;
  border-color: var(--b500);
  transform: rotate(180deg) scale(1.1);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}
.search-cta {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--b500), var(--sky));
  border: none;
  border-radius: 50px;
  color: #fff;
  font-family: var(--H);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 4px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}
.search-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
}
.or-call {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 12px;
}
.or-call a {
  color: rgba(147, 197, 253, 0.8);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.or-call a:hover {
  color: rgba(147, 197, 253, 1);
}

/* ── GOFARETRIP INFO SECTION ── */
.gofaretrip-info-bg {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 50%, #f0f4f8 100%);
  position: relative;
}
.gofaretrip-info-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 10% 0%, rgba(37, 99, 235, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 400px 200px at 90% 100%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.gft-intro {
  max-width: 800px;
  margin: -20px auto 48px;
  text-align: center;
}
.gft-intro p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.gft-block {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.gft-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--b500), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.gft-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.1);
  border-color: var(--b200);
}
.gft-block:hover::before {
  transform: scaleX(1);
}

.gft-block-title {
  font-family: var(--H);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--b900);
  margin-bottom: 14px;
}
.gft-block-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.gft-list {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}
.gft-list li {
  color: #334155;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 8px;
}
.gft-list li strong {
  color: var(--b900);
}

.gft-method {
  background: linear-gradient(135deg, var(--b50), #fff);
  border: 1px solid var(--b100);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  margin-bottom: 20px;
}
.gft-method:last-child {
  margin-bottom: 0;
}
.gft-method-title {
  font-family: var(--H);
  font-size: 20px;
  font-weight: 800;
  color: var(--b700);
  margin-bottom: 12px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: linear-gradient(90deg, var(--b700), var(--b600), var(--b700));
  padding: 20px 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.titem {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.titem:hover {
  transform: translateY(-2px);
}
.titem-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.titem:hover .titem-icon {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}
.titem small {
  display: block;
  font-weight: 400;
  opacity: 0.65;
  font-size: 11px;
}

/* ── SECTIONS COMMON ── */
.sec {
  padding: 90px 5%;
}
.sec-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sec-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--b500);
  margin-bottom: 10px;
  padding: 5px 14px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 30px;
}
.sec-h {
  font-family: var(--H);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--b900);
  line-height: 1.15;
  margin-bottom: 14px;
}
.sec-p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.sec-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

/* ── SERVICES ── */
.services-bg {
  background: linear-gradient(180deg, #f8fafc 0%, #f0f4f8 50%, #f8fafc 100%);
  position: relative;
}
.services-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 600px 300px at 20% 0%,
      rgba(37, 99, 235, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 400px 200px at 80% 100%,
      rgba(14, 165, 233, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.srv {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.srv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--b500), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.srv:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.14);
  border-color: var(--b200);
}
.srv:hover::before {
  transform: scaleX(1);
}
.srv-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.srv:hover .srv-icon {
  transform: scale(1.12) rotate(5deg);
}
.srv h3 {
  font-family: var(--H);
  font-size: 19px;
  font-weight: 800;
  color: var(--b900);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.srv:hover h3 {
  color: var(--b500);
}
.srv p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.srv-link {
  color: var(--b500);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}
.srv-link:hover {
  gap: 12px;
  color: var(--b600);
}

/* ── STEPS ── */
.steps-bg {
  background: #fff;
  position: relative;
}
.steps-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 600px 400px at 50% -20%,
      rgba(14, 165, 233, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 500px 300px at 50% 120%,
      rgba(37, 99, 235, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
/* Connector line between steps */
.step-connector {
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--b200), var(--b400), var(--b200));
  z-index: 0;
  border-radius: 2px;
}
.step {
  text-align: center;
  padding: 16px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.step:hover {
  transform: translateY(-6px);
}
.step-num {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--b500), var(--sky));
  color: #fff;
  font-family: var(--H);
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  border: 4px solid #fff;
}
.step:hover .step-num {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.45);
}
.step h4 {
  font-family: var(--H);
  font-size: 17px;
  font-weight: 800;
  color: var(--b900);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.step:hover h4 {
  color: var(--b500);
}
.step p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

/* ── DESTINATIONS ── */
.destinations-bg {
  background: linear-gradient(180deg, #f0f4f8 0%, #f8fafc 50%, #fff 100%);
  position: relative;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.dest-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
}
.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.14);
  border-color: var(--b200);
}
.dest-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.dest-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
}
.dest-emoji {
  font-size: 48px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
.dest-card:hover .dest-emoji {
  transform: scale(1.2) rotate(5deg);
}
.dest-info {
  padding: 18px 20px;
}
.dest-route {
  font-family: var(--H);
  font-weight: 800;
  font-size: 16px;
  color: var(--b900);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}
.dest-card:hover .dest-route {
  color: var(--b500);
}
.dest-airline {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.dest-price {
  font-size: 14px;
  color: var(--b600);
}
.dest-price strong {
  font-family: var(--H);
  font-size: 24px;
  font-weight: 900;
  color: var(--b500);
}
.dest-cta-wrap {
  text-align: center;
}
.dest-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

/* ── REVIEWS ── */
.revs-bg {
  background: linear-gradient(
    135deg,
    var(--b900) 0%,
    #0c2d6b 50%,
    #051527 100%
  );
  position: relative;
  overflow: hidden;
}
.revs-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.12) 0%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.revs-bg::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.08) 0%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.review-stars-big {
  color: var(--gold2);
  font-size: 20px;
  letter-spacing: 2px;
}
.revs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rev {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}
.rev::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.06),
    transparent
  );
  transition: left 0.6s ease;
}
.rev:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.rev:hover::before {
  left: 100%;
}
.rev-stars {
  color: var(--gold2);
  letter-spacing: 3px;
  font-size: 15px;
  margin-bottom: 14px;
}
.rev-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}
.rev-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rev-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--b500), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  transition: all 0.3s ease;
}
.rev:hover .rev-av {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}
.rev-name {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}
.rev:hover .rev-name {
  color: var(--sky2);
}
.rev-loc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}
.rev-savings {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.2),
    rgba(34, 197, 94, 0.1)
  );
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* ── FAQ ── */
.faq-bg {
  background: #fff;
  position: relative;
}
.faq-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 700px 400px at 80% 0%,
      rgba(37, 99, 235, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 500px 300px at 20% 100%,
      rgba(14, 165, 233, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}
.faq-item.open,
.faq-item:hover {
  border-color: var(--b300);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}
.faq-item.open {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.02),
    rgba(14, 165, 233, 0.02)
  );
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--H);
  font-size: 16px;
  font-weight: 700;
  color: var(--b900);
  transition: color 0.3s ease;
}
.faq-q:hover {
  color: var(--b500);
}
.faq-q .arr {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--b50);
  color: var(--b500);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.faq-item.open .arr {
  transform: rotate(180deg);
  background: var(--b500);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 22px;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 22px 20px;
}

/* ── CALL HIGHLIGHT BAND ── */
.call-band {
  background: linear-gradient(135deg, var(--b800) 0%, var(--b900) 100%);
  padding: 64px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.call-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 100% at 50% 50%,
    rgba(37, 99, 235, 0.15) 0%,
    transparent 70%
  );
}
.call-band-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
}
.call-band-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.2),
    rgba(251, 191, 36, 0.15)
  );
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--gold2);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.call-band h2 {
  font-family: var(--H);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.call-band p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  margin-bottom: 34px;
  line-height: 1.7;
}
.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--b500), var(--b600));
  border-radius: 100px;
  padding: 18px 40px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  margin-bottom: 16px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4);
}
.call-pill:hover {
  background: linear-gradient(135deg, var(--b600), var(--b700));
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.5);
}
.call-pill-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  animation: ring 2.8s ease-in-out infinite;
}
.call-pill-text small {
  display: block;
  font-size: 11px;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
}
.call-pill-num {
  font-family: var(--H);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}
.call-meta {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 9999;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  width: 90%;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  transform: translateY(40px) scale(0.95);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 20px;
  border: none;
  background: #f1f5f9;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  color: #64748b;
}
.modal-close:hover {
  background: #e2e8f0;
  transform: rotate(90deg);
  color: #1e293b;
}
.modal-icon {
  font-size: 52px;
  margin-bottom: 14px;
  animation: pop 0.4s ease;
}
.modal-title {
  font-family: var(--H);
  font-size: 26px;
  font-weight: 900;
  color: var(--b900);
}
.modal-subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}
.modal-message {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}
.modal-cta {
  margin-top: 22px;
}
.modal-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--b500), var(--b600));
  color: #fff;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--H);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35);
  transition: all 0.25s ease;
}
.modal-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.5);
}
.modal-btn-secondary {
  width: 100%;
  margin-top: 12px;
  padding: 13px;
  border: none;
  border-radius: var(--radius-md);
  background: #f1f5f9;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal-btn-secondary:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  background: #060d1a;
  padding: 60px 5% 24px;
}
.ft {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ft-brand .logo {
  margin-bottom: 16px;
  display: inline-flex;
}
.ft-desc {
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.ft-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--call);
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}
.ft-phone:hover {
  background: var(--call2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}
.ft-col h5 {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--H);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft-col a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.ft-col a:hover {
  color: rgba(255, 255, 255, 0.85);
  transform: translateX(4px);
}
.ft-bottom {
  max-width: 1160px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}
.ft-seals {
  display: flex;
  gap: 8px;
}
.seal {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 5px 12px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.seal:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}

/* ── FLOATING BUTTON ── */
.float-btn {
  display: none;
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: linear-gradient(135deg, var(--b500), var(--b600));
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  padding: 14px 28px;
  font-family: var(--H);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.55);
  align-items: center;
  gap: 10px;
  animation: fbounce 2s ease-in-out infinite;
  transition: all 0.3s ease;
}
.float-btn:active {
  animation: none;
  transform: translateX(-50%) scale(0.95);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .revs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-connector {
    display: none;
  }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .search-card {
    max-width: 520px;
  }
  .ft {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hdr-phone {
    display: none;
  }
  .logo-img {
    width: 150px;
  }
  .nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero {
    min-height: auto;
    padding: 24px 4% 50px;
  }
  .scroll-indicator {
    display: none;
  }
  .cta-row {
    flex-direction: column;
  }
  .btn-blue,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .hero-phone-big {
    font-size: 26px;
  }
  .trust-bar-inner {
    justify-content: flex-start;
    overflow-x: auto;
  }
  .titem {
    flex-shrink: 0;
  }
  .srv-grid {
    grid-template-columns: 1fr;
  }
  .dest-grid {
    grid-template-columns: 1fr;
  }
  .revs-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ft {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .float-btn {
    display: flex;
  }
  body {
    padding-bottom: 75px;
  }
  .srow {
    grid-template-columns: 1fr;
  }
  .call-pill-num {
    font-size: 22px;
  }
  .sec {
    padding: 60px 5%;
  }
  .sec-head {
    margin-bottom: 36px;
  }
  .faq-q {
    font-size: 15px;
    padding: 16px 18px;
  }
  .gft-block {
    padding: 24px 20px;
  }
  .gft-method {
    padding: 20px 18px;
  }
}

@media (max-width: 380px) {
  .phone-num {
    font-size: 16px;
  }
  .hero h1 {
    font-size: 30px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
