/* ============================================
   UNITED MEDICAL SUPPLIER — Versie C v2
   Dramatic Navy & Gold — Immersive Design
   Inspired by United Group Europe style
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --navy-900: #040E1C;
  --navy-800: #081A30;
  --navy-700: #0C2340;
  --navy-600: #112E52;
  --navy-500: #163B6A;
  --navy-400: #1E4F8F;

  --gold-600: #9A7230;
  --gold-500: #B8892E;
  --gold-400: #C89B3E;
  --gold-300: #D4AB54;
  --gold-200: #E4C478;
  --gold-100: #F0D99C;

  --white: #FFFFFF;
  --gray-50: #F7F8FA;
  --gray-100: #EEF0F4;
  --gray-200: #D8DCE4;
  --gray-300: #B0B8C8;
  --gray-400: #8892A4;
  --gray-500: #6B7588;
  --gray-600: #4A5468;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  --container: 1200px;
  --shadow-gold: 0 4px 30px rgba(200,155,62,0.35);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-300);
  background: var(--navy-900);
  overflow-x: hidden;
}

a { color: var(--gold-400); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-200); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
h1 { font-size: 3.4rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; }
h2 { font-size: 2.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin-bottom: 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Gold decorative line */
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-200));
  border-radius: 2px;
}
.gold-line--center { margin: 16px auto 0; }

/* Section labels */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-400);
  margin-bottom: 12px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  border-color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--navy {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.btn--navy:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold-400);
  color: var(--gold-300);
}

.btn--sm { padding: 11px 24px; font-size: 0.78rem; }
.btn--lg { padding: 18px 42px; font-size: 0.9rem; }

/* === Top Bar === */
.topbar {
  background: rgba(4,14,28,0.9);
  color: var(--gray-400);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(200,155,62,0.1);
  position: relative;
  z-index: 101;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-left li { display: flex; align-items: center; gap: 6px; }
.topbar-left svg { width: 13px; height: 13px; color: var(--gold-400); }
.topbar-left a { color: var(--gray-400); }
.topbar-left a:hover { color: var(--white); }
.topbar-right { display: flex; gap: 12px; align-items: center; }
.topbar-badge {
  padding: 2px 10px;
  background: rgba(200,155,62,0.1);
  border: 1px solid rgba(200,155,62,0.2);
  border-radius: 50px;
  color: var(--gold-300);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* === Header === */
.header {
  background: rgba(8,26,48,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,155,62,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo-link { display: flex; align-items: center; height: 76px; }
.logo-link img { height: 50px; filter: brightness(1.15); }

.header nav ul { display: flex; gap: 2px; }
.header nav a {
  display: block;
  padding: 10px 18px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.2s;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.header nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.header nav a.active { color: var(--gold-400); }

.header-cta { display: flex; align-items: center; gap: 20px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--gray-300); font-size: 0.88rem; font-weight: 600;
  font-family: var(--font-heading);
}
.header-phone svg { color: var(--gold-400); width: 16px; height: 16px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; }

/* =============================================
   HERO — Full immersive with Europe map
   ============================================= */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Europe map background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/europe.jpg') center center / cover no-repeat;
  z-index: 0;
}

/* Dark overlay gradient — keeps text readable */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,14,28,0.55) 0%, rgba(4,14,28,0.35) 40%, rgba(4,14,28,0.7) 100%),
    linear-gradient(90deg, rgba(4,14,28,0.8) 0%, transparent 50%);
}

/* Bottom gold line accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  z-index: 5;
}

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

.hero-content {
  max-width: 680px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,155,62,0.15);
  border: 1px solid rgba(200,155,62,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-300);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  backdrop-filter: blur(4px);
}
.hero-badge svg { width: 14px; height: 14px; }

.hero h1 {
  font-size: 3.4rem;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold-300);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

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

/* === Fleet Showcase (auto strip below hero) === */
.fleet-strip {
  position: relative;
  background: var(--navy-800);
  overflow: hidden;
}

.fleet-strip-bg {
  position: absolute;
  inset: 0;
  background: url('img/auto2.jpeg') center center / cover no-repeat;
}
.fleet-strip-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,14,28,0.15) 0%, rgba(4,14,28,0.15) 100%);
}

.fleet-strip .container {
  position: relative;
  z-index: 2;
  padding: 0;
}

.fleet-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Overlay stats on the fleet image */
.fleet-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(4,14,28,0.95) 0%, rgba(4,14,28,0.6) 60%, transparent 100%);
  padding: 60px 0 30px;
  z-index: 3;
}

.fleet-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.fleet-stat { text-align: center; }
.fleet-stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
}
.fleet-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 6px;
}

/* === Trust Ribbon === */
.trust-ribbon {
  background: var(--navy-900);
  border-top: 1px solid rgba(200,155,62,0.12);
  border-bottom: 1px solid rgba(200,155,62,0.12);
  padding: 18px 0;
}
.trust-ribbon-inner { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-ribbon-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-size: 0.82rem; font-weight: 600;
  font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.5px;
}
.trust-ribbon-item svg { width: 18px; height: 18px; color: var(--gold-400); }

/* =============================================
   DIENSTEN — 3 Column Cards on dark bg
   ============================================= */
.services-section {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 100px 0;
  position: relative;
}

.services-section .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.services-section .section-header p { color: var(--gray-400); font-size: 1.05rem; margin-top: 20px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.service-card:hover {
  border-color: rgba(200,155,62,0.4);
  box-shadow: 0 8px 40px rgba(200,155,62,0.1);
  transform: translateY(-6px);
  background: rgba(255,255,255,0.05);
}

/* Gold top line on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-200));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.service-card:hover::before { opacity: 1; }

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid rgba(200,155,62,0.3);
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.4s;
}
.service-card:hover .service-card-img { filter: brightness(1) saturate(1); }

.service-card-body { padding: 30px 26px; }

.service-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,155,62,0.12);
  border: 1px solid rgba(200,155,62,0.2);
  border-radius: 8px;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.service-card-icon svg { width: 22px; height: 22px; }

.service-card h3 { margin-bottom: 6px; font-size: 1.2rem; }

.service-focus {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-500);
  margin-bottom: 12px;
  padding: 3px 10px;
  background: rgba(200,155,62,0.1);
  border-radius: 50px;
}

.service-card p { font-size: 0.92rem; color: var(--gray-400); margin-bottom: 20px; line-height: 1.7; }

.service-features { margin-bottom: 24px; }
.service-features li {
  padding: 5px 0 5px 26px;
  position: relative;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 16px;
  background: var(--gold-400);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23081A30'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

/* =============================================
   COVERAGE — Europe Map Background
   ============================================= */
.coverage {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.coverage-bg {
  position: absolute;
  inset: 0;
  background: url('img/europe.jpg') center 30% / cover no-repeat;
}
.coverage-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,14,28,0.92) 0%, rgba(4,14,28,0.7) 50%, rgba(4,14,28,0.5) 100%);
}

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

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coverage h2 { margin-bottom: 16px; }
.coverage-text > p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 36px; }

.region-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }

.region-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.region-item:hover {
  background: rgba(200,155,62,0.08);
  border-color: rgba(200,155,62,0.3);
}

.region-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,155,62,0.12);
  border-radius: 6px;
  color: var(--gold-400);
  flex-shrink: 0;
}
.region-icon svg { width: 18px; height: 18px; }

.region-item strong { display: block; color: var(--white); font-size: 0.92rem; font-weight: 600; }
.region-item span { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

.europe-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(200,155,62,0.1), rgba(200,155,62,0.04));
  border: 1px solid rgba(200,155,62,0.2);
  border-radius: 6px;
}
.europe-note svg { width: 22px; height: 22px; color: var(--gold-400); flex-shrink: 0; }
.europe-note p { color: var(--gold-200); font-size: 0.92rem; margin: 0; font-weight: 500; }

/* =============================================
   WHY CHOOSE US — dark cards
   ============================================= */
.why-section {
  background: var(--navy-800);
  padding: 100px 0;
  border-top: 1px solid rgba(200,155,62,0.08);
}
.why-section .section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.why-section .section-header p { color: var(--gray-400); margin-top: 20px; }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.why-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-200));
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,155,62,0.3);
  background: rgba(255,255,255,0.05);
}
.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,155,62,0.1);
  border: 1px solid rgba(200,155,62,0.2);
  border-radius: 50%;
  color: var(--gold-400);
}
.why-icon svg { width: 28px; height: 28px; }

.why-card h4 { margin-bottom: 8px; font-size: 1rem; }
.why-card p { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 0; line-height: 1.6; }

/* =============================================
   SECTORS — Tag cloud
   ============================================= */
.sectors-section {
  background: var(--navy-900);
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.sectors-section .section-header { text-align: center; max-width: 700px; margin: 0 auto 40px; }
.sectors-section .section-header p { color: var(--gray-400); margin-top: 16px; }

.sectors-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: all 0.25s;
}
.sector-tag svg { width: 15px; height: 15px; color: var(--gold-400); }
.sector-tag:hover {
  border-color: var(--gold-400);
  background: rgba(200,155,62,0.08);
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   CTA Banner
   ============================================= */
.cta-banner {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(200,155,62,0.1);
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: url('img/europe.jpg') center 60% / cover no-repeat;
  opacity: 0.25;
}
.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy-800), rgba(8,26,48,0.95));
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.55); font-size: 1.05rem; margin-bottom: 32px; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   CONTACT BAR (compact bottom bar)
   ============================================= */
.contact-bar {
  background: var(--navy-700);
  border-top: 2px solid var(--gold-400);
  padding: 20px 0;
}
.contact-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-bar-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-bar-items { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.contact-bar-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
}
.contact-bar-item svg { width: 16px; height: 16px; color: var(--gold-400); }
.contact-bar-item a { color: rgba(255,255,255,0.7); }
.contact-bar-item a:hover { color: var(--white); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-900);
  color: var(--gray-400);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer h4 {
  color: var(--gold-400);
  font-size: 0.85rem;
  margin-bottom: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-about p { font-size: 0.88rem; line-height: 1.7; }
.footer-about .logo-link { margin-bottom: 14px; height: auto; }
.footer-about .logo-link img { height: 44px; filter: brightness(1.1); }

.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--gray-400);
  font-size: 0.88rem;
  transition: all 0.2s;
}
.footer-links a:hover { color: var(--gold-300); padding-left: 4px; }

.footer-contact-list li {
  display: flex; gap: 10px; margin-bottom: 12px;
  font-size: 0.88rem; align-items: flex-start;
}
.footer-contact-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--gold-400); }
.footer-contact-list a { color: var(--gray-400); }
.footer-contact-list a:hover { color: var(--gold-300); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.78rem;
  color: var(--gray-500);
}
.footer-bottom-certs { display: flex; gap: 12px; }
.cert-badge {
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 1px;
}

/* =============================================
   PAGE HERO — Subpage header with europe.jpg
   ============================================= */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  background:
    linear-gradient(180deg, rgba(4,14,28,0.85) 0%, rgba(4,14,28,0.92) 100%),
    url('img/europe.jpg') center 30% / cover no-repeat;
  border-bottom: 3px solid var(--gold-400);
  overflow: hidden;
}
.page-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.breadcrumb a { color: var(--gold-400); }
.breadcrumb a:hover { color: var(--gold-200); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* =============================================
   PAGE CONTENT — Two-column layout
   ============================================= */
.page-content {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  padding: 80px 0;
}
.page-content .container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.page-content.full-width .container {
  grid-template-columns: 1fr;
}

/* Content body */
.content-body h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,155,62,0.15);
}
.content-body h2:first-child { margin-top: 0; }
.content-body p { color: var(--gray-300); font-size: 0.95rem; line-height: 1.8; }

/* Check list */
.check-list { margin: 20px 0 28px; }
.check-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  background: var(--gold-400);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23081A30'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.check-list li strong { color: var(--white); }

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 28px 24px;
}
.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,155,62,0.15);
}

.sidebar-service {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-service:last-child { border-bottom: none; }
.sidebar-service strong { color: var(--white); font-size: 0.9rem; }
.sidebar-service span { color: var(--gray-400); font-size: 0.8rem; }

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, rgba(200,155,62,0.1), rgba(200,155,62,0.04));
  border-color: rgba(200,155,62,0.2);
  text-align: center;
}
.sidebar-cta h3 { border-bottom-color: rgba(200,155,62,0.2); }
.sidebar-cta p { color: var(--gray-400); font-size: 0.88rem; margin-bottom: 16px; }
.sidebar-cta .phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 6px;
}
.sidebar-cta .email {
  display: block;
  color: var(--gray-300);
  font-size: 0.88rem;
}
.sidebar-cta .email:hover { color: var(--gold-300); }

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.process-step {
  display: flex;
  gap: 16px;
  padding: 24px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: all 0.3s;
}
.process-step:hover {
  border-color: rgba(200,155,62,0.3);
  background: rgba(255,255,255,0.05);
}
.step-number {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}
.process-step h4 { margin-bottom: 6px; font-size: 1rem; }
.process-step p { font-size: 0.85rem; color: var(--gray-400); margin: 0; line-height: 1.6; }

/* =============================================
   SPLIT SECTION — Image + Content side by side
   ============================================= */
.section-dark {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}
.section-darker {
  padding: 80px 0;
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split-image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.split-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.4s;
}
.split-image:hover img { filter: brightness(1); }

.split-content h2 { margin-bottom: 18px; }
.split-content p { color: var(--gray-300); font-size: 0.95rem; line-height: 1.8; }

/* Stats Row */
.stats-row {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(200,155,62,0.15);
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1.1;
}
.stat-item span {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* =============================================
   VALUES GRID — 3-col cards
   ============================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: all 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,155,62,0.3);
  background: rgba(255,255,255,0.05);
}
.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,155,62,0.1);
  border: 1px solid rgba(200,155,62,0.2);
  border-radius: 50%;
  color: var(--gold-400);
}
.value-icon svg { width: 28px; height: 28px; }
.value-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.value-card p { font-size: 0.88rem; color: var(--gray-400); margin: 0; line-height: 1.6; }

/* =============================================
   CONTACT FORM — Dark themed
   ============================================= */
.contact-form { margin-top: 8px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-400);
  background: rgba(200,155,62,0.05);
  box-shadow: 0 0 0 3px rgba(200,155,62,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-500); }

/* Contact info items */
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,155,62,0.1);
  border: 1px solid rgba(200,155,62,0.2);
  border-radius: 8px;
  color: var(--gold-400);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-item strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.contact-info-item span,
.contact-info-item a { color: var(--gray-300); font-size: 0.92rem; }
.contact-info-item a:hover { color: var(--gold-300); }
.contact-info-item .phone-big {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-400);
}

/* Contact two-column layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* =============================================
   LEGAL / VOORWAARDEN — full-width content
   ============================================= */
.legal-content {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  padding: 80px 0;
}
.legal-content .content-body {
  max-width: 800px;
}
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,155,62,0.12);
  color: var(--gold-300);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--gray-300); font-size: 0.92rem; line-height: 1.8; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.7s ease-out both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-stats { gap: 40px; }
  .page-content .container { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
  .split { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; letter-spacing: 1px; }
  h2 { font-size: 1.6rem; }

  .topbar { display: none; }
  .header .container { height: 60px; }
  .logo-link { height: 60px; }
  .logo-link img { height: 38px; }

  .nav-toggle { display: block; }
  .header-phone { display: none; }
  .header nav {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--navy-800);
    border-bottom: 1px solid rgba(200,155,62,0.1);
    padding: 16px;
    z-index: 99;
  }
  .header nav.open { display: block; }
  .header nav ul { flex-direction: column; gap: 2px; }
  .header nav a { padding: 14px 16px; }

  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }

  .fleet-img { height: 200px; }
  .fleet-stats { gap: 24px; }
  .fleet-stat-num { font-size: 1.8rem; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .region-grid { grid-template-columns: 1fr; }

  .contact-bar .container { justify-content: center; text-align: center; }
  .contact-bar-title { width: 100%; }
  .contact-bar-items { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero { padding: 50px 0 40px; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; gap: 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .split-image img { height: 250px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .why-grid { grid-template-columns: 1fr; }
  .fleet-stats { flex-direction: column; gap: 16px; }
}
