/* Dutch_Air_Offerte modal — v1.0.0 */

.da-off__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 36, 0.72);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(3px);
}
.da-off__overlay.is-open {
    display: flex;
    animation: da-off-fadein .2s ease;
}
@keyframes da-off-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.da-off__modal {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    animation: da-off-slidein .25s ease;
    font-family: 'Poppins', sans-serif;
}
@keyframes da-off-slidein {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.da-off__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    background: #F4F6F8;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5A6472;
    transition: background .15s, color .15s;
    z-index: 2;
}
.da-off__close:hover { background: #DDE2E8; color: #1F2A38; }
.da-off__close svg { width: 16px; height: 16px; }

/* Header */
.da-off__header {
    padding: 32px 32px 20px;
    border-bottom: 1px solid #F0F2F5;
}
.da-off__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #3FA7D6;
    margin-bottom: 6px;
}
.da-off__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1F2A38;
    margin: 0 0 10px;
    padding-right: 40px;
}
.da-off__product-hint {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .82rem;
    color: #5A6472;
    background: #F4F6F8;
    border-radius: 6px;
    padding: 8px 12px;
    margin: 0;
}
.da-off__product-hint svg { width: 14px; height: 14px; flex-shrink: 0; color: #3FA7D6; }
.da-off__product-hint strong { color: #1F2A38; }

/* Form */
.da-off__form {
    padding: 24px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.da-off__row { display: flex; gap: 14px; }
.da-off__row--2 > * { flex: 1; }
.da-off__field { display: flex; flex-direction: column; gap: 5px; }
.da-off__field label {
    font-size: 12px;
    font-weight: 600;
    color: #3A3F47;
}
.da-off__field label span { color: #B11226; }
.da-off__field input,
.da-off__field select,
.da-off__field textarea {
    border: 1.5px solid #DDE2E8;
    border-radius: 7px;
    padding: 9px 13px;
    font-size: .875rem;
    font-family: inherit;
    color: #1F2A38;
    background: #fff;
    transition: border-color .15s;
    width: 100%;
    box-sizing: border-box;
}
.da-off__field input:focus,
.da-off__field select:focus,
.da-off__field textarea:focus {
    outline: none;
    border-color: #3FA7D6;
    box-shadow: 0 0 0 3px rgba(63,167,214,.12);
}
.da-off__field textarea { resize: vertical; }
.da-off__field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6472' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px; }

.da-off__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #B11226;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 13px 28px;
    font-size: .95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s;
    width: 100%;
    margin-top: 4px;
}
.da-off__submit:hover { background: #8f0e1e; }
.da-off__submit svg { width: 15px; height: 15px; }

.da-off__disclaimer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: #8A9BAE;
    margin: 0;
    justify-content: center;
}
.da-off__disclaimer svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Success */
.da-off__success {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 32px;
    color: #1e8449;
}
.da-off__success svg { width: 28px; height: 28px; flex-shrink: 0; margin-top: 2px; }
.da-off__success strong { display: block; font-size: 1.05rem; margin-bottom: 6px; }
.da-off__success p { font-size: .9rem; color: #5A6472; margin: 0; }

/* Error */
.da-off__error {
    margin: 16px 32px 0;
    background: #fdf2f2;
    border: 1px solid #f5c6cb;
    color: #B11226;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: .875rem;
}

/* Responsive */
@media (max-width: 560px) {
    .da-off__modal { border-radius: 10px; }
    .da-off__header, .da-off__form { padding-inline: 20px; }
    .da-off__row--2 { flex-direction: column; }
}
