:root {
  --blue: #6aa4ee;
  --blue-dark: #497fca;
  --text: #353535;
  --muted: #777;
  --line: #e7e7e7;
  --soft: #f7f7f7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Trebuchet MS", Arial, sans-serif;
  background: #fff;
}

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

.topbar,
.site-header,
.footer {
  background: var(--blue);
  color: #fff;
}

.topbar {
  font-size: 15px;
  line-height: 1;
}

.wrap {
  width: min(965px, calc(100% - 42px));
  margin: 0 auto;
}

.topbar .wrap,
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.topbar .wrap {
  height: 42px;
  justify-content: flex-end;
}

.contact-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}

.langs {
  display: inline-flex;
  border: 2px solid #fff;
  height: 30px;
  margin-top: 2px;
}

.langs a {
  min-width: 38px;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, .75);
  color: #fff;
}

.langs a:first-child {
  border-left: 0;
}

.langs a.active {
  background: #fff;
  color: var(--blue-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.site-header .wrap {
  height: 78px;
}

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

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

.nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 14px;
  color: #fff;
}

.nav a {
  white-space: nowrap;
  transition: opacity .2s ease;
}

.nav a:hover,
.nav a.active {
  opacity: .68;
}

.menu-toggle {
  display: none;
  width: 58px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .8);
  background: transparent;
  color: #fff;
  font-size: 13px;
}

.hero {
  min-height: max(640px, calc(100svh - 120px));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, .14), rgba(0, 0, 0, .14)), url("../assets/hero-port.jpg") center / cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}

.hero-inner {
  width: min(720px, calc(100% - 40px));
  margin-top: 44px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: min(470px, 90vw);
  filter: drop-shadow(6px 6px 0 rgba(0, 0, 0, .65));
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  min-width: 210px;
  min-height: 44px;
  border-radius: 26px;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.section {
  padding: 56px 0;
}

.section-title {
  color: var(--blue);
  font-size: clamp(34px, 4.4vw, 48px);
  font-weight: 400;
  text-align: center;
  margin: 0 0 44px;
  letter-spacing: .02em;
}

.map-title {
  position: relative;
  padding: 84px 0 38px;
  background: #fafafa;
  overflow: hidden;
}

.map-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/world-map.svg") center / min(760px, 86vw) auto no-repeat;
  opacity: .07;
}

.map-title .section-title {
  position: relative;
  margin: 0;
}

.home-about {
  position: relative;
  min-height: clamp(540px, 68svh, 700px);
  padding: 112px 0 106px;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.home-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/world-map.svg") center 42px / min(820px, 86vw) auto no-repeat;
  opacity: .055;
}

.home-about .wrap {
  position: relative;
  z-index: 1;
}

.home-about .section-title {
  margin-bottom: 34px;
}

.intro-text {
  max-width: 730px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 0;
}

.service-card {
  min-height: clamp(560px, 72svh, 760px);
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 22px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  transition: transform .7s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .48);
}

.service-card.cars::after {
  background: rgba(25, 171, 252, .74);
}

.service-card:hover::before {
  transform: scale(1.045);
}

.service-card.cars::before {
  background-image: url("../assets/cars-bg.jpg");
}

.service-card.parts::before {
  background-image: url("../assets/parts-bg.jpg");
}

.service-card .content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.service-card h2,
.service-card h3 {
  font-size: 40px;
  font-weight: 400;
  margin: 0 0 18px;
  color: #fff;
}

.float-form {
  position: fixed;
  right: 0;
  top: 176px;
  z-index: 25;
  min-width: 225px;
  min-height: 46px;
  border-radius: 26px 0 0 26px;
  font-size: 14px;
  padding: 0 22px;
  box-shadow: 0 12px 26px rgba(73, 127, 202, .28);
}

.service-card .icon {
  font-size: 0;
  line-height: 1;
  margin: 0 auto 30px;
  color: #fff;
  width: 62px;
  height: 62px;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.service-card .car-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 36h38l-5-13H23l-10 13z'/%3E%3Cpath d='M10 36v10h8'/%3E%3Cpath d='M54 36v10h-8'/%3E%3Ccircle cx='22' cy='47' r='5'/%3E%3Ccircle cx='42' cy='47' r='5'/%3E%3Cpath d='M25 23l4-7h14l3 7'/%3E%3C/svg%3E");
}

.service-card .parts-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M25 7h14l2 8a20 20 0 0 1 5 3l8-2 7 12-6 6a21 21 0 0 1 0 6l6 6-7 12-8-2a20 20 0 0 1-5 3l-2 8H25l-2-8a20 20 0 0 1-5-3l-8 2-7-12 6-6a21 21 0 0 1 0-6l-6-6 7-12 8 2a20 20 0 0 1 5-3l2-8z'/%3E%3Ccircle cx='32' cy='32' r='9'/%3E%3C/svg%3E");
}

.service-card p {
  margin: 0 auto 24px;
  line-height: 1.9;
  max-width: 840px;
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.split-media {
  min-height: 600px;
  background: center / cover no-repeat;
}

.split-media.import {
  background-image: url("../assets/cars-bg.jpg");
}

.split-media.export {
  background-image: url("../assets/parts-bg.jpg");
}

.split-copy {
  padding: 86px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-copy h1,
.split-copy h2 {
  margin: 0 0 26px;
  color: var(--blue);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 400;
}

.split-copy p,
.content-page p {
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 18px;
}

.content-page {
  padding: 80px 0 90px;
}

.content-page .wrap {
  max-width: 980px;
}

.gallery {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.quick-links {
  background: #fafafa;
  color: #6ea8ff;
  padding: 88px 0 96px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  text-align: center;
  place-items: center;
}

.quick-grid a {
  width: 100%;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0;
  font-size: clamp(24px, 2.35vw, 36px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
  padding: 0 16px;
  color: #6ea8ff;
  transition: color .2s ease, transform .2s ease;
}

.quick-grid a:hover {
  color: var(--blue);
  transform: translateY(-3px);
}

.quick-grid a::before {
  content: "";
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  background: currentColor;
  mask: var(--quick-icon) center / contain no-repeat;
  -webkit-mask: var(--quick-icon) center / contain no-repeat;
}

.quick-grid a[href*="opdrachtformulier"] {
  --quick-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8h32v48H18z'/%3E%3Cpath d='M26 18h16M26 27h16M26 36h12'/%3E%3Cpath d='M10 18h8M10 27h8M10 36h8M10 45h8'/%3E%3C/svg%3E");
}

.quick-grid a[href*="offerte"] {
  --quick-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 52h44'/%3E%3Cpath d='M14 48V20M28 48V30M42 48V14M54 48V24'/%3E%3Cpath d='M12 36l13-9 11 7 17-19'/%3E%3Cpath d='M47 15h6v6'/%3E%3C/svg%3E");
}

.quick-grid a[href="#contact"] {
  --quick-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 35v-6a19 19 0 0 1 38 0v6'/%3E%3Cpath d='M18 33h-3a6 6 0 0 0 0 12h5V33zM46 33h3a6 6 0 0 1 0 12h-5V33z'/%3E%3Cpath d='M44 45c-2 8-8 10-16 10h-4'/%3E%3C/svg%3E");
}

.form-shell {
  max-width: 920px;
  margin: 0 auto;
}

.form-intro {
  text-align: center;
  margin-bottom: 46px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 70px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.group-title {
  color: var(--blue);
  font-size: 20px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 3px solid var(--blue);
  padding: 10px 14px;
  font: inherit;
  color: #333;
  background: #fff;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.radio-row {
  display: flex;
  gap: 28px;
  align-items: center;
  color: var(--text);
}

.terms {
  margin: 34px 0;
  font-size: 13px;
  line-height: 1.65;
}

.social-map {
  background: #e9e9e9;
  text-align: center;
}

.map-frame {
  height: 430px;
  width: 100%;
  border: 0;
  filter: grayscale(.85) contrast(1.05) brightness(.86);
  display: block;
}

.contact-band {
  background: var(--blue);
  color: #fff;
  padding: 64px 0;
}

.contact-band .wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.contact-band img {
  width: 259px;
  max-width: 100%;
  margin-bottom: 24px;
}

.contact-band h3 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 400;
}

.contact-band p {
  margin: 0 0 8px;
  line-height: 1.7;
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer-form .full {
  grid-column: 1 / -1;
}

.footer-form input,
.footer-form textarea {
  border-width: 1px;
  border-color: rgba(255,255,255,.85);
  color: #fff;
  background: transparent;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255,255,255,.8);
}

.footer-form button {
  justify-self: start;
  min-width: 210px;
  min-height: 44px;
  border: 1px solid #fff;
  border-radius: 26px;
  background: rgba(255, 255, 255, .14);
}

.footer-form button:hover {
  background: rgba(255, 255, 255, .24);
}

.certs {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.certs img {
  width: auto;
  height: 52px;
  margin: 0;
}

.footer {
  padding: 24px 0;
  font-size: 13px;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

@media (max-width: 900px) {
  .topbar .wrap {
    justify-content: center;
    flex-wrap: wrap;
    height: auto;
    padding: 12px 0;
  }

  .site-header .wrap {
    height: 82px;
  }

  .logo img {
    width: 176px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    inset: 82px 0 auto 0;
    background: var(--blue);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 22px 24px;
    border-top: 1px solid rgba(255,255,255,.35);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 16px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.22);
  }

  .hero {
    min-height: 560px;
  }

  .home-about {
    min-height: 390px;
    padding: 70px 0;
  }

  .hero-inner {
    margin-top: 36px;
  }

  .float-form {
    display: none;
  }

  .cards,
  .split,
  .contact-band .wrap,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .quick-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quick-links {
    padding: 58px 0 68px;
  }

  .quick-grid a {
    min-height: 142px;
    font-size: 32px;
  }

  .split-media {
    min-height: 340px;
  }

  .split-copy {
    padding: 52px 24px;
  }

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

  .map-frame {
    height: 360px;
  }

}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 965px);
  }

  .contact-strip {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-logo {
    width: 330px;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 48px 0;
  }

  .service-card {
    padding: 28px;
    min-height: 440px;
  }

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

  .map-frame {
    height: 320px;
  }

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