:root {
  --brand-red-1: #b30000;
  --brand-red-2: #ff2a2a;
  --brand-red-solid: #b30000;
}

body {
  padding-top: 0px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* NAVBAR BASIS */
.custom-navbar {
  background: linear-gradient(90deg, var(--brand-red-1), var(--brand-red-2));
  height: 65px;
  padding: 0 !important;
}

/* Laat Bootstrap de flex doen, maar zorg voor vaste hoogte & vertical centering */
.custom-navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
}

/* LOGO LINKS */
.custom-navbar .navbar-brand {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.custom-navbar .navbar-brand img {
  height: 65px;      /* desktop logo */
  width: auto;
  display: block;
  object-fit: contain;
}

/* NAV LINKS (desktop rechts) */
.custom-navbar .navbar-nav {
  align-items: center;
}

.custom-navbar .nav-link {
  color: #fff !important;
}

/* BURGER RECHTS */
.custom-navbar .navbar-toggler {
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.85);
}

/* =========================================================
   MOBIEL: dropdown full-width + kleur blijft
   ========================================================= */
@media (max-width: 991px) {
  body {
    padding-top: 65px;
  }

  .custom-navbar {
    height: 65px;
    z-index: 1030;
  }

  .custom-navbar .navbar-brand img {
    height: 44px;   /* mobiel logo (kleiner) */
  }

  /* WITTE STREEP FIX + full-width dropdown */
  .custom-navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%); /* center t.o.v. viewport */
    width: 100vw;                /* echte full width */

    background: linear-gradient(90deg, var(--brand-red-1), var(--brand-red-2));
    padding: 12px 16px;
    margin: 0;

    border-top: 1px solid rgba(255,255,255,0.2);
  }

  /* menu items onder elkaar + padding */
  .custom-navbar .navbar-nav {
    width: 100%;
    align-items: flex-start; /* links uitlijnen in dropdown */
  }

  .custom-navbar .nav-link {
    width: 100%;
    padding: 12px 0;
  }

  /* burger icon wit */
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
}


/* ===== Toast melding ===== */
.site-toast {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    z-index: 99999;
    min-width: 280px;
    max-width: 92vw;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
}

.site-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.site-toast.success {
    background: #ffffff;
    color: #111;
    border-left: 6px solid var(--brand-red-solid);
}

.site-toast.error {
    background: #111;
    color: #fff;
    border-left: 6px solid var(--brand-red-solid);
}

/* HERO */
.hero-section {
    position: relative;
    padding: 140px 0 100px;
    background-image: url("assets/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(179, 0, 0, 0.70);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-sub {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.hero-badge {
    display: inline-block;
    padding: .45rem .9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(6px);
    font-weight: 600;
    font-size: .95rem;
}

.hero-note {
    opacity: .9;
    font-size: 1rem;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
}

/* "Bolletjes" bij Zo werkt het (jouw icon-circles) nu in dezelfde rood als navbar */
.icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--brand-red-solid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.icon-circle i {
    color: white;
    font-size: 36px;
}

.icon-truck {
    transition: transform 0.3s ease;
}

.icon-circle:hover .icon-truck {
    transform: translateX(6px);
}

/* DIENSTEN */
.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.service-img {
    width: 100%;
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVER */
#over img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* WERKWIJZE */
.step-box span {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 15px;
}

/* CONTACT */
.contact-section {
    background: linear-gradient(135deg, var(--brand-red-1), #ff3b3b);
}

.contact-section .form-control {
    border-radius: 8px;
}

/* SEO BLOK */
.seo-block {
    background: #f6f7f9;
}

.seo-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.seo-item {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.seo-item h5 {
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--brand-red-solid);
}

.seo-item i {
    color: var(--brand-red-solid);
    margin-right: 8px;
    font-size: 18px;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.wa-svg {
    width: 30px;
    height: 30px;
    display: block;
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 15px;
        right: 15px;
    }

    .wa-svg {
        width: 26px;
        height: 26px;
    }
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* FOOTER */
.footer {
    background: #111;
    color: #ccc;
    padding: 50px 0 25px;
    font-size: 14px;
}

.footer h5 {
    color: #fff;
    margin-bottom: 12px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer hr {
    border-color: #333;
    margin: 25px 0 15px;
}

.footer i {
    color: var(--brand-red-solid);
    width: 18px;
    margin-right: 6px;
}