/* ============================================================
   SCL-PAX | Premium Airport Landing Page
   WHITE + BLUE Theme
   ============================================================ */

/* ── RESET & BASE ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ─── Core Blues (from logo) ─── */
  --blue-900: #0d2257;
  --blue-800: #1a3a8f;
  /* Primary brand blue */
  --blue-700: #1e4bb8;
  --blue-600: #2255cc;
  --blue-500: #3068e0;
  --blue-400: #5588f0;
  --blue-300: #85aaff;
  --blue-100: #dce8ff;
  --blue-50: #f0f5ff;

  /* ─── Neutrals ─── */
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #eef1f8;
  --gray-200: #dde3f0;
  --gray-300: #c4cde0;
  --gray-400: #9aaacb;
  --gray-500: #6b7da0;
  --gray-600: #4a5876;
  --gray-700: #303d57;
  --gray-800: #1e2740;
  --gray-900: #111827;

  /* ─── Semantic ─── */
  --color-bg: var(--white);
  --color-surface: var(--gray-50);
  --color-surface-2: var(--gray-100);
  --color-border: var(--gray-200);
  --color-border-strong: var(--gray-300);
  --color-primary: var(--blue-800);
  --color-primary-dark: var(--blue-900);
  --color-primary-light: var(--blue-600);
  --color-accent: var(--blue-500);
  --color-text: var(--gray-800);
  --color-text-muted: var(--gray-500);
  --color-text-faint: var(--gray-400);
  --color-success: #16a34a;

  /* ─── Gradients ─── */
  --gradient-blue: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  --gradient-blue-rich: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, var(--blue-500) 100%);
  --gradient-blue-light: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  --gradient-hero-overlay: linear-gradient(to bottom, rgba(13, 34, 87, 0.55) 0%, rgba(13, 34, 87, 0.72) 55%, rgba(13, 34, 87, 0.94) 100%);
  --gradient-card: linear-gradient(160deg, rgba(30, 75, 184, 0.04) 0%, rgba(30, 75, 184, 0.01) 100%);

  /* ─── Shadows ─── */
  --shadow-sm: 0 2px 8px rgba(26, 58, 143, 0.08);
  --shadow-md: 0 6px 24px rgba(26, 58, 143, 0.12);
  --shadow-lg: 0 16px 48px rgba(26, 58, 143, 0.16);
  --shadow-blue: 0 8px 32px rgba(26, 58, 143, 0.22);
  --shadow-blue-lg: 0 16px 48px rgba(26, 58, 143, 0.32);

  /* ─── Typography ─── */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-header: var(--font-display);

  /* ─── Spacing ─── */
  --section-py: 6rem;
  --container-max: 1240px;
  --container-px: 1.5rem;

  /* ─── Transitions ─── */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.3s var(--ease);
  --transition-slow: 0.6s var(--ease);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ── UTILITY ────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gradient-blue);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.text-accent {
  background: var(--gradient-blue-rich);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-tag {
  margin: 0 auto 1rem;
}

.section-header .section-title {
  margin: 0 auto 1rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  box-shadow: var(--shadow-blue-lg);
  transform: translateY(-2px);
  background: var(--gradient-blue-rich);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-slow);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 0.65rem 0;
  box-shadow: 0 2px 20px rgba(26, 58, 143, 0.1);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.logo-img {
  height: 65px;
  width: auto;
  transition: var(--transition);
  /* Hero mode: brighter; scrolled mode below */
}

.navbar:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1);
  /* white logo on hero */
}

.navbar.scrolled .logo-img {
  filter: none;
  /* original colors over white bg */
}

.logo-img:hover {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

/* On hero (transparent nav): white text */
.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

/* On scrolled (white nav): dark/blue text */
.nav-link {
  padding: 0.42rem 0.7rem;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background: var(--blue-50);
}

.nav-cta {
  background: var(--gradient-blue) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-blue) !important;
}

.navbar:not(.scrolled) .nav-cta {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue-lg) !important;
}

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

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

.navbar:not(.scrolled) .hamburger {
  background: var(--white);
}

.navbar.scrolled .hamburger {
  background: var(--gray-700);
}

/* ── LANGUAGE SELECTOR FLOATING ──────────────────────────────── */
.lang-selector-floating {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

/* Darker background if navbar is not scrolled (on hero) */
.navbar:not(.scrolled)~.lang-selector-floating {
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.1);
}

.lang-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lang-btn img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-btn span {
  opacity: 0.8;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.lang-btn.active {
  background: var(--color-primary);
  border-color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 56, 118, 0.3);
}

.lang-btn.active span {
  opacity: 1;
}

@media (max-width: 768px) {
  .lang-selector-floating {
    right: 1rem;
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .lang-btn {
    width: 38px;
    height: 38px;
  }
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: kenBurns 18s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.05) translate(0, 0);
  }

  100% {
    transform: scale(1.12) translate(-2%, 1%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 8rem var(--container-px) 6rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
  animation: fadeInDown 0.8s var(--ease) both;
  backdrop-filter: blur(6px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #60aaff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.2s var(--ease) both;
}

.hero-title-accent {
  background: linear-gradient(135deg, #a8c8ff, #ffffff, #c8e0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.35s var(--ease) both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.5s var(--ease) both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #a8c8ff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s var(--ease) both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.45));
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {

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

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

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

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── ABOUT SECTION ──────────────────────────────────────────── */
.about-section {
  background: var(--white);
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-300), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-description {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.about-description strong {
  color: var(--gray-900);
}

.about-clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-client-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.9rem 1rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}

.about-client-item:hover {
  border-color: var(--blue-300);
  background: var(--blue-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.client-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-100);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.about-client-item:hover .client-icon {
  background: var(--color-primary);
  color: var(--white);
}

.about-visual {
  position: relative;
}

.about-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--blue-200, #c0d4ff);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.about-badge-float svg {
  color: var(--color-primary);
}

.about-accent-box {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  padding: 1.5rem;
  background: var(--gradient-blue);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-blue-lg);
}

.accent-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.accent-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ── SERVICES ───────────────────────────────────────────────── */
.services-section {
  background: var(--gray-50);
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, var(--blue-50) 0%, transparent 80%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: all 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-img-wrap {
  position: relative;
  width: 260px;
  height: 380px;
  background: var(--white);
  border-radius: 130px;
  padding: 24px;
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.06),
    inset 0 4px 10px rgba(255,255,255,1),
    inset 0 -4px 10px rgba(0,0,0,0.03);
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}

.service-card:hover .service-img-wrap {
  box-shadow: 
    0 20px 45px rgba(0,0,0,0.1),
    inset 0 4px 10px rgba(255,255,255,1),
    inset 0 -4px 10px rgba(0,0,0,0.03);
}

.service-img-wrap::before {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 106px;
  box-shadow: inset 0 8px 24px rgba(0,0,0,0.25);
  z-index: 2;
  pointer-events: none;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 106px;
  transition: transform 0.8s var(--ease);
}

.service-featured-badge {
  position: absolute;
  top: 10px;
  right: -5px;
  background: var(--gradient-blue);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.8rem;
  z-index: 4;
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-img-overlay {
  display: none;
}

.service-number {
  display: none;
}

.service-content {
  position: relative;
  z-index: 3;
  padding: 0;
  width: 100%;
}

.service-tag {
  display: none;
}

.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gray-800);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.service-desc {
  color: var(--gray-600);
  font-size: 0.85rem;
  max-width: 260px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}

.service-list {
  display: none;
}

.service-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.service-btn {
  background: var(--white);
  border: 1px solid var(--blue-300);
  color: var(--blue-800);
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  border-radius: 100px;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-block;
}

.service-btn:hover {
  background: var(--blue-50);
  border-color: var(--blue-500);
  transform: translateY(-2px);
}

.service-btn--featured {
  background: var(--gradient-blue);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.service-btn--featured:hover {
  background: var(--gradient-blue-rich);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ── PRIMECLASS PACIFIC ───────────────────────────────────── */
.prime-section {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.prime-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.prime-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
}

.prime-amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.amenity-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.prime-visual {
  position: relative;
}

.prime-main-img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.prime-experience-card {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem 2rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 15px 40px rgba(0, 56, 118, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  max-width: 300px;
}

.exp-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-blue);
  color: var(--white);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
}

.exp-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-900);
  font-size: 1.2rem;
  line-height: 1.2;
}

.exp-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.lounges-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 6rem;
}

.lounge-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.lounge-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue-300);
  box-shadow: 0 12px 30px rgba(0, 56, 118, 0.1);
  background: linear-gradient(to bottom, var(--white), var(--blue-50));
}

.lounge-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--blue-800);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

.lounge-loc {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .prime-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .prime-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .lounges-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 4rem;
  }
}

@media (max-width: 768px) {
  .prime-amenities-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .prime-experience-card {
    left: 1rem;
    right: 1rem;
    bottom: -15px;
    max-width: none;
    padding: 1rem 1.5rem;
  }
}

/* ── CLIENTS ────────────────────────────────────────────────── */
.clients-section {
  background: var(--white);
  overflow: hidden;
}

.clients-carousel-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-track {
  display: flex;
  gap: 1.25rem;
  animation: scrollTrack 35s linear infinite;
  width: max-content;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes scrollTrack {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.client-logo-card {
  flex-shrink: 0;
  width: 200px;
  height: 90px;
  background: var(--gray-50);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.client-logo-card:hover {
  border-color: var(--blue-300);
  background: var(--blue-50);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.client-logo-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 1rem;
  color: var(--gray-500);
  font-size: 0.78rem;
  font-weight: 600;
}

.client-logo-placeholder svg {
  color: var(--color-primary);
  opacity: 0.6;
  flex-shrink: 0;
}

.client-logo-img {
  max-width: 140px;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: var(--transition);
}

.client-logo-card:hover .client-logo-img {
  filter: grayscale(0%) opacity(1);
}

/* ── SUSTAINABILITY ──────────────────────────────────────────── */
.sustainability-section {
  background: var(--gray-50);
  position: relative;
}

.sustainability-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, var(--blue-50) 0%, transparent 70%);
  pointer-events: none;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sustainability-image {
  position: relative;
}

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

.sustainability-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-success);
  box-shadow: var(--shadow-sm);
}

.sustainability-desc {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.sustainability-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--blue-100);
  border: 1px solid var(--blue-200, #c0d4ff);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--color-primary);
  transition: var(--transition);
}

.pillar:hover .pillar-icon {
  background: var(--color-primary);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.pillar-text h4 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.pillar-text p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ── AIRPORTS ───────────────────────────────────────────────── */
.airports-section {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.airports-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Override text colors for dark section */
.airports-section .section-tag {
  color: rgba(255, 255, 255, 0.75);
}

.airports-section .section-tag::before {
  background: rgba(255, 255, 255, 0.4);
}

.airports-section .section-title {
  color: var(--white);
}

.airports-section .text-accent {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #85c1ff;
  background-clip: unset;
  color: #85c1ff;
}

.airports-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.airport-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.airport-aerial-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.airport-aerial-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.airport-aerial-wrap:hover .airport-aerial-img {
  transform: scale(1.04);
}

.airport-aerial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 34, 87, 0.5) 0%, rgba(13, 34, 87, 0.08) 60%);
}

.airport-pin {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pin-dot {
  width: 18px;
  height: 18px;
  background: #60aaff;
  border: 3px solid var(--white);
  border-radius: 50%;
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(96, 170, 255, 0.35);
}

.pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(96, 170, 255, 0.25);
  border-radius: 50%;
  animation: pinPulse 2s ease-out infinite;
}

@keyframes pinPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.pin-label {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  white-space: nowrap;
  margin-top: 26px;
  box-shadow: var(--shadow-sm);
}

.airport-info-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.airport-code {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.airport-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.airport-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.75rem;
}

.airport-location svg {
  color: #60aaff;
}

.airport-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.airport-stat {
  text-align: center;
  padding: 0.85rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

.ast-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #a8c8ff;
  line-height: 1;
  margin-bottom: 4px;
}

.ast-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.45);
}

.airport-description {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* btn on blue background */
.airports-section .btn-primary {
  background: var(--white);
  color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.airports-section .btn-primary:hover {
  background: var(--blue-50);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

/* ── TIPS ───────────────────────────────────────────────────── */
.tips-section {
  background: var(--white);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.tip-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-slow);
}

.tip-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-300);
  box-shadow: var(--shadow-md);
}

.tip-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.tip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.tip-card:hover .tip-img {
  transform: scale(1.07);
}

.tip-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 4px 10px;
  background: var(--gradient-blue);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 100px;
  text-transform: uppercase;
}

.tip-content {
  padding: 1.25rem;
}

.tip-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.tip-date,
.tip-read {
  font-size: 0.72rem;
  color: var(--color-text-faint);
}

.tip-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.tip-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.tip-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap var(--transition);
}

.tip-link:hover {
  gap: 10px;
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-section {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--blue-100) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-desc {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cd-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--blue-100);
  border: 1px solid var(--blue-200, #c0d4ff);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--color-primary);
  transition: var(--transition);
}

.contact-detail-item:hover .cd-icon {
  background: var(--color-primary);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.cd-text {
  display: flex;
  flex-direction: column;
}

.cd-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-faint);
  margin-bottom: 2px;
}

.cd-value {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
}

a.cd-value:hover {
  color: var(--color-primary);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  text-transform: uppercase;
}

input,
textarea,
select {
  padding: 0.85rem 1rem;
  background: var(--gray-50);
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--gray-800);
  transition: var(--transition);
  outline: none;
  width: 100%;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--gray-400);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30, 75, 184, 0.1);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 10px;
  color: var(--color-success);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  border-top: none;
}

.footer-top {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--blue-400);
  color: var(--blue-300);
  background: rgba(30, 75, 184, 0.2);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a,
.footer-links span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--blue-300);
}

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: fadeIn 1s 2s both;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    height: auto;
  }

  .service-card {
    height: 500px;
  }

  .service-card:not(:last-child) {
    border-right: 1px solid var(--color-border);
  }

  .service-card--featured {
    transform: none;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    display: none;
  }

  .sustainability-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sustainability-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .airport-showcase {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-py: 4rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 999;
    padding: 2rem;
  }

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

  .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    color: var(--gray-700) !important;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--color-primary) !important;
    background: var(--blue-50) !important;
  }

  .nav-toggle {
    display: flex;
    z-index: 1000;
  }

  .nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* On mobile open menu, hamburger should always be dark */
  .nav-toggle.active .hamburger {
    background: var(--gray-700) !important;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

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

  .about-clients-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .contact-form-wrap {
    padding: 1.5rem;
  }

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

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    height: auto;
    max-width: 480px;
    margin: 0 auto;
    gap: 1.5rem;
  }

  .service-card {
    height: 400px;
    width: 100%;
  }

  .service-card:not(:last-child) {
    border-right: 1px solid var(--color-border);
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .contact-form-wrap {
    padding: 1.25rem;
  }
}

/* ── SERVICE ACTIONS ────────────────────────────────────────── */
.service-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.service-actions .service-btn {
  margin-top: 0;
  flex: 1;
  min-width: 140px;
  text-align: center;
  justify-content: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
}

/* ── MODAL ─────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  padding: 1.5rem;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 34, 87, 0.4);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 1;
  background: var(--white);
  width: 100%;
  max-width: 1200px;
  height: 85vh;
  border-radius: 32px;
  box-shadow: var(--shadow-blue-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-bounce);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  z-index: 10;
}

.modal-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.6rem;
  color: var(--blue-900);
}

.modal-close {
  background: var(--gray-100);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: var(--transition);
  padding: 0;
}

.modal-close:hover {
  background: var(--blue-100);
  color: var(--color-primary);
  transform: rotate(90deg);
}

.modal-body {
  padding: 0;
  flex: 1;
  overflow: hidden;
  position: relative;
  background: #000;
}

/* ── PREMIUM SLIDER ────────────────────────────────────────── */
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease);
}

.slider-item {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* Glassmorphism Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: 2rem;
}

.slider-nav.next {
  right: 2rem;
}

/* Dots Pagination */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--white);
  transform: scale(1.4);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .modal-content {
    height: 90vh;
    border-radius: 0;
  }

  .slider-nav {
    width: 44px;
    height: 44px;
  }

  .slider-nav.prev {
    left: 1rem;
  }

  .slider-nav.next {
    right: 1rem;
  }

  .modal-header {
    padding: 1rem 1.5rem;
  }

  .modal-title {
    font-size: 1.2rem;
  }
}

/* ── MARQUEE SUPPORT GALLERY ───────────────────────────────── */
.marquee-section {
  padding: 6rem 0;
  background: var(--gray-50);
  overflow: hidden;
}

.marquee-wrapper {
  margin-top: 4rem;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
  gap: 20px;
  animation: scroll-marquee 40s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  width: 350px;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease);
}

.marquee-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scroll-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% / 2));
  }
}

@media (max-width: 768px) {
  .marquee-section {
    padding: 4rem 0;
  }

  .marquee-item {
    width: 280px;
    height: 200px;
  }
}

/* ── PAGE HEADER PARALLAX ───────────────────────────────────── */
.page-header {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
}

.page-header .container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 60px;
}

.page-header-title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  animation: fadeInUp 0.8s var(--ease) both;
  letter-spacing: -0.02em;
}

/* ── TIP MODAL OVERRIDES ───────────────────────────────────── */
.tip-modal-content {
  max-width: 700px;
}

.tip-modal-content .modal-body {
  padding: 30px;
  max-height: 70vh;
  overflow-y: auto;
  text-align: left;
  background: var(--white);
}

.tip-modal-content p {
  margin-bottom: 1.5rem;
  color: #334155;
  line-height: 1.7;
}

.tip-modal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.tip-modal-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #334155;
  line-height: 1.6;
}

.tip-modal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.tip-modal-content strong {
  color: var(--text-dark);
}