/* ═══════════════════════════════════════════════════════════════════
   VTC — Vans Transport Company | Luxury VIP Transport Paris
   Gold & Navy Luxury Palette
   ═══════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────────────── */
:root {
  --navy:         #0a1929;
  --deep:         #060d18;
  --charcoal:     #111827;
  --card-bg:      rgba(255,255,255,0.035);
  --card-border:  rgba(212,175,55,0.18);
  --card-hover:   rgba(212,175,55,0.08);
  --gold:         #d4af37;
  --gold-light:   #f5d98b;
  --gold-dark:    #b8960c;
  --silver:       #c0c0c0;
  --silver-light: #e8e8e8;
  --grad:         linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  --grad-rev:     linear-gradient(135deg, var(--gold-light), var(--gold));
  --grad-hero:    linear-gradient(135deg, var(--gold), var(--silver-light));
  --white:        #ffffff;
  --text:         rgba(255,255,255,0.88);
  --muted:        rgba(255,255,255,0.50);
  --green-wa:     #25d366;
  --nav-h:        72px;
  --radius:       16px;
  --radius-sm:    10px;
  --transition:   0.3s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ─────────────────────────────────────────────────── */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-hero {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ─── Layout ─────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; }
.text-center { text-align: center; }

/* ─── Glassmorphism ──────────────────────────────────────────────── */
.glass {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
}

/* ─── Gold Accent Line ───────────────────────────────────────────── */
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--grad);
  border-radius: 2px;
  margin: 0 auto 1rem;
}
.gold-line-left { margin: 0 0 1rem; }

/* ─── Buttons ─────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  background: var(--grad);
  color: var(--deep);
  transition: var(--transition);
  box-shadow: 0 0 28px rgba(212,175,55,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(212,175,55,0.5); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid rgba(212,175,55,0.4);
  color: var(--gold-light);
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.06); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--green-wa);
  color: var(--white);
  transition: var(--transition);
  width: 100%;
  margin-top: 1rem;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }

.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--green-wa);
  color: var(--white);
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
}
.btn-hero-wa:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 32px rgba(37,211,102,0.5); }

/* ─── NAVBAR ─────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(6,13,24,0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(212,175,55,0.12);
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 120px;
}
#nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
#nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  white-space: nowrap;
}
#nav-menu a:hover { color: var(--gold-light); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.lang-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.lang-btn.active { color: var(--gold); background: rgba(212,175,55,0.1); }
.nav-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  background: var(--green-wa);
  color: var(--white);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-wa-btn:hover { background: #1ebe5d; transform: translateY(-1px); }
.nav-wa-btn svg { flex-shrink: 0; }

/* Hamburger */
#hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}
#hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: url('assets/images/20231223_205136.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(6,13,24,0.72) 0%,
    rgba(10,25,41,0.82) 60%,
    rgba(6,13,24,1) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}
.hero-headline {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero-subheadline {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--silver-light);
  margin-bottom: 2rem;
  font-weight: 400;
  opacity: 0.85;
}
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }

/* ─── SERVICES TICKER ────────────────────────────────────────────── */
#services-ticker {
  background: var(--navy);
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(212,175,55,0.12);
  border-bottom: 1px solid rgba(212,175,55,0.12);
}
.ticker-row {
  display: flex;
  width: max-content;
  gap: 0;
}
.ticker-row--reverse { animation: ticker-reverse 35s linear infinite; margin-top: 1rem; }
.ticker-row--forward { animation: ticker-forward 35s linear infinite; }
@keyframes ticker-forward {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ticker-reverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
#services-ticker:hover .ticker-row { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 2.5rem;
  white-space: nowrap;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--gold);
  text-transform: uppercase;
}
.ticker-item.gold { color: var(--gold); }
.ticker-sep {
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ─── ABOUT ──────────────────────────────────────────────────────── */
#about { background: var(--navy); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about-image::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--grad);
  z-index: -1;
  opacity: 0.5;
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.8;
}
.about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
}


/* ─── FLEET ──────────────────────────────────────────────────────── */
#fleet { background: var(--navy); }
.fleet-card { padding: 2.5rem; }
.carousel-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  aspect-ratio: 16/9;
  max-height: 620px;
}
.carousel-slide { cursor: zoom-in; }
#carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  height: 100%;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(6,13,24,0.75);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: var(--transition);
  z-index: 2;
}
.carousel-btn:hover { background: rgba(212,175,55,0.25); border-color: var(--gold); }
#carousel-prev { left: 1rem; }
#carousel-next { right: 1rem; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: var(--transition);
  cursor: pointer;
}
.carousel-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.fleet-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.fleet-specs h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.fleet-specs .year { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.fleet-capacity {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cap-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
}
.fleet-equipment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.eq-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text);
}
.eq-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── LIGHTBOX ───────────────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  backdrop-filter: blur(8px);
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 95vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
  pointer-events: none;
}
#lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
}
#lightbox-close:hover { color: var(--gold); }
#lightbox-prev, #lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  cursor: pointer;
  transition: var(--transition);
  z-index: 1;
}
#lightbox-prev:hover, #lightbox-next:hover { background: rgba(212,175,55,0.2); }
#lightbox-prev { left: 1.25rem; }
#lightbox-next { right: 1.25rem; }

/* ─── PRICING ─────────────────────────────────────────────────────── */
#pricing { background: var(--deep); }
.pricing-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  padding: 1rem 1.5rem;
  background: rgba(212,175,55,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  display: inline-block;
}
#pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.pricing-card {
  padding: 1.75rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.3); }
.pricing-card.popular {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.07);
  box-shadow: 0 0 32px rgba(212,175,55,0.1);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: var(--deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.route-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}
.route-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.route-price {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.includes-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--muted);
  flex: 1;
}
.includes-list li { display: flex; align-items: center; gap: 0.4rem; }


/* ─── FOOTER / CONTACT ───────────────────────────────────────────── */
#contact { background: var(--deep); padding: 5rem 0 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212,175,55,0.12);
  margin-bottom: 2rem;
}
.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand img { height: 50px; width: auto; object-fit: contain; }
.footer-brand .brand-name { font-size: 1.1rem; font-weight: 800; }
.footer-tagline { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
  font-size: 1.1rem;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08); }
.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-group h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.contact-item .ci-label {
  font-weight: 600;
  color: var(--text);
  min-width: 90px;
  flex-shrink: 0;
}
.contact-item a { color: var(--muted); transition: color var(--transition); }
.contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copyright, .footer-president { font-size: 0.82rem; color: var(--muted); }

/* ─── FLOATING WHATSAPP ──────────────────────────────────────────── */
#floating-wa {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  color: white;
}
#floating-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
#floating-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: wa-pulse 2.5s infinite;
}
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.35); opacity: 0; }
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────────── */
.fade-in { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.slide-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.slide-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.slide-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible, .slide-up.visible, .slide-left.visible, .slide-right.visible {
  opacity: 1; transform: none;
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── GOLD DIVIDERS ──────────────────────────────────────────────── */
.glow-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.4), transparent);
  border: none;
  margin: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */

/* Prevent horizontal scroll globally */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100vw; }

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image img { height: 300px; }
  .fleet-info { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  section { padding: 3.5rem 0; }
  .section-title { font-size: 1.75rem; }
  .container { padding: 0 1rem; }

  /* ── Navbar ── */
  .nav-inner { gap: 0.5rem; padding: 0 1rem; }

  /* Hide logo text on mobile to save space */
  .nav-logo-text { display: none; }

  /* Compact lang switcher */
  .lang-switcher { gap: 0.15rem; }
  .lang-btn { padding: 0.25rem 0.35rem; font-size: 0.68rem; gap: 0.15rem; }

  /* WA nav button — icon only, circle */
  .nav-wa-btn span { display: none; }
  .nav-wa-btn { padding: 0; width: 36px; height: 36px; justify-content: center; border-radius: 50%; }

  .nav-right { gap: 0.5rem; }

  #hamburger { display: flex; }

  /* Mobile nav menu */
  #nav-menu {
    position: fixed;
    /* Start fully off-screen above: move up by own height + navbar height */
    top: var(--nav-h);
    left: 0; right: 0;
    z-index: 998;
    background: rgba(6,13,24,0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1rem;
    gap: 1rem;
    transform: translateY(calc(-100% - var(--nav-h)));
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), visibility 0.35s;
    border-bottom: 1px solid rgba(212,175,55,0.15);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  #nav-menu.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  #nav-menu a { font-size: 1rem; color: var(--text); padding: 0.25rem 0; width: 100%; display: block; }

  /* ── Hero ── */
  /* iOS Safari fix: background-attachment: fixed is broken on iOS */
  #hero {
    background-attachment: scroll;
    background-position: center center;
    min-height: 100svh;
  }

  .hero-content { padding: calc(var(--nav-h) + 2rem) 1rem 3rem; }
  .hero-headline { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-subheadline { font-size: 1rem; }
  .hero-badges { gap: 0.5rem; }
  .hero-badge { font-size: 0.75rem; padding: 0.38rem 0.75rem; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 0.75rem; padding: 0 0.5rem; }
  .btn-hero-wa, .btn-outline { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.8rem; }

  /* ── Ticker ── */
  #services-ticker { padding: 2rem 0; overflow: hidden; }
  .ticker-item { font-size: clamp(1.1rem, 4vw, 1.6rem); padding: 0 1.5rem; }

  /* ── About ── */
  .about-badges { grid-template-columns: 1fr; }
  .about-image img { height: 240px; }
  .about-text p { font-size: 0.95rem; }

  /* ── Fleet ── */
  .fleet-card { padding: 1.25rem; }
  .carousel-wrapper { max-height: 240px; }
  .fleet-equipment { grid-template-columns: 1fr 1fr; }

  /* ── Pricing ── */
  .pricing-note { font-size: 0.82rem; padding: 0.75rem 1rem; display: block; }

  /* ── Footer ── */
  .footer-contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  .footer-brand img { height: 42px; }

  /* ── Floating WA ── */
  #floating-wa { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; }
}

@media (max-width: 480px) {
  :root { --nav-h: 56px; }

  #pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 0.75rem; }
  .fleet-equipment { grid-template-columns: 1fr; }

  /* Even smaller ticker */
  .ticker-item { font-size: 1rem; padding: 0 1.1rem; }
  .ticker-sep { font-size: 0.8rem; }

  .hero-headline { font-size: 1.75rem; }
  .about-image img { height: 200px; }

  /* Footer */
  .social-links { justify-content: center; }
  .footer-brand .logo-wrap { justify-content: center; }
  .footer-tagline { text-align: center; }
}
