:root {
  color-scheme: dark;
  --rich-navy: #0f172a;
  --gold-accent: #D4A24C;
  --emerald: #16A34A;
}

@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/Gotham-Book.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/Gotham-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Gotham', sans-serif;
  background: #f8fafc;
}

/* .font-cormorant {
  font-family: 'Gotham', serif;
} */

#preloader {
  background: #ffffff;
}

.main-container {
    max-width: 1360px;
}

.loader {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.loader-ring {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  border: 4px solid rgba(0, 0, 0, 0.08);
  border-top-color: #047857;
  animation: spin 1.8s linear infinite;
}

.loader-ring::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 9999px;
  border: 4px solid rgba(0, 0, 0, 0.06);
}

.loader-plane {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  animation: floatPlane 1.7s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatPlane {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(-15deg);
  }
  50% {
    transform: translate(-50%, -62%) rotate(15deg);
  }
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#header {
  background: transparent;
}

#header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 22px 48px rgba(15,23,42,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

#mobileMenu {
  height: 0;
}

#mobileMenu.open {
  height: 100vh;
  width: 100%;
  pointer-events: auto;
  position: fixed;
  top: 0;
  right: 0;
}

#mobileMenu.open .container {
  opacity: 1;
}

.nav-link,
.mobile-link,
.footer-link {
  color: inherit;
  text-decoration: none;
}
.footer-link {
  display: block;
  position: relative;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.footer-link::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  width: 8px;
  height: 2px;
  background: #00A762;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.footer-link:hover::after {
  left: 0;
  opacity: 1;
}

.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: white;
  transition: color 0.25s ease;
}

.scrolled .nav-link {
  color: #0f172a;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--emerald);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-link {
  display: block;
  padding: 1rem 0;
  color: #0f172a;
  font-weight: 600;
}

.hero-swiper {
  position: relative;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: rgba(15,23,42,0.45);
  box-shadow: 0 20px 50px rgba(15,23,42,0.25);
}

.hero-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.55);
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--emerald);
}

.slide-bg {
  transform: scale(1.08);
  transition: transform 1.2s ease;
}

.swiper-slide-active .slide-bg {
  transform: scale(1);
}
.partners-swiper .swiper-wrapper,
.airlines-swiper .swiper-wrapper {
	transition-timing-function: linear !important;
}

.masonry-columns {
  column-count: 1;
  column-gap: 1.5rem;
}

.visa-swiper .swiper-slide {
    height: auto !important; 
    display: flex;
}

.visa-swiper .swiper-slide article {
    width: 100%;
}
@media (min-width: 768px) {
  .masonry-columns {
    column-count: 2;
  }
}

@media (min-width: 1280px) {
  .masonry-columns {
    column-count: 3;
  }
}

.masonry-item {
  display: inline-block;
  margin-bottom: 1.5rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(180deg, transparent, rgba(15,23,42,0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.masonry-item:hover .overlay {
  opacity: 1;
}

.swiper .swiper-slide {
  opacity: 1;
}

.swiper .swiper-slide-active {
  opacity: 1;
}

.swiper-button-prev-team,
.swiper-button-next-team {
  width: 50px;
  height: 50px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.08);
  transition: background 0.25s ease, color 0.25s ease;
}

.footer-social:hover {
  background: var(--emerald);
  color: white;
}

#formSuccess {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    display: none;
  }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 72px;
  height: 72px;
  border-radius: 9999px;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.28);
}
