/* bleu foncé : #316AB2 */
/* bleu clair : #BFD9F9 */

body {
    padding-top: 85px;
}

@font-face {
    font-family: "Black Ops One";
    src: url("fonts/BlackOpsOne-Regular.ttf") format("truetype");
    font-style: normal;
    font-display: swap;
}

.souligne {
    text-decoration: underline;
}

section {
    margin-bottom: 80px;
}

h2 {
    font-family: "Black Ops One", cursive;
    font-weight: 400;
    font-size: 40px;
    margin-left: clamp(20px, 7vw, 110px); /* responsive */
    margin-bottom: 50px;
}

h3 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    background-color: #BFD9F9;
    padding: 7px 20px;
    border-radius: 10px;
    display: inline-flex;
}

p {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
}

.bouton {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 7px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    background-color: #316AB2;
}

.bouton:hover {
    transform: translateY(-3px);
    background: #0e619f;
    box-shadow: 0 12px 25px rgba(22, 117, 189, 0.3);
}

/* HEADER */

.logo {
    width: min(200px, 25vw); /* responsive */
    margin-left: clamp(15px, 4vw, 60px); /* responsive */
    margin-top: 5px;
    margin-bottom: 5px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 30px); /* responsive */
    flex-wrap: wrap; /* responsive */
    justify-content: flex-end; /* responsive */
}

nav a {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 550;
    text-decoration: none;
    color: #316AB2;
    margin-right: clamp(5px, 1.3vw, 20px); /* responsive */
}

nav a:hover {
    color: #BFD9F9;
}

.contactez-nous {
    padding: 12px 20px;
    color: white;
}

/* ACCUEIL */

.accueil {
    width: 100%;
}

.section-accueil {
    position: relative;
}

.texte-accueil {
    position: absolute;
    top: 40%;
    left: 10%;
    color: white;
    max-width: 80%; /* responsive */
}

.texte-accueil h1 {
    font-size: clamp(40px, 5vw, 70px); /* responsive */
    font-family: "Black Ops One", cursive;
    margin-bottom: 10px;
    font-weight: 400;
}

.texte-accueil p {
    font-size: clamp(20px, 2.5vw, 35px); /* responsive */
    font-family: "Inter", sans-serif;
    margin-top: 0;
}

.bouton-appel {
    padding: 16px clamp(25px, 4vw, 55px); /* responsive */
    background-color: #316AB2;
    text-decoration: none;
    border-radius: 8px;
    font-size: clamp(18px, 2vw, 30px); /* responsive */
    font-family: "Inter", sans-serif;
    font-weight: 500;
    margin: 70px auto;
    display: flex;
    width: fit-content;
    max-width: 90%; /* responsive */
    align-items: center;
    gap: 25px;
}

/* SECTION SERVICES */

.services-container {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    width: 90%; /* responsive */
    margin: 0 auto;
    flex-wrap: wrap; /* responsive */
}

.img-services {
    width: 250px;
    max-width: 100%; /* responsive */
    height: auto; /* responsive */
    display: block;
    margin: 0 auto;
}

.services-container > div {
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 25px;
    box-sizing: border-box; /* responsive */
    flex: 1 1 250px; /* responsive */
}

.savoir-plus {
    display: block;
    margin: 50px auto 0;
    width: fit-content;
    padding: 10px 20px;
}

.services-container h3 {
    display: block;
}

/* SECTION ZONE */

.zone {
    width: 90%;
    max-width: 1200px; /* responsive */
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(30px, 5vw, 80px); /* responsive */
}

.carte {
    position: relative;
    flex: 2;
    min-width: 0;
    width: 100%; /* responsive */
}

#map {
    width: 100%; /* responsive */
    max-width: 900px; /* responsive */
    height: 500px;
    position: relative;
    z-index: 1;
}

.leaflet-top,
.leaflet-bottom {
    z-index: 500;
}

.carte-fond {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* responsive */
    max-width: 900px; /* responsive */
    height: 500px;
    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.01);
    z-index: 2;
}

.bouton-carte {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    background-color: #0066a1;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    white-space: nowrap; /* responsive */
}

.bouton-carte:hover {
    background-color: #004f7d;
}

.carte.carte-active .carte-fond {
    display: none;
}

.carte.carte-active .bouton-carte {
    display: none;
}

.zone-container {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.zone-adresse,
.zone-horaire {
    padding: 10px 15px;
    margin-bottom: 5px;
    width: 70%;
    box-sizing: border-box; /* responsive */
}

.zone-adresse h3,
.zone-horaire h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.zone-adresse p,
.zone-horaire p {
    margin-left: 15px;
}

/* SECTION QUI */

.section-qui h3 {
    align-items: center;
    gap: 15px;
    margin-left: clamp(20px, 13vw, 200px); /* responsive */
}

.presentation p {
    margin-left: clamp(20px, 20vw, 300px); /* responsive */
    line-height: 1.5;
}

.presentation {
    display: flex;
    gap: clamp(30px, 7vw, 100px); /* responsive */
    align-items: center; /* responsive */
}

.img-facade {
    height: auto; /* responsive */
    width: min(100%, 500px); /* responsive */
    border-radius: 15px;
    margin-right: clamp(20px, 20vw, 300px); /* responsive */
}

.decouvrir {
    display: block;
    width: fit-content;
    margin: 50px auto;
    padding: 10px 20px;
}

/* SECTION VALEURS */

.section-valeurs {
    background-color: #BFD9F9;
    padding: 60px 0;
}

.valeurs-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* responsive */
}

.valeurs-container > div {
    width: 250px;
    height: 180px;
    text-align: center;
}

.img-valeurs {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 25px;
}

.valeurs-container h3 {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

/* SECTION AVIS CLIENT */

.avis-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
    padding: 0 20px; /* responsive */
    box-sizing: border-box; /* responsive */
}

.avis {
    width: min(650px, 70%); /* responsive */
}

.etoiles {
    color: #deb510;
    display: flex;
    gap: 5px;
}

.fleche {
    color: #316AB2;
    font-size: 60px;
    font-weight: 700;
    background: none;
    border: none;
}

.avis-google {
    display: block;
    margin: 50px auto 0;
    width: fit-content;
    padding: 10px 20px;
}

/* SECTION FOOTER */

.footer {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.footer-container {
    background-color: #BFD9F9;
    display: flex;
    align-items: center;
    gap: clamp(30px, 11vw, 170px); /* responsive */
    flex-wrap: wrap; /* responsive */
}

.footer-entreprise {
    margin-left: 7%;
    width: min(300px, 80%); /* responsive */
    padding: 30px;
}

.logo-footer {
    width: min(300px, 100%); /* responsive */
}

.reseaux-sociaux {
    display: flex;
    margin-top: 15px;
    gap: 30px;
    justify-content: center;
}

.reseaux-sociaux i {
    font-size: 50px;
    color: #316AB2;
    margin: auto;
}

.footer-contact {
    font-size: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    width: min(800px, 80%); /* responsive */
    min-height: 150px; /* responsive */
    height: auto; /* responsive */
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-coordonnes {
    display: flex;
    gap: clamp(30px, 5vw, 80px); /* responsive */
    flex-wrap: wrap; /* responsive */
    justify-content: center; /* responsive */
}

.footer-coordonnes a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: black;
}

.footer-contact .contactez-nous {
    margin-top: 40px;
}

.footer-legal {
    background-color: #5b91d4;
    min-height: 55px; /* responsive */
    height: auto; /* responsive */
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap; /* responsive */
    padding: 10px 20px; /* responsive */
    box-sizing: border-box; /* responsive */
}

.footer-legal a {
    color: white;
    font-size: 20px;
    margin-top: 5px; /* responsive */
    text-decoration: none;
}











/* PAGE SERVICE */

.ambulances,
.vsl,
.taxi {
    width: 75%;
    max-width: 1200px; /* responsive */
    margin: 100px auto 50px;
}

.titre {
    text-align: center;
    margin-bottom: 70px;
}

.titre h2 {
    margin: 0%;
    font-size: clamp(40px, 4vw, 55px); /* responsive */
    font-weight: 500;
}

.electrocardiogram {
    display: block;
    width: 60%;
    max-width: 900px; /* responsive */
    height: auto;
    margin: 15px auto 25px;
}

.titre p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.5;
}

.situation,
.accompagnement,
.reservation {
    display: flex;
    width: 100%;
    min-height: 250px;
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid #dcecff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(30, 100, 170, 0.08);
}

.icone {
    padding: 30px 50px;
}

.contenu h3 {
    margin-top: 30px;
}

.contenu p {
    margin: 0;
    max-width: 700px;
    font-size: 18px;
    line-height: 1.65;
}

.contenu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contenu li {
    position: relative;
    margin-bottom: 13px;
    padding-left: 25px;
    font-size: 18px;
    line-height: 0.7;
    font-family: "Inter", sans-serif;
}

.reserver-appel {
    display: flex;
    gap: 12px;
    width: fit-content;
    max-width: 90%; /* responsive */
    margin: 50px auto;
    padding: 17px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(22, 117, 189, 0.2);
}

.reserver-appel:hover {
    transform: translateY(-3px);
    background: #0e619f;
    box-shadow: 0 12px 25px rgba(22, 117, 189, 0.3);
}













/* PAGE FAQ */

.question-reponse {
    text-align: center;
}

.lien {
    text-decoration: none;
    color: #0e619f;
    text-decoration: underline;
}

.intro {
    margin: 60px auto 40px auto;
    text-align: center;
    padding: 0 20px; /* responsive */
    box-sizing: border-box; /* responsive */
}

.label {
    padding: 8px 18px;
    background-color: #BFD9F9;
    color: #316AB2;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

.intro h1 {
    margin: 20px 0 15px 0;
    color: black;
    font-size: clamp(34px, 4vw, 45px); /* responsive */
    font-weight: 400;
    font-family: "Black Ops One", sans-serif;
}

.intro p {
    margin: 0;
    color: black;
    font-size: 20px;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
}

.faq-container {
    width: min(900px, 90%); /* responsive */
    margin: 0 auto;
}

.faq-bloc {
    margin-bottom: 12px;
    background-color: white;
    border: 1px solid #BFD9F9;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-bloc summary {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
}

.faq-numero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-width: 40px; /* responsive */
    height: 40px;
    background-color: #316AB2;
    color: white;
    border-radius: 50%;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.faq-question {
    flex: 1;
    color: #16498f;
    font-family: "Inter", sans-serif;
    font-size: 19px;
    font-weight: 600;
}

.faq-fleche {
    color: #316AB2;
    font-size: 28px;
    font-weight: bold;
}

.faq-bloc[open] .faq-fleche {
    transform: rotate(180deg);
}

.faq-reponse {
    padding: 0 78px 22px 78px;
}

.faq-reponse p {
    margin: 0;
    color: black;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

.banniere-contact {
    width: min(900px, 90%); /* responsive */
    margin: 45px auto 70px auto;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    background-color: #eaf3ff;
    border-radius: 12px;
    box-sizing: border-box; /* responsive */
}

.banniere-contact-icone {
    width: 65px;
    min-width: 65px; /* responsive */
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #BFD9F9;
    color: #316AB2;
    border-radius: 50%;
    font-size: 30px;
}

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

.banniere-contact-texte h2 {
    margin: 0 0 5px 0;
    color: #16498f;
    font-family: "Inter", sans-serif;
    font-size: 21px;
}

.banniere-contact-texte p {
    margin: 0;
    color: black;
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

.banniere-contact .contactez-nous {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    background-color: #316AB2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 600;
}










/* PAGE CONTACT */

.intro .electrocardiogram {
    display: block;
    width: 50%;
    max-width: 900px; /* responsive */
    height: auto;
    margin: 15px auto 25px;
}

.coordonnees {
    background-color: #BFD9F9;
    width: 95%;
    border-radius: 40px;
    padding: 30px 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
    box-sizing: border-box;
}

.coordonnees h2 {
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
    font-weight: 600;
    font-size: 35px;
}

.coordonnees > div {
    width: 30%;
    box-sizing: border-box;
}

.contact-telephone,
.contact-mail,
.contact-adresse {
    height: auto;
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #dcecff;
    display: flex;
    align-items: center;
    padding: 20px 10px;
    margin: 0;
}

.contact-icone {
    width: 65px;
    min-width: 65px; /* responsive */
    height: 65px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto 0 auto 20px;
    background-color: #BFD9F9;
    color: #316AB2;
    border-radius: 50%;
    font-size: 30px;
}

.contact-texte {
    width: 65%;
    margin: auto;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

.contact-texte h4 {
    font-size: 20px;
    margin: 10px 0 10px;
}

.contact-lien {
    text-decoration: none;
    color: #316AB2;
    font-size: 20px;
}

.appel-urgence {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-radius: 15px;
    font-size: 20px;
}


/* responsive */

@media (max-width: 900px) {

    .zone {
        flex-direction: column;
    }

    .zone-container {
        width: 100%;
        flex: none;
        flex-direction: row;
    }

    .zone-adresse,
    .zone-horaire {
        width: 50%;
    }

    .presentation {
        flex-direction: column;
    }

    .presentation p {
        margin-left: 40px;
        margin-right: 40px;
    }

    .img-facade {
        margin-right: 0;
        width: min(70%, 500px);
    }

    .coordonnees {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .coordonnees > div {
        width: 80%;
        box-sizing: border-box;
    }

    .services .situation,
    .services .accompagnement,
    .services .reservation {
        display: flex;
        align-items: center;
        gap: 0.1px;
    }

    .services .icone {
        flex-shrink: 0;
        width: 100px;
    }

    .services .icone img {
        width: 100%;
        height: auto;
    }

    .services .contenu {
        flex: 1;
        min-width: 0;
    }

    .services .contenu h3 {
        line-height: 1.2;
    }

    .services .contenu p {
        line-height: 1.4;
    }

    .services .contenu li {
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .footer-container {
        justify-content: center;
    }
}


/* responsive */

@media (max-width: 600px) {

    body {
        padding-top: 70px;
    }

    .logo {
        width: 110px;
        margin-left: 10px;
    }

    nav {
        gap: 3px;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    nav a {
        font-size: 11px;
        margin-right: 2px;
        white-space: nowrap;
    }

    .contactez-nous {
        padding: 6px 9px;
        font-size: 11px;
        white-space: nowrap;
    }

    h2 {
        font-size: 32px;
        margin-left: 20px;
        margin-bottom: 35px;
    }

    .texte-accueil {
        top: 15%;
        left: 6%;
        max-width: 88%;
    }

    .texte-accueil h1 {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .texte-accueil p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .bouton-appel {
        font-size: 15px;
        padding: 10px 18px;
        margin: 20px auto 0;
        max-width: 85%;
    }

    .services-container {
        width: 90%;
    }

    .services-container > div {
        flex: 1 1 100%;
    }

    .zone {
        width: 90%;
    }

    #map,
    .carte-fond {
        height: 350px;
    }

    .zone-container {
        flex-direction: column;
    }

    .zone-adresse,
    .zone-horaire {
        width: 100%;
    }

    .section-qui h3 {
        margin-left: 20px;
    }

    .presentation p {
        margin-left: 20px;
        margin-right: 20px;
    }

    .img-facade {
        width: 90%;
    }

    .valeurs-container {
        gap: 20px;
    }

    .avis-container {
        gap: 10px;
    }

    .avis {
        width: 75%;
    }

    .fleche {
        font-size: 40px;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-entreprise {
        margin-left: 0;
        width: 80%;
        text-align: center;
    }

    .footer-contact {
        width: 90%;
    }

    .footer-coordonnes {
        flex-direction: column;
        gap: 20px;
    }

    .footer-legal {
        gap: 20px;
    }

    .footer-legal a {
        font-size: 15px;
    }

    .ambulances,
    .vsl,
    .taxi {
        width: 90%;
        margin-top: 60px;
    }

    .titre h2 {
        font-size: 40px;
    }

    .electrocardiogram,
    .intro .electrocardiogram {
        width: 90%;
    }

    .situation,
    .accompagnement,
    .reservation {
        flex-direction: column;
    }

    .icone {
        padding: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contenu {
        padding: 0 20px 25px;
    }

    .contenu h3 {
        margin-top: 0;
    }

    .contenu li {
        line-height: 1.3;
    }

    .faq-container,
    .banniere-contact {
        width: 90%;
    }

    .faq-bloc summary {
        gap: 10px;
        padding: 15px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-reponse {
        padding: 0 20px 20px 65px;
    }

    .banniere-contact {
        flex-wrap: wrap;
        padding: 20px;
    }

    .banniere-contact .contactez-nous {
        width: 100%;
    }

    .coordonnees {
        width: 90%;
        padding: 25px 20px;
        border-radius: 30px;
        row-gap: 15px;
    }

    .coordonnees > div {
        width: 100%;
    }

    .contact-icone {
        width: 40px;
        min-width: 40px;
        height: 40px;
        padding: 4px;
        margin-left: 10px;
        font-size: 18px;
    }

    .contact-texte {
        width: 75%;
        min-width: 0;
    }

    .contact-lien {
        font-size: 15px;
        overflow-wrap: anywhere;
    }
}