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

:root {
    --bg: #f5f7fb;
    --bg-alt: #eef3fa;
    --white: #ffffff;
    --text: #142033;
    --muted: #5f6f86;
    --line: #dfe7f1;
    --primary: #0a84ff;
    --primary-dark: #0567c9;
    --shadow: 0 18px 45px rgba(17, 35, 68, 0.08);
    --radius: 18px;
    --container: 1180px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}

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

a {
    color: inherit;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(223, 231, 241, 0.85);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 54px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 999px;
    transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(10, 132, 255, 0.08);
    color: var(--primary);
}

.main-nav .nav-cta {
    background: var(--primary);
    color: var(--white);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta.active {
    background: var(--primary-dark);
    color: var(--white);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 14px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    border-radius: 10px;
}

.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(10, 25, 47, 0.72), rgba(10, 132, 255, 0.25)),
        url('images/header.jpg') center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 18, 34, 0.12), rgba(8, 18, 34, 0.42));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 96px 0;
}

.hero-card {
    max-width: 670px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    padding: 34px;
    color: var(--white);
    box-shadow: 0 25px 60px rgba(7, 15, 30, 0.22);
}

.hero-card h1 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.08;
    margin-bottom: 18px;
}

.hero-card p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.92);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--primary);
}

.hero .eyebrow {
    color: #d9ecff;
}

.hero-actions,
.result-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    text-decoration: none;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.2s ease;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.section-alt .btn-secondary,
.page-top + .section .btn-secondary,
.highlight-card .btn-secondary,
.result-error .btn-secondary {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--line);
}

.btn-secondary:hover {
    transform: translateY(-1px);
}

.page-top {
    padding: 72px 0 24px;
}

.page-top h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-top p {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.06rem;
}

.section {
    padding: 34px 0 72px;
}

.section-alt {
    background: linear-gradient(180deg, transparent 0, var(--bg-alt) 100%);
}

.cards {
    display: grid;
    gap: 22px;
}

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

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

.card {
    background: var(--white);
    border: 1px solid rgba(223, 231, 241, 0.8);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}

.feature-card h3,
.service-card h3,
.pricing-card h2,
.highlight-card h3,
.contact-card h2,
.contact-info-card h2 {
    margin-bottom: 12px;
    line-height: 1.2;
}

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: rgba(10, 132, 255, 0.1);
    color: var(--primary);
    font-weight: 800;
}

.split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: start;
}

.highlight-card {
    background: linear-gradient(180deg, #ffffff, #f9fbff);
}

.simple-list,
.check-list,
.footer-links {
    list-style: none;
}

.simple-list li,
.check-list li,
.footer-links li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.simple-list li::before,
.check-list li::before,
.footer-links li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    transform: translateY(-50%);
}

.price {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 14px;
    color: var(--primary);
}

.price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: start;
}

.form-grid {
    display: grid;
    gap: 18px;
}

label {
    font-weight: 700;
    color: var(--text);
}

input,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--text);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
    border-color: rgba(10, 132, 255, 0.7);
    box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.08);
}

textarea {
    resize: vertical;
    min-height: 170px;
}

.alert {
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 18px;
}

.alert ul {
    padding-left: 18px;
}

.alert-error {
    background: #fff1f1;
    border: 1px solid #ffc9c9;
    color: #8b1d1d;
}

.alert-success {
    background: #eefaf1;
    border: 1px solid #b8e6c3;
    color: #176734;
}

.verification-note {
    margin-top: 18px;
    color: var(--muted);
}

.result-card {
    max-width: 760px;
}

.result-success {
    border-left: 6px solid #2bb673;
}

.result-error {
    border-left: 6px solid #d93025;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 24px 0;
}

.site-footer {
    background: #0f1727;
    color: rgba(255, 255, 255, 0.88);
    margin-top: 30px;
    padding-top: 54px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 0.8fr;
    gap: 30px;
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.88);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 28px;
    padding: 20px 0 26px;
    font-size: 0.96rem;
}

.label {
    font-weight: 700;
    color: #fff;
}

.blurred {
    filter: blur(4px);
    cursor: pointer;
    user-select: none;
}

.blurred:hover {
    filter: blur(1px);
}

.revealed {
    user-select: none;
}

@media (max-width: 980px) {
    .cards-3,
    .cards-2,
    .split,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 520px;
    }

    .hero-card {
        max-width: 100%;
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: inline-block;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        gap: 10px;
        padding: 16px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a,
    .main-nav .nav-cta {
        width: 100%;
        text-align: center;
    }

    .header-inner {
        min-height: 76px;
    }

    .brand-logo {
        height: 46px;
    }

    .hero {
        min-height: 470px;
        background-position: center;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero-card {
        padding: 24px;
        border-radius: 22px;
    }

    .section {
        padding: 28px 0 54px;
    }

    .page-top {
        padding: 48px 0 16px;
    }
}
/* =========================
   FEATURE ICONS (UPGRADE)
========================= */

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0a84ff, #5aa9ff);
    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    box-shadow: 0 12px 30px rgba(10,132,255,0.25);
    transition: all 0.25s ease;
}

/* SVG netjes centreren + gelijke grootte */
.feature-icon svg {
    width: 26px;
    height: 26px;
    display: block;
}

/* Hover effect (subtiel, niet overdreven) */
.feature-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(17, 35, 68, 0.12);
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
}

/* Kleine spacing tweak voor betere balans */
.feature-card h3 {
    margin-top: 4px;
}

/* Optioneel: iets meer lucht in de card */
.feature-card {
    padding: 30px;
}
#phoneFooter {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

#phoneFooter canvas {
    vertical-align: middle;
}
.contact-call {
    margin-top: 16px;
    padding: 18px 22px;
    border-radius: 16px;

    background: rgba(10, 132, 255, 0.08);
    border: 1px solid rgba(10, 132, 255, 0.18);

    display: inline-flex;
    align-items: center;
    gap: 14px;

    font-weight: 700;
    font-size: 20px; /* 👈 groter */
    cursor: pointer;

    transition: all 0.2s ease;
}

.contact-call::before {
    content: "📞";
    font-size: 22px;
}

.contact-call:hover {
    background: rgba(10, 132, 255, 0.14);
    transform: translateY(-1px);
}
.site-footer a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
}

.site-footer a:hover {
    text-decoration: underline; /* alleen bij hover */
    opacity: 0.9;
}
.site-footer p {
    margin-bottom: 8px;
}
.upload-box {
    padding: 18px;
    border: 2px dashed #d0d7e2;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s ease;
    background: #f9fbff;
}

.upload-box:hover {
    border-color: #0a84ff;
    background: #f0f6ff;
}

/* =========================
   FILE UPLOAD PREVIEW
========================= */

.file-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 12px;
    margin-top: 14px;
    width: 100%;
}

.file-item {
    width: 90px;
    height: 90px;
    aspect-ratio: 1 / 1;

    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f6fb;
}

.file-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* delete knop */
.file-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    background: rgba(217, 48, 37, 0.95);
    color: #fff;
    font-size: 13px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* upload progress */
.file-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: var(--primary);
    transition: width 0.3s ease;
}

/* =========================
   OPENINGSTIJDEN
========================= */

.opening-status {
    margin-bottom: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

/* open */
.opening-status.open {
    background: rgba(43, 182, 115, 0.1);
    color: #2bb673;
}

/* gesloten */
.opening-status.closed {
    background: rgba(217, 48, 37, 0.1);
    color: #d93025;
}

/* lijst */
.opening-hours {
    display: grid;
    gap: 10px;
}

/* rij */
.oh-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 14px;
    border-radius: 10px;

    background: rgba(10, 132, 255, 0.05);
    font-size: 14px;
}

/* dag */
.oh-row span:first-child {
    font-weight: 600;
}

/* tijden */
.oh-row span:last-child {
    text-align: right;
    line-height: 1.4;
    color: var(--text);
    font-weight: 500;
}

/* vandaag highlight */
.oh-row.today {
    border: 1px solid rgba(10, 132, 255, 0.3);
    background: rgba(10, 132, 255, 0.08);
}

/* gesloten label */
.closed {
    color: #d93025;
    font-weight: 600;
}

/* note */
.opening-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted);
}