/*New*/

/* Contact Page */
.contact-hero {
    position: relative;
    background-image: url('../images/background_2.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 120px 20px;
    color: white;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* Overlay pour meilleur contraste */
    z-index: 1;
}

.contact-hero h1, .contact-hero p {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.contact-hero p {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    color: white;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    font-size: 17px;
}

.contact-details svg {
    margin-right: 12px;
    color: var(--primary-color);
}

.contact-details a {
    color: var(--text-color);
    text-decoration: none;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    font-size: 17px;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Submit Button */
.submit-button {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0077ed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .hero h2 {
        font-size: 21px;
    }
    
    .section-content {
        padding: 60px 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 24px;
    }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 17px;
}


