/* ===========================
   DEALER TEMPLATE — style.css
   Gebaseerd op ASNAutoService
   =========================== */

:root {
  --accent:       #d5001c;
  --accent-hover: #b8001a;
  --accent-light: rgba(213,0,28,0.10);
  --nav-bg:       #0D1B2A;
  --hero-overlay: rgba(13,27,42,0.72);
  --white:        #ffffff;
  --bg:           #f8f8f8;
  --surface:      #ffffff;
  --text:         #1a1a1a;
  --muted:        #6b6b6b;
  --border:       #e0e0e0;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --radius:       6px;
  --transition:   0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--bg); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 10px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem,5vw,3rem); font-weight: 900; line-height: 1.05; text-transform: uppercase; }
.section-sub { color: var(--muted); line-height: 1.7; max-width: 640px; margin-top: 16px; }
.divider { width: 48px; height: 3px; background: var(--accent); margin: 16px 0; }

/* BUTTONS */
.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 14px; letter-spacing: .5px;
  transition: background var(--transition), transform var(--transition);
  border: 2px solid var(--accent);
}
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--border); color: var(--text);
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: 14px;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.5); color: #fff;
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: 14px;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* PRELOADER */
.preloader {
  position: fixed; inset: 0; background: var(--nav-bg);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-badge {
  font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 900;
  color: var(--accent); border: 4px solid var(--accent);
  width: 90px; height: 90px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; letter-spacing: 2px;
}
.preloader-name { color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 4px; margin-bottom: 24px; }
.preloader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.1); margin: 0 auto 12px; border-radius: 2px; overflow: hidden; }
.preloader-fill { height: 100%; background: var(--accent); border-radius: 2px; animation: preload 1.8s ease forwards; }
.preloader-text { color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
@keyframes preload { from { width: 0; } to { width: 100%; } }

/* WHATSAPP BANNER */
.wa-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: #128C7E; color: #fff;
  transform: translateY(-100%); transition: transform 0.4s ease;
}
.wa-banner.visible { transform: translateY(0); }
.wa-banner-inner { max-width: 1200px; margin: 0 auto; padding: 10px 24px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.wa-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; display: inline-block; box-shadow: 0 0 0 2px rgba(37,211,102,0.3); }
.wa-status-text { font-size: 13px; font-weight: 600; }
.wa-banner-actions { margin-left: auto; }
.wa-banner-btn { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); padding: 7px 16px; border-radius: 4px; font-size: 13px; font-weight: 700; transition: background 0.2s; }
.wa-banner-btn:hover { background: rgba(255,255,255,0.25); }
.wa-banner-close { background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer; padding: 4px 8px; font-size: 16px; }

/* NAVIGATION */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav-bg); padding: 0;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}
#main-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-badge {
  font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900;
  color: var(--accent); border: 2.5px solid var(--accent);
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: 1px;
}
.nav-logo-words strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 900; color: #fff; letter-spacing: 2px; line-height: 1; }
.nav-logo-words span { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 700; letter-spacing: .5px; padding: 8px 12px; border-radius: 4px; transition: color var(--transition), background var(--transition); text-transform: uppercase; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone-link { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.nav-phone-link:hover { color: #fff; }
.nav-wa-btn { background: #25D366; color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; transition: background var(--transition); }
.nav-wa-btn:hover { background: #1da851; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; transition: transform 0.3s ease, opacity 0.3s ease; }
.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); }

/* MOBILE NAV */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
  background: var(--nav-bg); z-index: 99; padding: 100px 32px 32px;
  display: flex; flex-direction: column; gap: 4px;
  transition: right 0.35s ease; box-shadow: -4px 0 30px rgba(0,0,0,0.3);
}
.mobile-nav.open { right: 0; }
.mobile-nav a { color: rgba(255,255,255,0.8); font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav a:hover { color: #fff; }
.m-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.m-ctas .btn-accent, .m-ctas .btn-outline-white { justify-content: center; }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1800&q=85') center/cover no-repeat;
}
.hero-bg { position: absolute; inset: 0; background: var(--hero-overlay); }
.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px; }
.hero-label { color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px; }
.hero-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(3rem,8vw,6rem); font-weight: 900; color: #fff; line-height: 1; text-transform: uppercase; margin-bottom: 20px; }
.hero-title em { font-style: normal; color: var(--accent); display: block; font-size: 60%; }
.hero-sub { color: rgba(255,255,255,0.8); font-size: 17px; line-height: 1.7; max-width: 560px; margin-bottom: 24px; }
.hero-rotating-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; min-height: 28px; }
.hero-rotating-prefix { color: #25D366; font-size: 18px; }
.hero-rotating-text { color: rgba(255,255,255,0.9); font-weight: 600; font-size: 16px; letter-spacing: .5px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* STATS */
.hero-stats { background: var(--nav-bg); }
.hero-stats-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; flex-wrap: wrap; }
.stat-item { flex: 1; min-width: 140px; padding: 24px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--accent); line-height: 1; }
.stat-label { color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* ABOUT */
.about { padding: 100px 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius); }
.about-image-accent { position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px; border: 3px solid var(--accent); border-radius: var(--radius); z-index: -1; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--accent); color: #fff; padding: 16px 20px; text-align: center; border-radius: var(--radius); }
.about-badge strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; line-height: 1; }
.about-badge span { font-size: 11px; opacity: 0.85; text-transform: uppercase; letter-spacing: 1px; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature i { color: var(--accent); font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.about-feature-text strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.about-feature-text span { color: var(--muted); font-size: 14px; line-height: 1.5; }

/* AANBOD */
.aanbod-section { padding: 100px 0; background: var(--bg); }
.aanbod-header { margin-bottom: 32px; }
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; align-items: center; }
.filter-select {
  padding: 10px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-family: 'Lato', sans-serif; background: #fff; color: var(--text);
  cursor: pointer; transition: border-color var(--transition);
  appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px;
}
.filter-select:focus { outline: none; border-color: var(--accent); }
.filter-reset { display: flex; align-items: center; gap: 6px; padding: 10px 18px; background: none; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14px; font-weight: 700; cursor: pointer; color: var(--muted); transition: color var(--transition), border-color var(--transition); }
.filter-reset:hover { color: var(--accent); border-color: var(--accent); }

.aanbod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.auto-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.auto-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.auto-card-img { position: relative; height: 200px; overflow: hidden; }
.auto-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.auto-card:hover .auto-card-img img { transform: scale(1.04); }
.auto-card-prijs {
  position: absolute; bottom: 12px; right: 12px;
  background: var(--accent); color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 900;
  padding: 6px 14px; border-radius: 4px;
}
.auto-card-body { padding: 18px 20px; }
.auto-card-merk { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.auto-card-model { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.auto-card-specs { display: flex; gap: 14px; flex-wrap: wrap; }
.auto-spec { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); }
.auto-spec i { color: var(--accent); font-size: 11px; }
.auto-card-footer { padding: 0 20px 18px; }
.auto-card-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 13px; font-weight: 700; transition: all var(--transition); background: none; cursor: pointer; color: var(--text); }
.auto-card-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.aanbod-leeg { text-align: center; padding: 60px 24px; color: var(--muted); }
.aanbod-leeg i { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; }
.aanbod-leeg a { color: var(--accent); font-weight: 700; }

/* MODAL */
.service-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 500; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.service-modal-overlay.open { opacity: 1; visibility: visible; }
.service-modal {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative; transform: translateY(20px); transition: transform 0.3s ease;
}
.service-modal-overlay.open .service-modal { transform: translateY(0); }
.modal-close { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.5); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 14px; z-index: 1; display: flex; align-items: center; justify-content: center; }
.modal-img { width: 100%; height: 240px; object-fit: cover; }
.modal-body { padding: 24px; }
.modal-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.modal-badge { background: var(--accent-light); color: var(--accent); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 3px; letter-spacing: .5px; }
.modal-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 900; margin-bottom: 12px; text-transform: uppercase; }
.modal-specs { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; padding: 14px; background: var(--bg); border-radius: var(--radius); }
.modal-spec-item { display: flex; flex-direction: column; gap: 2px; }
.modal-spec-label { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.modal-spec-val { font-size: 14px; font-weight: 700; }
.modal-kenmerken { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.modal-kenmerk { font-size: 12px; padding: 4px 10px; border: 1px solid var(--border); border-radius: 3px; color: var(--muted); }
.modal-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-btns .btn-accent, .modal-btns .btn-outline { flex: 1; justify-content: center; }

/* DIENSTEN */
.extra-services { padding: 100px 0; background: var(--white); }
.extra-header { margin-bottom: 48px; }
.extra-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.extra-card {
  background: var(--bg); border-radius: var(--radius); padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1.5px solid transparent;
}
.extra-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent-light); }
.extra-icon { width: 52px; height: 52px; background: var(--accent-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.extra-icon i { color: var(--accent); font-size: 22px; }
.extra-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
.extra-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* USPs */
.usps { padding: 80px 0; background: var(--nav-bg); }
.usps-header { text-align: center; margin-bottom: 48px; }
.usps-header .divider { margin: 16px auto; }
.usps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.usp-card { text-align: center; padding: 28px 20px; border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); }
.usp-icon { font-size: 2rem; color: var(--accent); margin-bottom: 14px; }
.usp-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
.usp-card p { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.6; }

/* REVIEWS */
.reviews { padding: 80px 0; background: var(--bg); overflow: hidden; }
.reviews-header { margin-bottom: 40px; }
.reviews-track-wrap { overflow: hidden; }
.reviews-track { display: flex; gap: 20px; animation: scrollLeft 70s linear infinite; width: max-content; }
.reviews-track:hover { animation-play-state: paused; }
.review-card { background: #fff; border-radius: var(--radius); padding: 24px 28px; min-width: 300px; max-width: 340px; box-shadow: var(--shadow); flex-shrink: 0; }
.review-stars { color: #f5a623; font-size: 15px; margin-bottom: 10px; }
.review-text { color: var(--muted); font-size: 13px; line-height: 1.6; font-style: italic; margin-bottom: 14px; }
.review-name { font-weight: 700; font-size: 13px; }
@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 768px) { .reviews-track { animation-duration: 55s; } }

/* HOURS */
.hours-section { padding: 80px 0; background: var(--white); }
.hours-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.hours-table { margin-top: 24px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 700; }
.hours-row .time { color: var(--muted); }
.hours-row .time.closed { color: var(--accent); font-weight: 700; }
.hours-row.today { background: var(--accent-light); margin: 0 -12px; padding: 10px 12px; border-radius: 4px; }
.hours-row.today .day { color: var(--accent); }
.emergency-block { display: flex; align-items: center; gap: 16px; background: var(--bg); border-left: 4px solid var(--accent); padding: 20px; border-radius: 0 var(--radius) var(--radius) 0; margin-top: 28px; flex-wrap: wrap; }
.emergency-icon { font-size: 1.5rem; color: var(--accent); flex-shrink: 0; }
.emergency-text strong { display: block; font-size: 14px; margin-bottom: 2px; }
.emergency-text span { font-size: 13px; color: var(--muted); }
.emergency-btns { display: flex; gap: 8px; margin-left: auto; flex-wrap: wrap; }
.hours-cta-box { background: var(--nav-bg); color: #fff; padding: 40px 36px; border-radius: var(--radius); }
.hours-cta-box h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; text-transform: uppercase; margin: 12px 0; }
.hours-cta-box p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.wa-big-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: #fff; padding: 16px; border-radius: var(--radius); font-weight: 700; font-size: 15px; margin-bottom: 12px; transition: background var(--transition); }
.wa-big-btn:hover { background: #1da851; }
.phone-big-btn { display: flex; align-items: center; justify-content: center; gap: 10px; border: 1.5px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); padding: 14px; border-radius: var(--radius); font-weight: 700; font-size: 14px; transition: all var(--transition); }
.phone-big-btn:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* CONTACT */
.contact { padding: 80px 0; background: var(--bg); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: var(--accent-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon i { color: var(--accent); font-size: 17px; }
.contact-item-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 3px; }
.contact-item-value a { font-weight: 700; font-size: 15px; transition: color var(--transition); }
.contact-item-value a:hover { color: var(--accent); }
.map-wrap { height: 420px; border-radius: var(--radius); overflow: hidden; background: var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* FOOTER */
footer { background: var(--nav-bg); color: rgba(255,255,255,0.65); padding: 60px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-badge { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 900; color: var(--accent); border: 2px solid var(--accent); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.footer-logo-name { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 900; color: #fff; letter-spacing: 2px; }
.footer-desc { font-size: 13px; line-height: 1.7; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 13px; transition: color var(--transition); }
.footer-col ul a:hover { color: #fff; }
.hours-mini .hours-row { font-size: 12px; padding: 6px 0; border-color: rgba(255,255,255,0.08); }
.hours-mini .day { color: rgba(255,255,255,0.7); }
.hours-mini .time { color: rgba(255,255,255,0.4); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; }
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: #fff; }

/* FLOAT BUTTONS */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  background: #25D366; color: #fff; width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.float-wa-tooltip {
  position: absolute; right: calc(100% + 12px); background: #1a1a1a; color: #fff;
  font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 4px; white-space: nowrap;
  opacity: 0; transition: opacity var(--transition); pointer-events: none;
}
.float-wa:hover .float-wa-tooltip { opacity: 1; }
.back-to-top {
  position: fixed; bottom: 96px; right: 28px; z-index: 300;
  background: var(--nav-bg); color: #fff; width: 44px; height: 44px;
  border-radius: 50%; border: none; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent); transform: translateY(-2px); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-2 { transition-delay: 0.15s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .aanbod-grid { grid-template-columns: repeat(2, 1fr); }
  .usps-grid { grid-template-columns: repeat(2, 1fr); }
  .extra-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone-link { display: none; }
  .hamburger { display: flex; }
  .about-inner { grid-template-columns: 1fr; }
  .hours-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .map-wrap { height: 280px; }
  .aanbod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .aanbod-grid { grid-template-columns: 1fr; }
  .extra-grid { grid-template-columns: 1fr; }
  .usps-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-accent, .hero-ctas .btn-outline-white { justify-content: center; }
}
