/* ====================================
PAGE CONTACT - STYLES SPÉCIFIQUES
==================================== */

body {
    background: linear-gradient(100deg, #f9f9f9 0%, #f2f6f9 100%);
}

/* Container principal pour les deux sections */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: calc(100vh - 160px); /* 100vh - hauteur header/footer approx */
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
}

/* Section gauche */
.contact-left-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero section contact */
.hero-divider {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-hero {
    margin-bottom: 2rem;
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.contact-hero .subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--accent-color);
    line-height: 1.6;
    max-width: 450px;
}

hr.content-divider {
    border: none;
    height: 1px;
    background-color: #d8dde2;
    margin: 2rem 0;
    max-width: 450px;
}

/* Informations de contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item .contact-icon {
    color: var(--primary-color);
}

.contact-item .contact-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-item p {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-color);
    font-size: 1rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Section droite */
.contact-right-section {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Formulaire de contact */
.contact-form {
    width: 100%;
    background-color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-group label {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-weight: 500;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #f7f7f7;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    font-style: normal;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #34495e;
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ====================================
RESPONSIVE CONTACT
==================================== */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 1rem;
    }

    .contact-left-section,
    .contact-right-section {
        padding: 2rem 1rem;
    }

    .contact-hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
} 