:root {
    --navy: #0B2A45;
    --turquoise: #00A6C7;
    --whatsapp: #25D366;
    --white: #FFFFFF;
    --bg: #F5F7FA;
    --text: #0A1220;
    --text-gray: #666666;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 8px rgba(11, 42, 69, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 42, 69, 0.12);
    --shadow-lg: 0 8px 32px rgba(11, 42, 69, 0.16);

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 18px;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

section {
    scroll-margin-top: 80px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 50px 0;
}

.section-gray {
    background-color: var(--bg);
    padding: 50px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
    max-width: 800px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    min-height: 44px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--turquoise);
    color: var(--white);
    border-color: var(--turquoise);
}

.btn-primary:hover {
    background-color: #0090b0;
    border-color: #0090b0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
    border-radius: 999px;
    min-height: 44px;
    padding: 0 20px;
}

.btn-whatsapp:hover {
    background-color: #1fb855;
    border-color: #1fb855;
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-large {
    min-height: 52px;
    padding: 0 36px;
    font-size: 1.125rem;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    min-height: 80px;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    padding: 32px 20px;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nav-menu.active {
    left: 0;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--navy);
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--turquoise);
}

.nav-cta {
    width: 100%;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 32px;
    height: 3px;
    background-color: var(--navy);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -10px;
}

.hamburger::after {
    bottom: -10px;
}

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 42, 69, 0.75) 0%, rgba(11, 42, 69, 0.65) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 32px 20px;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.0625rem;
    line-height: 1.5;
    margin-bottom: 28px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero-buttons .btn {
    width: 100%;
    max-width: 280px;
}

.diensten-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

.dienst-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(11, 42, 69, 0.08);
}

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

.dienst-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.dienst-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dienst-card:hover .dienst-img {
    transform: scale(1.05);
}

.dienst-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background-color: var(--turquoise);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.dienst-content {
    padding: 24px;
}

.dienst-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.dienst-text {
    color: var(--text-gray);
    line-height: 1.6;
}

.ba-sliders {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 32px;
}

.ba-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(11, 42, 69, 0.08);
}

.ba-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.ba-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.ba-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
    border-radius: var(--radius-md);
}

.ba-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-handle-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background-color: var(--white);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    background-color: var(--turquoise);
    border: 3px solid var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ba-labels {
    position: absolute;
    top: 16px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
}

.ba-label {
    background-color: rgba(0, 0, 0, 0.65);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.gallery {
    margin-top: 48px;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
    text-align: center;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 42, 69, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background-color: var(--turquoise);
    border-color: var(--turquoise);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background-color: var(--turquoise);
    border-color: var(--turquoise);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.usp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 32px;
}

.usp-item {
    text-align: center;
}

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

.usp-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.usp-text {
    color: var(--text-gray);
    line-height: 1.6;
}

.over-ons-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.over-ons-text {
    max-width: 600px;
}

.over-ons-text p {
    margin-bottom: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.over-ons-cta {
    margin-top: 24px;
}

.over-ons-image {
    order: -1;
}

.over-ons-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-content {
    max-width: 700px;
    margin: 32px auto 0;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--turquoise);
}

.contact-item span {
    font-weight: 500;
    color: var(--navy);
}

.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 40px 0 24px;
}

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

.footer-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--turquoise);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--turquoise);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    flex-shrink: 0;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.whatsapp-float:hover {
    background-color: #1fb855;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (min-width: 640px) {
    .hero {
        min-height: 65vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

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

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

    .contact-buttons {
        flex-direction: row;
    }

    .ba-slider {
        height: 380px;
    }
}

@media (min-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-gray {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .ba-sliders {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

    .over-ons-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .over-ons-image {
        order: 0;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .whatsapp-float {
        width: 62px;
        height: 62px;
    }

    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 900px) {
    .ba-sliders {
        grid-template-columns: repeat(3, 1fr);
    }

    .ba-slider {
        height: 320px;
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        position: static;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        width: auto;
        height: auto;
        padding: 0;
        background-color: transparent;
        gap: 32px;
    }

    .nav-list {
        flex-direction: row;
        gap: 28px;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0;
    }

    .nav-cta {
        width: auto;
    }

    .nav-toggle {
        display: none;
    }

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

    .usp-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero {
        min-height: 75vh;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }
}


:root{
  --navy: #0B2A45;
  --navy-2: #071E33;
  --white: #ffffff;
}

/* HEADER / NAV */
.header{
  position: sticky;   /* blijft boven */
  top: 0;
  z-index: 9999;
  width: 100%;
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.nav.container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px; /* pas aan als je wilt */
  gap: 18px;
}

/* Logo */
.logo-img{
  height: 150px;
  width: auto;
  display: block;
}

/* Menu */
.nav-list{
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 600;
  transition: opacity .2s ease;
}

.nav-link:hover{
  opacity: .75;
}

/* WhatsApp CTA (in navbar) */
.nav-cta{
  margin-left: 10px;
}

/* Zorg dat je hamburger wit is als je die gebruikt */
.nav-toggle{
  background: transparent;
  border: 0;
  color: var(--white);
}

.hamburger,
.hamburger::before,
.hamburger::after{
  background: var(--white);
}

/* Optioneel: als je een "scrolled" class toevoegt later */
.header.is-scrolled{
  background: var(--navy-2);
}


/* ===== MOBILE MENU FIX ===== */
@media (max-width: 768px) {

  /* Mobiel menu achtergrond */
  .nav-menu{
    background: #0B2A45; /* navy */
  }

  /* Links in mobiel menu */
  .nav-menu .nav-link{
    color: #ffffff !important;
    font-size: 1.1rem;
  }

  .nav-menu .nav-link:hover{
    opacity: 0.8;
  }

  /* WhatsApp knop in mobiel menu */
  .nav-menu .btn-whatsapp{
    background: #25D366;
    color: #ffffff;
  }

  /* Close / X knop wit */
  .nav-menu .nav-close,
  .nav-menu .nav-close svg{
    color: #ffffff;
    fill: #ffffff;
  }
}


/* =========================
   NAV / HEADER KLEUREN
========================= */
.header{
  background: #0b2a44;          /* navy */
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-link{
  color: #fff;
}

.nav-link:hover{
  opacity: .85;
}

/* Zorg dat mobiel menu dezelfde kleuren pakt */
@media (max-width: 768px){
  .nav-menu{
    background: #0b2a44;
  }
  .nav-link{
    color: #fff !important;
  }
}

.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wa-inner {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), 
                0 0 0 6px rgba(37, 211, 102, 0.18);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.wa-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.wa-bubble {
    position: absolute;
    right: 70px;
    bottom: 50%;
    transform: translateY(50%);
    background-color: var(--navy);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.wa-bubble::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: var(--navy);
}

.floating-whatsapp:hover .wa-bubble,
.floating-whatsapp.show-bubble .wa-bubble {
    opacity: 1;
}

.floating-whatsapp:hover .wa-inner {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32), 
                0 0 0 8px rgba(37, 211, 102, 0.25);
}

/* Desktop: bubble alleen op hover */
@media (min-width: 768px) {
    .wa-bubble {
        display: block;
    }
}

/* Mobiel: bubble tonen op eerste tap, dan 3s later verdwijnen */
@media (max-width: 767px) {
    .wa-bubble {
        display: none;
    }
    
    .floating-whatsapp.show-bubble .wa-bubble {
        display: block;
        opacity: 1;
    }
}

/* Footer social icons - consistente strakke stijl */
.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.social-icon-img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.social-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-btn:hover svg {
    stroke: var(--accent);
}

.social-btn:hover .social-icon-img {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(160deg);
}

/* Hamburger kleur aanpassen voor navy header */
.hamburger,
.hamburger::before,
.hamburger::after {
    width: 32px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}



/* Zorg dat buttons icons nooit “pletten” */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  line-height: 1;
}

/* WhatsApp button icon wrapper */
.btn .btn-icon{
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
}

/* Het echte WhatsApp icoon (simple-icons is zwart, dus invert naar wit) */
.btn .wa-icon{
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
}

/* Jouw bestaande stijl blijft, maar dit maakt 'm netter */
.btn-whatsapp{
  background-color: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
  border-radius: 999px;
  min-height: 44px;
  padding: 0 20px;
}

/* Voor grote variant */
.btn-large{
  min-height: 52px;
  padding: 0 36px;
  font-size: 1.125rem;
}

/* Hover blijft hetzelfde (optioneel iets strakker) */
.btn-whatsapp:hover{
  background-color: #1fb855;
  border-color: #1fb855;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}


/* CTA button strak maken */
.nav-cta{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  font-weight: 600;
}

/* Icon wrapper = altijd perfect rond & gecentreerd */
.btn-icon{
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
}

/* SVG zelf */
.wa-svg{
  width: 22px;
  height: 22px;
  display: block;
}

/* Hover = iets levendiger */
.nav-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37,211,102,.35);
}
