/* ── AUTOBEDRIJF OZ – GEDEELDE STIJLEN ── */
:root {
 --blue: #1463ae;
 --blue-dark: #0f4f8c;
 --blue-glow: rgba(20,99,174,0.15);
 --bg: #0a0a0f;
 --bg2: #111118;
 --bg3: #16161f;
 --card: #13131c;
 --white: #f5f6fa;
 --muted: #8b8d9e;
 --border: rgba(255,255,255,0.07);
 --site-width: 1400px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
 background: var(--bg);
 color: var(--white);
 font-family: 'Inter', sans-serif;
 font-size: 16px;
 line-height: 1.6;
 overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── NAV ── */
nav {
 position: fixed; top: 0; left: 0; right: 0; z-index: 100;
 background: rgba(10,10,15,0.95);
 backdrop-filter: blur(12px);
 border-bottom: 1px solid var(--border);
}
.nav-inner {
 max-width: 1200px; margin: 0 auto; padding: 0 24px;
 height: 70px; display: flex; align-items: center;
 justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
 font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
 text-transform: uppercase; color: var(--muted);
 padding: 8px 14px; border-radius: 6px;
 transition: color 0.2s, background 0.2s;
 display: block;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links > li > a.active { color: var(--blue); }

/* Dropdown */
.nav-dropdown {
 position: absolute; top: calc(100% + 8px); left: 0;
 background: var(--bg2); border: 1px solid var(--border);
 border-radius: 10px; padding: 8px;
 min-width: 200px; opacity: 0; pointer-events: none;
 transform: translateY(-8px); transition: all 0.2s;
 box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.nav-links > li:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown a {
 display: block; padding: 10px 14px; border-radius: 6px;
 font-size: 13px; color: var(--muted); transition: all 0.15s;
}
.nav-dropdown a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.nav-cta {
 background: var(--blue) !important; color: #fff !important;
 padding: 10px 20px !important; border-radius: 6px !important;
 font-weight: 700 !important; letter-spacing: 0.04em !important;
 transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--white); font-size: 24px; }

/* ── PAGE HERO ── */
.page-hero {
 padding: 140px 24px 80px;
 max-width: 1200px;
 margin: 0 auto;
}
.page-hero-eyebrow {
 display: inline-flex; align-items: center; gap: 8px;
 font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
 text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
}
.page-hero-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--blue); }
.page-hero h1 { font-size: clamp(48px, 7vw, 88px); margin-bottom: 20px; }
.page-hero p { font-size: 18px; color: var(--muted); max-width: 620px; line-height: 1.7; margin-bottom: 32px; }

/* ── SECTION UTILITIES ── */
.section { padding: 96px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-label {
 display: inline-flex; align-items: center; gap: 8px;
 font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
 text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--blue); }
.section-title { font-size: clamp(36px, 5vw, 60px); margin-bottom: 14px; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.7; margin-bottom: 56px; }

/* ── CARDS ── */
.card {
 background: var(--card); border: 1px solid var(--border);
 border-radius: 12px; padding: 32px 28px;
 transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
 position: relative; overflow: hidden;
}
.card::before {
 content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
 background: var(--blue); transform: scaleX(0); transition: transform 0.3s;
}
.card:hover { border-color: rgba(20,99,174,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
 width: 52px; height: 52px; background: var(--blue-glow);
 border: 1px solid rgba(20,99,174,0.2); border-radius: 10px;
 display: flex; align-items: center; justify-content: center;
 font-size: 24px; margin-bottom: 20px;
}
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── BUTTONS ── */
.btn {
 display: inline-flex; align-items: center; gap: 8px;
 padding: 14px 28px; border-radius: 8px;
 font-weight: 700; font-size: 15px; letter-spacing: 0.03em;
 cursor: pointer; transition: all 0.2s; border: none;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20,99,174,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--border); }
.btn-outline:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); }

/* ── FORM ── */
.form-group { display: flex; flex-direction: column; gap: 7px; }
label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
input, select, textarea {
 background: var(--card); border: 1px solid var(--border);
 border-radius: 8px; padding: 13px 16px; color: var(--white);
 font-size: 15px; font-family: 'Inter', sans-serif;
 transition: border-color 0.2s, box-shadow 0.2s;
 outline: none; width: 100%;
}
input:focus, select:focus, textarea:focus {
 border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20,99,174,0.12);
}
select option { background: var(--bg); }
textarea { resize: vertical; min-height: 100px; }

/* ── BREADCRUMB ── */
.breadcrumb {
 display: flex; align-items: center; gap: 8px;
 font-size: 13px; color: var(--muted);
 padding: 100px 24px 0; max-width: 1200px; margin: 0 auto;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--white); }
.breadcrumb-sep { opacity: 0.4; }

/* ── FOOTER ── */
footer {
 background: var(--bg2); border-top: 1px solid var(--border);
 padding: 56px 24px 32px;
}
.footer-inner {
 max-width: 1200px; margin: 0 auto;
 display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
 gap: 48px; margin-bottom: 40px;
}
.footer-brand img { height: 42px; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 240px; }
.footer-col h5 { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-links span { font-size: 13px; color: var(--muted); }
.footer-bottom {
 max-width: 1200px; margin: 0 auto; padding-top: 24px;
 border-top: 1px solid var(--border);
 display: flex; justify-content: space-between; align-items: center;
 font-size: 12px; color: var(--muted);
}

/* ── USP LIST ── */
.usp-list { display: flex; flex-direction: column; gap: 14px; }
.usp-item { display: flex; align-items: flex-start; gap: 14px; }
.usp-check {
 width: 22px; height: 22px; background: var(--blue-glow);
 border: 1px solid rgba(20,99,174,0.3); border-radius: 50%;
 display: flex; align-items: center; justify-content: center;
 flex-shrink: 0; margin-top: 2px; font-size: 11px; color: var(--blue);
}
.usp-item p { font-size: 15px; color: var(--muted); }
.usp-item strong { color: var(--white); font-weight: 600; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── INFO BOX ── */
.info-box {
 background: var(--blue-glow); border: 1px solid rgba(20,99,174,0.25);
 border-radius: 12px; padding: 24px 28px;
}
.info-box h4 { font-size: 18px; margin-bottom: 8px; color: var(--blue); }
.info-box p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

/* ── OPENING HOURS TABLE ── */
.tijden-table { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.tijden-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 24px; border-bottom: 1px solid var(--border); }
.tijden-row:last-child { border-bottom: none; }
.tijden-dag { font-weight: 500; font-size: 15px; }
.tijden-tijd { font-size: 14px; color: var(--muted); }
.tijden-closed { color: #ef4444 !important; }
.tijden-today .tijden-dag, .tijden-today .tijden-tijd { color: var(--blue); font-weight: 600; }

/* ── CONTACT CARD ── */
.contact-card {
 background: var(--card); border: 1px solid var(--border);
 border-radius: 12px; padding: 22px;
 display: flex; align-items: center; gap: 16px;
 transition: border-color 0.2s;
}
.contact-card:hover { border-color: rgba(20,99,174,0.3); }
.contact-icon {
 width: 44px; height: 44px; background: var(--blue-glow);
 border: 1px solid rgba(20,99,174,0.2); border-radius: 8px;
 display: flex; align-items: center; justify-content: center;
 font-size: 18px; flex-shrink: 0;
}
.contact-card-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-card-val { font-size: 15px; font-weight: 600; }

/* ── MOBILE NAV ── */
.mobile-nav-open { overflow: hidden; }

.nav-mobile-menu {
 display: none;
 position: fixed;
 top: 70px; left: 0; right: 0; bottom: 0;
 background: rgba(10,10,15,0.98);
 backdrop-filter: blur(16px);
 z-index: 99;
 flex-direction: column;
 padding: 32px 24px;
 gap: 6px;
 overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
 display: block; font-size: 18px; font-weight: 500;
 color: var(--muted); padding: 14px 0;
 border-bottom: 1px solid var(--border);
 transition: color 0.2s;
}
.nav-mobile-menu a:hover, .nav-mobile-menu a.active { color: var(--white); }
.nav-mobile-menu .mob-cta {
 background: var(--blue); color: #fff !important;
 padding: 16px 24px; border-radius: 8px;
 text-align: center; margin-top: 12px;
 border-bottom: none; font-weight: 700;
}
.nav-mobile-menu .mob-section-label {
 font-size: 11px; color: var(--blue);
 letter-spacing: 0.12em; text-transform: uppercase;
 font-weight: 700; padding: 16px 0 6px;
 border-bottom: none;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
 .hamburger { display: block; }
 .nav-links { display: none; }
 .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
 .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
 .page-hero { padding-top: 110px; }
 .page-hero h1 { font-size: clamp(40px, 10vw, 64px); }
 .breadcrumb { padding-top: 80px; }
 .section-title { font-size: clamp(32px, 8vw, 48px); }
}
@media (max-width: 600px) {
 .footer-inner { grid-template-columns: 1fr; }
 .section { padding: 56px 20px; }
 .page-hero { padding: 100px 20px 48px; }
 .btn { padding: 13px 22px; font-size: 14px; }
 .card { padding: 24px 20px; }
 .tijden-row { padding: 13px 18px; }
 .contact-card { padding: 18px; }
}

/* ── SKIP LINK (Accessibility) ── */
.skip-link {
 position: absolute; top: -40px; left: 6px;
 background: var(--blue); color: #fff;
 padding: 8px; z-index: 10000; text-decoration: none;
}
.skip-link:focus { top: 6px; }
