/* ===== PAGE CONTACT ===== */

/* ===== GRILLE (infos + carte) ===== */

.contact-grille
{
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ===== INFOS ===== */

.contact-infos
{
    padding: 30px 20px 24px;
    font-family: Arial, sans-serif;
}

.contact-section-titre
{
    color: #1a1a1a;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 24px;
    padding-bottom: 10px;
    display: inline-block;
    position: relative;
}

.contact-section-titre::after
{
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #E8198B;
    margin-top: 8px;
}

/* Coordonnées */

.contact-coordonnees
{
    margin-bottom: 24px;
}

.contact-adresse
{
    color: #444444;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 10px;
}

.contact-tel a
{
    color: #E8198B;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.contact-tel a:hover
{
    color: #C0134F;
}

/* Badge IAT */

.contact-iat
{
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #FFF0F6;
    border: 1px solid #FFD6EC;
    border-left: 4px solid #E8198B;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 22px;
}

.contact-iat-badge
{
    background: #E8198B;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 8px 12px;
    border-radius: 6px;
    flex-shrink: 0;
    align-self: center;
}

.contact-iat-texte
{
    flex: 1;
}

.contact-iat-titre
{
    color: #1a1a1a;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 6px;
}

.contact-iat-desc
{
    color: #444444;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 8px;
}

/* Liens externes */

.contact-lien-ext
{
    color: #E8198B;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
}

.contact-lien-ext:hover
{
    color: #C0134F;
    text-decoration: underline;
}

/* Térapo Médik */

.contact-terapo
{
    margin-bottom: 16px;
}

.contact-terapo p
{
    color: #555555;
    font-size: 13px;
    line-height: 1.65;
    margin: 0 0 6px;
}

.contact-lien-terapo
{
    display: inline-block;
    color: #ffffff;
    background: #E8198B;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    padding: 7px 18px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.contact-lien-terapo:hover
{
    background: #C0134F;
    color: #ffffff;
}

/* Labo */

.contact-labo
{
    color: #777777;
    font-size: 12px;
    margin: 0;
}

/* ===== CARTE GOOGLE MAPS ===== */

.contact-map
{
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.contact-map iframe
{
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== ACCROCHE ===== */

.contact-accroche
{
    background: #1a0a10;
    padding: 36px 20px 40px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.contact-accroche-principale
{
    color: #E8198B;
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 14px;
    line-height: 1.4;
}

.contact-accroche-secondaire
{
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== RESPONSIVE 726px et plus ===== */
@media only screen and (min-width: 726px)
{
    .contact-grille
    {
        flex-direction: row;
        align-items: stretch;
    }

    .contact-infos
    {
        flex: 1;
        padding: 34px 28px 30px;
    }

    .contact-map
    {
        flex: 1;
        height: auto;
        min-height: 400px;
    }

    .contact-section-titre { font-size: 22px; }
    .contact-accroche-principale { font-size: 19px; }
    .contact-accroche-secondaire { font-size: 15px; }
}

/* ===== RESPONSIVE 991px et plus ===== */
@media only screen and (min-width: 991px)
{
    .contact-infos { padding: 40px 36px 36px; }
    .contact-map { min-height: 460px; }
    .contact-adresse { font-size: 15px; }
    .contact-tel a { font-size: 22px; }
    .contact-accroche { padding: 44px 20px 48px; }
    .contact-accroche-principale { font-size: 20px; }
}
