/* ══════════════════════════════════════
   ROOT & RESET
══════════════════════════════════════ */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim: rgba(201,168,76,0.15);
  --black: #080808;
  --dark: #0F1115;
  --card: #14171D;
  --border: rgba(201,168,76,0.18);
  --text: #DDD9D0;
  --muted: #7A7771;
  --white: #F8F6F1;
  --font-display1: 'Cormorant Garamond', serif;
--font-display: 'DM Serif Display", serif;
  --font-body: 'Outfit', sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px);
  padding: 0.7rem 3rem;
  box-shadow: 0 2px 40px rgba(0,0,0,0.6);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--white); font-weight: 400; }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color:var(--white);
	font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 0.6rem 1.5rem;
  font-weight:bold;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 600; }
.hamburger span { width: 26px; height: 2px; background: var(--gold); transition: 0.3s; border-radius: 2px; }

/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none; 
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  pointer-events: auto; 
  z-index: 5;
}


/* Slide images via Unsplash */
.slide-1 { background-image: url('img/slide1.jpg'); }
.slide-2 { background-image: url('img/slide2.jpg'); }
.slide-3 { background-image: url('img/slide3.jpg'); }
.slide-4 { background-image: url('img/slide4.jpg?w=1600&q=80'); }



.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.85) 0%,
    rgba(8,8,8,0.55) 50%,
    rgba(8,8,8,0.3) 100%
  );
}
.slide-content-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 3rem;
}
.slide-inner {
  max-width: 760px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s 0.4s, transform 0.8s 0.4s;
}
.slide.active .slide-inner { opacity: 1; transform: translateY(0); }
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 0.35rem 1.1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.pulse-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.slide-title em { color: var(--gold); font-style: italic; }
.slide-sub {
  font-size: 1.35rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
  font-weight: 300;
}
.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem 2.2rem;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  border-radius: 1px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 28px rgba(201,168,76,0.3);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(201,168,76,0.4); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 1px;
  transition: border-color 0.2s, color 0.2s;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}
.slider-dot {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.slider-dot.active { background: var(--gold); width: 56px; }
.slider-arrows {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  gap: 0.7rem;
  z-index: 10;
}
.arrow-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 1px;
}
.arrow-btn:hover { border-color: var(--gold); background: rgba(201,168,76,0.15); }
/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-hint svg { opacity: 0.5; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--gold);
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.stat-item .lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(0,0,0,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

/* ══════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════ */
section { padding: 2rem 1rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.eyebrow {
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-h {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-p {
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.5;
/*  max-width: 550px;*/
  font-weight: 300;
}

.section-p strong {

  font-weight: 800;
}

/* ══════════════════════════════════════
   AIRPORTS — IMAGE CARDS
══════════════════════════════════════ */
#airports { background: var(--dark); }
.airports-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.airport-card {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 2px;
  cursor: default;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.airport-card:hover { border-color: var(--gold); }
.airport-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.airport-card:hover img { transform: scale(1.08); }
.airport-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.3) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
}
.ac-code {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.ac-name {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}


/* ══════════════════════════════════════
   SERVICES — IMAGE + TEXT
══════════════════════════════════════ */
#services { background: var(--black); }
.services-feature {
  display: grid;
   grid-template-columns: 0.8fr 1.2fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 5rem;
}
.services-feature.reverse { direction: rtl; }
.services-feature.reverse > * { direction: ltr; }
.feature-img-wrap {
  position: relative;
/*  height: 420px;*/
  overflow: hidden;
  border-radius: 2px;
}
.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.feature-img-wrap:hover img { transform: scale(1.04); }
.feature-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  pointer-events: none;
}
.feature-accent {
  position: absolute;
  bottom: -1px; left: -1px;
  width: 60px; height: 60px;
  border-bottom: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
}
.feature-text { padding: 1rem 0; }
.feature-list {
  list-style: none;
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}
.feature-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.feature-text .btn-gold { margin-top: 2rem; display: inline-flex; }

/* Services grid (bottom) */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.srv-card {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--border);
}
.srv-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.srv-card:hover img { transform: scale(1.06); }
.srv-card-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,8,8,0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  transition: background 0.3s;
}
.srv-card:hover .srv-card-info { background: linear-gradient(0deg, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.3) 55%); }
.srv-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
}
.srv-card-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.3rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, opacity 0.4s;
  opacity: 0;
}
.srv-card:hover .srv-card-sub { max-height: 60px; opacity: 1; }

/* ══════════════════════════════════════
   PARALLAX SECTION
══════════════════════════════════════ */


.parallax-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.parallax-bg {
  position: absolute;
  inset: -20%;
	
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
 
}
.parallax-1 { background-image: url('img/paralax1.jpg'); }
.parallax-2 { background-image: url('img/paralax2.jpg'); }
.parallax-3 { background-image: url('img/paralax3.jpg'); }
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.68);
}
.parallax-content {
  position: relative;
  z-index: 2;
  padding: 2rem 3rem;
  max-width: 700px;
}
.parallax-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.parallax-content h2 em { color: var(--gold); font-style: italic; }


.parallax-content1 {
  position: relative;
  z-index: 2;
  padding: 2rem 3rem;
  max-width: 1280px;
} 

.parallax-content1 h4 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.parallax-content1 h4 em { color: var(--gold); font-style: italic; }


.parallax-content p {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}
.phone-big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
#why { background: var(--dark); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}
.why-img-col { position: relative; }
.why-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}
.why-inset-img {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: 2px;
  border: 4px solid var(--dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.why-gold-bar {
  position: absolute;
  top: 2rem; left: -1rem;
  width: 4px;
  height: 80px;
  background: var(--gold);
}
.why-list { list-style: none; margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.6rem; }
.why-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-body strong { display: block; color: var(--gold); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.25rem; text-transform: uppercase;}
.why-body span { font-size: 1.25rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
#gallery { background: var(--black); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 0.8rem;
  margin-top: 3rem;
}
.gal-item {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}
.gal-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gal-item:nth-child(4) { grid-column: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gal-item:hover img { transform: scale(1.07); }
.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0);
  transition: background 0.3s;
}
.gal-item:hover::after { background: rgba(201,168,76,0.08); }
.gal-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-zoom {
  width: 48px; height: 48px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 2px; }
.lb-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--white); font-size: 2rem;
  cursor: pointer; line-height: 1;
  opacity: 0.7; transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }

/* ══════════════════════════════════════
   AREAS
══════════════════════════════════════ */
#areas { background: var(--dark); }
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.areas-map-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--border);
  opacity: 0.85;
  filter: grayscale(30%) sepia(10%);
}
.areas-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tag {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.area-tag:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact { background: var(--black); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  margin-top: 3.5rem;
}
.contact-img-stack { position: relative; }
.contact-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
}
.contact-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.2rem 1.8rem;
  border-radius: 2px;
  font-family: var(--font-display);
}
.contact-badge .big { font-size: 2rem; font-weight: 700; display: block; line-height: 1; }
.contact-badge .small { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.3rem; opacity: 0.75; }
.contact-info { margin-bottom: 2.5rem; }
.cinfo-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cinfo-icon {
  width: 42px; height: 42px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.cinfo-lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.25rem; }
.cinfo-val { color: var(--white); font-size: 0.97rem; font-weight: 500; transition: color 0.2s; }
.cinfo-val:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}



.fg { display: flex; flex-direction: column; gap: 0.35rem; }
.fg label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--white); }
.fg input, .fg select, .fg textarea {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  padding: 0.8rem 1rem;
  border-radius: 1px;
/*  font-family: var(--font-body);*/
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg select option { background: var(--dark); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); }
.footer-brand span { color: rgba(255,255,255,0.5); font-weight: 400; }
.footer-copy { font-size: 1.3rem; color: var(--muted); text-align: center; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 1.2rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); font-weight: bold; }

/* ══════════════════════════════════════
   FLOAT CALL (mobile)
══════════════════════════════════════ */
.float-call {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}

/* ══════════════════════════════════════
   MOBILE NAV OVERLAY
══════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 490;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 700;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.8rem; right: 2rem;
  background: none; border: none;
  color: var(--muted); font-size: 2rem;
  cursor: pointer;
}

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .airports-grid { grid-template-columns: repeat(3, 1fr); }
  .airports-grid .airport-card:nth-child(4),
  .airports-grid .airport-card:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 900px) {
  section { padding: 4rem 1.5rem; }
  .services-feature, .why-grid, .areas-layout, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-feature.reverse { direction: ltr; }
  .why-inset-img { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item:nth-child(1) { grid-column: span 2; grid-row: span 1; height: 260px; }
  .gal-item:nth-child(4) { grid-column: span 1; }
  .gal-item { height: 180px; }
  .srv-grid { grid-template-columns: 1fr; }
  .airports-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .slide-content-wrap { padding: 0 1.5rem; }
  .slider-controls { left: 1.5rem; }
  .slider-arrows { right: 1.5rem; }
  .stats-bar { gap: 1.5rem; padding: 1rem 1.5rem; }
  .float-call { display: flex; }
  footer { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .form-row2 { grid-template-columns: 1fr;
  }
  .contact-badge { position: static; margin-top: 1rem; display: inline-block; }
}