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

:root {
  --red: #e8000d;
  --red-dark: #b0000a;
  --red-bright: #ff1a26;
  --black: #0a0a0a;
  --black-mid: #111111;
  --charcoal: #222222;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --light-grey: #f0f0f0;
  --grey: #666666;
  --grey-light: #999999;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.15);
  --border-red: rgba(232, 0, 13, 0.3);
  --ff-display: 'Bebas Neue', Impact, sans-serif;
  --ff-body: 'Outfit', sans-serif;
  --ff-mono: 'DM Mono', monospace;
  --radius: 6px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.12);
  --shadow-red: 0 12px 40px rgba(232, 0, 13, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 42px;
  width: auto;
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -1px;
}

.logo-text {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--black);
  letter-spacing: 1px;
  line-height: 1;
}

.logo-sub {
  font-family: var(--ff-mono);
  font-size: 0.5rem;
  color: var(--grey-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.04em;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 9px 22px !important;
  border-radius: 3px !important;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all var(--transition);
}

/* Drawer Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background-color: var(--black);
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1001;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #116864;
  color: var(--white);
  /* Teal circular button matching image */
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-header {
  padding: 30px 24px 20px;
  display: flex;
  justify-content: center;
}

.drawer-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin: 10px 24px;
  font-size: 0.85rem;
}

.drawer-divider::before,
.drawer-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-divider::before {
  margin-right: 10px;
}

.drawer-divider::after {
  margin-left: 10px;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  padding: 10px 24px;
}

.drawer-item {
  display: flex;
  align-items: center;
  padding: 14px 0;
  color: var(--white);
  text-decoration: none;
  font-size: 1.05rem;
  font-family: var(--ff-body);
  font-weight: 400;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.drawer-item:hover {
  transform: translateX(4px);
  color: var(--red);
}

.drawer-icon {
  font-size: 1.2rem;
  color: #116864;
  width: 40px;
}

.drawer-caret {
  margin-left: auto;
  width: 28px;
  height: 28px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  overflow: hidden;
}

.ticker-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

@keyframes slowBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.ticker-label {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  animation: slowBlink 2s ease-in-out infinite;
}

.ticker-text {
  font-size: 0.78rem;
  color: var(--grey);
}

.ticker-text a {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  background: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-red-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: var(--red);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-red-bar::after {
  content: 'F2S';
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: clamp(8rem, 16vw, 16rem);
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  user-select: none;
  letter-spacing: -4px;
}

.hero-inner {
  max-width: 1280px;
  margin: auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--red);
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 400;
  color: var(--black);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--red);
  display: block;
}

.hero h1 .outline {
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.2);
  color: transparent;
  display: block;
}

.hero-desc {
  color: var(--grey);
  font-size: 1rem;
  max-width: 460px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  font-size: 0.83rem;
  padding: 14px 30px;
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  font-family: var(--ff-body);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--black);
  font-weight: 500;
  font-size: 0.83rem;
  padding: 13px 28px;
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--black);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat {
  flex: 1;
  padding-right: 28px;
  border-right: 1px solid var(--border);
  margin-right: 28px;
}

.stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  color: var(--black);
  line-height: 1;
}

.stat-num span {
  color: var(--red);
}

.stat-label {
  font-size: 0.68rem;
  color: var(--grey-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  font-family: var(--ff-mono);
}

/* Hero right card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10px;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.flight-card {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.flight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00c851, #00c851 60%, transparent);
}

.card-route {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.card-city {
  font-family: var(--ff-display);
  font-size: 2rem;
  letter-spacing: 1px;
  color: var(--black);
  line-height: 1;
}

.card-arrow {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--red);
  font-size: 1rem;
}

.card-arrow::before,
.card-arrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--red);
  opacity: 0.3;
}

.card-code {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  color: var(--grey-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.card-divider {
  border: none;
  border-top: 1px dashed var(--border);
  margin: 16px 0;
}

.card-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-info-label {
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  color: var(--grey-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.card-info-value {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  margin-top: 2px;
}

.card-badge {
  background: var(--red);
  color: var(--white);
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-badge.approved {
  background: #00c851;
}

.floating-badge {
  position: absolute;
  top: -16px;
  left: 20px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px 14px;
  font-size: 0.65rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.dot {
  width: 7px;
  height: 7px;
  background: #00c851;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3)
  }
}

.card-2 {
  position: absolute;
  bottom: -28px;
  right: -16px;
  width: 72%;
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  z-index: -1;
}

.card-2-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-2-title {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.card-2-value {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--red);
}

/* ── SECTIONS ── */
.section {
  padding: 14px 0;
  position: relative;
  background: var(--white);
  scroll-margin-top: 69px;
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.section-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '//';
  color: rgba(232, 0, 13, 0.4);
  margin-right: 2px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  color: var(--black);
  line-height: 0.95;
  letter-spacing: 2px;
}

.section-title .accent {
  color: var(--red);
}

.section-title .outline {
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.12);
  color: transparent;
}

.section-desc {
  color: var(--grey);
  font-size: 0.93rem;
  line-height: 1.8;
  max-width: 500px;
  margin-top: 14px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-visual {
  position: relative;
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 48px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 0, 13, 0.1) 0%, transparent 60%);
}

.about-big-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--ff-display);
  font-size: 7rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  user-select: none;
}

.about-plane {
  font-size: 5rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  animation: flyIn 3s ease-in-out infinite;
}

@keyframes flyIn {

  0%,
  100% {
    transform: translateX(0) translateY(0) rotate(-5deg)
  }

  50% {
    transform: translateX(8px) translateY(-8px) rotate(0deg)
  }
}

.about-grid-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.astat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 16px;
}

.astat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}

.astat-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-family: var(--ff-mono);
}

.about-left {
  position: relative;
}

.about-badge {
  position: absolute;
  top: -24px;
  right: -24px;
  background: var(--red);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-red);
  z-index: 2;
}

.ab-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  line-height: 1;
}

.ab-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
  font-family: var(--ff-mono);
}

.mv-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.mv-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.mv-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}

.mv-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.mv-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  margin-bottom: 5px;
}

.mv-desc {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ── SERVICES ── */
.services-header .section-title {
  color: var(--black);
}

.services-header .section-title .outline {
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.15);
}

.services-header .section-desc {
  color: var(--grey);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  background: transparent;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(232, 0, 13, 0.22);
  border-color: transparent;
}

.service-card:hover .service-title,
.service-card:hover .service-desc {
  color: var(--white);
}

.service-card:hover .service-icon-wrap {
  background: var(--white);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover .service-num {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
  color: transparent;
  transform: scale(1.1) translate(-2px, -2px);
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-title {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 12px;
  transition: color 0.45s ease;
}

.service-desc {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.7;
  transition: color 0.45s ease;
}

.service-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--ff-display);
  font-size: 3.8rem;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.12);
  color: transparent;
  line-height: 1;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  user-select: none;
}

/* ── COUNTRIES ── */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.country-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.country-card:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(232, 0, 13, 0.18);
}

.country-card:hover .cc-arrow {
  transform: translateX(4px);
  color: var(--red);
}

.cc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.cc-flag {
  font-size: 2.6rem;
  line-height: 1;
}

.cc-arrow {
  color: var(--grey-light);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.cc-name {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 3px;
}

.cc-sub {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.cc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cc-features li {
  font-size: 0.78rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cc-features li::before {
  content: '—';
  color: var(--red);
  font-weight: 600;
  flex-shrink: 0;
}

.cc-more {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 220px;
  box-shadow: var(--shadow);
}

.cc-more-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.cc-more-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}

.cc-more-sub {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: 'FLY';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 18rem;
  color: rgba(0, 0, 0, 0.08);
  line-height: 1;
  user-select: none;
}

.cta-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--red);
  font-weight: 600;
  font-size: 0.83rem;
  padding: 15px 32px;
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ── STYLED REVIEWS (IMAGE-BASED) ── */
.reviews-bg {
  background: var(--black);
}

.reviews-styled-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.styled-review-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.styled-review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.src-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.src-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--ff-mono);
  font-size: 0.45rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

.src-logo-sm {
  width: 24px;
  height: 24px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 0.5rem;
  color: var(--white);
  box-shadow: 0 2px 10px rgba(232, 0, 13, 0.3);
}

.src-visual-wrap {
  background: #fff;
  border-radius: 12px;
  flex: 1;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: inset 0 0 0 4px #e5e5e5;
  background-color: #ddd;
  /* Simulate image placeholder */
}

.src-brand-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--black);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.55rem;
  color: var(--white);
  font-family: var(--ff-display);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.src-brand-overlay::before {
  content: 'F2S';
  background: var(--red);
  color: var(--white);
  padding: 3px 4px;
  border-radius: 50%;
  font-size: 0.4rem;
}

.src-brand-overlay span {
  color: var(--red);
}

.src-view-text {
  text-align: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 400;
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
}

.styled-view-all {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: opacity var(--transition);
}

.styled-view-all:hover {
  opacity: 0.7;
}

/* ── REVIEWS (LEGACY PLACEHOLDER OR FALLBACK) ── */
.review-label span {
  display: block;
  font-family: var(--ff-mono);
  color: var(--red);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

/* ── BLOGS ── */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--black-mid) 0%, var(--black) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-thumb-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(232, 0, 13, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 0, 13, 0.2) 1px, transparent 1px);
  background-size: 24px 24px;
}

.blog-thumb-icon {
  position: relative;
  z-index: 2;
  color: var(--red);
  background: rgba(232, 0, 13, 0.08);
  padding: 18px;
  border-radius: 50%;
  border: 1px solid rgba(232, 0, 13, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(232, 0, 13, 0.2);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card:hover .blog-thumb-icon {
  transform: scale(1.15) rotate(-5deg);
  background: rgba(232, 0, 13, 0.12);
}

.blog-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, var(--black) 100%);
  opacity: 0.6;
}

.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-tag {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.blog-title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

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

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transition: all var(--transition);
}

.contact-item:hover {
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.ci-icon {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-label {
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.ci-value {
  font-size: 0.83rem;
  color: var(--grey);
  line-height: 1.65;
}

.ci-value a {
  color: var(--grey);
  text-decoration: none;
}

.ci-value a:hover {
  color: var(--red);
}

.contact-form {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--ff-display);
  font-size: 2rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 30px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select option {
  background: var(--black);
  color: var(--white);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 72px 0 36px;
}

.footer-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-brand .brand-legal {
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 14px;
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0 0 26px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.2);
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--red);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.d1 {
  animation-delay: 0.1s
}

.d2 {
  animation-delay: 0.22s
}

.d3 {
  animation-delay: 0.36s
}

.d4 {
  animation-delay: 0.52s
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-styled-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-red-bar {
    width: 48%;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-badge {
    right: 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  nav {
    position: sticky;
    top: 0;
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-red-bar {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    min-width: 80px;
  }

  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .topbar-inner {
    flex-direction: column;
    gap: 4px;
    font-size: 0.65rem;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .countries-grid {
    grid-template-columns: 1fr;
  }

  .reviews-styled-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3rem, 10vw, 5rem);
  }
}

@media (max-width: 380px) {
  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .section {
    padding: 40px 0;
  }

  .hero-inner {
    padding: 40px 16px;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .about-visual {
    padding: 24px;
    min-height: 380px;
  }

  .reviews-styled-grid {
    grid-template-columns: 1fr;
  }
}

/* ── POPUP FORM ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeInPopup 0.4s ease forwards;
}

@keyframes fadeInPopup {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.popup-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(20px) scale(0.95);
  animation: popUpAnim 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes popUpAnim {
  to {
    transform: translateY(0) scale(1);
  }
}

.popup-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--light-grey);
  color: var(--grey);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.popup-close-btn:hover {
  background: var(--red);
  color: var(--white);
  transform: rotate(90deg);
}

.popup-header h2 {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.popup-header p {
  color: var(--grey);
  font-size: 0.88rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.popup-form .flex-group {
  display: flex;
  gap: 14px;
}

.popup-form .input-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.popup-form .form-group {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.popup-form label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.popup-form input[type="text"],
.popup-form input[type="email"],
.popup-form input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: all var(--transition);
  outline: none;
  background: var(--off-white);
  color: var(--black);
}

.popup-form input:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 0, 13, 0.1);
}

.popup-form input::placeholder {
  color: var(--grey-light);
}

.popup-form .phone-input-wrap {
  display: flex;
  gap: 10px;
  width: 100%;
}

.popup-form .phone-input-wrap input {
  flex: 1;
}

.popup-form .country-code-select {
  padding: 4px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--off-white);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  outline: none;
  color: var(--black);

  width: 100px;
  /* exact control */
  flex: none;

}

.popup-form .country-code-select option {
  background: var(--white);
  color: var(--black);
}

.popup-form .country-code-select:focus {
  border-color: var(--red);
}

.popup-form .form-checkbox-group {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  color: var(--grey);
  cursor: pointer;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  cursor: pointer;
}

.popup-status {
  margin-top: 16px;
  font-size: 0.85rem;
  padding: 10px;
  border-radius: var(--radius);
  text-align: center;
}

.popup-status.error {
  background: #ffebee;
  color: var(--red-dark);
  border: 1px solid #ffcdd2;
}

.popup-status.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.form-actions {
  margin-top: 24px;
}

.submit-btn {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.submit-btn:hover:not(:disabled) {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.submit-btn:disabled {
  background: var(--border-strong);
  cursor: not-allowed;
}

@media (max-width: 500px) {
  .popup-container {
    padding: 30px 20px;
  }

  .popup-form .flex-group {
    flex-direction: column;
    gap: 14px;
  }
}