/* Styles pour la page de contact */
.contact-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: #fff;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info, .contact-form-container {
    background: #2c2c2c;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.contact-info h2, .contact-form-container h2 {
    font-size: 2.5rem;
    color: #16d7ae;
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: #16d7ae;
    margin-right: 20px;
    width: 1.875rem;
    text-align: center;
}

.info-text h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.info-text p, .info-text a {
    font-size: 1rem;
    color: #ccc;
    text-decoration: none;
}

.info-text a:hover {
    color: #1b4735;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4e9c7d;
    box-shadow: 0 0 10px rgba(0, 255, 153, 0.3);
}

.contact-form textarea {
    resize: vertical;
    min-height: 7.5rem;
}

.privacy-policy {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.privacy-policy input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    accent-color: #16d7ae;
}

.privacy-policy label {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0;
}

.form-submit .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    background: #16d7ae;
    color: #1a1a1a;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-family: 'Orbitron', sans-serif;
}

.form-submit .btn:hover {
    background: #16d7ae;
    transform: translateY(-3px);
}

.form-note {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 20px;
    text-align: right;
}

.map-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-container h2 {
    font-size: 2.5rem;
    color: #16d7ae;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
}

.map-placeholder {
    position: relative;
    background: #2c2c2c;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.map-placeholder img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.6;
}

.map-placeholder p {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
}

@media (max-width: 62rem) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}