/* ==========================================
   contact.css – Page Contact
   ECT Sécurité
========================================== */

/* --- Section Contact --- */
.contact {
    padding: 70px 50px;
    text-align: center;
}

.contact>p {
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* Grille 2 colonnes : formulaire | infos */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

/* --- Formulaire --- */
.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact textarea,
.contact select {
    padding: 12px;
    border: none;
    border-radius: 8px;
    outline: none;
    background: #1a1a1a;
    color: #f5f5f5;
    font-size: 1rem;
    width: 100%;
}

.contact textarea {
    min-height: 130px;
    resize: vertical;
}

.contact button {
    padding: 12px;
    background: #c8a951;
    color: #111;
    border: none;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

.contact button:hover {
    background: #b09243;
}

/* --- Infos de contact --- */
.contact-info {
    text-align: left;
}

.contact-info h3 {
    margin-bottom: 15px;
    color: #c8a951;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-info iframe {
    margin-top: 20px;
    border-radius: 8px;
}

/* Mode clair */
.light-mode .contact input,
.light-mode .contact textarea,
.light-mode .contact select {
    background: #fff;
    color: #222;
    border: 1px solid #ddd;
}

.light-mode .contact button {
    background: #c8a951;
    color: #111;
}

/* Responsive */
@media (max-width: 768px) {
    .contact {
        padding: 50px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}