@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/Plus_Jakarta_Sans/plus-jakarta-sans-v12-latin-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/Plus_Jakarta_Sans/plus-jakarta-sans-v12-latin-500.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/Plus_Jakarta_Sans/plus-jakarta-sans-v12-latin-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/Plus_Jakarta_Sans/plus-jakarta-sans-v12-latin-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/Plus_Jakarta_Sans/plus-jakarta-sans-v12-latin-800.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: block;
}

:root {
    --color-primary: #5E8478;
    --color-secondary: #B89A73;
    --color-bg: #fffcf8;
    --color-footer: #476F67;
    --color-header: #f6fffc;
}

/* :root {
    --color-primary: #1f978b;
    --color-secondary: #0b409c;
    --color-bg: var(--color-bg);
    --color-footer: #0b409c;
    --color-header: #f8fcff;
} */

* {
    box-sizing: border-box;
}


html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
    word-break: break-word;
    text-align: center;
    font-size: 1.2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    
}

img, video, iframe {
    max-width: 100%;
}

img {
    width: 100%;
    max-width: 300px;
}

.container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/*********************************************************************HEADER**********************************************************************/

#active {
    color: var(--color-primary);
    font-weight: bold;
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform .3s ease;
}

header.hide {
    transform: translateY(-100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 45px 5%;
    background-color: var(--color-header);
}

.navbar > a {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: auto;
}

.dinela_accueil {
    color: var(--color-primary);
}

.logo p {
    font-weight: bold;
    color: var(--color-secondary);          
    margin: 0;                
    font-size: 1.3rem; 
    white-space: nowrap; 
}

.nav-links {
    display: flex;
    list-style: none; 
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;    
    color: #4a4a4a;          
    font-size: 1.15rem;
    transition: color 0.3s ease;
    text-decoration: underline transparent 2px;
    text-underline-offset: 6px; 
    transition: text-decoration 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    text-decoration-color: var(--color-primary);
}

.nav-links a:hover {
    color: var(--color-primary);
}

#nav_rdv {
    background-color: transparent;
    border: 2px solid var(--color-primary);   
    color: var(--color-primary);              
    padding: 12px 20px; 
    border-radius: 25px;           
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

#nav_rdv:hover {
    background-color: var(--color-primary); 
    color: #ffffff;            
}

#menuMobileBtn {
    display: none;
}

/*********************************************************************SECTION 1 **********************************************************************/
.first_section {
    position: relative;
    overflow: hidden;
}

.first_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../src/fond_corps_gauche.png');
    background-position: left center, right center;
    background-repeat: no-repeat, no-repeat;
    background-size: contain, contain;
    opacity: 0.3; 
    z-index: -1;
}


.first_section_div {
    gap: 100px;
    text-align: left;
    display: flex;     
    align-items: center;
}


.first_section_div img {
    max-width: 450px;
}


.content-left {
    padding: 20px;
    max-width: 700px;
}


.ombre_dinela {
    width: 100%;
    position: relative;

    -webkit-mask-image:
        linear-gradient(to left, black 0%, transparent 85%),
        linear-gradient(to top, transparent 0%, black 35%);
    mask-image:
        linear-gradient(to left, black 0%, transparent 85%),
        linear-gradient(to top, transparent 0%, black 35%);
}



/*******************POUR LES BOUTONS SECTION 1********************/
.btn-group-section1 {
    display: flex;
    gap: 15px;       
    margin-top: 65px;
    justify-content: center;
}


.btn-primary, .btn-secondary {
    flex: 1;
    padding: 12px 34px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    max-width: 300px;
}

.btn-group-section2 .btn-primary {
padding: 0;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
}

.btn-primary a {
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 12px 34px;
}

.btn-primary:hover {
    background-color: #4a685e;
}


.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: #fffaf6;
}

.deuxieme_numero_accueil:hover {
    background-color: #faf3ee;
}



/***********************Pour l'icone avec l'adresse**********************/

.adresse-container {
    display: flex;
    align-items: center;
    gap: 10px;      
    margin: 20px 0; 
}

.text_map_section1 {
    margin-top: 3px;
    color: #5E8478;
}

.icon-round {
    width: 46px;
    height: 46px;
    background-color: #f7fdfb;
    border-radius: 50%;       
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.icon_section1_pos {
    width: 25px;
    height: 25px;    
    fill: currentColor;
    color: var(--color-primary);
}


.adresse-text {
    color: #15645c; 
    font-size: 1.15rem;
    font-weight: 500;
    text-decoration: underline 1px #15645c;
    text-underline-offset: 4px;
}


/***********************Pour le premier paragraphe**********************/

.first_div_p {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
    color: #2d3436;
    margin-top: 10px;
}

.no_wrap_class {
    text-wrap: nowrap;
}

.blue-text {
    background: linear-gradient(to right, var(--color-secondary), #ffead0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block; 
}

.green-text {
    color: var(--color-primary); 
}



/*********************************************************************div border**********************************************************************/
.div_border {
    width: 100%;
    height: 23px;
    background: linear-gradient(to right, var(--color-primary), #d8fff3);
}

.div_border2 {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--color-secondary), #fff3e2);
}




/*********************************************************************SECTION 2 **********************************************************************/

.seance-section {
    position: relative;
    padding: 20px;
    padding-top: 10px;
    text-align: center;
    overflow: hidden;
}

.seance-section h2 {
    font-size: 1.8rem;
    color: #2d3436;
    font-weight: 500;
}

.seance-section h2 span {
    color: var(--color-primary);
    font-style: italic;
    font-weight: 600;
}

.seance-section h2 .span_accompagnement {
    margin-right: 4px;
    color: var(--color-secondary);
}



/*********************************************************************SECTION SOINS  **********************************************************************/

.soins-section {
    background-color: var(--color-bg);
}


/***********************Pour le titre soins**********************/
.soins-title { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 2.1rem;
    margin-top: 0;
    padding: 45px 0;
}

.first_dot {
    color: var(--color-primary); 
    font-size: 15px;
} 

.second_dot { 
    color: var(--color-secondary); 
    font-size: 15px;
    margin-right: 15px;
}

.text_vert { 
    color: var(--color-primary); 
    margin-right: 6px;
}

.text_blue { 
    color: var(--color-secondary); 
}


/***********************Pour les articles soins**********************/
.div_soins_card {
    gap: 40px;
    text-align: left;
    display: flex;   
    padding-bottom: 50px;
    align-items: stretch;
}

.div_soins_card article {
    background-color: white;
    border-radius: 25px;
    width: 325px;
    padding: 30px;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.div_soins_card article h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    margin-top: 40px;
}

.div_soins_card article a {
    margin-top: auto;
    margin-left: auto;
    font-weight: bold;
    text-decoration: none;
    color: var(--color-secondary);
}

.div_soins_card article .a_pair {
    color: var(--color-primary);
}

.div_soins_card article p {
    margin-bottom: 30px;
}

.div_soins_card article svg {
    width: 70px;
    height: 70px;
    display: block;
    fill: currentColor;
    color: white;
    padding: 9px;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.div_soins_card article:nth-child(even) {
    margin-top: 50px;
    h3 {
        color: var(--color-secondary);
    }
    svg {
        background-color: #5E8478;
    }
}

.div_soins_card article:nth-child(odd) {
    margin-bottom: 50px;
    h3 {
        color: var(--color-primary);
    }
    svg {
        background-color: #B89A73;
    }
}

.div_soins_card article:nth-child(even):hover {
    background-color: #f1fffb;
    svg {
        background-color: white;
        color: var(--color-primary);
    }
    cursor: pointer;
}

.div_soins_card article:nth-child(odd):hover {
    background-color:   #fff6ea;
    svg {
        background-color: white;
        color: var(--color-secondary);
    }
    cursor: pointer;
}


.article_drop {
    opacity: 0;
    transform: translateY(-80px) rotate(-2deg) scale(.92);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0);
}

.article_drop.show {
    animation: dropCard .9s cubic-bezier(.22,1,.36,1) forwards;
}

@keyframes dropCard {

    0% {
        opacity: 0;
        transform: translateY(-80px) rotate(-2deg) scale(.92);
        box-shadow: 0 0 0 rgba(0,0,0,0);
    }

    65% {
        opacity: 1;
        transform: translateY(12px) rotate(.5deg) scale(1.02);
        box-shadow: 0 35px 60px rgba(0,0,0,.18);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(0) scale(1);
        box-shadow: 0 12px 30px rgba(0,0,0,.08);
    }
} 

.h3_soins_primary {
    color: var(--color-primary)
}

.h3_soins_secondary {
    color: var(--color-secondary)
}




/*********************************************************************SECTION SYMPTOMES**********************************************************************/

.symptome-section {
    background-color: var(--color-bg);
    padding-bottom: 50px;
}


.symptome-title { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 2.1rem;
    margin-top: 0;
    padding: 30px 0;
}

.div_symptome_card {
    margin: auto;
    max-width: 800px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}

.div_symptome_card a {
    width: 18%;
    height: 140px;
    background-color: white;
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: center;
    padding: 0 15px;
    font-weight: 500;
    border-radius: 15px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
	color: inherit;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.05);
}

.div_symptome_card a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.09);
}





/*********************************************************************SECTION VOTRE OSTEO **********************************************************************/
.section_votre_osteo {
    display: flex;
    justify-content: space-between;
    padding: 90px 0;
    text-align: left;
}

.votre_osteo_title { 
    display: flex; 
    align-items: center; 
    font-size: 2.1rem;
    margin-top: 0;
}

.profil-text {
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0 20px 0;
}

.social-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.social-links i {
    margin-right: 10px;
    color: var(--color-secondary);
}

.btn-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 800;
    margin-left: auto;
}

.content-left-profil {
    width: 40%;
    display: flex;
    flex-direction: column;
}

.section_votre_osteo img {
    max-width: 450px;
    width: 450px;
    max-height: 480px;
    margin-right: 100px;

    transform: translateX(150px);
    opacity: 0;

    will-change: transform, opacity;
}

.section_votre_osteo img.show {
    animation: slidePremium 1.35s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes slidePremium {

    from {
        transform: translateX(150px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }

}



/*********************************************************************SECTION DEROULEMENT **********************************************************************/

.deroulement_section {
    background-color: var(--color-bg);
}

.deroulement-title { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 2.1rem;
    margin-top: 0;
    padding: 45px 0;
}

.div_deroulement_card {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-bottom: 80px;
}

.div_deroulement_card article {
    width: 350px;
    background-color: var(--color-secondary);
    color: white;
    border-radius: 20px;
    padding: 20px 40px;
}

.div_deroulement_card article svg {
    width: 70px;
    height: 70px;
    display: block;
    fill: currentColor;
    color: var(--color-secondary);
    background-color: white;
    padding: 11px;
    border-radius: 50%;
    margin: auto;
}




/*********************************************************************SECTION MAPS **********************************************************************/

.maps_section {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.maps_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../src/monde.png');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2; 
    z-index: -1;
}

.maps_title { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 2.1rem;
    margin: 0;
    padding: 55px 0;
}

.maps_header_card .title-maps-container p {
    margin-top: 0;
    font-size: 1.1rem;
}

.maps_header_card .title-maps-container h3 {
    margin-bottom: 0;
}

.div_maps_content {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;    
    font-weight: 600;
}

.div_maps_65 {
    z-index: -1;
    width: 65%;
}

.div_maps_65 img{
    width:90%;
    display:block;
    border-radius:30px;
    box-shadow:0 12px 35px rgba(0,0,0,.12);

    transform: scale(1);

    will-change: transform, box-shadow;

    transition:
        transform 0.8s cubic-bezier(.22,.9,.2,1),
        box-shadow 0.8s cubic-bezier(.22,.9,.2,1);
}

.div_maps_65 img.pulse{
    transform: scale(1.015);
    box-shadow:0 25px 65px rgba(0,0,0,.33);
}




.div_maps_40 {
    width: 40%;
}

.div_maps_content article svg {
    width: 50px;
    height: 50px;
    display: block;
    fill: currentColor;
    color: white;
    background-color: var(--color-secondary);
    padding: 11px;
    border-radius: 50%;
}

.div_maps_content img {
    max-width: none;
    border-radius: 25px;
    box-shadow: 0 0px 20px rgb(0, 0, 0, 0.1);
}

.div_maps_content article {
    margin-left: -90px;
    background-color: white;
    border-radius: 25px;
    padding: 30px 40px;
    font-size: 1.3rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0px 20px rgb(0, 0, 0, 0.2);
    z-index: 2;
    text-align: left;
}

.maps_header_card {
    display: flex;
    align-items: center;
}

.div_maps_content article p, .maps_header_card h3 {
    margin: 10px;
}


.divider_maps {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 120px;
    background-color: var(--color-primary);
    height: 3px;
}

.info-item {
    display: flex;
    align-items: center; 
    margin: 15px 0;      
    font-size: 1.2rem;   
}

.info-item::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0; 
}

.info-item:nth-child(odd)::before {
    background-color: var(--color-secondary); 
}

.info-item:nth-child(even)::before {
    background-color: var(--color-primary);
}

.info-item a {
    text-decoration: underline;
    color: inherit;
}



/*********************************************************************SECTION PREMIER PAS **********************************************************************/

.premier_pas_section {
    background-color: var(--color-bg);
    padding: 10px 20px 60px 20px;
    text-align: center;
}

.premier_pas_div h2 {
    font-size: 3rem;
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.3;
}

.premier_pas_div h2 span {
    text-decoration: underline;
    text-decoration-color: #d8a28b;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.btn-group-section2 {
    display: flex;
    gap: 15px;       
    margin-top: 65px;
    justify-content: center;
}



/*********************************************************************FOOTER **********************************************************************/
footer {
    background-color: var(--color-footer);
    color: white;
}

.footer_div1 {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    align-items: center;
}

.div_logo_footer {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 10px;
    margin: 10px;
    color: var(--color-secondary);
}

.div_logo_footer img {
    width: 70px;
    margin: auto;
    height:70px;
    background-color: #e2f0eb;
    border-radius: 50%;
    padding: 8px;
}

.div_logo_footer h3 {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 1.3rem;
}

.footer_div1 a {
    color: white;
    margin: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    text-wrap: nowrap;
}

.footer_separate {
    width: 100%;
    height: 1px;
    background-color: #96c2b4;
    opacity: 0.2;
}

.footer_div2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding: 30px 0;
    width: 98%;
    margin: auto;
}

.footer_reseaux {
    font-size: 2.2rem;
}

.footer_reseaux a {
    margin-right: 25px;
    font-size: 2rem;
}

.div_logo_footer .text_vert {
    color: #ddf0e9;
    margin-right: 2px;
}



/***************logo doctolib******************/
.doctolib-fixed {
    position: fixed;     
    bottom: 30px;        
    right: 30px;         
    z-index: 9999;       
    width: 60px;         
    height: 60px;
    border-radius: 50%;  
    transition: transform 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 119, 204, 0.6);
    background-color: white;
}

.doctolib-fixed:hover {
    transform: scale(1.1); 
}

.doctolib-fixed img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}





/*************************************CONTACT*********************************/

.contact .contact_section{
    padding:60px 20px;
}

.contact .contact_container{
    max-width:700px;
    margin:auto;
}

.contact .contact_form{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact .double_input{
    display:flex;
    gap:20px;
}

.contact .double_input .input_group{
    flex:1;
}

.contact .input_group{
    display:flex;
    flex-direction:column;
}

.contact .input_group label{
    margin-bottom:8px;
    font-size:1.15rem;
    color:#163d8b;
    font-weight:500;
    text-align: left;
}

.contact .input_group input,
.contact .input_group textarea{
    width:100%;
    border:1px solid #d8d8d8;
    border-radius:10px;
    padding:15px 18px;
    font-size:1rem;
    font-family:inherit;
    outline:none;
    transition:.25s;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.contact .input_group input{
    height:46px;
}

.contact .input_group textarea{
    min-height:180px;
    resize:vertical;
}

.contact .input_group input:focus,
.contact .input_group textarea:focus{
    border-color:var(--color-secondary);
    box-shadow:0 0 0 3px rgba(11,64,156,.12);
}

.contact .btn_envoyer{
    align-self:center;
    padding:15px 34px;
    border:none;
    border-radius:30px;
    background:#777;
    color:white;
    font-size:1.5rem;
    cursor:pointer;
    transition:.3s;
    margin-top: 15px;
}

.contact .btn_envoyer:hover{
    background:#5f5f5f;
}


.contact_title { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 2.1rem;
    margin: 0;
    padding-bottom: 45px;
}

.input_group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font: inherit;
    background: #fff;
    cursor: pointer;
}





/*************************************FAQ*********************************/

.faq {
    max-width: 900px;
    margin: 50px auto;
}

.faq_title { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 2.1rem;
    margin: 0;
    padding-bottom: 45px;
}

.faq_section {
    max-width: 90%;
    margin: auto;
}

.faq_item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq_item summary {
    text-align: left;
    padding: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    list-style: none;
    transition: background 0.3s;
}

.faq_item summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 17px;
    float: right;
}

.faq_item summary::-webkit-details-marker {
    display: none;
}


.faq_item[open] summary::after {
    content: "−";
}

.faq_item summary:hover {
    background: #f5f5f5;
}

.faq_item p {
    padding: 0 20px 20px;
    line-height: 1.6;
    text-align: left;
}

.faq_section .faq_rdv, .faq_rdv {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);    
    margin: 20px 0 30px 0;       
    padding: 12px 20px; 
    border-radius: 25px;           
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.faq_section .faq_rdv:hover, .faq_rdv:hover {
    background-color: var(--color-secondary); 
    color: #ffffff;            
}



/*************************************DETAILS*********************************/

.details_section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 50px 0;
    width: 1200px;
    max-width: 90%;
    margin: auto;
}


.content-left-details {
	width: 50%;
    text-align: left;
}


.details_text {
	margin-top: 30px;
}


.details_text p {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 25px;
}


.details_points {
    margin-left: 50px;
	margin-top: 20px;
}


.detail_box {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 15px;
}


.detail_box span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
    padding-bottom: 5px;
	background: var(--color-primary);
	color: white;
	border-radius: 5px;
	font-size: 22px;
	flex-shrink: 0;
}


.detail_box p {
	margin: 0;
	font-size: 17px;
	line-height: 1.5;
}


.details_section img {
	max-width: 400px;
	height: 430px;
}

.details_section .details_section_img2 {
    max-width: 450px;
	height: 350px;
}

.details_2 {
    background-color: var(--color-bg);
    width: 100%;
    max-width: 100%;
}

.details_2 .section2_details {
    padding-top: 30px;
    padding-bottom: 15px;
}

.details_rdv {
    margin-bottom: 60px;
}

.span_details_primary {
    color: var(--color-primary);
}

.span_details_secondary {
    color: var(--color-secondary)
}


/*************************************SOINS*********************************/

.soins .details_points {
    max-width: 1100px;
    width: 70%;
    margin: auto;
}

.section_femme_enceinte, .section_enfants_bebes {
    background-color: var(--color-bg);
}

.soins .details_section {
    padding-bottom: 30px;
}


.soins_section article {
    border-radius: 25px;
    width: 325px;
    padding: 30px;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.soins_section:nth-child(odd) article {
    background-color: var(--color-bg);
    svg {
        background-color: var(--color-secondary);
    }
}

.soins_section:nth-child(even) article {
    background-color: white;
    svg {
        background-color: var(--color-primary);
    }
}


.soins_section article svg {
    width: 70px;
    height: 70px;
    display: block;
    fill: currentColor;
    color: var(--color-bg);
    padding: 9px;
    border-radius: 50%;
    background-color: #325ca5;
}

.soins section {
    scroll-margin-top: 130px;
}

.symptome-item {
    display: none; 
    opacity: 0;    
    transition: opacity 0.4s ease;
    padding: 30px;
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-left: 5px solid var(--color-primary);
    border-radius: 8px;
    margin-top: 20px;
}

.symptome-item.actif {
    display: block;
    opacity: 1;
    margin-bottom: 70px;
    margin-top: 0;
}

.symptome-item.actif img {
    width: 200px;
    height: 200px;
}

.symptome-item h3 {
    color: var(--color-secondary);
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.symptome-item p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    text-align: left;
}

.content_menu_deroulant {
    width: 90%;
    max-width: 800px;
    margin: auto;
}

.modern-select {
    width: 100%;
    max-width: 500px;
    padding: 15px 20px;
    font-size: 16px;
    font-family: sans-serif;
    color: #333;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px; /* Coins arrondis modernes */
    cursor: pointer;
    appearance: none; /* Supprime le design par défaut du navigateur */
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23777777%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
    transition: all 0.3s ease;
    margin-bottom: 50px;
}

.modern-select:hover {
    border-color: #acacac;
}

.modern-select:focus {
    outline: none;
}

.modern-select option {
    padding: 10px;
}




/*************************************RESPONSIVE DESKTOP*********************************/

@media screen and (max-width:1400px) {
    .first_div_p {
        font-size: 2.2rem;
    }
    .profil-text {
        margin: 10px;
    }
    .div_soins_card article {
        font-size: 1.05rem;
        padding: 20px;
    }
    .div_soins_card article h3 {
        margin-top: 25px;
    }
    .div_soins_card article svg {
        height: 60px;
        width: 60px;
    }
    .div_soins_card {
        gap: 30px;
    }
    .div_maps_content article p {
        font-size: 1rem;
    }
    .footer_reseaux {
        margin-right: 20px;
    }
    .nav-links {
        gap: 30px;
    }
}

@media screen and (max-width:1250px) {
    .nav-links {
        gap: 25px;
    }
    .first_section_div {
        gap: 50px;
    }
    .btn-group-section1 {
        margin-top: 40px;
    }
    .first_div_p {
        font-size: 2rem;
    }
    .first_section_div img {
        max-width: 400px;
    }
    #nav_rdv, .nav-links a {
        font-size: 1.1rem;
    }
    .navbar {
        padding: 45px 3%;
    }
    .logo p {
        font-size: 1.15rem;
    }
    .btn-primary, .btn-secondary {
        padding: 12px 28px;
    }
    .div_soins_card article p {
        margin-bottom: 20px;
    }
    .div_soins_card article {
        font-size: 1rem;
    }
    .section_votre_osteo img {
        margin-right: 0;
        width: 400px;
        max-height: 430px;
    }
    .divider_maps {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .div_maps_content article p {
        margin: 5px 0;
    }
    .premier_pas_div h2 {
        font-size: 2.5rem;
    }
    .btn-group-section2 {
        margin-top: 50px;
    }
    .subtitle {
        margin-left: 10px !important;
    }
    .div_logo_footer img {
        height: 60px;
        width: 60px;
    }
}

@media screen and (max-width : 1100px) {
    .first_div_p {
        font-size: 1.7rem;
    }
    .btn-primary, .btn-secondary {
        font-size: 1rem;
    }
    #nav_rdv, .nav-links a {
        font-size: 1rem;
    }
    #nav_rdv {
        padding: 10px 20px;
    }

    .logo p {
        font-size: 1.1rem;
    }
    .div_soins_card article h3 {
        font-size: 1.3rem;
    }
    .profil-text {
        font-size: 1.1rem;
    }
    .footer_reseaux {
        margin-right: 30px;
    }
    .footer_div1 a {
        font-size: 1rem;
    }
    .div_logo_footer h3 {
        font-size: 1.2rem;
    }
    .nav-links {
        gap: 20px;
    }
}

.overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 998;
}

.overlay.active{
    opacity: 1;
    visibility: visible;
}


/************************RESPONSIVE tablette***********************/

@media screen and (max-width : 1024px) {
    
    .details_section img {
        margin-top: 30px;
    }

    header #nav_rdv {
        display: none;
    }

    .navbar{
        padding: 12px 5%;
    }

    #menuMobileBtn {
        display: flex;
    }

    .icon_mobile {
        justify-content:center;
        align-items:center;

        width:45px;
        height:45px;

        border:none;
        background:none;

        font-size:1.8rem;
        color:var(--color-secondary);

        cursor:pointer;
        z-index:1001;
    }

    .nav-links{
        position:fixed;

        top:0;
        right:-100%;

        width:280px;
        height:100vh;

        margin:0;
        padding:100px 0;

        flex-direction:column;
        justify-content:flex-start;
        align-items:center;
        gap:35px;

        background:#ffffff;

        transition:right .35s ease;

        box-shadow:-10px 0 30px rgba(0,0,0,.12);

        z-index:999;
    }

    .nav-links.active{
        right:0;
    }

    .nav-links li{
        width:100%;
        text-align:center;
    }

    .nav-links a{
        display:block;
        padding:15px;
        font-size:1.25rem;
    }

    .ombre_dinela {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 250px;
        height: inherit;
        display: none;
    }

    .div_border {
        margin-top: -7px;
    }

    .seance-section h2 {
        font-size: 1.4rem;
    }


    .div_soins_card {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        align-items: stretch;
        text-align: left;
        padding-bottom: 70px;
    }

    .div_soins_card > * {
        flex: 0 0 calc(50% - 20px);
    }

    .div_soins_card article {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    #osteo_title_mobile {
        display: flex !important;
        justify-content: center;
    }

    #osteo_title_pc {
        display: none;
    }

    .section_votre_osteo {
        flex-direction: column-reverse;
        padding: 40px 0;
    }

    .content-left-profil {
        width: 100%;
    }

    .section_votre_osteo img {
        margin: auto;
        width: 300px;
        margin-bottom: 20px;
    }
    
    .profil-text {
        font-size: 1rem;
    }

    .div_deroulement_card {
        flex-direction: column;
        align-items: center;
    }

    .premier_pas_div h2 {
        font-size: 2.1rem;
    }

    .div_maps_content {
        display: flex;
        flex-direction: column;
    }

    .div_maps_65 {
        max-width: 500px;
        width: 100%;
    }

    .div_maps_40 {
        max-width: 400px;
        width: 80%;
    }

    .div_maps_40 article {
        margin-left: 0;
    }

    .maps_title {
        padding: 35px 0px;
    }

    .footer_div1 {
        flex-direction: column;
    }

    .footer_reseaux {
        margin-right: 40px;
    }

    .doctolib-fixed {
        width: 50px;
        height: 50px;
    }

    footer nav {
        margin-bottom: 30px;
    }

    .details section {
        flex-direction: column;
    }

    .details_2 .section2_details {
        flex-direction: column-reverse;
    }

    .content-left-details {
        width: 100%;
    }

    .soins_section article {
        display: none;
    }

    .soins section {
        scroll-margin-top: 50px;
    }

    
    .div_maps_65 img {
        width: 100%;
    }
}



/************************RESPONSIVE mobile***********************/

@media screen and (max-width : 767px) {
    .logo img {
        height: 35px;
    }

    .div_soins_card > * {
        flex: 0 0 100%;
    }

    .div_soins_card article svg, .div_soins_card article h3 {
        margin: auto;
        margin-bottom: 10px;
    }

    .btn-group-section1 {
        flex-direction: column;
        align-items: center;
        margin: auto;
        max-width: 250px;
    }

    .btn-group-section2 {
        flex-direction: column;
        align-items: center;
        margin: auto;
        max-width: 250px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .btn-primary a {
        padding: 16px 34px;
    }

    .no_wrap_class {
        text-wrap: wrap;
    }

    .soins-title {
        margin-bottom: 0;
        font-size: 1.9rem;
    }

    #osteo_title_mobile {
        font-size: 1.9rem;   
    }

    .deroulement-title {
        font-size: 1.9rem;
        margin-bottom: 0    ;
    }

    .div_deroulement_card article {
        max-width: 90%;
    }

    .title-maps-container {
        font-size: 1.2rem;
    }
    .div_maps_40 article {
        padding: 30px;
    }
    .premier_pas_div h2 {
        font-size: 1.8rem;
    }
    .footer_div2 {
        flex-direction: column;
    }
    .footer_reseaux {
        margin-right: 0;
    }

    .div_symptome_card {
        font-size: 0.8rem;
    }

    .div_symptome_card article {
        font-size: 0.9rem;
        height: 130px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .div_symptome_card a {
        width: 30%;
    }

    .details_section img {
        max-width: 350px;
        height: 380px;
    }

    /****PAGE CONTACT****/
    .contact .double_input{
        flex-direction:column;
        gap:25px;
    }

    .contact .btn_envoyer{
        width:100%;
        max-width:250px;
    }

    .soins .details_points {
        width: 80%;
    }
}





@media screen and (max-width : 450px) {

    .logo img {
        height: 30px;
    }

    .logo p {
        font-size: 1rem;
    }

    .logo {
        gap: 8px;
    }

    #menuMobileBtn {
        font-size: 1.4rem;
    }

    .first_div_p {
        font-size: 1.4rem;
        margin-top: 0;
        margin-bottom: 0;
    }

    .p_first_div {
        font-size: 1rem;
    }

    .adresse-text {
        font-size: 0.9rem;
    }

    .btn-more {
        font-size: 1rem;
    }
    
    .deroulement-title {
        font-size: 1.7rem;
        margin-bottom: 0    ;
    }

    #osteo_title_mobile .second_dot,
    .deroulement-title .second_dot {
        margin-right: 5px;
    }

    .div_maps_40 article {
        width: 100%;
        padding: 15px;
    }

    .div_maps_40 {
        width: 100%;
    }

    .maps_section {
        padding-bottom: 50px;
    }

    .premier_pas_div h2 {
        font-size: 1.45rem;
    }
    .premier_pas_section {
        padding-bottom: 45px;
    }

    .navbar {
        padding: 8px 5%;
    }

    .div_symptome_card article {
        font-size: 0.8rem;
        height: 100px;
    }

    .faq_title {
        font-size: 1.7rem;
    }

    .votre_osteo_title, .contact_title, .symptome-title, .maps_title {
        font-size: 1.8rem;
    }

    .details_section img {
        max-width: 320px;
        height: 350px;
    }

}