/* FlyWay — Global Styles & Design System */

:root {
  --primary: #022440;
  --secondary: #03314C;
  --accent: #0EA5E9;
  --cta: #0F9DFF;
  --cta-hover: #38BDF8;
  --bg-light: #F8FAFC;
  --bg-section: #FFFFFF;
  --footer-bg: #021B33;
  --text-onDark: #FFFFFF;
  --heading: #022440;
  --body-text: #475569;
  --muted: #64748B;
  --border: #E2E8F0;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 40px -12px rgba(2, 36, 64, 0.14);
  --shadow-lift: 0 20px 60px -15px rgba(2, 36, 64, 0.25);
  --shadow-glow: 0 12px 35px -8px rgba(14, 165, 233, 0.45);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--body-text);
  background: var(--bg-light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
  border-radius: 2px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--body-text);
}

section {
  padding: 80px 0;
  position: relative;
}

.bg-white { background: var(--bg-section); }
.bg-light { background: var(--bg-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--cta);
  color: var(--text-onDark);
  box-shadow: 0 12px 30px -8px rgba(15, 157, 255, 0.55);
}

.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -8px rgba(56, 189, 248, 0.65);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-onDark);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  transition: opacity .6s ease, visibility .6s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.plane-loader {
  font-size: 38px;
  color: var(--accent);
  animation: fly-loop 1.4s ease-in-out infinite;
}

@keyframes fly-loop {
  0%, 100% { transform: translateX(-16px) rotate(-8deg); }
  50% { transform: translateX(16px) rotate(8deg); }
}

.loader-text {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  letter-spacing: .35em;
  font-size: 13px;
  text-transform: uppercase;
  opacity: .85;
}

.preloader-logo {
  width: 240px;
  height: auto;
  object-fit: contain;
  animation: pulse-logo 1.6s ease-in-out infinite;
  filter: drop-shadow(0 4px 24px rgba(0, 180, 255, 0.45));
}

@keyframes pulse-logo {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.88; }
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all .4s ease;
}

header.scrolled {
  padding: 14px 0;
  background: rgba(2, 36, 64, 0.88);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.35);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 14px rgba(0,180,255,0.35));
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.nav-cta .btn {
  padding: 12px 24px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
  background:
    linear-gradient(180deg, rgba(2, 20, 38, 0.6) 0%, rgba(2, 36, 64, 0.82) 55%, rgba(2, 27, 51, 0.96) 100%),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=2000&auto=format&fit=crop') center/cover fixed no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.hero-icons span {
  position: absolute;
  color: rgba(255, 255, 255, 0.14);
  font-size: 34px;
  animation: float 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-icons span:nth-child(1) { top: 18%; left: 8%; animation-delay: 0s; font-size: 44px; }
.hero-icons span:nth-child(2) { top: 30%; right: 12%; animation-delay: 1.4s; font-size: 30px; }
.hero-icons span:nth-child(3) { bottom: 26%; left: 14%; animation-delay: 2.6s; font-size: 26px; }
.hero-icons span:nth-child(4) { bottom: 20%; right: 20%; animation-delay: .8s; font-size: 38px; }
.hero-icons span:nth-child(5) { top: 55%; left: 45%; animation-delay: 3.4s; font-size: 22px; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(8deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-content .eyebrow {
  color: var(--cta-hover);
  margin-left: auto;
  margin-right: auto;
}

.hero-content h1 {
  font-size: clamp(38px, 5.5vw, 66px);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 22px;
}

.hero-content h1 span {
  color: var(--cta-hover);
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 38px;
}

.hero-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* Quick Search Widget in Hero */
.hero-search-widget {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.widget-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 12px;
  overflow-x: auto;
}

.tab-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-btn.active, .tab-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.tab-btn.active {
  background: var(--cta);
}

.widget-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) auto;
  gap: 14px;
  align-items: center;
}

.input-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-box label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
}

.input-box input, .input-box select {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--primary);
  width: 100%;
}

.input-box input:focus, .input-box select:focus {
  outline: none;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.4);
}

.widget-form .btn {
  padding: 14px 28px;
  height: 46px;
  align-self: flex-end;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-scroll .line {
  width: 1px;
  height: 30px;
  background: linear-gradient(#ffffff, transparent);
  animation: scrolldown 1.8s ease-in-out infinite;
}

@keyframes scrolldown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* About Section */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lift);
}

.about-badge {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: #ffffff;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
}

.about-badge .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--primary);
}

.about-badge .lbl {
  font-size: 12.5px;
  color: var(--muted);
  max-width: 120px;
  line-height: 1.4;
  font-weight: 500;
}

.about-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 16px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--primary);
  font-weight: 600;
}

.about-points i {
  color: var(--accent);
  font-size: 16px;
}

/* Services Grid */
.grid-services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.svc-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 24px;
  text-align: left;
  transition: all .4s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
}

.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-card .icon, .svc-card h4, .svc-card p {
  position: relative;
  z-index: 1;
}

.svc-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all .4s ease;
}

.svc-card:hover .icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.svc-card h4 {
  font-size: 16.5px;
  margin-bottom: 8px;
  transition: color .4s ease;
}

.svc-card:hover h4 {
  color: #ffffff;
}

.svc-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  transition: color .4s ease;
}

.svc-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.why-card {
  background: linear-gradient(180deg, #ffffff, #F8FAFC);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: all .35s ease;
}

.why-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.why-card i {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}

.why-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--body-text);
}

/* Destinations (Boarding Pass Cards) */
.dest-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.dest-filter-btn {
  background: #ffffff;
  border: 1.5px solid var(--border);
  color: var(--body-text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dest-filter-btn.active, .dest-filter-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.dest-scroller {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.pass-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease, opacity 0.4s ease;
  position: relative;
  border: 1px solid var(--border);
}

.pass-card.hidden {
  display: none;
}

.pass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.pass-photo {
  height: 170px;
  position: relative;
  overflow: hidden;
}

.pass-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.pass-card:hover .pass-photo img {
  transform: scale(1.08);
}

.pass-code {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(2, 36, 64, 0.82);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  padding: 5px 10px;
  border-radius: 6px;
}

.pass-perforation {
  position: relative;
  height: 0;
}

.pass-perforation::before {
  content: "";
  position: absolute;
  top: -9px;
  left: -9px;
  width: 18px;
  height: 18px;
  background: var(--bg-light);
  border-radius: 50%;
  z-index: 2;
}

.pass-perforation::after {
  content: "";
  position: absolute;
  top: -9px;
  right: -9px;
  width: 18px;
  height: 18px;
  background: var(--bg-light);
  border-radius: 50%;
  z-index: 2;
}

.pass-dash {
  border-top: 2px dashed var(--border);
  margin: 0 22px;
}

.pass-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pass-body h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.pass-body p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
}

.pass-explore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  align-self: flex-start;
  cursor: pointer;
}

.pass-explore i {
  font-size: 11px;
  transition: transform .3s ease;
}

.pass-card:hover .pass-explore i {
  transform: translateX(4px);
}

/* Process Flight Path */
.flight-path-wrap {
  position: relative;
  padding-top: 20px;
}

.flight-svg {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: -40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
  z-index: 2;
}

.process-card {
  text-align: center;
  padding: 0 10px;
}

.process-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent);
  margin: 0 auto 22px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all 0.3s ease;
}

.process-card:hover .process-icon {
  transform: scale(1.08);
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.process-icon .step-tag {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--cta);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(15, 157, 255, 0.4);
}

.process-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* Testimonials */
.testi-wrap {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.testi-slide {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  display: none;
  border: 1px solid var(--border);
}

.testi-slide.active {
  display: block;
  animation: fadeIn .6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.testi-stars {
  color: #FBBF24;
  font-size: 18px;
  margin-bottom: 22px;
  letter-spacing: 3px;
}

.testi-slide p.quote {
  font-size: 20px;
  line-height: 1.7;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 26px;
  font-family: 'Poppins', sans-serif;
}

.testi-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testi-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testi-person .name {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
}

.testi-person .loc {
  font-size: 12.5px;
  color: var(--muted);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.testi-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all .3s ease;
}

.testi-dots span.active {
  background: var(--accent);
  width: 28px;
  border-radius: 6px;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: #ffffff;
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 54px);
  color: var(--cta-hover);
}

.stat-lbl {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* FAQ Section */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 17px;
  transition: color 0.3s ease;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-q i {
  transition: transform .35s ease;
  color: var(--accent);
  font-size: 18px;
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-a p {
  padding: 0 6px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-text);
  max-width: 720px;
}

/* Contact Section */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--primary);
  background: var(--bg-light);
  transition: border-color .3s ease, box-shadow .3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
  background: #ffffff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.info-card i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.info-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--border);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4));
}

.footer-col h5 {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  transition: color .3s ease;
}

.footer-col ul li a:hover {
  color: var(--cta-hover);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all .3s ease;
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 26px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Floating Actions & Widgets */
.float-btn {
  position: fixed;
  right: 26px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  border: none;
  transition: all .3s ease;
}

.whatsapp-btn {
  bottom: 26px;
  background: #25D366;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

.totop-btn {
  bottom: 94px;
  background: var(--primary);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.totop-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.totop-btn:hover {
  background: var(--accent);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--primary);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  animation: slideIn 0.4s ease forwards;
  border-left: 4px solid var(--accent);
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 36, 64, 0.8);
  backdrop-filter: blur(6px);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lift);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--muted);
  cursor: pointer;
}

.modal-close:hover {
  color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 1180px) {
  .grid-services { grid-template-columns: repeat(3, 1fr); }
  .dest-scroller { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .about-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(2, 36, 64, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 30px;
    gap: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .grid-services { grid-template-columns: repeat(2, 1fr); }
  .dest-scroller { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 75px 0; }
  .hero { background-attachment: scroll; }
  .about-media img { height: 380px; }
  .about-badge { bottom: -15px; left: 15px; }
  .testi-slide { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .grid-services { grid-template-columns: 1fr; }
  .dest-scroller { grid-template-columns: 1fr; }
  .widget-form { grid-template-columns: 1fr; }
  .widget-form .btn { width: 100%; }
  .contact-form { padding: 24px; }
}

/* ============================================================
   WHY CHOOSE FLYWAY — Premium Dark Section
   ============================================================ */

.why-flyway-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #021b33 0%, #022440 45%, #03314C 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.wf-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.wf-blob-1 {
  width: 520px;
  height: 520px;
  background: var(--accent);
  top: -180px;
  left: -160px;
}

.wf-blob-2 {
  width: 420px;
  height: 420px;
  background: var(--cta);
  bottom: -140px;
  right: -120px;
}

.why-flyway-section .container {
  position: relative;
  z-index: 1;
}

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

/* Individual card */
.wf-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 38px 32px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background 0.4s ease;
  cursor: default;
}

/* Hover lift & glow border */
.wf-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(14, 165, 233, 0.55);
  box-shadow:
    0 24px 60px -16px rgba(14, 165, 233, 0.3),
    0 0 0 1px rgba(14, 165, 233, 0.25);
}

/* Animated inner glow on hover */
.wf-card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.wf-card:hover .wf-card-glow {
  opacity: 1;
}

/* Icon container */
.wf-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.22), rgba(15, 157, 255, 0.1));
  border: 1px solid rgba(14, 165, 233, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--cta-hover);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.wf-card:hover .wf-icon-wrap {
  background: linear-gradient(135deg, var(--cta), var(--accent));
  border-color: transparent;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 8px 24px -8px rgba(14, 165, 233, 0.55);
}

/* Text block */
.wf-card-body h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.wf-card-body p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

/* Large card number */
.wf-card-number {
  position: absolute;
  bottom: 16px;
  right: 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  user-select: none;
  transition: color 0.4s ease;
}

.wf-card:hover .wf-card-number {
  color: rgba(14, 165, 233, 0.12);
}

/* Responsive — tablet */
@media (max-width: 1080px) {
  .wf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive — mobile */
@media (max-width: 640px) {
  .wf-grid {
    grid-template-columns: 1fr;
  }

  .why-flyway-section {
    padding: 80px 0;
  }
}

/* ============================================================
   FOOTER SEARCH WIDGET
   ============================================================ */

.footer-search-widget {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px 0 40px;
  margin-top: 0;
}

.footer-search-head {
  text-align: center;
  margin-bottom: 24px;
}

.footer-search-head h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-search-head h4 i {
  color: var(--accent);
}

.footer-search-head p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer tabs — more compact */
.footer-tabs {
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-tabs .tab-btn {
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
}

.footer-tabs .tab-btn.active,
.footer-tabs .tab-btn:hover {
  background: var(--cta);
  border-color: var(--cta);
  color: #ffffff;
}

/* Footer form inputs — dark theme */
.footer-widget-form {
  max-width: 960px;
  margin: 0 auto;
}

.footer-widget-form .input-box label {
  color: rgba(255, 255, 255, 0.75);
}

.footer-widget-form .input-box input,
.footer-widget-form .input-box select {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-radius: 12px;
}

.footer-widget-form .input-box input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-widget-form .input-box select option {
  background: var(--primary);
  color: #ffffff;
}

.footer-widget-form .input-box input:focus,
.footer-widget-form .input-box select:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
  outline: none;
}

@media (max-width: 768px) {
  .footer-widget-form {
    grid-template-columns: 1fr;
  }

  .footer-search-widget {
    padding: 36px 0 28px;
  }
}

/* ============================================================
   VISA SOLUTIONS SECTION
   ============================================================ */

.visa-solutions-section {
  padding: 80px 0;
  background: linear-gradient(160deg, #011528 0%, #022440 50%, #021d38 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.vs-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.vs-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #0EA5E9, transparent);
  top: -220px;
  right: -200px;
}

.vs-blob-2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, #0F9DFF, transparent);
  bottom: -180px;
  left: -160px;
}

.visa-solutions-section .container {
  position: relative;
  z-index: 1;
}

/* 3-column grid (desktop), 2-column (tablet), 1-column (mobile) */
.vs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

/* Individual card */
.vs-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 26px 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(.2, .8, .2, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background 0.4s ease;
  cursor: default;
}

/* Featured card accent border */
.vs-card-featured {
  border-color: rgba(14, 165, 233, 0.4);
  background: rgba(14, 165, 233, 0.08);
}

/* Hover — lift + glow */
.vs-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(14, 165, 233, 0.6);
  box-shadow:
    0 28px 60px -18px rgba(14, 165, 233, 0.35),
    0 0 0 1px rgba(14, 165, 233, 0.2);
}

/* Inner radial glow */
.vs-card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(14, 165, 233, 0.16) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.vs-card:hover .vs-card-glow {
  opacity: 1;
}

/* Inner layout: icon + text + badge in a row */
.vs-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* Gradient icon box */
.vs-icon-wrap {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.28), rgba(15, 157, 255, 0.12));
  border: 1px solid rgba(14, 165, 233, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--cta-hover);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.vs-card:hover .vs-icon-wrap {
  background: linear-gradient(135deg, var(--cta), var(--accent));
  border-color: transparent;
  color: #ffffff;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 24px -6px rgba(14, 165, 233, 0.5);
}

/* Title & description */
.vs-card-text {
  flex: 1;
}

.vs-card-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.vs-card-text p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  margin: 0;
}

/* Duration badge */
.vs-badge {
  min-width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: var(--cta-hover);
  flex-shrink: 0;
  letter-spacing: 0.02em;
  transition: all 0.4s ease;
}

.vs-badge-featured {
  background: rgba(14, 165, 233, 0.28);
  border-color: var(--accent);
  color: #ffffff;
}

.vs-card:hover .vs-badge {
  background: var(--cta);
  border-color: transparent;
  color: #ffffff;
}

/* Apply Now link */
.vs-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--cta-hover);
  position: relative;
  z-index: 1;
  transition: gap 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.vs-apply-btn i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.vs-card:hover .vs-apply-btn {
  color: #ffffff;
}

.vs-card:hover .vs-apply-btn i {
  transform: translateX(5px);
}

/* Bottom CTA Banner */
.vs-cta {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
}

.vs-cta-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.vs-cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

/* Responsive — tablet: 2 columns */
@media (max-width: 1080px) {
  .vs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive — mobile: 1 column */
@media (max-width: 640px) {
  .vs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .visa-solutions-section {
    padding: 80px 0;
  }

  .vs-cta {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .vs-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .vs-card {
    padding: 22px 18px 18px;
  }

  .vs-icon-wrap {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 18px;
  }

  .vs-card-text h4 {
    font-size: 15px;
  }
}
