.customhidden{
    display:none !important;
}

/* =====================================================
   FORM WRAPPER
===================================================== */

#purchaseForm{
    width:100%;
}

#purchaseForm .card-body{
    max-width:760px;
    margin:40px auto;
    padding:40px;
    background:#f8f8f8;
    border-radius:18px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

/* =====================================================
   HEADLINE
===================================================== */

.main-headline{
    text-align:center;
    font-size:30px;
    font-weight:400;
    line-height:1.2;
    margin-bottom:40px;
    color:#111;
}

/* =====================================================
   FIELD WRAPPER
===================================================== */

.dropdown-outer{
    margin-bottom:28px;
}

/* =====================================================
   LABELS
===================================================== */

.dropdown-outer label,
.checkbox-title,
.radio-title{
    display:block;
    font-size:18px;
    font-weight:700;
    color:#1d1d1d;
    margin-bottom:10px;
    text-align:center;
}

/* =====================================================
   INPUTS
===================================================== */

#purchaseForm input[type=text],
#purchaseForm input[type=email],
#purchaseForm input[type=number],
#purchaseForm select,
#purchaseForm textarea{
    width:100%;
    min-height:58px;
    padding:14px 18px;
    border:1px solid #d8d8d8;
    border-radius:12px;
    background:#fff;
    font-size:16px;
    box-sizing:border-box;
    transition:all .25s ease;
}

#purchaseForm textarea{
    min-height:140px;
    resize:vertical;
}

/* =====================================================
   FOCUS
===================================================== */

#purchaseForm input:focus,
#purchaseForm select:focus,
#purchaseForm textarea:focus{
    outline:none;
    border-color:#df2a2a;
    box-shadow:0 0 0 4px rgba(223,42,42,.12);
}

/* =====================================================
   PLACEHOLDER
===================================================== */

::placeholder{
    color:#999;
}

/* =====================================================
   INFO TEXT
===================================================== */

.description,
.form-description{
    text-align:center;
    font-size:15px;
    line-height:1.7;
    color:#666;
}

/* =====================================================
   SLIDER
===================================================== */

input[type=range]{
    width:100%;
    max-width:420px;
    display:block;
    margin:20px auto;
}

.range-value{
    text-align:center;
    font-size:42px;
    font-weight:800;
    color:#111;
    margin-bottom:15px;
}

/* =====================================================
   RADIO BUTTONS
===================================================== */

.radio-box,
.car_series{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
}

.radio-box label,
.car_series label{
    flex:1;
    min-width:180px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:12px;
    padding:16px;
    cursor:pointer;
    transition:.2s;
    display:flex;
    align-items:center;
    gap:10px;
}

.radio-box label:hover,
.car_series label:hover{
    border-color:#df2a2a;
    transform:translateY(-2px);
}

/* =====================================================
   CHECKBOX GRID
===================================================== */

.checkbox-container{
    margin-bottom:16px;
}

.checkbox-container label{
    display:flex;
    align-items:flex-start;
    gap:12px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:12px;
    padding:16px;
    cursor:pointer;
    transition:.2s;
}

.checkbox-container label:hover{
    border-color:#df2a2a;
}

.checkbox-container input[type=checkbox]{
    margin-top:3px;
}

/* =====================================================
   MAINTENANCE BOXES
===================================================== */

/* Wartungsnachweise */

.maintenance-grid{
    display:block;
    margin-top:15px;
}

.maintenance-grid .checkbox-container{
    margin-bottom:12px;
}

.maintenance-grid .checkbox-container label{
    display:flex;
    align-items:center;
    gap:12px;

    background:#fff;
    border:1px solid #e3e3e3;
    border-radius:10px;

    padding:14px 16px;

    font-size:16px;
    font-weight:500;

    transition:all .2s ease;
}

.maintenance-grid .checkbox-container label:hover{
    border-color:#df2a2a;
    background:#fff9f9;
}

.maintenance-grid input[type="checkbox"]{
    margin:0;
    transform:scale(1.15);
}
/* =====================================================
   EMAIL / DSGVO BLOCK
===================================================== */

.form-consent{
    margin-top:35px;
    padding:25px;
    background:#fff;
    border-radius:14px;
    border:1px solid #ececec;
}

/* =====================================================
   INFO BOX
===================================================== */

.info-container{
    background:#fff;
    border-left:6px solid #22C55E;
    border-radius:12px;
    padding:25px;
    margin:30px 0;
    font-size:16px;
    line-height:1.8;
    color:#333;
    box-shadow:0 4px 15px rgba(0,0,0,.04);
}

.info-container b{
    font-weight:700;
}

/* =====================================================
   START BUTTON
===================================================== */

#toggleForm{
    display:block;
    margin:30px auto;
    min-width:320px;
    min-height:62px;
    background:#df2a2a;
    color:#fff;
    border:none;
    border-radius:12px;
    font-size:22px;
    font-weight:700;
    transition:.25s;
    cursor:pointer;
}

#toggleForm:hover{
    background:#c91f1f;
    transform:translateY(-2px);
}

/* =====================================================
   SUBMIT BUTTON
===================================================== */

.submit-button{
    display:block;
    width:100%;
    max-width:420px;
    min-height:62px;
    margin:35px auto;
    background:#ff5b1a !important;
    color:#fff;
    border:none;
    border-radius:12px;
    font-size:20px;
    font-weight:700;
    transition:.25s;
    cursor:pointer;
}

.submit-button:hover{
    background:#ff5b1a !important;
    transform:translateY(-2px);
}

.red-button{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:420px !important;
    height:72px !important;

    padding:0 !important;

    background:linear-gradient(135deg,#ff6b1a,#ff5b1a) !important;
    color:#fff !important;

    border:none !important;
    border-radius:18px !important;

    font-size:24px !important;
    font-weight:700 !important;
    line-height:1 !important;

    box-shadow:0 10px 25px rgba(255,91,26,.25) !important;

    transition:.3s ease !important;
    cursor:pointer !important;
}

.red-button:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(255,91,26,.35);
}
/* =====================================================
   RESPONSE MESSAGE
===================================================== */

#form-message{
    margin-top:20px;
    text-align:center;
    font-weight:600;
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px){

    #purchaseForm .card-body{
        padding:25px;
        margin:20px 10px;
    }

    .main-headline{
        font-size:32px;
    }

    .radio-box,
    .car_series{
        flex-direction:column;
    }

    .maintenance-grid{
        grid-template-columns:1fr;
    }

    #toggleForm{
        width:100%;
        min-width:auto;
    }

    .submit-button{
        width:100%;
        max-width:none;
    }
}


/* ==========================================
   WARTUNGSNACHWEISE
========================================== */

#car_service .radio-box{
    display:flex;
    flex-direction:column;
    gap:12px;
}

#car_service .radio-box label{
    display:flex;
    align-items:center;
    gap:12px;

    width:100%;
    padding:16px 20px;

    background:#fff;
    border:1px solid #dcdcdc;
    border-radius:10px;

    font-size:16px;
    font-weight:500;

    cursor:pointer;
    transition:all .2s ease;
}

#car_service .radio-box label:hover{
    border-color:#e52d27;
    background:#fff9f9;
}

#car_service .radio-box input{
    width:18px;
    height:18px;
    margin:0;
}

/* ==========================================
   BUTTON WRAPPER
========================================== */

.whatsapp-section,
.red-button-wrapper{
    text-align:center;
    margin:20px 0;
}

.whatsapp-premium-btn,
.red-button{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:520px !important;
    max-width:90% !important;

    height:78px !important;

    border-radius:30px !important;

    font-size:24px !important;
    font-weight:400 !important;
    margin:15px auto !important;
}

.whatsapp-premium-btn{
    background:#25D366 !important;
    box-shadow:0 10px 30px rgba(37,211,102,.25) !important;
color:#000;
}

.whatsapp-premium-btn,
.red-button{
    color:#fff !important;
    font-weight:400;
    font-size:28px;
}

.red-button{
    background:#ff5b1a !important;
    box-shadow:0 10px 30px rgba(255,91,26,.25) !important;
}


.whatsapp-premium-btn{

    display:flex;
    flex-direction:column;

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

    gap:8px;

    width:520px;
    max-width:90%;

    min-height:95px;

    margin:0 auto 20px auto;

    background:#25D366;
    color:#fff !important;

    border-radius:18px;

    text-decoration:none;

    font-size:22px;
    font-weight:700;

    box-shadow:0 10px 30px rgba(37,211,102,.25);

    transition:.25s ease;
}

.whatsapp-premium-btn:hover{
    transform:translateY(-2px);
    color:#fff !important;
}

.whatsapp-premium-btn .wa-icon{
    font-size:34px;
    line-height:1;
}

.whatsapp-premium-btn .wa-text{
    line-height:1.1;
}