#offerte_header {
    min-height: 100px;
}

.offerte__footer {
    bottom: 0;
    width: 100%;
    margin-top: 50px;
}

/* Container */
.offerte-container {
    display: flex;
    justify-content: center;
}

/* Formulier */
#offerte-form {
    background: #fff;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 95%;
    display: flex;
    flex-direction: column;
    margin: 0 15px 0 15px;
}

#offerte-form h1 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Velden */
#offerte-form label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
}

#offerte-form input,
#offerte-form textarea {
    padding: 10px 12px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

#offerte-form textarea {
    height: 200px;
}

#offerte-form input:focus,
#offerte-form textarea:focus {
    border-color: #000;
    outline: none;
}

.required {
    color: var(--navbar-color);
    font-weight: bold;
}

#offerte-form label span.optional {
    font-weight: normal;
    color: #888;
    font-size: 13px;
    margin-left: 4px;
}

/* Dropdown stijl matcht de input velden */
#offerte-form select {
    padding: 10px 12px;         /* zelfde als input/textarea */
    margin-bottom: 18px;        /* ruimte eronder */
    border: 1px solid #ddd;     /* zelfde border */
    border-radius: 8px;         /* ronde hoeken */
    font-size: 15px;            /* zelfde lettergrootte */
    background: #fff;           /* witte achtergrond */
    color: #333;                /* tekstkleur */
    appearance: none;           /* verwijder standaard arrow in browsers */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.3s;
}

/* Focus state */
#offerte-form select:focus {
    border-color: #000;
    outline: none;
}

/* Voeg een pijltje toe via pseudo-element */
#offerte-form select {
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12"><polygon points="0,0 12,0 6,6" fill="%23333"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

/* Optioneel: padding rechts iets meer zodat het pijltje niet over de tekst valt */
#offerte-form select {
    padding-right: 30px;
}

.primary-btn {
    align-self: center;
    min-width: 15vw;
}

/* Succesbericht */
.success-message {
    display: none;
    text-align: center;
    color: #2e7d32;
    margin-top: 15px;
    font-size: 15px;
}

@media (width > 768px) {
    #offerte_header {
        min-height: 140px;
    }

    .nav__background__offerte {
        position: fixed;
        top: 0;
        width: 100%;
        background: var(--navbar-color);
        height: 90px;
        opacity: 100%;
        z-index: 999;
        -webkit-box-shadow: 5px 5px 50px 0px rgba(0,0,0,0.5);
        box-shadow: 5px 5px 50px 0px rgba(0,0,0,0.5);
    }
}

@media (width > 1024px) {
    #offerte_header {
        min-height: 140px;
    }
}