/* Dutch_Air_Contact — v1.0.0 */

.da-ct { font-family: 'Poppins', sans-serif; }

.da-ct__container {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.da-ct__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #3FA7D6;
    margin-bottom: 10px;
}

/* ── HERO ── */
.da-ct__hero {
    background: #1F2A38;
    padding: 72px 0 56px;
    text-align: center;
}
.da-ct__hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
}
.da-ct__hero-intro {
    font-size: 1rem;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin: 0 auto;
    max-width: 640px;
}

/* ── MAIN GRID ── */
.da-ct__main {
    padding: 72px 0;
    background: #fff;
}
.da-ct__main-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
}

.da-ct__block-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1F2A38;
    margin: 0 0 8px;
}
.da-ct__block-intro {
    font-size: .9rem;
    color: #5A6472;
    margin: 0 0 28px;
    line-height: 1.6;
}

/* ── FORMULIER ── */
.da-ct__form { display: flex; flex-direction: column; gap: 16px; }
.da-ct__form-row { display: flex; gap: 16px; }
.da-ct__form-row--2 > * { flex: 1; }
.da-ct__field { display: flex; flex-direction: column; gap: 6px; }
.da-ct__field label { font-size: 12px; font-weight: 600; color: #3A3F47; }
.da-ct__field label span { color: #B11226; }
.da-ct__field input, .da-ct__field textarea {
    border: 1.5px solid #DDE2E8;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: .9rem;
    font-family: inherit;
    color: #1F2A38;
    transition: border-color .2s;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}
.da-ct__field input:focus, .da-ct__field textarea:focus {
    outline: none;
    border-color: #3FA7D6;
}
.da-ct__field textarea { resize: vertical; }
.da-ct__submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #B11226;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 13px 28px;
    font-size: .95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s;
    align-self: flex-start;
}
.da-ct__submit:hover { background: #8f0e1e; }
.da-ct__submit svg { width: 16px; height: 16px; }

.da-ct__success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #eafaf1;
    border: 1px solid #a9dfbf;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: .95rem;
    color: #1e8449;
}
.da-ct__success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── INFO ── */
.da-ct__info {
    background: #F4F6F8;
    border-radius: 12px;
    padding: 32px;
}
.da-ct__info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #DDE2E8;
}
.da-ct__info-item:last-of-type { border-bottom: none; margin-bottom: 20px; }
.da-ct__info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3FA7D6;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.da-ct__info-icon svg { width: 18px; height: 18px; }
.da-ct__info-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #8A9BAE;
    margin-bottom: 4px;
}
.da-ct__info-value {
    display: block;
    font-size: .9rem;
    color: #1F2A38;
    text-decoration: none;
    line-height: 1.5;
}
a.da-ct__info-value:hover { color: #3FA7D6; }
.da-ct__maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1F2A38;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: .85rem;
    font-weight: 600;
    transition: background .2s;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}
.da-ct__maps-btn:hover { background: #3A3F47; color: #fff; }
.da-ct__maps-btn svg { width: 16px; height: 16px; }

/* ── MAPS ── */
.da-ct__maps { line-height: 0; }
.da-ct__maps iframe { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .da-ct__main-grid { grid-template-columns: 1fr; }
    .da-ct__form-row { flex-direction: column; }
}

.da-ct__hero-title { color: #ffffff !important; }

.da-ct__main { padding: 48px 0; }
