/* ── Forthing Aanvraag Formulier ────────────────────────────────── */

/* Wrapper */
.fc-aanvraag-wrap {
    font-family: 'Manrope', sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #f5f5f5;
    padding: 56px 24px;
}
.fc-aanvraag-wrap *,
.fc-aanvraag-wrap *::before,
.fc-aanvraag-wrap *::after {
    box-sizing: border-box;
}

/* Form-kaart */
.fc-aanvraag-form {
    max-width: 680px;
    margin: 0 auto;
    background: #ffffff;
    padding: 48px 52px 52px;
}

/* ── Form header ────────────────────────────────────────────────── */
.fc-form-header {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.fc-form-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d7000f;
    margin: 0 0 12px;
}
.fc-form-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1.5px;
    background: #d7000f;
    flex-shrink: 0;
}
.fc-form-titel {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #0a0a0a;
    margin: 0 0 10px;
    line-height: 1.1;
}
.fc-form-sub {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0,0,0,0.5);
    margin: 0;
    line-height: 1.6;
}

/* ── Sectie-headers ─────────────────────────────────────────────── */
.fc-form-sectie {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.45);
    margin: 0 0 28px;
    padding: 0;
}
.fc-form-sectie::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: #d7000f;
    flex-shrink: 0;
}
/* Extra ruimte boven sectie-headers (behalve de eerste) */
.fc-form-sectie + * ~ .fc-form-sectie,
.fc-klant-type-rij ~ .fc-form-rij ~ .fc-form-sectie {
    margin-top: 36px;
}
.fc-aanvraag-form .fc-form-rij + .fc-form-sectie,
.fc-aanvraag-form .fc-form-professioneel + .fc-form-sectie {
    margin-top: 40px;
}

/* ── Veld-rijen ─────────────────────────────────────────────────── */
.fc-form-rij {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    margin-bottom: 28px;
}
.fc-form-rij--vol {
    grid-template-columns: 1fr;
}
.fc-form-rij:last-of-type { margin-bottom: 0; }

/* Breed veld over volledige breedte */
.fc-form-veld--breed {
    grid-column: 1 / -1;
}

/* ── Label ──────────────────────────────────────────────────────── */
.fc-aanvraag-form .fc-form-veld label {
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    margin-bottom: 6px;
    line-height: 1;
}
.fc-aanvraag-form .fc-form-veld label abbr {
    text-decoration: none;
    color: #d7000f;
    margin-left: 1px;
}

/* ── Input / Textarea / Select — underline stijl ────────────────── */
.fc-aanvraag-form .fc-form-veld input,
.fc-aanvraag-form .fc-form-veld textarea,
.fc-aanvraag-form .fc-form-veld select,
.fc-aanvraag-form .fc-select-model,
.fc-aanvraag-form .fc-select-uitvoering {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.18);
    border-radius: 0;
    padding: 8px 0 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #0a0a0a;
    outline: none;
    box-shadow: none;
    transition: border-color .2s;
    appearance: none;
    -webkit-appearance: none;
}
.fc-aanvraag-form .fc-form-veld textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}
.fc-aanvraag-form .fc-form-veld input::placeholder,
.fc-aanvraag-form .fc-form-veld textarea::placeholder {
    color: rgba(0,0,0,0.28);
    font-weight: 400;
    font-style: italic;
}
.fc-aanvraag-form .fc-form-veld input:focus,
.fc-aanvraag-form .fc-form-veld textarea:focus,
.fc-aanvraag-form .fc-form-veld select:focus,
.fc-aanvraag-form .fc-select-model:focus,
.fc-aanvraag-form .fc-select-uitvoering:focus {
    border-bottom-color: #d7000f;
    outline: none;
}

/* Select: pijl-icoon */
.fc-aanvraag-form .fc-form-veld select,
.fc-aanvraag-form .fc-select-model,
.fc-aanvraag-form .fc-select-uitvoering {
    cursor: pointer;
    padding-right: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
}
.fc-aanvraag-form .fc-form-veld select option,
.fc-aanvraag-form .fc-select-model option,
.fc-aanvraag-form .fc-select-uitvoering option {
    background: #fff;
    color: #0a0a0a;
    font-weight: 400;
}

/* ── Klant type toggle ──────────────────────────────────────────── */
.fc-klant-type-rij {
    display: flex !important;
    gap: 0;
    margin-bottom: 28px !important;
    border-bottom: 1px solid rgba(0,0,0,0.18);
}
.fc-klant-type-rij .fc-klant-type-btn {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    padding: 10px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.38);
    cursor: pointer;
    transition: color .2s, border-color .2s;
    outline: none;
    box-shadow: none;
}
.fc-klant-type-rij .fc-klant-type-btn.fc-actief {
    color: #0a0a0a;
    border-bottom-color: #d7000f;
}

/* ── Submit knop ────────────────────────────────────────────────── */
.fc-aanvraag-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    justify-content: space-between;
    width: 100%;
    height: 48px;
    margin-top: 40px;
    background: #0a0a0a;
    color: #ffffff;
    border: none;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
    outline: none;
}
.fc-aanvraag-submit:hover   { background: #1a1a1a; }
.fc-aanvraag-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.fc-aanvraag-submit svg     { flex-shrink: 0; transition: transform .25s ease; }
.fc-aanvraag-submit:hover svg { transform: translateX(4px); }

/* ── Privacy-tekst ──────────────────────────────────────────────── */
.fc-aanvraag-privacy {
    margin: 16px 0 0;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: rgba(0,0,0,0.38);
    line-height: 1.6;
    text-align: center;
}

/* ── Melding ────────────────────────────────────────────────────── */
.fc-aanvraag-form .fc-melding {
    margin-top: 16px;
    padding: 12px 16px;
    font-size: 13px;
    font-family: 'Manrope', sans-serif;
}
.fc-aanvraag-form .fc-melding:empty     { display: none; }
.fc-aanvraag-form .fc-melding--succes   { background: #d4edda; color: #155724; }
.fc-aanvraag-form .fc-melding--fout     { background: #f8d7da; color: #721c24; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .fc-aanvraag-form { padding: 36px 24px 40px; }
    .fc-form-rij      { grid-template-columns: 1fr; gap: 0; }
}

.fc-aanvraag-form h1,
.fc-aanvraag-form h2,
.fc-aanvraag-form h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
}
