:root{

    --primary:#000000;
    --primary-hover:#243c56;
    --primary-light:rgba(47,79,111,.08);
    --accent:#b8965d;
    --bg-light:#ffffff;
    --bg-beige:#f7f5f2;
    --text-dark:#1f2937;
    --text-muted:#6b7280;
    --border-color:#e5e7eb;
    --font-serif: 'Segoe UI', sans-serif;
    --font-sans: 'Segoe UI', sans-serif;
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

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

.btn-primary:hover{
    background:var(--primary-hover);
}

.btn-secondary{
    border:1px solid #d1d5db;
    color:var(--text-dark);
    background:white;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.btn-outline:hover {
    background-color: #ffffff;
    color: var(--primary);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    font-weight: 600;
}
.btn-outline-dark:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-contact {
    background-color: #ffffff;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}
.btn-contact:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-text {
    color: var(--primary);
    font-weight: 600;
    gap: 8px;
}
.btn-text:hover {
    gap: 14px;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}
.section-title h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.trouble-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.trouble-actions .btn {
    margin: 0;
    white-space: nowrap;
}

.main-header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
}

.header-solid {
    position: static;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-bottom: 1px solid var(--border-color);
}

.header-solid .nav-link {
    color: var(--text-dark);
}

.header-solid .nav-link:hover {
    color: var(--primary);
}

.header-solid .nav-link::after {
    background: var(--primary);
}

.header-solid .header-actions .btn {
    background: var(--primary);
    color: #ffffff;
}

.header-solid .header-actions .btn:hover {
    background: var(--primary-hover);
    color: #ffffff;
}

.header-solid .burger-menu span {
    background-color: var(--text-dark);
}

.header-container{
    max-width:1280px;
    height:90px;
    margin:auto;
    padding:0 40px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.header-solid .language-btn {
    color: #000;
    border: 1px solid #d1d5db;
    background: transparent;
}

.header-solid .language-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.mobile-language-link,
.mobile-contact-link {
    display: none;
}

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

    .mobile-language-link,
    .mobile-contact-link {
        display: block;
    }

    .header-actions {
        display: none;
    }
}

.logo{
    display:flex;
    align-items:center;
    margin-right: 60px;
}

.logo img{
    height:52px;
    width:auto;
    transition:all .35s ease;
}

.logo img:hover{
    transform:scale(1.04);
}

.nav-list{
    display:flex;
    align-items:center;
    gap:42px;
    list-style:none;
}

.nav-link{
    position:relative;
    color:#fff;
    text-decoration:none;
    font-size:.95rem;
    font-weight:500;
    letter-spacing:.3px;
    transition:.3s ease;
    white-space: nowrap;
}


.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:white;
    border-radius:20px;
    transition:.35s ease;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.nav-link:hover{
    color:white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: 32px;
    flex-shrink: 0;
}

.header-actions .btn {
    padding: 12px 28px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0;
    transition: var(--transition);
}

.header-actions .btn:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 16px;
}

.lang-btn {
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    color: #1f2937;
    padding: 6px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
}

.lang-btn.active {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.language-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #000000;
    transform: translateY(-2px);
}

.hero-section {
    position: relative;
    background-image: url('images/image_cediapsy.png');    background-size: cover;
    background-position: center;
    padding: 140px 0 100px 0;
    color: #ffffff;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-container{
    position:relative;
    z-index:2;
    max-width:760px;
    text-align:center;
    padding-top:90px;
}

.hero-container h1{
    font-size:4.5rem;
    line-height:1.1;
    margin-bottom:24px;
    font-weight:700;
}

.hero-container h1,
.hero-container .hero-subtitle {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.9s ease forwards;
}

.hero-container .hero-subtitle {
    animation-delay: 0.35s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-gold{
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle{
    max-width:650px;
    margin:auto;
    font-size:1.15rem;
    line-height:1.8;
    opacity:.92;
}

.modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9999;
}

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

.modal-box{
    width:min(700px,92%);
    background:#fff;
    border-radius:18px;
    padding:35px;
    position:relative;
    max-height: 85vh; 
    overflow-y: auto;  /
}

@keyframes popup{

    from{
        transform:translateY(25px);
        opacity:0;}
    to{
        transform:translateY(0);
        opacity:1;}

}

.modal-close{
    position:absolute;
    top:15px;
    right:18px;
    border:none;
    background:none;
    font-size:2rem;
    cursor:pointer;
}

.modal-box h2{
    margin-bottom:10px;
}

.modal-box>p{
    color:#777;
    margin-bottom:25px;
}

.modal-praticiens{
    display:grid;
    gap:18px;
}

.modal-praticiens .praticien-mini-card{
    border:1px solid #ececec;
    border-radius:12px;
    padding:18px 22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.evaluations-section {
    padding: 95px 0;
    background: #fbfaf8;
    border-top: 1px solid rgba(15, 37, 68, 0.06);
}

.evaluations-header {
    max-width: 950px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #ca6e5a;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: "";
    width: 30px;
    height: 1px;
    background: #ead3cb;
}

.evaluations-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.08;
    color: var(--primary);
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.title-decoration span {
    width: 55px;
    height: 1px;
    background: #e4d4a9;
}

.title-decoration i {
    width: 9px;
    height: 9px;
    margin: 0 8px;
    background: #caa24f;
    transform: rotate(45deg);
}

.evaluations-header p {
    color: #53647a;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.eval-category-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 30px 0 18px;
}

.category-icon {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
}

.eval-category-title h3 {
    flex-shrink: 0;
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.category-line {
    width: 100%;
    height: 1px;
    background: #d9d7d2;
}

.eval-category-diagnostic h3 {
    color: #c96150;
}

.eval-category-diagnostic .category-icon {
    color: #dc715e;
    background: #fae8e3;
}

.eval-category-care h3 {
    color: #bd9027;
}

.eval-category-care .category-icon {
    color: #c99b2e;
    background: #faf1d9;
}

.eval-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 30px;
}

.eval-card {
    min-height: 320px;
    padding: 30px 30px 25px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(15, 37, 68, 0.06);
    box-shadow: 0 10px 28px rgba(15, 37, 68, 0.06);
    display: flex;
    flex-direction: column;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.eval-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(15, 37, 68, 0.11);
}

.eval-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.eval-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.diagnostic-card .eval-icon {
    background: #fae8e3;
    color: #db705d;
}

.care-card .eval-icon {
    background: #faf2de;
    color: #c89b32;
}

.eval-card h3 {
    color: #102947;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 600;
    margin: 5px 0 8px;
}

.eval-small-line {
    display: block;
    width: 34px;
    height: 2px;
}

.diagnostic-card .eval-small-line {
    background: #df725f;
}

.care-card .eval-small-line {
    background: #cda13d;
}

.eval-card > p {
    color: #40536a;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 20px;
}

.eval-list-items {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.eval-list-items li {
    position: relative;
    color: #24364c;
    font-size: 0.91rem;
    line-height: 1.45;
    margin-bottom: 9px;
    padding-left: 23px;
}

.eval-list-items li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -3px;
    font-size: 1.35rem;
}

.diagnostic-card .eval-list-items li::before {
    color: #df725f;
}

.care-card .eval-list-items li::before {
    color: #cda13d;
}

.eval-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    width: fit-content;
    margin-top: auto;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: gap 0.25s ease;
}

.diagnostic-card .eval-link {
    color: #d7614d;
}

.care-card .eval-link {
    color: #bd8e25;
}

.eval-link span {
    font-size: 1.25rem;
    font-weight: 400;
}

.eval-link:hover {
    gap: 18px;
}

@media (max-width: 1050px) {
    .eval-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .evaluations-section {
        padding: 70px 0;
    }

    .evaluations-header {
        margin-bottom: 40px;
    }

    .evaluations-header h2 br,
    .evaluations-header p br {
        display: none;
    }

    .eval-category-title {
        gap: 12px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .eval-category-title h3 {
        font-size: 0.82rem;
        letter-spacing: 0.07em;
    }

    .eval-grid {
        grid-template-columns: 1fr;
    }

    .eval-card {
        min-height: auto;
        padding: 25px 22px;
    }

    .eval-icon {
        width: 60px;
        height: 60px;
        font-size: 1.65rem;
    }

    .eval-card h3 {
        font-size: 1.2rem;
    }
}

.team-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    background-color: var(--bg-beige);
    padding: 32px 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.avatar-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px auto;
}
.avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card .specialty {
    display: block;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.team-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.team-card-link .team-card {
    height: 100%;
    cursor: pointer;
}

.team-card-link:hover .team-card {
    transform: translateY(-4px);
}

.trouble-text-area p, 
.eval-card p {
    text-align: left !important;
}

.evaluations-section .eval-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    min-width: 0;
    overflow: hidden;
}

.evaluations-section .eval-card-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    margin-bottom: 20px !important;
}

.evaluations-section .eval-card-header > div:last-child {
    flex: 1 1 auto;
    min-width: 0;
}

.evaluations-section .eval-card-header h3 {
    width: 100%;
    margin: 5px 0 8px;
    white-space: normal;
    overflow-wrap: break-word;
}

.evaluations-section .eval-card > p {
    display: block !important;
    position: static !important;
    float: none !important;
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
    box-sizing: border-box;
    clear: both !important;
    overflow-wrap: break-word;
}

.evaluations-section .eval-list-items {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box;
}

.evaluations-section .eval-link {
    align-self: flex-start;
}

.main-footer {
    background-color: #121816;
    color: #9ab0a9;
    padding: 80px 0 30px 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.logo.inverted {
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links h5 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #9ab0a9;
    text-decoration: none;
    transition: var(--transition);
}
.footer-links a:hover {
    color: #ffffff;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-contact-list i {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid #222d29;
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.page-intro-section {
    background-color: #ffffff;
    text-align: center;
    padding: 40px 0 60px 0;
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: var(--primary);
}
.breadcrumb .current {
    color: var(--primary);
    font-weight: 500;
}

.page-main-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.professionals-section {
    background-color: var(--bg-beige);
    padding: 60px 0 80px 0;
}

.sub-section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 48px;
}

.professionals-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.prof-horizontal-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    overflow: hidden;
    transition: var(--transition);
}
.prof-horizontal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.prof-image-area {
    width: 260px;
    min-width: 260px;
    position: relative;
}
.prof-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;

}

.prof-info-area {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.prof-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
}

.prof-card-header h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 600;
}

.prof-role {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: capitalize;
}

.prof-quote {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-muted);
    font-size: 1rem;
    text-align: right;
    max-width: 300px;
}

.prof-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.prof-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 40px;
    border-top: 1px solid #f0ede6;
    padding-top: 24px;
    align-items: start;
}

.highlight-text {
    font-weight: 600;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.details-col h5 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.details-col h5 i {
    color: var(--primary);
    font-size: 0.9rem;
}

.details-col ul {
    list-style: none;
}
.details-col li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}
.details-col li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.formation-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.formation-content-wrapper ul {
    flex-grow: 1;
}

.prof-qrcode-area {
    width: 85px;
    min-width: 80px;
    height: 80px;
    border: 1px solid #f0ede6;
    padding: 4px;
    border-radius: 6px;
    background-color: #ffffff;
}

.prof-qrcode-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.join-team-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.join-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.join-image-box {
    border-radius: 12px;
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow);
}
.join-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.join-content-box h2 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 16px;
}

.join-lead {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1rem;
}

.join-bullets {
    list-style: none;
    margin-bottom: 36px;
}
.join-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 500;
}
.join-bullets i {
    color: var(--primary);
    font-size: 1rem;
}

.anchors-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.anchor-btn {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.anchor-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.troubles-main-container {
    background-color: #fcfbfa;
    padding: 40px 0 80px 0;
}

.trouble-card-block {
    background-color: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    margin-bottom: 36px;
    border: 1px solid rgba(0,0,0,0.04);
}

.trouble-hero-banner {
    padding: 28px 40px;
    color: #10201c;
}

.trouble-hero-banner::before {
    display: none;
}

.trouble-hero-banner h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
}

.tsa-bg {
    background: linear-gradient(135deg, #bfeee4 0%, #f2fbf8 100%);
}

.bipolaire-bg {
    background: linear-gradient(135deg, #c7def3 0%, #f3f8fc 100%);
}

.anxiete-bg {
    background: linear-gradient(135deg, #e3c7ef 0%, #faf5fc 100%);
}

.schizo-bg {
    background: linear-gradient(135deg, #f8d8ad 0%, #fff9f1 100%);
}

.memoire-bg {
    background: linear-gradient(135deg, #c7e6f5 0%, #f4f9fc 100%) !important;
}

.trouble-sidebar-box {
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 0 0 18px 18px;
    padding: 24px 40px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;

}

.trouble-sidebar-box h5 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 22px;
    font-weight: 700;
    margin: 0;
}

.trouble-sidebar-box p {
    margin-bottom: 18px;
    color: #2f3b37;
    line-height: 1.6;
}

.trouble-sidebar-box strong {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.trouble-sidebar-box .btn {
    display: inline-block;
    background: #000;
    color: #fff;
    border-radius: 999px;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
}

#tnd .trouble-sidebar-box {
    background-color: #f2fbf8;
}

#bipolaire .trouble-sidebar-box {
    background-color: #f3f8fc;
}

#psychiatrie .trouble-sidebar-box {
    background-color: #faf5fc;
}

#schizo .trouble-sidebar-box {
    background-color: #fff9f1;
}

#memoire .trouble-sidebar-box {
    background-color: #f4f9fc;
}

.care-main-container {
    background-color: #f4f1ea;
    padding: 30px 0 60px 0;
}

.care-card {
    background-color: #ffffff;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 300px;
    margin-bottom: 32px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
}

.care-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.care-main-info {
    text-align: center;
}

.care-title-block {
    justify-content: center;
}

.care-benefits-list {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.care-benefits-list li {
    justify-content: flex-start;
    width: 100%;
}

.care-card.side-emerald { 
    background: linear-gradient(135deg, #ffffff 70%, #e8f8f5 100%) !important;
    border: 1px solid #e0e0e0 !important;
    border-left: 32px solid #bfeee4 !important; 
}
.care-card.side-sage { 
    background: linear-gradient(135deg, #ffffff 70%, #eaf2f8 100%) !important;
    border: 1px solid #e0e0e0 !important;
    border-left: 32px solid #2980b9 !important; 
}
.care-card.side-light-green { 
    background: linear-gradient(135deg, #ffffff 70%, #f4ecf7 100%) !important;
    border: 1px solid #e0e0e0 !important;
    border-left: 32px solid #e3c7ef !important; 
}
.care-card.side-teal { 
    background: linear-gradient(135deg, #ffffff 70%, #f0f3f4 100%) !important;
    border: 1px solid #e0e0e0 !important;
    border-left: 32px solid #f8d8ad !important; 
}

.care-card.side-red { 
    background: linear-gradient(135deg, #ffffff 70%, #fef9e7 100%) !important;
    border: 1px solid #e0e0e0 !important;
    border-left: 32px solid #15ad08 !important;
}
.care-card.side-amber { 
    background: linear-gradient(135deg, #ffffff 70%, #fef9e7 100%) !important;
    border: 1px solid #e0e0e0 !important;
    border-left: 32px solid #c7e6f5 !important;
}

.care-main-info {
    padding: 40px;
}

.care-title-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.care-icon-box {
    font-size: 2rem;
    color: var(--primary);
}

.care-title-block h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.care-tag-sub {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.care-description {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.care-benefits-block h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 14px;
    font-weight: 600;
}

.care-benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    list-style: none;
}

.care-benefits-list li {
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.care-benefits-list li i {
    color: var(--primary);
    font-size: 1.05rem;
}

.care-meta-sidebar {
    background-color: #faf9f6;
    border-left: 1px solid #e3ded5;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.meta-item {
    margin-bottom: 20px;
}

.meta-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.meta-value {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

.btn-care-action {
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.9rem;
    width: 100%;
    gap: 8px;
}

.btn-care-action:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
}

.approach-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.approach-main-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 48px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.approach-card {
    background-color: #faf9f6;
    border: 1px solid var(--border-color);
    padding: 40px 24px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.approach-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.approach-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.approach-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
}

.btn-more {
    margin-top:20px;
    padding:12px 24px;
    border:none;
    border-radius:30px;
    background:#0d6efd;
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-more::after {
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
}

.btn-more:hover {
    transform:translateY(-2px);
    background:#0b5ed7;
}

.btn-more:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.btn-more:active {
    transform: translateY(0px);
    box-shadow: none;
}

.booking-main-container {
    background-color: #f4f1ea; /* Fond beige uniforme global */
    padding: 20px 0 60px 0;
}

.small-container {
    max-width: 900px !important;
}

.doctolib-showcase-box {
    background-color: #eaf2ef; 
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
    border: 1px solid rgba(0, 56, 45, 0.08);
}

.doctolib-alert-header {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.doctolib-alert-header .alert-icon {
    font-size: 1.5rem;
    color: var(--primary);
    background-color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.doctolib-alert-header h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.doctolib-alert-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.praticiens-booking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.praticien-mini-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.praticien-mini-card h4 {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.praticien-specialty {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.btn-doctolib-sub {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.8rem;
    padding: 8px 12px;
    width: 100%;
    justify-content: center;
    gap: 6px;
}
.btn-doctolib-sub:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(0, 56, 45, 0.02);
}

.steps-section-box {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.steps-box-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-row-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-icon-wrapper {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.step-content-text h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 6px;
}

.step-content-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cabinets-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.cabinets-main-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 48px;
    font-weight: 700;
}

.cabinets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.cabinet-card {
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.map-mock-bg {
    height: 24px;
    min-height: 240px;
    background-color: #e5e3df;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mac-map-8 { background-image: radial-gradient(#d5d2cd 15%, transparent 16%), linear-gradient(45deg, #dfdcd7 25%, transparent 25%); background-size: 30px 30px; }
.mac-map-11 { background-image: radial-gradient(#ccc9c2 10%, transparent 11%), linear-gradient(135deg, #dfdcd7 25%, transparent 25%); background-size: 24px 24px; }

.map-marker-pin {
    font-size: 2.5rem;
    color: #c94c4c; /* Épingles de carte rouges emblématiques */
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.map-badge-top {
    position: absolute;
    top: 16px; left: 16px;
    background-color: rgba(255,255,255,0.9);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cabinet-card-body {
    padding: 32px;
}

.cabinet-card-body h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.cabinet-intro-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

.cabinet-address-line {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.cabinet-address-line i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}
.cabinet-address-line p {
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.cabinet-access-block h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.metro-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.metro-tag {
    background-color: #faf9f6;
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}
.metro-tag i {
    color: #7a756b;
}

.btn-outline-map {
    background-color: #f7f5f0;
    border: 1px solid transparent;
    color: var(--text-dark);
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    gap: 8px;
}
.btn-outline-map:hover {
    background-color: #ebdcd0;
    border-color: transparent;
    color: var(--text-dark);
}

.contact-main-container {
    background-color: #f4f1ea; /* Fond beige uniforme global */
    padding: 30px 0 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: flex-start;
}

.doctolib-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
        margin-bottom: 40px;
    }

    @media (max-width: 768px) {
        .doctolib-grid {grid-template-columns: 1fr !important;}
    }

.form-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 56, 45, 0.05);
}

.form-checkbox-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.form-checkbox-group input {
    margin-top: 3px;
    accent-color: var(--primary);
}

.form-checkbox-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.form-checkbox-group a {
    color: var(--text-dark);
    text-decoration: underline;
}

.btn-submit-form {
    background-color: #2b6151;
    color: #ffffff;
    padding: 14px 28px;
    font-weight: 500;
    gap: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}
.btn-submit-form:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-mini-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.01);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    background-color: #005387; /* Couleur d'icône coordonnée */
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-card-content h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 6px;
}

.info-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

.info-card-link {
    font-size: 0.85rem;
    color: #005387;
    text-decoration: underline;
    font-weight: 500;
}
.info-card-link:hover {
    color: var(--text-dark);
}

.large-map-section {
    background-color: #ffffff;
    position: relative;
    width: 100%;
    padding: 0;
}

.large-map-real {
    width: 100%;
    height: 100%;
}

.large-map-real iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-container-wrapper {
    height: 550px;
    position: relative;
    width: 100%;
}

.map-overlay-sub {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.map-overlay-addr {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-overlay-route {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--primary, #2d7a5f);
    color: var(--primary, #2d7a5f);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.btn-overlay-route:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.large-map-mock {
    width: 100%;
    height: 100%;
    background-color: #e5e3df;
    background-image: linear-gradient(rgba(220,217,211,0.8) 1px, transparent 1px), linear-gradient(90deg, rgba(220,217,211,0.8) 1px, transparent 1px);
    background-size: 50px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-map-pin {
    font-size: 3.5rem;
    color: #c94c4c;
    text-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10002;
}
.burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger-menu.active span:nth-child(2) {
    opacity: 0;
}
.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.main-header,
.header-container,
.hero-section {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 1024px) {
    /* Accueil */
    .hero-container h1 { font-size: 3.2rem; }
    .charges-grid, .eval-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .prof-horizontal-card { flex-direction: column; }
    .prof-image-area { width: 100%; height: 280px; }
    .join-grid { gap: 40px; }
    .trouble-content-grid { grid-template-columns: 1fr; gap: 40px; }
    .trouble-sidebar-box { width: 100%; }
}
@media screen and (max-width: 1300px) {
    .header-container {
        height: 80px;
        padding: 0 20px;
    }
    .burger-menu {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        background: #000000;
        border-bottom: 1px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .nav-menu.active {
        max-height: 450px;
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 26px 20px;
        text-align: center;
    }
    .nav-menu .nav-link {
        color: #ffffff;
        white-space: nowrap;
    }
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: #ffffff;
    }
    .header-actions {
        display: none;
    }
    .language-switcher {
        margin-left: auto;
        margin-right: 15px;
    }
}

@media (max-width: 992px) {
    .care-card { grid-template-columns: 1fr; }
    .care-meta-sidebar { border-left: none; border-top: 1px solid #e3ded5; padding: 30px 40px; }
    .approach-grid { grid-template-columns: 1fr; gap: 24px; }
    .praticiens-booking-grid { grid-template-columns: 1fr 1fr; }
    .cabinets-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .map-floating-overlay { left: 20px; top: 20px; }
}
@media (max-width: 768px) {
    /* Menu & Communs */
    .tags-wrapper { justify-content: center; }
    .section-title h2 { font-size: 2rem; }
    .page-main-title { font-size: 2.4rem; }
    .hero-container h1 { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .news-grid, .charges-grid, .eval-grid, .team-grid, .footer-grid {grid-template-columns: 1fr;}
    .prof-card-header { flex-direction: column; gap: 8px; }
    .prof-quote { text-align: left; max-width: 100%; font-size: 0.95rem; }
    .prof-details-grid { grid-template-columns: 1fr; gap: 24px; }
    .join-grid { grid-template-columns: 1fr; }
    .join-image-box { height: 260px; }
    .join-content-box h2 { font-size: 1.8rem; }
    .trouble-hero-banner { padding: 40px 24px; }
    .trouble-hero-banner h2 { font-size: 1.7rem; }
    .trouble-content-grid { padding: 24px; }
    .signs-grid { grid-template-columns: 1fr; gap: 12px; }
    .doctolib-showcase-box { padding: 20px; }
    .doctolib-alert-header { flex-direction: column; gap: 12px; }
    .praticiens-booking-grid { grid-template-columns: 1fr; }
    .steps-section-box { padding: 30px 20px; }
    .step-row-item { flex-direction: column; gap: 8px; }
    .step-icon-wrapper { text-align: left; width: auto; }
    .cabinet-card-body { padding: 20px; }
    .contact-form-box { padding: 35px 24px; }
    .form-row-dual { grid-template-columns: 1fr; gap: 0; }
    .map-container-wrapper { height: 350px; display: flex; flex-direction: column; }
    .map-floating-overlay { position: relative; top: 0; left: 0; max-width: 100%; border-radius: 0; box-shadow: none; border-bottom: 1px solid var(--border-color); }
    .large-map-mock { height: 250px; }
    .modal-praticiens .praticien-mini-card{flex-direction:column;align-items:flex-start;gap:15px;}
    .modal-praticiens .btn-doctolib-sub{width:100%;justify-content:center;}
}

@media (max-width: 576px) {
    .care-card { border-left: none !important; border-top: 16px solid var(--primary); }
    .care-card.side-light-green { border-top-color: #4da684; }
    .care-card.side-teal { border-top-color: #008080; }
    .care-card.side-sage { border-top-color: #8fbc8f; }
    .care-main-info, .care-meta-sidebar { padding: 24px; }
}