/**
 * Transportaanvraagpagina voor Wieke Logistics.
 *
 * Onderdelen:
 * 1. Hero
 * 2. Routekaart
 * 3. Driestappenproces
 * 4. Formuliersectie
 * 5. Zijbalk en checklist
 * 6. Forminator-opmaak
 * 7. Contactblok onderaan
 */


/* =========================================================
   1. PAGINA- EN HERO-BASIS
   ========================================================= */

.wieke-request {
    overflow: hidden;
    background: var(--wieke-white);
}

.wieke-request-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block:
        clamp(4.5rem, 8vw, 7rem)
        clamp(5rem, 9vw, 8rem);
    background:
        radial-gradient(
            circle at 14% 20%,
            rgba(235, 103, 9, 0.12),
            transparent 25rem
        ),
        linear-gradient(
            125deg,
            var(--wieke-purple-darker) 0%,
            var(--wieke-purple-dark) 50%,
            var(--wieke-purple) 100%
        );
    color: var(--wieke-white);
}

.wieke-request-hero::before {
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(8rem, 22vw, 20rem);
    height: 0.4rem;
    border-radius: 0 0 0 var(--wieke-radius-pill);
    background: var(--wieke-orange);
    content: "";
}

.wieke-request-hero::after {
    position: absolute;
    right: -8rem;
    bottom: -9rem;
    z-index: -1;
    width: 24rem;
    height: 24rem;
    border: 3.5rem solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    content: "";
}


/* =========================================================
   2. HERO-ACHTERGROND
   ========================================================= */

.wieke-request-hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.wieke-request-hero__shape {
    position: absolute;
    border-radius: 50%;
}

.wieke-request-hero__shape--one {
    top: 12%;
    left: -6rem;
    width: 15rem;
    height: 15rem;
    border: 2rem solid rgba(255, 255, 255, 0.035);
}

.wieke-request-hero__shape--two {
    top: 8%;
    right: 7%;
    width: 6rem;
    height: 6rem;
    border: 1rem solid rgba(235, 103, 9, 0.1);
}

.wieke-request-hero__route-line {
    position: absolute;
    right: 3%;
    bottom: 12%;
    width: 40%;
    height: 55%;
    border-right: 2px dashed rgba(255, 255, 255, 0.11);
    border-bottom: 2px dashed rgba(255, 255, 255, 0.11);
    border-radius: 0 0 7rem 0;
    transform: rotate(-7deg);
}


/* =========================================================
   3. HERO-INDELING
   ========================================================= */

.wieke-request-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(25rem, 0.68fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
}

.wieke-request-hero__content {
    max-width: 48rem;
}

.wieke-request-hero__title {
    max-width: 12ch;
    margin-bottom: 1.4rem;
    color: var(--wieke-white);
    font-size: clamp(2.8rem, 5.7vw, 5rem);
    line-height: 1;
}

.wieke-request-hero__lead {
    max-width: 43rem;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
    line-height: 1.7;
}

.wieke-request-hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wieke-request-hero__highlights li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 700;
}

.wieke-request-hero__highlights svg {
    color: var(--wieke-orange-light);
}


/* =========================================================
   4. ROUTEKAART IN HERO
   ========================================================= */

.wieke-request-hero__route-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius:
        2rem 2rem 0.4rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 1.5rem 4rem rgba(20, 18, 30, 0.22);
    backdrop-filter: blur(12px);
}

.wieke-request-hero__route-card::before {
    position: absolute;
    top: -4rem;
    right: -4rem;
    width: 10rem;
    height: 10rem;
    border: 1.5rem solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    content: "";
}

.wieke-request-hero__route-location {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.wieke-request-hero__route-icon {
    display: inline-flex;
    width: 3.2rem;
    height: 3.2rem;
    flex: 0 0 3.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--wieke-orange-light);
}

.wieke-request-hero__route-location > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.wieke-request-hero__route-location small {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wieke-request-hero__route-location strong {
    color: var(--wieke-white);
    font-size: 0.92rem;
    line-height: 1.4;
}

.wieke-request-hero__route-track {
    position: relative;
    display: flex;
    min-height: 7rem;
    align-items: center;
    justify-content: center;
}

.wieke-request-hero__route-track-line {
    position: absolute;
    top: 50%;
    right: 1.4rem;
    left: 1.4rem;
    border-top: 2px dashed rgba(255, 255, 255, 0.22);
}

.wieke-request-hero__route-vehicle {
    position: relative;
    display: inline-flex;
    width: 4.8rem;
    height: 4.8rem;
    align-items: center;
    justify-content: center;
    border: 0.4rem solid var(--wieke-purple-dark);
    border-radius: 50%;
    background: var(--wieke-orange);
    color: var(--wieke-white);
    box-shadow:
        0 0.8rem 2rem rgba(235, 103, 9, 0.25);
}


/* =========================================================
   5. DRIestappenproces
   ========================================================= */

.wieke-request-process {
    position: relative;
    padding-block: var(--wieke-section-space-small);
    background:
        linear-gradient(
            180deg,
            var(--wieke-purple-soft) 0%,
            var(--wieke-white) 100%
        );
}

.wieke-request-process__heading {
    max-width: 48rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.wieke-request-process__heading h2 {
    max-width: 14ch;
    margin-bottom: 0;
}

.wieke-request-process__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.wieke-request-process__step {
    position: relative;
    overflow: hidden;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid var(--wieke-border);
    border-radius:
        var(--wieke-radius-large)
        var(--wieke-radius-large)
        0.35rem
        var(--wieke-radius-large);
    background: var(--wieke-white);
    box-shadow: var(--wieke-shadow-small);
}

.wieke-request-process__step::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4rem;
    height: 0.28rem;
    border-radius: var(--wieke-radius-pill) 0 0 0;
    background: var(--wieke-orange);
    content: "";
}

.wieke-request-process__number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(89, 86, 115, 0.13);
    font-family: var(--wieke-font-heading);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.wieke-request-process__icon {
    display: inline-flex;
    width: 3.8rem;
    height: 3.8rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border-radius: 1.1rem;
    background: var(--wieke-orange-light);
    color: var(--wieke-orange-dark);
}

.wieke-request-process__step h3 {
    max-width: 15ch;
    margin-bottom: 0.65rem;
    font-size: 1.18rem;
}

.wieke-request-process__step p {
    margin: 0;
    color: var(--wieke-text-light);
    font-size: 0.9rem;
    line-height: 1.65;
}


/* =========================================================
   6. FORMULIERSECTIE
   ========================================================= */

.wieke-request-form-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: var(--wieke-section-space);
    background: var(--wieke-white);
}

.wieke-request-form-section::before {
    position: absolute;
    top: 8%;
    left: -6rem;
    z-index: -1;
    width: 14rem;
    height: 14rem;
    border: 2rem solid rgba(235, 103, 9, 0.045);
    border-radius: 50%;
    content: "";
}

.wieke-request-form-section__grid {
    display: grid;
    grid-template-columns:
        minmax(18rem, 0.38fr)
        minmax(0, 1fr);
    align-items: start;
    gap: clamp(2.5rem, 6vw, 5rem);
}


/* =========================================================
   7. ZIJBALK
   ========================================================= */

.wieke-request-form-section__sidebar {
    position: sticky;
    top: calc(var(--wieke-header-height) + 2rem);
}

.wieke-request-form-section__sidebar h2 {
    max-width: 12ch;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.wieke-request-form-section__sidebar > p {
    color: var(--wieke-text);
}

.wieke-request-checklist {
    display: grid;
    gap: 0.7rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.wieke-request-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 0;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--wieke-border);
    color: var(--wieke-purple-dark);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.5;
}

.wieke-request-checklist li:last-child {
    border-bottom: 0;
}

.wieke-request-checklist li > span {
    display: inline-flex;
    width: 1.8rem;
    height: 1.8rem;
    flex: 0 0 1.8rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.6rem;
    background: var(--wieke-orange-light);
    color: var(--wieke-orange-dark);
}


/* =========================================================
   8. HULPKAART
   ========================================================= */

.wieke-request-help-card {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-top: 1.8rem;
    padding: 1.2rem;
    border-radius:
        var(--wieke-radius-large)
        var(--wieke-radius-large)
        0.35rem
        var(--wieke-radius-large);
    background:
        linear-gradient(
            135deg,
            var(--wieke-purple-dark) 0%,
            var(--wieke-purple) 100%
        );
    color: var(--wieke-white);
}

.wieke-request-help-card__icon {
    display: inline-flex;
    width: 3.2rem;
    height: 3.2rem;
    flex: 0 0 3.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.95rem;
    background: var(--wieke-orange);
}

.wieke-request-help-card h3 {
    margin-bottom: 0.35rem;
    color: var(--wieke-white);
    font-size: 1rem;
}

.wieke-request-help-card p {
    margin-bottom: 0.65rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
    line-height: 1.5;
}

.wieke-request-help-card a {
    color: var(--wieke-orange-light);
    font-weight: 750;
    text-decoration: none;
}

.wieke-request-help-card a:hover {
    color: var(--wieke-white);
}


/* =========================================================
   9. FORMULIERKAART
   ========================================================= */

.wieke-request-form-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.6rem, 4vw, 3rem);
    border: 1px solid var(--wieke-border);
    border-radius:
        2rem 2rem 2rem 0.45rem;
    background:
        linear-gradient(
            180deg,
            var(--wieke-white) 0%,
            var(--wieke-purple-soft) 100%
        );
    box-shadow: var(--wieke-shadow-medium);
}

.wieke-request-form-card::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 34%;
    height: 0.4rem;
    border-radius: 0 0 0 var(--wieke-radius-pill);
    background: var(--wieke-orange);
    content: "";
}

.wieke-request-form-card::after {
    position: absolute;
    top: -5rem;
    right: -4rem;
    z-index: 0;
    width: 12rem;
    height: 12rem;
    border: 1.8rem solid rgba(89, 86, 115, 0.04);
    border-radius: 50%;
    content: "";
}

.wieke-request-form-card__header,
.wieke-request-form-card__form,
.wieke-request-form-card__privacy {
    position: relative;
    z-index: 2;
}

.wieke-request-form-card__header {
    margin-bottom: 2rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--wieke-border);
}

.wieke-request-form-card__label {
    margin-bottom: 0.4rem;
    color: var(--wieke-orange-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.wieke-request-form-card__header h2 {
    max-width: 15ch;
    margin-bottom: 0.65rem;
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
}

.wieke-request-form-card__header p:last-child {
    color: var(--wieke-text-light);
    font-size: 0.95rem;
}


/* =========================================================
   10. FORMINATOR OPMAAK
   ========================================================= */

.wieke-request-form-card__form .forminator-row {
    margin-bottom: 1rem !important;
}

.wieke-request-form-card__form .forminator-col {
    padding-inline: 0.45rem !important;
}

.wieke-request-form-card__form .forminator-field {
    margin-bottom: 0 !important;
}

.wieke-request-form-card__form .forminator-label {
    margin-bottom: 0.45rem !important;
}

.wieke-request-form-card__form .forminator-input,
.wieke-request-form-card__form .forminator-textarea,
.wieke-request-form-card__form .forminator-select2-selection {
    background: var(--wieke-white) !important;
}

.wieke-request-form-card__form .forminator-input:focus,
.wieke-request-form-card__form .forminator-textarea:focus,
.wieke-request-form-card__form .forminator-select2-selection:focus {
    background: var(--wieke-white) !important;
}

.wieke-request-form-card__form .forminator-textarea {
    min-height: 10rem !important;
}

.wieke-request-form-card__form .forminator-button-submit {
    width: 100% !important;
    min-height: 3.7rem !important;
    margin-top: 0.5rem !important;
}

.wieke-request-form-card__form .forminator-multiselect,
.wieke-request-form-card__form .forminator-uploaded-files {
    border-radius: var(--wieke-radius-medium) !important;
}

.wieke-request-form-card__form .forminator-file-upload {
    padding: 1rem !important;
    border: 1px dashed var(--wieke-border-dark) !important;
    border-radius: var(--wieke-radius-medium) !important;
    background: var(--wieke-white) !important;
}

.wieke-request-form-card__form .forminator-checkbox-box,
.wieke-request-form-card__form .forminator-radio-bullet {
    border-color: var(--wieke-border-dark) !important;
}

.wieke-request-form-card__form
.forminator-checkbox
input:checked
+ .forminator-checkbox-box,
.wieke-request-form-card__form
.forminator-radio
input:checked
+ .forminator-radio-bullet {
    border-color: var(--wieke-orange) !important;
    background: var(--wieke-orange) !important;
}


/* =========================================================
   11. FORMULIER-NOTICES EN FALLBACK
   ========================================================= */

.wieke-request-form-card__notice,
.wieke-request-form-card__fallback {
    padding: 1.4rem;
    border-radius: var(--wieke-radius-medium);
}

.wieke-request-form-card__notice {
    border: 1px solid rgba(154, 90, 0, 0.2);
    background: var(--wieke-warning-light);
    color: var(--wieke-warning);
}

.wieke-request-form-card__notice strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--wieke-purple-dark);
}

.wieke-request-form-card__notice p {
    margin: 0;
    font-size: 0.92rem;
}

.wieke-request-form-card__fallback {
    border: 1px solid var(--wieke-border);
    background: var(--wieke-white);
}

.wieke-request-form-card__fallback h3 {
    margin-bottom: 0.5rem;
}

.wieke-request-form-card__fallback p {
    color: var(--wieke-text);
}

.wieke-request-form-card__fallback-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.1rem;
}


/* =========================================================
   12. PRIVACYREGEL
   ========================================================= */

.wieke-request-form-card__privacy {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-top: 1.6rem;
    padding-top: 1.3rem;
    border-top: 1px solid var(--wieke-border);
    color: var(--wieke-text-light);
}

.wieke-request-form-card__privacy > span {
    margin-top: 0.12rem;
    color: var(--wieke-purple);
}

.wieke-request-form-card__privacy p {
    margin: 0;
    font-size: 0.83rem;
    line-height: 1.55;
}

.wieke-request-form-card__privacy a {
    color: var(--wieke-orange-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.wieke-request-form-card__privacy a:hover {
    color: var(--wieke-purple-dark);
}


/* =========================================================
   13. CONTACTBLOK ONDERAAN
   ========================================================= */

.wieke-request-contact {
    position: relative;
    overflow: hidden;
    padding-block: var(--wieke-section-space-small);
    background:
        linear-gradient(
            125deg,
            var(--wieke-purple-darker) 0%,
            var(--wieke-purple) 100%
        );
    color: var(--wieke-white);
}

.wieke-request-contact::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 0.35rem;
    border-radius: 0 0 var(--wieke-radius-pill) 0;
    background: var(--wieke-orange);
    content: "";
}

.wieke-request-contact::after {
    position: absolute;
    right: -5rem;
    bottom: -6rem;
    width: 15rem;
    height: 15rem;
    border: 2rem solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    content: "";
}

.wieke-request-contact__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 6vw, 5rem);
}

.wieke-request-contact__inner > div:first-child {
    max-width: 46rem;
}

.wieke-request-contact h2 {
    max-width: 14ch;
    color: var(--wieke-white);
}

.wieke-request-contact p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
}

.wieke-request-contact__actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem;
}


/* =========================================================
   14. CAPTCHA EN UPLOADS
   ========================================================= */

.wieke-request-form-card__form .cf-turnstile,
.wieke-request-form-card__form .forminator-field-captcha {
    margin-block: 0.7rem 1rem;
}

.wieke-request-form-card__form iframe {
    max-width: 100%;
}

.wieke-request-form-card__form input[type="file"] {
    max-width: 100%;
}