/* =========================================================================
   CONTACT.CSS - STANDALONE FORMULIER & INTERFACE COMPONENTEN
   ========================================================================= */

/* Structuur overschrijvingen ten behoeve van invoerfunctionaliteit */
.container {
    overflow-y: auto !important;
}

.form-card {
    text-align: left !important;
}

/* Titels en Subteksten binnen de kaart */
.contact-title, .success-title {
    font-size: clamp(32px, 6vw, 40px) !important;
    letter-spacing: -1px !important;
    text-align: center !important;
    margin-bottom: 10px !important;
}

.contact-subtext {
    text-align: center !important;
    font-size: 15px !important;
    margin-bottom: 35px !important;
    color: #a4b8cf !important;
}

.success-text {
    font-size: 16px !important;
    margin-bottom: 30px !important;
}

/* Tabel Architectuur */
.form-table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    margin: 0;
    padding: 0;
}

.form-table tr {
    height: 64px; 
}

/* Tekstvak specifieke regel */
.form-table tr.align-top-row {
    height: auto;
}

.form-table tr.align-top-row .label-cell {
    vertical-align: top;
    padding-top: 14px;
}

.form-table tr.align-top-row .input-cell {
    padding-top: 6px;
    padding-bottom: 12px;
}

/* Symmetrische Kolomindeling */
.label-cell {
    width: 28%;
    vertical-align: middle;
    padding-right: 20px;
    box-sizing: border-box;
}

.label-cell label {
    font-size: 13px;
    font-weight: 600;
    color: #a4b8cf;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.input-cell {
    width: 72%;
    vertical-align: middle;
    box-sizing: border-box;
}

/* Minimalistisch Corporate Input Design */
.input-cell input, 
.input-cell textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 14px;
    color: #ffffff;
    font-family: inherit;
    letter-spacing: 0.02em;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dynamische focus-state gelinkt aan uw root --cyan variabele */
.input-cell input:focus, 
.input-cell textarea:focus {
    outline: none;
    border-color: rgba(39, 211, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 16px rgba(39, 211, 255, 0.15);
}

.input-cell textarea {
    height: 115px;
    resize: none;
    padding-top: 12px;
}

::placeholder {
    color: rgba(255, 255, 255, 0.18);
    font-weight: 400;
}

/* Knoppen Architectuur */
.btn-container {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    width: 100%;
}

.glass-btn {
    flex: 1;
    padding: 13px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.text-center-link {
    display: block;
    text-decoration: none;
    text-align: center;
}

/* Knop 1: Annuleren (Zilver) */
.btn-cancel {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8fa3b9;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Knop 2: Verzenden (Glow) */
.btn-submit {
    background: rgba(79, 140, 255, 0.08);
    border: 1px solid rgba(79, 140, 255, 0.2);
    color: #bfe7ff;
}

.btn-submit:hover {
    background: rgba(39, 211, 255, 0.12);
    border-color: var(--cyan);
    color: white;
    box-shadow: 0 10px 30px rgba(39, 211, 255, 0.25);
}

.glass-btn:active {
    transform: scale(0.98);
}

/* Interface Feedbacks */
.error-message {
    color: #ff5c5c;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.01em;
    display: none; /* Standaard onzichtbaar tot validatie-trigger */
}

.status-alert {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

.status-error {
    background-color: rgba(255, 92, 92, 0.1);
    color: #ff5c5c;
    border: 1px solid rgba(255, 92, 92, 0.2);
}

.success-screen {
    text-align: center;
    padding: 30px 10px;
}

/* RESPONSIVE DESIGN: Mobiel omschakelen naar gestapelde blokken */
@media(max-width:600px){
    .form-table, .form-table tbody, .form-table tr, .form-table td {
        display: block !important;
        width: 100% !important;
    }
    .form-table tr {
        height: auto !important;
        margin-bottom: 16px;
    }
    .form-table tr.align-top-row .label-cell {
        padding-top: 0 !important;
    }
    .label-cell {
        margin-bottom: 6px;
        padding-right: 0 !important;
    }
    .btn-container {
        flex-direction: column-reverse;
        gap: 10px;
    }
}
