    .contact-section {
        padding: 60px 20px;
        max-width: 680px;
        margin: 0 auto;
    }
    .contact-section h1 {
        text-align: center;
        margin-bottom: 40px;
    }
    .form-group {
        margin-bottom: 20px;
    }
    .form-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #444;
        letter-spacing: .4px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 11px 14px;
        border: 1.5px solid #ddd;
        border-radius: 6px;
        font-size: 15px;
        transition: border-color .2s;
        box-sizing: border-box;
        background: #fafafa;
        color: #222;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #c8a96e;
        background: #fff;
    }
    .form-group textarea {
        height: 130px;
        resize: vertical;
    }
    .form-group--row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .btn-submit {
        display: inline-block;
        padding: 13px 40px;
        background: #1a1a2e;
        color: #fff;
        border: none;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 1px;
        cursor: pointer;
        transition: background .2s, transform .15s;
        width: 100%;
    }
    .btn-submit:hover {
        background: #c8a96e;
        transform: translateY(-1px);
    }
    .btn-submit:disabled {
        opacity: .6;
        cursor: not-allowed;
        transform: none;
    }

    /* Erori inline */
    .field-error {
        color: #e53e3e;
        font-size: 12px;
        margin-top: 5px;
        display: none;
    }
    .form-group.has-error input,
    .form-group.has-error select,
    .form-group.has-error textarea {
        border-color: #e53e3e;
    }

    /* ── Modal ── */
    .modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.55);
        z-index: 1000;
        align-items: center;
        justify-content: center;
    }
    .modal-overlay.active {
        display: flex;
    }
    .modal-box {
        background: #fff;
        border-radius: 16px;
        padding: 48px 40px;
        max-width: 440px;
        width: 90%;
        text-align: center;
        box-shadow: 0 20px 60px rgba(0,0,0,.2);
        animation: popIn .3s ease;
    }
    @keyframes popIn {
        from { transform: scale(.85); opacity: 0; }
        to   { transform: scale(1);   opacity: 1; }
    }
    .modal-icon {
        font-size: 56px;
        margin-bottom: 16px;
        display: block;
    }
    .modal-box h2 {
        margin: 0 0 12px;
        font-size: 22px;
        color: #1a1a2e;
    }
    .modal-box p {
        color: #666;
        font-size: 15px;
        line-height: 1.6;
        margin: 0 0 28px;
    }
    .modal-close {
        padding: 11px 36px;
        background: #c8a96e;
        color: #fff;
        border: none;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background .2s;
    }
    .modal-close:hover { background: #b8955a; }

    /* Modal eroare */
    .modal-box.is-error .modal-icon { filter: none; }
    .modal-box.is-error h2 { color: #c0392b; }
    .modal-box.is-error .modal-close { background: #c0392b; }
    .modal-box.is-error .modal-close:hover { background: #a93226; }

    input[readonly] {
    background: #f0f0f0;
    color: #888;
    cursor: not-allowed;
}

