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

:root {
  --bg: #080808;
  --bg-alt: #0d0d0d;
  --card: #111;
  --card-hover: #191919;
  --card-alt: #0a0a0a;
  --border: #1a1a1a;
  --border-light: #252525;
  --text: #e5e5e5;
  --text-secondary: #888;
  --text-muted: #555;
  --gold: #c9a84c;
  --gold-light: #1f1a0e;
  --gold-dark: #a88a2e;
  --gold-glow: rgba(201, 168, 76, 0.1);
  --gold-glow-strong: rgba(201, 168, 76, 0.2);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.2s ease;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 32px 32px;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 120px 0; }
.section-alt { background: var(--bg-alt); }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.section-header .section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px auto 0;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

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

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.3px;
}

.nav.scrolled .logo { color: var(--text); }

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.logo-fallback {
    align-items: center;
    justify-content: center;
    width: 100px;
}

.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.nav.scrolled .nav-links a { color: var(--text-secondary); }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--gold); }

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: #111 !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; box-shadow: 0 4px 20px rgba(201,168,76,0.3) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

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

.nav.scrolled .hamburger span { background: var(--text); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector {
  position: relative;
  cursor: pointer;
  z-index: 1002;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 50px;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  font-family: inherit;
}

.nav.scrolled .lang-btn {
  background: var(--card);
  border-color: var(--border);
  color: var(--text-secondary);
}

.lang-btn:hover { background: rgba(255,255,255,0.1); }
.nav.scrolled .lang-btn:hover { background: var(--card-hover); }

.lang-btn i { font-size: 0.7rem; }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  overflow: hidden;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  font-family: inherit;
  text-align: left;
}

.lang-option:hover { background: var(--card-hover); color: var(--gold); }
.lang-option.active { background: var(--gold-light); color: var(--gold); font-weight: 600; }
.lang-option .flag { font-size: 1.1rem; }

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 50%, transparent 100%),
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
  padding: 140px 0 80px;
}

.hero-content { max-width: 580px; }

.hero-cards {
  position: relative;
  min-height: 480px;
  padding: 20px 0;
}

.hero-card-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    width: 400px;
    height: 300px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  z-index: 2;
  transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
  
}

.hero-card-main:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translate(-50%, -50%) scale(1.03);
}

.hero-card-floating {
  position: absolute;
  width: 210px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 18px 20px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-card-floating:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 168, 76, 0.2);
}

.hero-card-tl { bottom: 5%; z-index: 3; }
.hero-card-br { right:0%; z-index: 3; }

.hero-card-main .hero-card-icon {
  width: 54px;
  height: 54px;
  background: var(--gold-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 14px;
}

.hero-card-floating .hero-card-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-card-main .hero-card-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.hero-card-main .hero-card-text p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.hero-card-floating .hero-card-text h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.hero-card-floating .hero-card-text p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.hero-card-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #111;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.hero-card-badge i { font-size: 1rem; line-height: 1; }
.hero-card-badge span { font-size: 0.5rem; margin-top: 1px; }

.hero-card-badge-check { background: #22c55e; box-shadow: 0 4px 16px rgba(34,197,94,0.35); }
.hero-card-badge-check i { font-size: 1.2rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-glow);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: -1.5px;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: #111;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  background: rgba(201,168,76,0.05);
}

.btn-lg { padding: 16px 36px; font-size: 0.95rem; }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stat h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0;
  max-width: none;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-glow), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.service-card-image {
  height: 200px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.service-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card) 0%, transparent 50%);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-card-body {
  padding: 28px;
  position: relative;
  z-index: 1;
}

.service-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  transition: gap 0.2s ease;
}

.service-card-link:hover { gap: 10px; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-item {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover::before { opacity: 1; }

.feature-item:hover {
  border-color: rgba(201,168,76,0.15);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.feature-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== FLEET ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fleet-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.fleet-card:hover {
  border-color: rgba(201,168,76,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.fleet-card-image {
  height: 220px;
  background: var(--bg);
  overflow: hidden;
}

.fleet-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.fleet-card-body {
  padding: 24px;
  text-align: center;
}

.fleet-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.fleet-card-body p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ===== TRUSTPILOT ===== */
.trustpilot-card {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: var(--transition);
}

.trustpilot-card:hover {
  border-color: rgba(201,168,76,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.trustpilot-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.trustpilot-logo i {
  color: #00b67a;
  font-size: 2rem;
}

.trustpilot-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}

.trustpilot-stars i {
  font-size: 1.5rem;
  color: #00b67a;
}

.trustpilot-rating {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.trustpilot-count {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, var(--gold-glow) 0%, transparent 60%),
    linear-gradient(135deg, rgba(201,168,76,0.02), transparent);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

.cta-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 160px 0 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.04) 0%, transparent 50%),
    linear-gradient(180deg, rgba(201,168,76,0.02) 0%, transparent 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow-strong), transparent);
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== SERVICES DETAIL ===== */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-detail-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-glow), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-detail-card:hover::before { opacity: 1; }

.service-detail-card:hover {
  border-color: rgba(201,168,76,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.service-detail-image {
  height: 200px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.service-detail-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card) 0%, transparent 50%);
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-detail-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.service-detail-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-detail-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.service-detail-body .btn { align-self: flex-start; }

/* ===== TERMINALS ===== */
.terminal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.terminal-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.terminal-card:hover {
  border-color: rgba(201,168,76,0.12);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.terminal-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terminal-card h3 i { color: var(--gold); }

.terminal-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.terminal-card ul { margin-top: 14px; }

.terminal-card ul li {
  padding: 7px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.terminal-card ul li i { color: var(--gold); width: 16px; }

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

.contact-info-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}

.contact-info-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-method:last-of-type { border-bottom: none; }

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-method h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-method p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-method a { color: var(--gold); font-weight: 500; }

.booking-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, var(--gold-glow) 0%, transparent 60%);
}

.booking-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow-strong), transparent);
}

.booking-card > * { position: relative; z-index: 2; }

.booking-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.booking-card p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 0.9rem;
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: #111;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.booking-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.2);
}

.booking-features {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.booking-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.booking-features span i { color: var(--gold); }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  background: var(--card);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--border-light); }

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.faq-question:hover { background: var(--card-hover); }
.faq-question i { transition: transform 0.3s ease; color: var(--gold); font-size: 0.8rem; }

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== LEGAL ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius);
  padding: 56px;
  border: 1px solid var(--border);
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 14px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul { padding-left: 20px; margin-bottom: 14px; }

.legal-content ul li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  list-style: disc;
  margin-bottom: 4px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo { color: #fff; }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-contact li i { color: var(--gold); margin-top: 3px; min-width: 14px; }

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

.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

.footer-bottom-links { display: flex; gap: 20px; }

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
}

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

/* ===== WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.25);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.35);
}

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

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

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content { margin: 0 auto; }

  .hero p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-cards {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-card-main,
  .hero-card-floating {
    position: static;
    transform: none;
    width: 100%;
    height: fit-content;
  }
  .hero-card-main:hover { transform: none; }
  .hero-card-floating:hover { transform: none; }
}

@media (max-width: 768px) {
    .aeropuertohow {
        grid-template-rows: repeat(3, 1fr);
        grid-template-columns: none !important;
    }
    .aeropuertocont {
        flex-direction: column;
    }
    .aeropuertocont .reveal-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .booking-cardadd {
        display: none;
    }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--card);
    flex-direction: column;
    padding: 100px 36px 36px;
    gap: 24px;
    transition: right 0.3s ease;
    align-items: flex-start;
    border-left: 1px solid var(--border);
    z-index: 1000;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    color: var(--text) !important;
    text-transform: none;
    font-size: 0.9rem;
  }

  .hamburger { display: flex; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-overlay.open { opacity: 1; pointer-events: auto; }

  .section { padding: 80px 0; }

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

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

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding: 100px 0 60px;
  }

  .hero-content { margin: 0 auto; }
  .hero p { margin: 0 auto 28px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; }
  .hero-stat h3 { font-size: 1.3rem; }
  .hero-cards { max-width: 400px; margin: 0 auto; }

  .hero-card-main,
  .hero-card-floating {
    position: static;
    transform: none;
    width: 100%;
  }
  .hero-card-main:hover { transform: none; }
  .hero-card-floating:hover { transform: none; }

  .legal-content { padding: 28px 20px; }
  .booking-card { padding: 32px 24px; }
  .terminal-card { padding: 24px; }
  .page-hero { padding: 140px 0 60px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.5rem; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .hero-buttons .btn,
  .cta-buttons .btn { width: 100%; justify-content: center; }
}