/* ── CUSTOM PROPERTIES ─────────────────────── */
:root {
  /* Brand Colors */
  --brand-primary: #104690;
  --brand-primary-dark:  #018fcd;
  --brand-primary-light: #035ebb;
  --brand-accent: #cc141e;
  --brand-accent-dark: #5dcf32 ;
  --brand-gold:  #f49004;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #F8F9FC;
  --light-gray: #EEF1F8;
  --mid-gray: #B0BAD0;
  --text-muted: #6B7A99;
  --text-body: #374162;
  --text-heading: #0A1640;
  --dark-navy: #08122B;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #0057B8 0%, #1a3d8c 100%);
  --grad-hero: linear-gradient(180deg, rgba(8,18,43,0.65) 0%, rgba(8,18,43,0.85) 100%);
  --grad-accent: linear-gradient(135deg, #cc141e 0%, #cc141db6 100%);
  --grad-gold: linear-gradient(135deg, #F5A623 0%, #f7c46a 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.25);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --trans-fast: 0.2s ease;
  --trans-base: 0.35s ease;
  --trans-slow: 0.6s ease;

  /* Layout */
  --container-max: 1240px;
  --section-pad-y: 96px;
  --header-height: 76px;
}

/* ── RESET & BASE ───────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── CONTAINER ──────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
      box-sizing: border-box;

}

/* ── SECTION PADDING ────────────────────────── */
.section-pad {
  padding: var(--section-pad-y) 0;
}

/* ── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

em { font-style: italic; font-family: 'Playfair Display', serif; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-accent);
  background: rgba(255,107,43,0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--text-heading);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.light .section-title { color: var(--white); }
.section-header.light .section-sub { color: rgba(255,255,255,0.7); }
.light-tag { background: rgba(255,255,255,0.15); color: var(--white); }
.light-title { color: var(--white); }
.light-sub { color: rgba(255,255,255,0.7); }

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--trans-base);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--grad-accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,43,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,43,0.55);
  filter: brightness(1.08);
}

.btn-outline-white {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--brand-primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--brand-primary);
  font-weight: 600;
}
.btn-white:hover {
  background: var(--brand-accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-xl { padding: 20px 48px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ── TOP BAR ────────────────────────────────── */
.topbar {
  background: var(--dark-navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-gold);
}
.topbar-left i { font-size: 0.75rem; }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  transition: color var(--trans-fast);
}
.topbar-right a:hover { color: var(--brand-gold); }
.topbar-right i { color: var(--brand-accent); font-size: 0.8rem; }

/* ── HEADER / NAV ───────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--trans-base), box-shadow var(--trans-base), top var(--trans-base);
      height: 140px;
    display: flex;
    align-items: center;
}

/* Add topbar height offset */
body { padding-top: 0; }

.site-header.scrolled {
  background: rgba(8,18,43,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  height: 120px;
    display: flex;
    align-items: center;
}

.nav {
  display: flex;
  align-items: center;
  height: var(--header-height);
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--grad-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
  box-shadow: 0 4px 15px rgba(255,107,43,0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--trans-fast);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans-fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 960px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 100px;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,43,0.2);
  border: 1px solid rgba(255,107,43,0.5);
  color: #FFB899;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  width: fit-content;
  backdrop-filter: blur(8px);
}

.hero-content h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}
.hero-content h1 em {
  color: var(--brand-gold);
}

.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 620px;
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-tags li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-tags li i { color: var(--brand-gold); font-size: 0.85rem; }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Slider Controls */
.hero-controls {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-prev, .hero-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all var(--trans-fast);
  cursor: pointer;
}
.hero-prev:hover, .hero-next:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  transform: scale(1.1);
}

.hero-dots {
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid transparent;
  transition: all var(--trans-fast);
  cursor: pointer;
}
.dot.active {
  background: var(--brand-accent);
  border-color: var(--white);
  transform: scale(1.3);
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 48px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.scroll-dot {
  width: 6px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 12px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  animation: scrollDot 2s ease infinite;
}
@keyframes scrollDot {
  0% { top: 4px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* ── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,57,135,0.1);
  position: relative;
  z-index: 5;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 20px 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-heading);
  white-space: nowrap;
}
.trust-item i {
  color: var(--brand-primary);
  font-size: 1rem;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--light-gray);
}

/* ── ABOUT ──────────────────────────────────── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-primary);
  line-height: 1;
}
.badge-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 200px;
  height: 150px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .section-tag { margin-bottom: 12px; }

.about-lead {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* Stats Grid */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.stat-item {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border-left: 4px solid var(--brand-primary);
  transition: transform var(--trans-fast);
}
.stat-item:hover { transform: translateY(-4px); }

.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── SERVICES ───────────────────────────────── */
.bg-light { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all var(--trans-base);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform var(--trans-base);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: var(--grad-primary);
  border-color: transparent;
  color: var(--white);
}
.service-card.featured::before { display: none; }
.service-card.featured h3,
.service-card.featured p,
.service-card.featured li { color: rgba(255,255,255,0.9); }
.service-card.featured .service-list li i { color: var(--brand-gold); }

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--brand-gold);
  color: var(--text-heading);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 24px;
}
.gradient-1 { background: linear-gradient(135deg, #0057B8, #3385d6); }
.gradient-2 { background: linear-gradient(135deg, #FF6B2B, #FF9A3C); }
.gradient-3 { background: linear-gradient(135deg, #7B2FBE, #a855f7); }
.gradient-4 { background: linear-gradient(135deg, #059669, #34d399); }

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-heading);
}
.service-card.featured h3 { color: var(--white); }

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
}
.service-list li i {
  color: var(--brand-primary);
  font-size: 0.8rem;
  width: 16px;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-accent);
  transition: gap var(--trans-fast), color var(--trans-fast);
}
.service-link:hover { gap: 12px; color: var(--brand-accent-dark); }
.service-card.featured .service-link { color: var(--brand-gold); }

/* ── DESTINATIONS ───────────────────────────── */
.destinations { background: var(--white); }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.dest-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--trans-base);
  border: 1px solid var(--light-gray);
}
.dest-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.dest-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.dest-card:hover .dest-img-wrap img { transform: scale(1.1); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,18,43,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--trans-base);
}
.dest-card:hover .dest-overlay { opacity: 1; }

.dest-tag-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand-accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.dest-info {
  padding: 24px;
}

.dest-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.dest-country {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  gap: 5px;
}
.dest-country i { font-size: 0.75rem; }

.dest-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.dest-price strong {
  color: var(--brand-accent);
  font-size: 1rem;
}

.dest-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-heading);
}

.dest-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.dest-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.dest-features span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-primary);
  background: rgba(0,87,184,0.08);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.dest-features i { font-size: 0.7rem; }

.destinations-cta {
  text-align: center;
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.destinations-cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.destinations-cta strong { color: var(--text-heading); }

/* ── AIRLINES ───────────────────────────────── */
.bg-dark-navy { background: var(--dark-navy); }

.airlines-marquee-wrap {
  overflow: hidden;
  padding: 8px 0;
  position: relative;
}
/* .airlines-marquee-wrap::before,
.airlines-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}
.airlines-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-navy), transparent);
}
.airlines-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-navy), transparent);
} */

.airlines-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.airlines-track:hover { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.airline-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--trans-fast);
  cursor: default;
}
.airline-pill i {
  color: var(--brand-gold);
  font-size: 0.75rem;
}
.airline-pill:hover {
  background: rgba(255,107,43,0.2);
  border-color: rgba(255,107,43,0.4);
  color: var(--white);
}

/* ── CTA SECTION ────────────────────────────── */
.cta-section {
  position: relative;
}

.cta-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,57,135,0.92) 0%, rgba(8,18,43,0.95) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.cta-contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.cta-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  backdrop-filter: blur(10px);
  transition: all var(--trans-base);
  color: var(--white);
  min-width: 220px;
}
.cta-contact-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.cta-contact-card.whatsapp i { color: #25D366; }
.cta-contact-card.phone i { color: var(--brand-gold); }
.cta-contact-card.email i { color: #FF6B2B; }
.cta-contact-card.web i { color: #60B3FF; }

.cta-contact-card > div {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.cta-contact-card strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.cta-contact-card span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 3px;
}

/* ── FOOTER ─────────────────────────────────── */
.site-footer {
  background: var(--dark-navy);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}

/* .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
} */

.footer-grid {
  display: flex;
  /* grid-template-columns: 2fr 1fr 1fr 1.5fr; */
  gap: 48px;
  align-items:center;
  justify-content:center;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
    width: 50%;
        display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-brand.text-center .custom-logo-link img ,.footer-brand.text-center .custom-logo-link p, .footer-brand.text-center .custom-logo-link .footer-licence, .footer-brand.text-center .custom-logo-link .footer-socials{
    margin: 0 auto;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 20px 0 16px;
}

.footer-licence {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-gold);
  background: rgba(245,166,35,0.12);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245,166,35,0.25);
  margin-bottom: 24px;
  margin:0 auto;
}

.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all var(--trans-fast);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-socials a:hover {
  background: var(--brand-accent);
  color: var(--white);
  border-color: var(--brand-accent);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans-fast);
}
.footer-col ul a:hover { color: var(--white); }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-list li i {
  color: var(--brand-accent);
  font-size: 0.85rem;
  margin-top: 3px;
  width: 14px;
  flex-shrink: 0;
}
.footer-contact-list a { color: rgba(255,255,255,0.65); transition: color var(--trans-fast); }
.footer-contact-list a:hover { color: var(--white); }

.footer-logo .logo-main { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align:center
}

/* ── FLOATING WHATSAPP ──────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--trans-fast);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.7);
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-fast);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark-navy);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 104px;
  right: 32px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--brand-primary);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--trans-fast);
  transform: translateY(20px);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--brand-accent);
  transform: translateY(-3px);
}

/* ── RESPONSIVE ─────────────────────────────── */

/* Large Desktops */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Tablets */
@media (max-width: 992px) {
  :root { --section-pad-y: 72px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-secondary { display: none; }

  .destinations-grid { grid-template-columns: repeat(2, 1fr); }

  .topbar-left { display: none; }
}

/* Mobile (Tablet) */
@media (max-width: 768px) {
  :root {
    --section-pad-y: 56px;
    --header-height: 68px;
  }

  /* Nav */
  .nav-links, .nav-cta {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(8,18,43,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
    animation: slideDown 0.3s ease;
  }
  .nav-links.open .nav-cta-mobile {
    display: block !important;
    margin-top: 8px;
  }
  .hamburger { display: flex; }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Hero */
  .hero { height: 100svh; min-height: 580px; }
  .hero-content { padding-top: 100px; }
  .hero-tags { gap: 8px; }
  .hero-tags li { font-size: 12px; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  /* Trust Bar */
  .trust-bar-inner { justify-content: flex-start; overflow-x: auto; }
  .trust-divider { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Destinations */
  .destinations-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-contact-cards { flex-direction: column; align-items: center; }
  .cta-contact-card { width: 100%; max-width: 340px; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Floating WA */
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .back-to-top { bottom: 88px; right: 20px; }
  .wa-tooltip { display: none; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .topbar { display: none; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .destinations-cta { padding: 28px 20px; }
  .hero-controls { gap: 16px; }
  .scroll-hint { display: none; }
}

/* ── AOS OVERRIDES ──────────────────────────── */
[data-aos] { transition-duration: 0.7s !important; }
a.custom-logo-link img {
    width: 170px;
}
.scrolled .custom-logo-link img {
    width: 140px;
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .destinations-cta { padding: 28px 20px; }
  .hero-controls { gap: 16px; }
  .scroll-hint { display: none; }
  .nav {
    gap:5px
  }
  .site-header.scrolled {
    background: rgba(8,18,43,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    height: 90px;
   
}
header{
    width:100%;
    max-width:100vw;
}
a.custom-logo-link img {
    width: 130px;
}
.scrolled .custom-logo-link img {
    width: 110px;
}
.hero-badge{
		font-size: 10px; 
		    padding: 4px 18px;
            margin-bottom: 10px;
	}
  .hero-content h1{
    font-size: 30px;
  }
  .hero-content p {
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    margin-bottom: 18px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-content{
  padding-bottom:80px
}
.footer-brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
}
.airline-pill img {
    max-width: 110px;
    max-height: 45px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.footer-brand p{
  text-align:center
}
.airline-pill:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
}
.airline-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 90px;
    padding: 15px 25px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(68, 67, 67, 0.44);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
