.container-contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero-contact {
    background: linear-gradient(135deg, #0D2C5B 0%, #77B5FE 100%);
    color: white;
    text-align: center;
    padding: 80px 40px 60px;
}

.hero-contact h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-contact p {
    font-size: 20px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Main Content */
.main-content {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info */
.contact-info {
    background: white;
    padding: 34px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0D2C5B;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0D2C5B 0%, #77B5FE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0D2C5B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-value a {
    color: #0D2C5B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: #FAB9A6;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #FAB9A6 0%, #f8a891 100%);
    padding: 34px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(250, 185, 166, 0.3);
}

.cta-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0D2C5B;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 15px;
    color: #0D2C5B;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    background: #0D2C5B;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(13, 44, 91, 0.3);
}

.btn-primary:hover {
    background: #0a2347;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 44, 91, 0.5);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 34px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0D2C5B;
    margin-bottom: 20px;
}

.contact-form p {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0D2C5B;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #77B5FE;
    box-shadow: 0 0 0 3px rgba(119, 181, 254, 0.1);
}

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

.form-submit {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    background: #FAB9A6;
    color: #0D2C5B;
    padding: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(250, 185, 166, 0.3);
}

.form-submit:hover {
    background: #f8a891;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 185, 166, 0.5);
}

.form-error {
    color: #D93025;
    font-size: 13px;
    margin-top: 4px;
    font-family: 'Lato', sans-serif;
}

fieldset {
    border: none;
    display: grid;
    grid-template-columns: auto 1fr; /* col 1 = checkbox, col 2 = texte */
    column-gap: 15px;
    row-gap: 6px;
    align-items: start;
    margin-bottom: 20px;
}

fieldset label {
    grid-column: 2; /* 2ème colonne, même ligne que l’input */
    grid-row: 1;
    font-size: 14px;
}

fieldset input {
    grid-column: 1; /* 1ère colonne */
    grid-row: 1;
    margin-top: 5px; 
}


.form-note {
    font-size: 12px;
    color: #595959;
    margin-top: 15px;
    text-align: center;
}

.form-note a {
    color: #595959;
    cursor: pointer;
}


input[aria-invalid="true"], textarea[aria-invalid="true"] {
    border: 2px solid #D93025;
    outline: none;
}

fieldset .form-error {
    grid-column: 1 / -1;  /* span des 2 colonnes */
    grid-row: 2;
    color: #D93025;
    font-size: 13px;
    margin-top: 4px;
    font-family: 'Lato', sans-serif;
}


.form-status--error {text-align: center; color:#D93025 !important; margin-top: 10px;}
.form-status--success {text-align: center; color:#0d9301 !important; margin-top: 10px;}

/* Info Section */
.info-section {
    background: #fafafa;
    padding: 60px 40px;
    text-align: center;
}

.info-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0D2C5B;
    margin-bottom: 20px;
}

.info-section p {
    font-size: 16px;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.info-card-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0D2C5B;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: #4a4a4a;
    margin: 0;
}
