/* ===== ADELAAR LOGISTICS - INSPIRED BY HOEKTRANS / VAN THIEL ===== */
/* Clean, professional, lots of whitespace, card shadows, Montserrat headings */

:root {
  --brand:       #3B2314;
  --brand-deep:  #1a0f08;
  --gold:        #D9A441;
  --gold-light:  #f0c87a;
  --green-wa:    #25D366;
  --white:       #ffffff;
  --off-white:   #f8f6f3;
  --light-bg:    #faf8f5;
  --text-dark:   #2a1810;
  --text-body:   #4a3d35;
  --text-muted:  #8a7b6e;
  --border:      #e8e0d8;
  --shadow:      0 2px 16px rgba(42,24,16,.08);
  --shadow-lg:   0 8px 32px rgba(42,24,16,.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s;
}

.nav-links a:hover { color: var(--text-dark); }

.nav-cta {
  background: var(--brand);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background .2s !important;
}

.nav-cta:hover { background: var(--gold) !important; color: var(--brand-deep) !important; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,15,8,.88) 0%,
    rgba(26,15,8,.65) 50%,
    rgba(26,15,8,.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.5px;
}

.hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  margin-bottom: 28px;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--green-wa);
  color: #082a15;
  box-shadow: 0 4px 16px rgba(37,211,102,.2);
}
.btn-primary:hover { box-shadow: 0 6px 24px rgba(37,211,102,.3); transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  background: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--brand); }

/* ── STATS ── */
.stats {
  background: var(--brand);
  padding: 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 0;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
}

/* ── SECTION HEAD ── */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ── DIENSTEN ── */
.diensten {
  padding: 80px 0;
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.6;
}

/* ── GALLERY ── */
.in-beeld {
  padding: 0 0 80px;
  background: var(--white);
}

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

.gallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s;
}

.gallery figure:hover { transform: scale(1.02); }

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

/* ── WAAROM ── */
.waarom {
  padding: 80px 0;
  background: var(--off-white);
}

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

.usp {
  text-align: center;
  padding: 32px 16px;
}

.usp-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 16px;
  color: var(--gold);
  box-shadow: var(--shadow);
}

.usp h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.usp p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
}

/* ── CONTACT ── */
.contact {
  padding: 80px 0;
  background: var(--white);
}

.contact-card {
  background: var(--brand);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-text h2 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-text p {
  color: rgba(255,255,255,.7);
  max-width: 380px;
}

.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-btns .btn-outline {
  border-color: rgba(255,255,255,.25);
  color: var(--white);
  background: transparent;
}

.contact-btns .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}

.footer small {
  color: var(--text-muted);
  font-size: .85rem;
}

/* ── FLOATING WHATSAPP ── */
.wa-float {
  display: flex;
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-wa);
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

.wa-float:active { transform: scale(.95); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links { gap: 0; }
  .nav-cta { padding: 8px 16px; font-size: .9rem !important; }

  .hero { min-height: 420px; }
  .hero-content { padding: 48px 0; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; width: 100%; }

  .stats-grid { flex-direction: column; gap: 20px; padding: 28px 0; }
  .stat-divider { width: 60px; height: 1px; }

  .diensten { padding: 56px 0; }
  .diensten-grid { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 1.6rem; }

  .gallery { grid-template-columns: 1fr; }
  .in-beeld { padding: 0 0 56px; }

  .waarom { padding: 56px 0; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .usp { padding: 20px 12px; }

  .contact { padding: 56px 0; }
  .contact-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .contact-btns { width: 100%; }
  .contact-btns .btn { justify-content: center; }

  /* Ruimte voor floating knop */
  .footer { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr; }
  .nav-inner { height: 60px; }
  .nav-logo { width: 36px; height: 36px; }
  .nav-brand { font-size: .95rem; gap: 8px; }
  .hero { margin-top: 60px; min-height: 380px; }
  .contact-card { padding: 24px 16px; }
}
