/* ============================================
   ONESTOP SERVICES B.V. — GLOBAL STYLESHEET
   ============================================ */

:root {
  --navy: #0D1B2A;
  --navy-mid: #1B2B4B;
  --navy-light: #243656;
  --orange: #E85D04;
  --orange-light: #FF7A1A;
  --orange-pale: #FFF1E6;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --grey: #8A97B0;
  --grey-light: #E8ECF4;
  --text: #1B2B4B;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(13,27,42,0.12);
  --shadow-orange: 0 8px 32px rgba(232,93,4,0.25);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
}
html { overflow-x: hidden; max-width: 100vw; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { font-weight: 300; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,93,4,0.35); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  border: 2px solid var(--grey-light);
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--off-white); }

.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--grey-light);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(13,27,42,0.10); }

.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 8px;
  height: 72px;
}

.logo {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0; text-decoration: none;
}
.logo-text-stack {
  display: flex; flex-direction: column; line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 800;
  color: var(--navy); letter-spacing: -0.02em;
}
.logo-sub {
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 800;
  color: var(--orange); letter-spacing: 0.08em;
}
.logo-dot { color: var(--orange); }

/* Desktop: nav links centered */
.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nav-links a {
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 400; color: var(--navy-mid);
  transition: var(--transition); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--off-white); color: var(--navy); font-weight: 500;
}

.nav-right {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}

.lang-toggle {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.82rem; font-weight: 500; color: var(--grey);
  padding: 6px 10px; border-radius: 6px;
  background: var(--off-white); cursor: pointer;
  transition: var(--transition); flex-shrink: 0; border: none;
}
.lang-toggle:hover { background: var(--grey-light); }
.active-lang { color: var(--orange); font-weight: 700; }
.lang-sep { color: var(--grey-light); }

.btn-call {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--navy); color: var(--white);
  padding: 9px 20px; border-radius: 50px;
  font-size: 0.875rem; font-weight: 500;
  transition: var(--transition); flex-shrink: 0; text-decoration: none;
}
.btn-call:hover { background: var(--orange); }

/* Hide call button on mobile — hamburger takes priority */
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
}

/* Hamburger — VISIBLE by default, hidden on desktop via media query */
.hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; padding: 8px 6px; border-radius: 6px; cursor: pointer;
  background: none; border: none; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2.5px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
}

/* DESKTOP: hide hamburger, show nav links */
@media (min-width: 769px) {
  .hamburger { display: none !important; }
  .nav-links { display: flex !important; }
  .btn-call-text { display: inline; }
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 28px 80px;
  max-width: 1180px; margin: 0 auto;
  gap: 60px;
  position: relative;
}
.hero-bg-grid {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--grey-light) 1px, transparent 0);
  background-size: 40px 40px;
  z-index: -1; pointer-events: none; opacity: 0.6;
}

.hero-content { flex: 1; max-width: 600px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange-pale); color: var(--orange);
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
  color: var(--navy);
}
.hero-title .accent { color: var(--orange); }

.hero-sub {
  font-size: 1.1rem; color: var(--grey); max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 52px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex; align-items: center; gap: 24px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat { text-align: left; }
.stat-num { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--navy); }
.stat-label { font-size: 0.8rem; color: var(--grey); font-weight: 400; }
.stat-divider { width: 1px; height: 40px; background: var(--grey-light); }

/* Hero visual */
.hero-visual {
  flex: 1; position: relative; display: flex;
  align-items: center; justify-content: center;
  min-height: 480px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-map-bg {
  width: 340px; height: 420px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--grey-light) 100%);
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--grey-light);
  display: flex; align-items: center; justify-content: center;
}
.nl-map { width: 260px; }

.hero-card {
  position: absolute; top: 40px; left: -20px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--grey-light);
}
.hero-card strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--navy); }
.hero-card p { font-size: 0.8rem; color: var(--grey); margin: 0; }

.hero-card-2 {
  position: absolute; bottom: 60px; right: -10px;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 500; box-shadow: var(--shadow);
}

/* Mobile badges — hidden on desktop, shown on mobile */
.hero-mobile-badges {
  display: none;
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floating-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.floating { animation: floating 3.5s ease-in-out infinite; }
.floating-slow { animation: floating-slow 5s ease-in-out infinite; }

/* ---- SERVICES STRIP ---- */
.services-strip {
  padding: 80px 0;
  background: var(--off-white);
}
.strip-label {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 28px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; border: 1px solid var(--grey-light);
  cursor: pointer; transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0);
  transition: var(--transition); transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--navy);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--orange-pale); color: var(--orange); }

.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--grey); margin-bottom: 20px; }

.card-arrow {
  font-size: 1.2rem; color: var(--orange);
  display: inline-block; transition: var(--transition);
}
.service-card:hover .card-arrow { transform: translateX(4px); }

.highlight-card { background: var(--navy); color: var(--white); border-color: var(--navy); }
.highlight-card .service-icon { background: rgba(255,255,255,0.1); color: var(--white); }
.highlight-card h3 { color: var(--white); }
.highlight-card p { color: rgba(255,255,255,0.65); }
.highlight-card::before { background: var(--orange); }
.card-phone {
  display: inline-block; color: var(--orange);
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
}

/* ---- WHY US ---- */
.why-us { padding: 100px 0; }

.section-header { margin-bottom: 60px; }
.section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.section-header h2 { color: var(--navy); }

.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.why-item { padding: 0 0 40px; border-bottom: 1px solid var(--grey-light); }
.why-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  color: var(--grey-light); line-height: 1; margin-bottom: 16px;
}
.why-item h4 { margin-bottom: 10px; color: var(--navy); }
.why-item p { font-size: 0.9rem; color: var(--grey); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); }
.cta-text p { color: rgba(255,255,255,0.6); margin-top: 8px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy); color: var(--white);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: var(--orange); }
.footer-tagline {
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  margin: 16px 0 8px; font-style: italic;
}
.footer-legal { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

.footer-col h5 {
  font-family: var(--font-display); font-size: 0.9rem;
  color: rgba(255,255,255,0.5); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block; font-size: 0.9rem; font-weight: 300;
  color: rgba(255,255,255,0.7); margin-bottom: 10px;
  transition: var(--transition);
  line-height: 1.5;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,4,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-header-tag {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px; display: block;
}
.page-header h1 { color: var(--white); }
.page-header p {
  color: rgba(255,255,255,0.6); font-size: 1.1rem;
  max-width: 520px; margin-top: 16px;
}

/* ---- SERVICES PAGE ---- */
.service-detail { padding: 90px 0; }
.service-detail:nth-child(even) { background: var(--off-white); }

.service-detail-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }

.service-visual {
  background: linear-gradient(135deg, var(--off-white), var(--grey-light));
  border-radius: 24px; padding: 60px 40px;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
}
.service-visual svg { opacity: 0.8; }

.service-detail-content .section-tag { margin-bottom: 14px; }
.service-detail-content h2 { margin-bottom: 20px; color: var(--navy); }
.service-detail-content > p { color: var(--grey); margin-bottom: 32px; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem;
}
.feature-list li::before {
  content: '';
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange-pale);
  flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23E85D04' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ---- COVERAGE PAGE ---- */
.coverage-section { padding: 90px 0; }
.coverage-intro { max-width: 620px; margin-bottom: 60px; }
.coverage-intro p { color: var(--grey); font-size: 1.05rem; margin-top: 14px; }

.cities-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.city-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--off-white); border-radius: 10px;
  padding: 12px 16px; border: 1px solid var(--grey-light);
  font-size: 0.9rem; transition: var(--transition);
}
.city-chip:hover { border-color: var(--orange); background: var(--orange-pale); color: var(--orange); }
.city-chip svg { color: var(--orange); flex-shrink: 0; }

.intl-section { padding: 80px 0; background: var(--off-white); }
.intl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.intl-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.intl-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.intl-flag { font-size: 2rem; margin-bottom: 12px; }
.intl-card h4 { margin-bottom: 6px; color: var(--navy); }
.intl-card p { font-size: 0.875rem; color: var(--grey); }

/* ---- ABOUT PAGE ---- */
.about-section { padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-text h2 { margin-bottom: 20px; color: var(--navy); }
.about-text p { color: var(--grey); margin-bottom: 20px; font-size: 1rem; }
.about-info { background: var(--off-white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--grey-light); }
.info-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--grey-light);
}
.info-row:last-child { border-bottom: none; }
.info-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--orange-pale); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--orange);
}
.info-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey); margin-bottom: 4px; }
.info-value { font-size: 0.95rem; color: var(--navy); font-weight: 500; line-height: 1.4; }

.values-section { padding: 80px 0; background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.value-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); }
.value-card .why-num { font-size: 2rem; margin-bottom: 12px; }
.value-card h4 { margin-bottom: 10px; color: var(--navy); }
.value-card p { font-size: 0.875rem; color: var(--grey); }

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 90px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }

.contact-info-block h3 { margin-bottom: 28px; color: var(--navy); }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--grey-light);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--orange-pale); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--orange);
}
.contact-detail-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey); margin-bottom: 4px; }
.contact-detail-value { font-size: 1rem; color: var(--navy); font-weight: 500; }
.contact-detail-value a { color: var(--navy); transition: var(--transition); }
.contact-detail-value a:hover { color: var(--orange); }

/* CONTACT FORM */
.contact-form-card {
  background: var(--white); border-radius: 20px;
  padding: 48px; border: 1px solid var(--grey-light);
  box-shadow: var(--shadow);
}
.contact-form-card h3 { margin-bottom: 8px; color: var(--navy); }
.form-subtitle { color: var(--grey); font-size: 0.9rem; margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--navy); margin-bottom: 8px; letter-spacing: 0.02em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--grey-light); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  background: var(--off-white);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange); background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; }

.form-btn {
  width: 100%; padding: 16px;
  background: var(--orange); color: var(--white);
  border: none; border-radius: 50px; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-btn:hover { background: var(--orange-light); transform: translateY(-2px); }

.form-note { font-size: 0.8rem; color: var(--grey); margin-top: 14px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 40px 0;
}
.form-success .check-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--orange-pale); display: flex;
  align-items: center; justify-content: center; margin: 0 auto 20px;
}
.form-success h4 { color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--grey); font-size: 0.9rem; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }


/* ---- FLEET SECTION ---- */
.fleet-section { padding: 80px 0; background: var(--off-white); }

/* Desktop: big image left, two stacked right — fixed heights */
.fleet-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 420px;
  gap: 14px;
}

.fleet-main {
  position: relative; border-radius: 18px;
  overflow: hidden; cursor: pointer;
  grid-row: 1;
}
.fleet-main img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.fleet-main:hover img { transform: scale(1.03); }

.fleet-side {
  display: flex; flex-direction: column; gap: 14px;
  grid-row: 1;
}
.fleet-item {
  position: relative; border-radius: 18px;
  overflow: hidden; flex: 1; cursor: pointer;
}
.fleet-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.fleet-item:hover img { transform: scale(1.04); }

.fleet-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.7) 0%, transparent 100%);
  padding: 32px 16px 12px;
  color: var(--white);
  font-size: 0.82rem; font-weight: 400;
}

/* Tablet: keep side by side but shorter */
@media (max-width: 1024px) and (min-width: 769px) {
  .fleet-grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 340px;
  }
}

@media (max-width: 768px) {
  .fleet-section { padding: 48px 0; }
  .fleet-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .fleet-main {
    width: 100%; height: 220px;
    border-radius: 14px; overflow: hidden;
    position: relative;
  }
  .fleet-side {
    display: flex; flex-direction: column; gap: 12px;
  }
  .fleet-item {
    width: 100%; height: 180px;
    border-radius: 14px; overflow: hidden;
    position: relative;
  }
  .fleet-main img, .fleet-item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .fleet-caption { padding: 24px 12px 10px; font-size: 0.78rem; }
}

/* ---- TABLET ---- */
@media (max-width: 1024px) {
  .hero { flex-direction: column; padding-top: 100px; min-height: auto; gap: 40px; }
  .hero-visual { width: 100%; min-height: 320px; }
  .hero-map-bg { width: 100%; max-width: 400px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-inner.reverse { direction: ltr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .intl-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   MOBILE  ≤ 768px
   ================================================================ */
@media (max-width: 768px) {

  /* NAVBAR */
  .nav-inner { padding: 0 14px; height: 62px; gap: 0; overflow: visible; }

  /* Hide desktop nav links — shown in drawer instead */
  .nav-links {
    display: none;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 10px 14px 28px;
    gap: 4px;
    z-index: 999;
    border-top: 2px solid var(--grey-light);
    box-shadow: 0 12px 40px rgba(13,27,42,0.15);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links.open a {
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    color: var(--navy);
    border-bottom: 1px solid var(--grey-light);
    display: block;
  }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-links.open a.active {
    background: var(--orange-pale);
    color: var(--orange);
    border-bottom-color: transparent;
  }

  /* Push nav-right to far right — never clip */
  .nav-right { margin-left: auto; gap: 8px; flex-shrink: 0; }

  /* Lang toggle */
  .lang-toggle { padding: 5px 8px; font-size: 0.76rem; }

  /* Call button — orange circle */
  .btn-call {
    width: 38px; height: 38px; min-width: 38px;
    padding: 0; border-radius: 50%;
    background: var(--orange);
    display: flex; align-items: center; justify-content: center;
  }
  .btn-call-text { display: none; }
  .btn-call svg { width: 17px; height: 17px; }

  /* Logo — stacked layout is compact, no truncation needed */
  .logo { flex-shrink: 0; min-width: 0; }
  .logo-name { font-size: 0.95rem; }
  .logo-sub { font-size: 0.58rem; }
  .logo svg { width: 30px; height: 30px; flex-shrink: 0; }

  /* Ensure hamburger is ALWAYS visible */
  .hamburger {
    display: flex !important;
    flex-direction: column !important;
    flex-shrink: 0 !important;
  }

  /* HERO */
  .hero {
    flex-direction: column;
    padding: 76px 16px 36px;
    gap: 20px; min-height: auto;
  }
  .hero-content { max-width: 100%; }
  .hero-badge { font-size: 0.78rem; margin-bottom: 14px; padding: 7px 14px; }
  .hero-title { margin-bottom: 14px; }
  .hero-sub { font-size: 0.93rem; margin-bottom: 20px; }
  .hero-cta { gap: 10px; margin-bottom: 24px; }
  .hero-stats { gap: 12px; }
  .stat-num { font-size: 1.25rem; }
  .stat-label { font-size: 0.73rem; }
  .stat-divider { height: 28px; }
  .hero-card, .hero-card-2 { display: none !important; }

  .hero-visual {
    display: flex !important; flex-direction: column;
    align-items: center; gap: 12px;
    width: 100%; min-height: auto !important; position: static;
  }
  .hero-map-bg {
    width: 100%; height: 200px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
  }
  .nl-map { width: 160px; height: auto; }

  .hero-mobile-badges {
    display: flex !important;
    flex-direction: row; gap: 10px; width: 100%;
  }
  .mobile-badge {
    flex: 1; background: var(--white);
    border: 1.5px solid var(--grey-light); border-radius: 12px;
    padding: 12px; display: flex; align-items: center; gap: 10px;
  }
  .mobile-badge strong {
    display: block; font-family: var(--font-display);
    font-size: 0.82rem; color: var(--navy); line-height: 1.2;
  }
  .mobile-badge span {
    display: block; font-size: 0.7rem;
    color: var(--grey); line-height: 1.3;
  }
  .mobile-badge svg { flex-shrink: 0; }

  /* GENERAL */
  .container { padding: 0 16px; }
  h1 { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  h2 { font-size: clamp(1.35rem, 5.5vw, 1.85rem); }
  .btn-primary, .btn-ghost { padding: 12px 20px; font-size: 0.88rem; }
  .services-strip { padding: 48px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-us { padding: 52px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
  .cta-banner { padding: 48px 0; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions a { justify-content: center; }
  .page-header { padding: 86px 0 48px; }
  .service-detail { padding: 48px 0; }
  .coverage-section, .intl-section { padding: 48px 0; }
  .about-section, .values-section { padding: 48px 0; }
  .contact-section { padding: 48px 0; }
  .section-header { margin-bottom: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 20px 14px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .intl-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { padding: 16px 0; }
}

/* Mobile badges hidden on desktop */
.hero-mobile-badges { display: none; }