/* =============================================
   PLM Transport – Stylesheet
   ============================================= */

:root {
  --blue:       #1a2e4a;
  --blue-mid:   #243d62;
  --blue-light: #2d4f82;
  --orange:     #f97316;
  --orange-dk:  #ea6500;
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-400:   #94a3b8;
  --gray-600:   #475569;
  --gray-800:   #1e293b;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(26,46,74,0.10);
  --shadow-lg:  0 8px 40px rgba(26,46,74,0.18);
  --transition: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  box-shadow: 0 6px 20px rgba(249,115,22,0.35);
}

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

.btn-sm { padding: 9px 20px; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section label ── */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-header p {
  max-width: 540px;
  margin-inline: auto;
  color: var(--gray-600);
  font-size: 1.05rem;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.75); }
.section-header.light .section-label { color: var(--orange); }

/* ── Sections ── */
.section { padding-block: 96px; }


/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding-block: 18px;
}
.navbar.scrolled {
  background: var(--blue);
  box-shadow: var(--shadow);
  padding-block: 12px;
}

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

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-icon { color: var(--orange); font-size: 1rem; }
.logo-accent { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.93rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links .btn { gap: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 55%, var(--blue-light) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(249,115,22,0.15) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(45,79,130,0.6) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-block: 80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.18);
  color: #fdb97a;
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.badge::before { content: "●"; font-size: 0.5rem; color: var(--orange); }

.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-content h1 .accent { color: var(--orange); }

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-8px); opacity: 1; }
}


/* =============================================
   DIENSTEN
   ============================================= */
.diensten { background: var(--gray-50); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  line-height: 1;
}
.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}
.card p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

.card-featured {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.card-featured h3 { color: var(--white); }
.card-featured p  { color: rgba(255,255,255,0.75); }

.card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}


/* =============================================
   WAAROM
   ============================================= */
.waarom { background: var(--white); }

.waarom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.waarom-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 18px;
  line-height: 1.25;
}
.waarom-text > p {
  color: var(--gray-600);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.75;
}
.check-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  color: var(--gray-700, #374151);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.check-list li::first-letter {
  color: var(--orange);
}

.visual-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vc-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.vc-icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.vc-row div { display: flex; flex-direction: column; }
.vc-row strong { font-weight: 700; color: var(--blue); font-size: 1rem; }
.vc-row span   { font-size: 0.82rem; color: var(--gray-400); margin-top: 2px; }


/* =============================================
   OVER ONS
   ============================================= */
.over-ons { background: var(--gray-50); }

.over-ons-content {
  max-width: 800px;
  margin-inline: auto;
}
.over-ons-content p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.bedrijfsinfo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
}
.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.info-item strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
}


/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: var(--blue);
  background-image: radial-gradient(circle at 90% 10%, rgba(249,115,22,0.12) 0%, transparent 50%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.ci-icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.contact-item div { display: flex; flex-direction: column; gap: 3px; }
.contact-item span { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); }
.contact-item a, .contact-item strong {
  color: var(--white);
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1.5;
}
.contact-item a:hover { color: var(--orange); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(45,79,130,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.85rem;
  text-align: center;
  min-height: 20px;
  color: var(--gray-600);
}
.form-note.success { color: #16a34a; }
.form-note.error   { color: #dc2626; }


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0f1e30;
  padding-top: 48px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 12px; font-size: 1.2rem; }
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  max-width: 280px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  align-items: center;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding-block: 18px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  text-align: center;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .waarom-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section { padding-block: 72px; }
  .section-header { margin-bottom: 40px; }

  /* Navbar mobile */
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--blue);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .nav-links.open {
    max-height: 400px;
    padding: 16px 0 24px;
  }
  .nav-links a {
    padding: 12px 24px;
    width: 100%;
  }
  .nav-links .btn {
    margin: 8px 24px 0;
    width: calc(100% - 48px);
    justify-content: center;
  }
  .navbar { position: fixed; background: var(--blue); }

  /* Hero */
  .hero { min-height: auto; padding-block: 120px 80px; }
  .hero-content { padding-block: 0; }
  .hero-stats { gap: 20px; }

  /* Cards */
  .cards { grid-template-columns: 1fr; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  /* Bedrijfsinfo */
  .bedrijfsinfo { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 28px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .bedrijfsinfo { grid-template-columns: 1fr; }
}
