﻿/* =============================================
   VAN ALDER HANDEN "“ style.css
   Premium Dark Theme: Anthracite / Black / Gold
   ============================================= */

:root {
    --gold: #c9a84c;
    --gold-light: #e0c16b;
    --gold-dark: #a07c30;
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #181818;
    --anthracite: #222222;
    --anthracite2: #2d2d2d;
    --white: #ffffff;
    --white-80: rgba(255,255,255,0.8);
    --white-60: rgba(255,255,255,0.6);
    --white-20: rgba(255,255,255,0.2);
    --text: #e0e0e0;
    --text-muted: #999;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 40px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 30px rgba(201,168,76,0.3);
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
input, textarea, select, button { font-family: inherit; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold-text { color: var(--gold); }
.section { padding: 100px 0; }
.dark-section { background: var(--dark2); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.section-header p { color: var(--white-60); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: var(--white-60); }
.section-tag {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-tag.gold { background: rgba(201,168,76,0.2); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-2px); box-shadow: 0 8px 40px rgba(201,168,76,0.5); }
.btn-outline { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }
.btn-large { padding: 18px 40px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-gold-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    margin-top: 12px;
}
.btn-gold-sm:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { color: var(--gold); font-size: 1.8rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-size: 1.1rem; font-weight: 900; color: var(--white); letter-spacing: 3px; }
.logo-sub { font-size: 0.7rem; font-weight: 500; color: var(--gold); letter-spacing: 4px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.85rem; font-weight: 600; color: var(--white-80); letter-spacing: 1px; text-transform: uppercase; transition: var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--black) !important; padding: 10px 22px; border-radius: 6px; }
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 30%, #0d0d0d 60%, #080808 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 800px 600px at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 70%);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 1000px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInDown 0.8s 0.2s forwards;
}
.hero-title {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.4s forwards;
}
.hero-name {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: 8px;
    text-shadow: 0 0 60px rgba(255,255,255,0.1);
}
.hero-name.gold {
    color: var(--gold);
    text-shadow: 0 0 60px rgba(201,168,76,0.4);
}
.hero-slogan {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--white-80);
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s 0.6s forwards;
}
.hero-sub {
    font-size: 1rem;
    color: var(--white-60);
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.8s forwards;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s 1s forwards;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s 1.2s forwards;
}
.stat {
    text-align: center;
    padding: 0 40px;
}
.stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    display: inline-block;
}
.stat-plus { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.stat-label { display: block; font-size: 0.8rem; color: var(--white-60); font-weight: 500; letter-spacing: 1px; margin-top: 4px; }
.stat-divider { width: 1px; height: 50px; background: rgba(201,168,76,0.3); }
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white-60);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

/* ===== USP STRIP ===== */
.usp-strip {
    background: linear-gradient(90deg, #0d0d0d, #111, #0d0d0d);
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 20px 24px;
}
.usp-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 32px;
    border-right: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white-80);
    letter-spacing: 0.5px;
}
.usp-item:last-child { border-right: none; }
.usp-item i { color: var(--gold); font-size: 1rem; }

/* ===== DIENSTEN ===== */
.diensten { background: var(--black); }
.diensten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.dienst-card {
    background: var(--anthracite);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.dienst-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: var(--transition);
}
.dienst-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.dienst-card:hover::before { transform: scaleX(1); }
.dienst-card.featured { border-color: rgba(201,168,76,0.4); background: linear-gradient(135deg, #1e1a10, #222); }
.dienst-card.featured::before { transform: scaleX(1); }
.dienst-icon {
    width: 56px; height: 56px;
    background: rgba(201,168,76,0.12);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition);
}
.dienst-card:hover .dienst-icon { background: rgba(201,168,76,0.25); }
.dienst-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.dienst-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.dienst-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white-60);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.dienst-link:hover, .dienst-link.gold { color: var(--gold); }
.dienst-link i { transition: var(--transition); }
.dienst-link:hover i { transform: translateX(4px); }

/* ===== VERHUUR ===== */
.verhuur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}
.verhuur-card {
    background: var(--anthracite);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.verhuur-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.verhuur-img-wrap { position: relative; }
.verhuur-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(201,168,76,0.5);
    transition: var(--transition);
}
.verhuur-card:hover .verhuur-img { color: var(--gold); }
.verhuur-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.verhuur-info { padding: 24px; }
.verhuur-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.verhuur-info p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
.verhuur-prijs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 4px;
}
.prijs-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-right: 1px solid rgba(255,255,255,0.05);
}
.prijs-item:last-child { border-right: none; }
.prijs-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.prijs-val { font-size: 1.1rem; font-weight: 800; color: var(--gold); margin-top: 2px; }
.verhuur-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--radius-lg);
    padding: 50px;
}
.verhuur-cta h3 { font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.verhuur-cta p { color: var(--white-60); margin-bottom: 28px; }

/* ===== PROJECTEN ===== */
.projecten { background: var(--black); }
.project-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 10px 24px;
    background: var(--anthracite);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white-60);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.projecten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 20px;
}
.project-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.project-item.large { grid-column: span 2; }
.project-img {
    width: 100%; height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.proj-icon { font-size: 4rem; color: rgba(255,255,255,0.15); }
.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 24px;
    text-align: center;
}
.project-item:hover .project-overlay { opacity: 1; }
.project-item:hover .proj-icon { opacity: 0; }
.project-overlay h4 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.project-overlay p { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; }
.project-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gold);
    color: var(--black);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition);
}
.project-btn:hover { background: var(--gold-light); }

/* ===== OVER ONS ===== */
.over-ons { background: var(--dark2); }
.over-ons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.over-ons-visuals { position: relative; }
.visual-main {
    width: 100%; height: 420px;
    background: linear-gradient(135deg, #1a1a1a, #222);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.visual-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.visual-icon { font-size: 8rem; color: rgba(201,168,76,0.15); }
.visual-overlay-card {
    position: absolute;
    bottom: 24px; left: 24px;
    background: rgba(10,10,10,0.9);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 10px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--white);
}
.visual-overlay-card i { font-size: 1.4rem; }
.experience-badge {
    position: absolute;
    top: -20px; right: -20px;
    width: 100px; height: 100px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}
.exp-num { font-size: 1.8rem; font-weight: 900; color: var(--black); line-height: 1; }
.exp-txt { font-size: 0.6rem; font-weight: 700; color: var(--black); text-align: center; line-height: 1.2; letter-spacing: 1px; }
.over-ons-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--white); margin-bottom: 20px; }
.over-ons-content .lead-text { font-size: 1.05rem; color: var(--white-80); margin-bottom: 16px; font-weight: 500; }
.over-ons-content p { color: var(--white-60); margin-bottom: 28px; }
.usp-list { margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.usp-row { display: flex; gap: 12px; }
.usp-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white-80);
}
.usp-box i { color: var(--gold); }

/* ===== WAAROM ===== */
.waarom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.waarom-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.waarom-item:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.05); transform: translateY(-4px); }
.waarom-icon {
    width: 60px; height: 60px;
    background: rgba(201,168,76,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin: 0 auto 16px;
}
.waarom-item h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.waarom-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== REVIEWS ===== */
.reviews { background: var(--black); }
.review-score {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
}
.stars i { color: #f5c518; font-size: 1.1rem; }
.review-score > span { color: var(--text-muted); font-size: 0.9rem; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--anthracite);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.review-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-4px); }
.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.reviewer-avatar {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.reviewer-info span { font-size: 0.8rem; color: var(--text-muted); }
.review-stars { flex-shrink: 0; }
.review-stars i { color: #f5c518; font-size: 0.8rem; }
.review-card > p { font-size: 0.9rem; color: var(--white-60); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.review-project { font-size: 0.78rem; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 6px; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--white-80); letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--anthracite); color: var(--white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,0.05);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; }
.contact-info-card {
    background: var(--anthracite);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.contact-info-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 28px; }
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    align-items: flex-start;
}
.contact-icon {
    width: 44px; height: 44px;
    background: rgba(201,168,76,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--white-80); transition: var(--transition); }
.contact-item a:hover { color: var(--gold); }
.contact-hours { margin-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; }
.contact-hours h4 { font-size: 0.9rem; color: var(--white); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; font-weight: 700; }
.contact-hours h4 i { color: var(--gold); }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--white-60); margin-bottom: 8px; }
.contact-map { margin-top: 20px; border-radius: 10px; overflow: hidden; height: 180px; }
.contact-map iframe { width: 100%; height: 100%; border: none; filter: invert(0.9) hue-rotate(180deg) saturate(0.5); }

/* ===== FOOTER ===== */
.footer { background: var(--black); border-top: 1px solid rgba(201,168,76,0.15); }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-logo i { color: var(--gold); font-size: 2rem; }
.brand-col p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px; height: 40px;
    background: var(--anthracite);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white-60);
    font-size: 0.9rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; color: var(--text-muted); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-muted); }
.footer-contact i { color: var(--gold); width: 16px; }
.footer-contact a { transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    z-index: 999;
    width: 58px; height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark2);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px; right: 30px;
    z-index: 998;
    width: 44px; height: 44px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); }

/* ===== MODAL ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.8);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.modal.active { opacity: 1; pointer-events: all; }
.modal-box {
    background: var(--anthracite);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: var(--transition);
}
.modal.active .modal-box { transform: scale(1); }
.modal-icon { font-size: 3rem; color: var(--gold); margin-bottom: 20px; }
.modal-box h3 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.modal-box p { color: var(--text-muted); margin-bottom: 28px; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .waarom-grid { grid-template-columns: repeat(2, 1fr); }
    .over-ons-grid { grid-template-columns: 1fr; gap: 40px; }
    .over-ons-visuals { display: none; }
    .diensten-grid { grid-template-columns: repeat(2, 1fr); }
    .verhuur-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .projecten-grid { grid-template-columns: repeat(2, 1fr); }
    .project-item.large { grid-column: span 1; }
}

@media (max-width: 768px) {
    /* NAV */
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0; right: -100%; bottom: 0;
        width: 280px;
        background: var(--dark);
        padding: 100px 40px;
        gap: 20px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
        z-index: 1001;
    }
    .nav-links.open { display: flex; right: 0; }
    .hamburger { display: flex; }

    /* GENERAL */
    .section { padding: 50px 0; }
    .section-header { margin-bottom: 32px; }
    .section-header h2 { font-size: 1.6rem; }
    .section-header p { font-size: 0.9rem; }
    .container { padding: 0 16px; }

    /* HERO */
    .hero-content { padding: 90px 16px 50px; }
    .hero-name { font-size: clamp(2.2rem, 13vw, 3.5rem); letter-spacing: 3px; }
    .hero-slogan { font-size: 0.9rem; }
    .hero-sub { font-size: 0.82rem; margin-bottom: 24px; }
    .hero-badge { font-size: 0.7rem; padding: 5px 12px; }

    /* HERO BUTTONS stacked full-width */
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
    }
    .hero-buttons .btn { justify-content: center; padding: 13px 16px; font-size: 0.82rem; }

    /* HERO STATS horizontal swipe */
    .hero-stats {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
        padding-bottom: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .hero-stats::-webkit-scrollbar { display: none; }
    .stat { min-width: 100px; flex-shrink: 0; padding: 0 16px; }
    .stat-num { font-size: 1.5rem; }
    .stat-plus { font-size: 1.1rem; }
    .stat-label { font-size: 0.68rem; }
    .stat-divider { width: 1px; height: 36px; flex-shrink: 0; }

    /* USP horizontal swipe */
    .usp-strip { padding: 0; overflow: hidden; }
    .usp-container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        gap: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 4px 0;
    }
    .usp-container::-webkit-scrollbar { display: none; }
    .usp-item {
        min-width: 130px;
        flex-shrink: 0;
        flex-direction: column;
        text-align: center;
        padding: 14px 12px;
        border-right: 1px solid rgba(255,255,255,0.08);
        border-bottom: none;
        gap: 5px;
        justify-content: center;
    }
    .usp-item:last-child { border-right: none; }
    .usp-item i { font-size: 1.1rem; }
    .usp-item span { font-size: 0.7rem; }

    /* DIENSTEN swipeable row */
    .diensten-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding: 4px 0 16px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .diensten-grid::-webkit-scrollbar { display: none; }
    .diensten-grid::after { content: ''; min-width: 8px; flex-shrink: 0; }
    .dienst-card { min-width: 230px; flex-shrink: 0; padding: 24px 20px; }

    /* VERHUUR swipeable */
    .verhuur-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding: 4px 0 16px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-bottom: 30px;
    }
    .verhuur-grid::-webkit-scrollbar { display: none; }
    .verhuur-grid::after { content: ''; min-width: 8px; flex-shrink: 0; }
    .verhuur-card { min-width: 230px; flex-shrink: 0; }
    .verhuur-cta { padding: 28px 20px; }
    .verhuur-cta h3 { font-size: 1.2rem; }

    /* PROJECTEN swipeable */
    .project-filter {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        gap: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .project-filter::-webkit-scrollbar { display: none; }
    .filter-btn { flex-shrink: 0; white-space: nowrap; padding: 8px 16px; font-size: 0.78rem; }
    .projecten-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding: 4px 0 16px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .projecten-grid::-webkit-scrollbar { display: none; }
    .projecten-grid::after { content: ''; min-width: 8px; flex-shrink: 0; }
    .project-item, .project-item.large {
        min-width: 240px;
        height: 200px;
        flex-shrink: 0;
        grid-column: unset;
    }

    /* WAAROM swipeable */
    .waarom-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding: 4px 0 16px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .waarom-grid::-webkit-scrollbar { display: none; }
    .waarom-grid::after { content: ''; min-width: 8px; flex-shrink: 0; }
    .waarom-item { min-width: 190px; flex-shrink: 0; padding: 24px 16px; }

    /* REVIEWS swipeable */
    .reviews-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding: 4px 0 16px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .reviews-grid::-webkit-scrollbar { display: none; }
    .reviews-grid::after { content: ''; min-width: 8px; flex-shrink: 0; }
    .review-card { min-width: 270px; flex-shrink: 0; padding: 24px; }

    /* OVER ONS */
    .over-ons-grid { grid-template-columns: 1fr; gap: 30px; }
    .over-ons-visuals { display: none; }
    .over-ons-content h2 { font-size: 1.6rem; }
    .usp-row { flex-direction: column; }

    /* CONTACT */
    .contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info-card { padding: 22px; }
    .contact-map { height: 150px; }

    /* FOOTER */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-top { padding: 40px 0 28px; }

    /* FLOATING BUTTONS */
    .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 1.4rem; }
    .back-to-top { right: 16px; bottom: 84px; }
}

@media (max-width: 480px) {
    .experience-badge { display: none; }
    .hero-name { font-size: clamp(1.9rem, 15vw, 2.8rem); }
    .hero-badge { display: none; }
    .section-header h2 { font-size: 1.35rem; }
    .dienst-card { min-width: 210px; }
    .verhuur-card { min-width: 210px; }
    .review-card { min-width: 250px; }
    .waarom-item { min-width: 165px; }
    .project-item, .project-item.large { min-width: 210px; height: 180px; }
    .btn-large { padding: 14px 24px; font-size: 0.88rem; }
}

/* ===== SWIPE HINT (mobile only) ===== */
.swipe-hint {
    display: none;
}
@media (max-width: 768px) {
    .swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 14px;
        color: rgba(201,168,76,0.75);
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        user-select: none;
        animation: swipePulse 2s ease-in-out infinite;
    }
    .swipe-hint i {
        font-size: 0.9rem;
        animation: swipeArrow 1.4s ease-in-out infinite;
    }
    .swipe-dots {
        display: flex;
        gap: 4px;
        justify-content: center;
        margin-bottom: 6px;
    }
    .swipe-dots span {
        width: 6px; height: 6px;
        border-radius: 50%;
        background: rgba(201,168,76,0.3);
        transition: all 0.3s;
    }
    .swipe-dots span.active {
        width: 18px;
        border-radius: 4px;
        background: var(--gold);
    }
}
@keyframes swipePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
@keyframes swipeArrow {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(6px); opacity: 1; }
}

/* ===== DIENST CARD IMAGES ===== */
.dienst-img-wrap {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
.dienst-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.dienst-card:hover .dienst-img {
    transform: scale(1.07);
}
.dienst-img-wrap .dienst-icon {
    position: absolute;
    top: 12px;
    left: 12px;
    margin-bottom: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(201,168,76,0.4);
    z-index: 2;
}

/* ===== VERHUUR CARD IMAGES ===== */
.verhuur-img-photo {
    padding: 0 !important;
    height: 180px !important;
    overflow: hidden;
    position: relative;
}
.verhuur-img-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.verhuur-card:hover .verhuur-img-photo img {
    transform: scale(1.07);
}
/* Verberg het Font Awesome icon als er een foto in de verhuur-card zit */
.verhuur-img-photo > i {
    display: none;
}

/* ===== PROJECT IMAGES ===== */
.project-img-photo {
    padding: 0;
    overflow: hidden;
}
.project-img-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.project-item:hover .project-img-photo img {
    transform: scale(1.08);
}
.project-img-photo .proj-icon {
    display: none;
}

/* ===== MOBILE VERHUUR: VOLLEDIG BREED (GEEN SWIPE) ===== */
@media (max-width: 768px) {
    /* Overschrijf de horizontale swipeable layout met verticale stack */
    #verhuur .verhuur-grid {
        display: flex !important;
        flex-direction: column !important;
        overflow-x: unset !important;
        -webkit-overflow-scrolling: unset !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
        padding: 0 0 16px 0 !important;
        margin-bottom: 24px !important;
    }
    #verhuur .verhuur-grid::after { display: none !important; }
    #verhuur .verhuur-card {
        min-width: unset !important;
        width: 100% !important;
        flex-shrink: unset !important;
    }
    #verhuur .verhuur-img-photo {
        height: 200px !important;
    }
    #verhuur .verhuur-info {
        padding: 14px 16px !important;
    }
    #verhuur .verhuur-info h3 {
        font-size: 0.95rem !important;
        margin-bottom: 4px !important;
    }
    #verhuur .verhuur-info p {
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
        line-height: 1.4 !important;
    }
    #verhuur .prijs-val {
        font-size: 0.95rem !important;
    }
    #verhuur .prijs-label {
        font-size: 0.62rem !important;
    }
    #verhuur .verhuur-cta {
        padding: 22px 16px !important;
    }
    #verhuur .verhuur-cta h3 {
        font-size: 1.1rem !important;
    }
    /* Verberg de swipe-hint in de verhuur sectie */
    #verhuur .swipe-hint {
        display: none !important;
    }
}
