/* Origin : Crafto - Elder care */

/* font */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');

/* variable */
:root {
    --primary-font: 'Raleway', sans-serif;
    --alt-font: 'Raleway', serif;
    --color-0: #fff;
    --color-1: #0f253e;
    --color-2: #eb5b98;
    --color-3: #d1b871;
    --color-4: #f4f4f4;
    --color-5: #5d7972;
    /* PRO */
}

body {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-1);
}

header .navbar-brand img {
    max-height: 3.75rem;
}

/* Ancien nav Bootstrap remplacé par .aa-nav — règles supprimées */

/* Transition au scroll */
#header {
    transition: all 0.3s ease-in-out;
}

.color-0 {
    color: var(--color-0) !important;
}

.color-1 {
    color: var(--color-1) !important;
}

.color-2 {
    color: var(--color-2) !important;
}

.color-3 {
    color: var(--color-3) !important;
}

.color-4 {
    color: var(--color-4) !important;
}

.color-5 {
    color: var(--color-5) !important;
}

.bg-color-0 {
    background-color: var(--color-0) !important;
}

.bg-color-1 {
    background-color: var(--color-1) !important;
}

.bg-color-2 {
    background-color: var(--color-2) !important;
}

.bg-color-3 {
    background-color: var(--color-3) !important;
}

.bg-color-4 {
    background-color: var(--color-4) !important;
}

.bg-color-5 {
    background-color: var(--color-5) !important;
}

/* Header Button */
.header-button .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1.2rem;
}

h1,
.h1 {
    color: var(--color-1);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

h2,
.h2 {
    color: var(--color-2);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.1;
}

h3,
.h3 {
    color: var(--color-1);
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.1;
}

h4,
.h4 {
    color: var(--color-2);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
}

h5,
.h5 {
    color: var(--color-1);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
}

/* main > list */
main li {
    /*font-size: 0.95rem;*/
    margin-bottom: 0.75rem;
}
main .list-style-01 {margin-top: 15px !important;}
main .list-style-01 li {
    padding-bottom: 7px !important;
    margin-bottom: 12px !important;
    border-bottom: #e5e5e5 1px solid;
}

.card,
th,
td {
    color: var(--color-1) !important;
}

/* button */
.btn {
    padding: 12px 24px 12px 24px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    color: #fff !important;
    font-family: var(--primary-font);
    letter-spacing: normal;
}

.btn-color-1 {
    background-color: var(--color-1);
    color: var(--color-0);
}

.btn-color-1:hover {
    background-color: var(--color-2);
    color: var(--color-0);
}

.bg-color-2 .btn-color-1:hover {
    background-color: var(--color-0) !important;
    color: var(--color-2) !important;
}

.btn-color-2 {
    background-color: var(--color-2);
    color: var(--color-0);
}

.btn-color-2:hover {
    background-color: var(--color-1);
    color: var(--color-0);
}

.btn-color-3 {
    background-color: var(--color-3);
    color: var(--color-0);
}

.btn-color-3:hover {
    background-color: var(--color-1);
    color: var(--color-0);
}

/* footer */
footer .footer-logo img {
    max-height: 3rem;
}

.footer-dark a:hover {
    color: var(--white);
    opacity: 1;
}


@media (max-width: 1600px) {
    .navbar .navbar-nav .nav-link {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 84rem;
    }
}

@media (max-width: 1400px) {
    .navbar .navbar-nav .nav-link {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 1199px) {
    .extra-small-screen {
        height: 18.75rem !important;
    }

    .navbar>.container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar .navbar-nav .nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (max-width: 991px) {}

/* --- BLOG GRID & UTILITIES --- */
.box-shadow-extra-large {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.box-shadow-extra-large-hover {
    transition: all 0.3s ease-in-out;
}

.box-shadow-extra-large-hover:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.blog-image {
    overflow: hidden;
}

.blog-image img {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-image:hover img {
    transform: scale(1.05);
}

.text-primary-hover {
    transition: color 0.3s ease;
}

.text-primary-hover:hover {
    color: var(--color-2) !important;
}

.border-radius-4px {
    border-radius: 4px !important;
}

.mb-10px {
    margin-bottom: 0.625rem !important;
}

.mb-15px {
    margin-bottom: 0.9375rem !important;
}

.mb-20px {
    margin-bottom: 1.25rem !important;
}

.fs-18 {
    font-size: 1.125rem !important;
}

.lh-28 {
    line-height: 1.75 !important;
}

.lh-32 {
    line-height: 1.9 !important;
}

/* Blog Single specific */
.one-fourth-screen {
    height: 25rem;
    /* 400px */
    background-size: cover;
    background-position: center;
}

.mt-minus-100px {
    margin-top: -6.25rem !important;
}

.mt-minus-30px {
    margin-top: -1.875rem !important;
}

/* Services Box Style 01 */
.services-box-style-01 {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hover-box:hover {
    transform: translateY(-5px);
}

.box-image {
    position: relative;
    overflow: hidden;
}

.box-image img {
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hover-box:hover .box-image img {
    transform: scale(1.05);
}

.box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bg-black-transparent-medium {
    background: rgba(0, 0, 0, 0.4);
}

.hover-box:hover .box-overlay {
    opacity: 1;
}

.p-25px {
    padding: 1.5625rem !important;
}

.fs-20 {
    font-size: 1.25rem !important;
}

.overlap-section {
    position: relative;
    z-index: 5;
}

.fs-14 {
    font-size: 0.875rem !important;
}

.fs-15 {
    font-size: 0.9375rem !important;
}

.fs-16 {
    font-size: 1rem !important;
}

.ls-0px {
    letter-spacing: 0 !important;
}

.ls-minus-1px {
    letter-spacing: -0.0625rem !important;
}

.ls-05px {
    letter-spacing: 0.03125rem !important;
}

.ls-1px {
    letter-spacing: 0.0625rem !important;
}

.border-radius-0px {
    border-radius: 0 !important;
}

.border-radius-6px {
    border-radius: 0.375rem !important;
}

.border-radius-10px {
    border-radius: 0.625rem !important;
}

/* --- TESTIMONIALS STYLE 01 --- */
.testimonial-arrow::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 40px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0 0;
    border-color: #ffffff transparent transparent transparent;
}

.box-shadow-quadruple-large {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
}

/* --- UTILITIES (REM CONVERTED) --- */
.ps-50px {
    padding-left: 3.125rem !important;
}

.pe-50px {
    padding-right: 3.125rem !important;
}

.pt-30px {
    padding-top: 1.875rem !important;
}

.pb-30px {
    padding-bottom: 1.875rem !important;
}

.mt-10px {
    margin-top: 0.625rem !important;
}

.pt-20px {
    padding-top: 1.25rem !important;
}

.pb-20px {
    padding-bottom: 1.25rem !important;
}

.ps-15px {
    padding-left: 0.9375rem !important;
}

.pe-15px {
    padding-right: 0.9375rem !important;
}

.me-15px {
    margin-right: 0.9375rem !important;
}

.mb-5px {
    margin-bottom: 0.3125rem !important;
}

.w-80px {
    width: 5rem !important;
}

.h-80px {
    height: 5rem !important;
}

.fs-17 {
    font-size: 1.0625rem !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .sm-mt-40px {
        margin-top: 2.5rem !important;
    }
    p{font-size: 1.25rem !important;}
    .lead{font-size: 1.3rem !important;}
    li{font-size: 1.2rem !important;}
}

@media (max-width: 991px) {
    .md-mb-30px {
        margin-bottom: 1.875rem !important;
    }
}

@media (min-width: 992px) {
    .lg-p-30px {
        padding: 1.875rem !important;
    }
}

/* --- SLIDER HERO --- */
.full-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.cover-background {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.opacity-light {
    opacity: 0.3;
}

.text-shadow-medium {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.text-shadow-large {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-2);
    width: 30px;
    border-radius: 6px;
}

.magic-cursor {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="5" fill="white" opacity="0.5"/></svg>'), auto;
}

@media (max-width: 991px) {
    .md-h-600px {
        height: 600px !important;
        min-height: 600px !important;
    }
}

@media (max-width: 767px) {
    .sm-h-450px {
        height: 450px !important;
        min-height: 450px !important;
    }

    .sm-fs-50 {
        font-size: 3.125rem !important;
    }
}

/* ── RESET CRAFTO HEADER GLOBAL ──────────────────────────────── */
/* Annuler toutes les règles Crafto qui fixent la navbar */
header,
header .navbar,
.header-with-topbar,
.navbar.disable-fixed {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    z-index: auto !important;
}

/* Aucun padding-top injecté par JS — le header est en flux normal */
main,
main.top-space-padding {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Supprimer tout espace après le header généré par Crafto */
.aa-header+*,
header+* {
    margin-top: 0 !important;
}

/* ===================================================
   AA-HEADER — Structure custom, zéro dépendance Crafto
   =================================================== */

/* Conteneur global */
.aa-header {
    position: relative;
    z-index: 100;
    /* Empêcher tout chevauchement avec le contenu */
}

/* ── Topbar ── */
.aa-topbar {
    background: var(--color-1);
    padding: 0.75rem 0;
}

.aa-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.aa-topbar-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    white-space: nowrap;
}

.aa-topbar-phone:hover {
    color: var(--color-2);
}

.aa-topbar-phone i {
    font-size: 1rem;
    color: var(--color-2);
}

.aa-topbar-ctas {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* CTA Particuliers — bouton plein rose */
.aa-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-2);
    color: #fff !important;
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.aa-cta-primary:hover {
    background: #d4447f;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(235, 91, 152, 0.45);
}

.aa-cta-primary i {
    font-size: 0.85rem;
}

/* CTA Professionnels — bouton outline doré */
.aa-cta-pro {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: var(--color-3) !important;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(209, 184, 113, 0.5);
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.aa-cta-pro:hover {
    background: rgba(209, 184, 113, 0.12);
    border-color: var(--color-3);
}

.aa-cta-pro i {
    font-size: 0.85rem;
}

/* CTA Recrutement — texte discret */
.aa-cta-recruit {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.aa-cta-recruit:hover {
    color: rgba(255, 255, 255, 0.95) !important;
}

.aa-cta-recruit i {
    font-size: 0.85rem;
}

/* ── Navbar ── */
.aa-navbar {
    background: #fff;
    padding: 1.5rem 0;
}

.aa-navbar-inner {
    display: flex;
    align-items: center;
    height: 64px;
}

.aa-logo {
    flex-shrink: 0;
    margin-right: 2.5rem;
    text-decoration: none;
}

.aa-logo img {
    max-height: 65px;
    display: block;
}

.aa-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-1);
}

/* Hamburger */
.aa-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    margin-left: auto;
    cursor: pointer;
}

.aa-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-1);
    border-radius: 2px;
    transition: all 0.25s ease;
}

/* Menu — flex:1 uniquement sur desktop (voir media query ≥992px) */
.aa-menu-collapse {
    min-width: 0;
}

.aa-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 64px;
    gap: 0;
}

.aa-nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.aa-nav-item--dropdown {
    position: relative;
}

.aa-nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0 1rem;
    height: 100%;
    color: var(--color-1) !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
    /*border-bottom: 2px solid transparent;*/
}

.aa-nav-link:hover {
    color: var(--color-2) !important;
}

.aa-nav-link--active {
    color: var(--color-2) !important;
    /* border-bottom-color: var(--color-2);*/
}

.aa-drop-icon {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.aa-nav-item--dropdown:hover .aa-drop-icon {
    transform: rotate(180deg);
}

/* Dropdown */
.aa-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 275px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(15, 37, 62, 0.12);
    border: 1px solid rgba(15, 37, 62, 0.06);
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
    z-index: 200;
}

.aa-nav-item--dropdown:hover .aa-dropdown,
.aa-nav-item--dropdown .aa-dropdown.show {
    display: block;
}

/* Dropdown desktop ouvert au hover (CSS) — mobile géré par theme.js */

.aa-dropdown-item {
    display: block;
    padding: 0.55rem 1.2rem;
    font-weight: 500;
    color: var(--color-1) !important;
    text-decoration: none;
    transition: all 0.15s;
}

.aa-dropdown-item:hover {
    background: rgba(235, 91, 152, 0.06);
    color: var(--color-2) !important;
    padding-left: 1.5rem;
}

/* Menu visible sur desktop — géré uniquement par CSS, sans Bootstrap collapse */
@media (min-width: 992px) {
    .aa-menu-collapse {
        display: flex;
        flex: 1;
    }
}

/* ── Navbar intermédiaire 992–1280px : compresser pour éviter le débordement ── */
@media (min-width: 992px) and (max-width: 1280px) {
    .aa-logo {
        margin-right: 1rem;
    }

    .aa-logo img {
        max-height: 52px;
    }

    .aa-nav-link {
        padding: 0 0.55rem;
        font-size: 0.78rem;
    }

    /* Masquer le CTA recrutement topbar pour gagner de l'espace */
    .aa-topbar-ctas .aa-cta-recruit {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1100px) {
    .aa-nav-link {
        padding: 0 0.35rem;
        font-size: 0.74rem;
    }

    /* Réduire aussi le CTA pro sur les petits desktops */
    .aa-cta-primary,
    .aa-cta-pro {
        font-size: 0.76rem;
        padding: 0.35rem 0.75rem;
    }
}

/* ── Responsive header ── */
@media (max-width: 991px) {

    .aa-topbar-ctas .aa-cta-pro,
    .aa-topbar-ctas .aa-cta-recruit {
        display: none;
    }

    .aa-toggler {
        display: flex;
    }

    .aa-navbar-inner {
        flex-wrap: wrap;
        height: auto;
        padding: 0.5rem 0;
    }

    .aa-logo {
        margin-right: 0;
    }

    /* Menu mobile : caché par défaut, visible avec .is-open (géré par theme.js) */
    .aa-menu-collapse {
        display: none;
        width: 100%;
        order: 3;
    }

    .aa-menu-collapse.is-open {
        display: block;
    }

    .aa-nav {
        flex-direction: column;
        height: auto;
        align-items: flex-start;
        padding: 0.5rem 0 1rem;
        gap: 0;
        border-top: 1px solid rgba(15, 37, 62, 0.08);
        margin-top: 0.5rem;
    }

    .aa-nav-item {
        display: block;
        height: auto;
        width: 100%;
    }

    .aa-nav-link {
        height: auto;
        padding: 0.65rem 0.5rem;
        font-size: 1.1rem;
        border-bottom: none;
    }

    /* Dropdown mobile : caché par défaut, visible avec .is-open (géré par theme.js) */
    .aa-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(15, 37, 62, 0.03);
        border-radius: 6px;
        padding: 0.25rem 0;
        margin: 0.25rem 0 0.5rem 1rem;
    }
    .aa-dropdown-item {
        font-size: 1.05rem;
    }

    .aa-nav-item--dropdown .aa-dropdown {
        display: none;
    }

    .aa-nav-item--dropdown:hover .aa-dropdown {
        display: none;
    }

    .aa-nav-item--dropdown .aa-dropdown.is-open {
        display: block;
    }
}

/* Marges latérales sur petits mobiles */
@media (max-width: 575px) {
    .aa-header .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Animation hamburger → croix quand menu ouvert */
.aa-toggler span {
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.aa-toggler.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.aa-toggler.is-active span:nth-child(2) {
    opacity: 0;
}

.aa-toggler.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero spacing utilities */
.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

@media (min-width: 992px) {
    .py-lg-8 {
        padding-top: 6.5rem !important;
        padding-bottom: 6.5rem !important;
    }
}

/* ===================================================
   HERO HOME 2026
   =================================================== */
.hero-home {
    background-color: var(--color-1);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
}

.hero-home-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Colonne contenu */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0rem 3rem 1.5rem 1rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(235, 91, 152, 0.15);
    color: var(--color-2);
    border: 1px solid rgba(235, 91, 152, 0.3);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.hero-title {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 700;
    color: var(--color-0);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-accent {
    color: var(--color-2);
    position: relative;
}

.hero-desc {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-hero-primary {
    background: var(--color-2);
    color: #fff !important;
    padding: 0.9rem 2rem !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: #d4447f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 91, 152, 0.4);
}

.btn-hero-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.9rem 2rem !important;
    border-radius: 100px !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-ghost:hover {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    background: rgba(255, 255, 255, 0.05);
}

/* Barre arguments pleine largeur */
.hero-badges-bar {
    background: rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
}

.hero-badges-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem 2rem;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-badge-item i {
    color: var(--color-2);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hero-badge-item strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-badge-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

a.hero-badge-item {
    text-decoration: none;
    transition: opacity 0.2s;
}

a.hero-badge-item:hover {
    opacity: 0.8;
}

/* Colonne image */
.hero-image-col {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0rem 1rem 1.5rem 2rem;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

/*
.hero-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
*/
.hero-card-float {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Hero responsive */
@media (max-width: 991px) {
    .hero-home {
        min-height: auto;
    }

    .hero-home-inner {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .hero-content {
        padding: 3rem 1rem 2rem;
        order: 2;
    }

    .hero-image-col {
        order: 1;
        padding: 2rem 1rem 0;
    }

    .hero-img {
        height: 280px;
        border-radius: 12px;
    }

    .hero-card-float {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

/* Main content spacing - managed per page */

/* --- FOOTER CUSTOM (Elder Care / Green Energy) --- */
.footer-dark {
    color: rgba(255, 255, 255, 0.6);
}

.footer-dark a {
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-dark a.text-white-hover:hover {
    color: #ffffff !important;
    opacity: 1 !important;
}

.footer-dark ul li {
    margin-bottom: 8px;
}

.footer-dark .border-color-transparent-white-light {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.opacity-5 {
    opacity: 0.5 !important;
}

.opacity-7 {
    opacity: 0.7 !important;
}

/* --- SLIDER TWEAKS --- */
.swiper-slide.cover-background {
    background-position: center center;
    background-size: cover;
}

/* Ensure full width for slider even if nested (safety) */
.full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Focus section colors */
.bg-light-blue-gray {
    background-color: #f7f9fc !important;
    /* Slightly lighter gray for focus */
}

/* Navbar Bootstrap neutralisée — on utilise uniquement .aa-navbar */

/* --- NAVBAR & DROPDOWN TWEAKS --- */
.dropdown-menu {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    margin-top: 0;
}

.list-style-01 li {
    margin-bottom: 12px !important;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

/* Liste à puces colorées (usage AICI, avantages...) */
.list-bullet li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    line-height: 1.6;
}

.list-bullet li::before {
    content: "\2022";
    color: var(--color-2);
    font-weight: 700;
    font-size: 1.3em;
    margin-right: 0.6rem;
    flex-shrink: 0;
    line-height: 1.3;
}

/* Fond rose pâle pour devis express */
.bg-color-2-light {
    background-color: rgba(235, 91, 152, 0.06) !important;
}

.list-style-01 li i {
    margin-top: 5px;
}

.dropdown-item {
    padding: 8px 20px !important;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
}

.dropdown-item:hover {
    padding-left: 25px !important;
    /* Shifting to the right (increased left padding) */
    background-color: transparent !important;
    color: var(--color-2) !important;
}

/* --- UTILITIES --- */
.text-color-2 {
    color: var(--color-2) !important;
}

.text-color-1 {
    color: var(--color-1) !important;
}

.color-base {
    color: var(--color-2) !important;
}

.text-primary {
    color: var(--color-2) !important;
}

.text-secondary {
    color: var(--color-1) !important;
}

/* ===================================================
   FILIALES — cartes full-bleed 2026
   =================================================== */
.filiales-section {
    overflow: hidden;
}

.filiale-card {
    position: relative;
    display: block;
    height: 360px;
    overflow: hidden;
    text-decoration: none;
}

.filiale-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.filiale-card:hover .filiale-bg {
    transform: scale(1.05);
}

.filiale-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 37, 62, 0.55) 0%, rgba(15, 37, 62, 0.85) 100%);
    transition: opacity 0.3s ease;
}

.filiale-overlay-pro {
    background: linear-gradient(160deg, rgba(15, 37, 62, 0.45) 0%, rgba(15, 37, 62, 0.82) 100%);
}

.filiale-card:hover .filiale-overlay {
    opacity: 0.9;
}

.filiale-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: #fff;
}

.filiale-label {
    display: inline-block;
    background: var(--color-2);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    width: fit-content;
}

.filiale-label-pro {
    background: var(--color-3);
    color: var(--color-1);
}

.filiale-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.filiale-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.filiale-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-2);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: gap 0.2s ease;
}

.filiale-card:hover .filiale-cta {
    gap: 0.8rem;
}

@media (max-width: 767px) {
    .filiale-card {
        height: 260px;
    }

    .filiale-title {
        font-size: 1.5rem;
    }

    .filiale-content {
        padding: 1.5rem;
    }
}

/* ===================================================
   STATS — social proof
   =================================================== */
.stats-section {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--color-1);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
}

.stat-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-2);
}

.stat-heart {
    font-size: 2.4rem;
    color: var(--color-2);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
    font-weight: 500;
}

/* ===================================================
   OFFRE DÉCOUVERTE 2026
   =================================================== */
.offre-decouverte-section {
    position: relative;
    background: var(--color-2);
    overflow: hidden;
    padding: 4rem 0;
    text-align: center;
}

.offre-deco-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(12rem, 25vw, 22rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.05em;
    user-select: none;
}

.offre-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    padding: 0.35rem 1.1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.offre-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.offre-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-offre {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--color-1);
    color: #fff !important;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-offre:hover {
    background: #1a3a5c;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===================================================
   HERO SUPTITLE BAR — banderole rose au-dessus du hero
   =================================================== */
.hero-suptitle-bar {
    background: var(--color-2);
    color: #fff;
    text-align: start;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.4;
}

.hero-suptitle-sep {
    display: inline-block;
    margin: 0 0.65em;
    opacity: 0.55;
}

@media (max-width: 575px) {
    .hero-suptitle-bar {
        /*font-size: 0.85rem;*/
        padding: 6px 0.75rem;
    }

    .hero-suptitle-sep {
        display: block;
        margin: 0;
        opacity: 0;
        line-height: 0;
        font-size: 0;
    }
}

/* ===================================================
   AA-PREFOOTER — section discrète avant le footer
   =================================================== */
.aa-prefooter {
    padding: 3rem 0;
    border-top: 1px solid rgba(15, 37, 62, 0.09);
    background: #fff;
}

/* Séparateur vertical plus visible */
.aa-prefooter-col {
    border-right: 1px solid rgba(15, 37, 62, 0.14);
}

/* Gutter plus large entre les 3 blocs sur desktop */
@media (min-width: 992px) {
    .aa-prefooter .row {
        --bs-gutter-x: 3.5rem;
    }
}

@media (max-width: 991px) {
    .aa-prefooter-col {
        border-right: none;
        border-bottom: 1px solid rgba(15, 37, 62, 0.10);
        padding-bottom: 1.5rem;
        margin-bottom: 0.5rem;
    }
}

.aa-prefooter-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-2);
    margin-bottom: 0.9rem;
}

/* Liens en bas : séparation visuelle du contenu au-dessus */
.aa-prefooter .aa-prefooter-link,
.aa-prefooter-cta {
    display: inline-block;
    margin-top: 1rem;
}

.aa-prefooter-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-1);
    text-decoration: none;
    transition: color 0.2s;
}

.aa-prefooter-link:hover {
    color: var(--color-2);
}

.aa-prefooter-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-1);
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 37, 62, 0.25);
    padding-bottom: 1px;
    transition: all 0.2s;
}

.aa-prefooter-cta:hover {
    color: var(--color-2);
    border-bottom-color: var(--color-2);
}

.aa-prefooter .swiper-pagination-testimonial {
    position: relative;
    margin-top: 0.75rem;
    text-align: left;
}

/* Correctif: supprimer l'espace .hero-card-float sur mobile (div retiré) */
.hero-image-wrap {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

/* ===================================================
   CONTACT FORMS — styles élégants 2026
   =================================================== */

/* Wrapper formulaire */
.aa-contact-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(15, 37, 62, 0.08);
}

/* Focus élégant sur champs */
.aa-contact-form-wrap .form-control,
.aa-contact-form-wrap .form-select {
    border-radius: 8px !important;
    border: 1.5px solid rgba(15, 37, 62, 0.14) !important;
    padding: 0.75rem 1rem !important;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #fafafa !important;
    font-size: 0.95rem !important;
}

.aa-contact-form-wrap .form-control:focus,
.aa-contact-form-wrap .form-select:focus {
    border-color: var(--color-2) !important;
    box-shadow: 0 0 0 3px rgba(235, 91, 152, 0.1) !important;
    background-color: #fff !important;
    outline: none;
}

/* Zone submit + tél en dessous */
.aa-form-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.aa-form-divider {
    font-size: 0.8rem;
    color: rgba(15, 37, 62, 0.3);
    font-style: italic;
}

.aa-form-tel-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-1);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.aa-form-tel-inline:hover {
    color: var(--color-2);
}

.aa-form-tel-inline i {
    color: var(--color-2);
}

/* Bloc d'infos droite — 2 zones */
.aa-contact-info-block {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 37, 62, 0.07);
    background: #fff;
}

.aa-contact-zone {
    padding: 1.75rem 2rem;
}

.aa-contact-zone+.aa-contact-zone {
    border-top: 1px solid rgba(15, 37, 62, 0.07);
}

.aa-contact-zone-dark {
    background: var(--color-1);
}

.aa-contact-zone-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-2);
    margin-bottom: 0.9rem;
    display: block;
}

.aa-contact-zone-dark .aa-contact-zone-label {
    color: rgba(255, 255, 255, 0.45);
}

.aa-contact-zone ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.6rem !important;
    font-size: 0.9rem;
}

.aa-contact-zone ul li i {
    margin-top: 3px;
    flex-shrink: 0;
}

/* Lien tél élégant */
.aa-tel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-1);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.aa-tel-link:hover {
    color: var(--color-2);
}

.aa-tel-link i {
    color: var(--color-2);
    font-size: 1rem;
    flex-shrink: 0;
}

.aa-contact-zone-dark .aa-tel-link {
    color: #fff;
}

.aa-contact-zone-dark .aa-tel-link:hover {
    color: var(--color-2);
}

.aa-contact-zone-dark p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Section localisation + carte */
.aa-contact-location {
    padding: 4rem 0;
}

.aa-contact-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 37, 62, 0.10);
    height: 400px;
}

.aa-contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.aa-contact-address {
    font-style: normal;
    line-height: 1.9;
    color: rgba(15, 37, 62, 0.65);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 991px) {
    .aa-contact-form-wrap {
        padding: 1.5rem;
    }

    .aa-contact-map-wrap {
        height: 240px;
        margin-top: 1rem;
    }
}

/* ===================================================
   FOOTER — refonte élégante 2026
   =================================================== */

.aa-footer-logo img {
    max-height: 110px !important;
    display: block;
}

.aa-footer-tel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.2s;
    margin-top: 0.75rem;
}

.aa-footer-tel:hover {
    color: var(--color-2);
}

.aa-footer-tel i {
    color: var(--color-2);
}

.aa-footer-nav-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1rem;
    display: block;
}

.aa-footer-nav-link {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.aa-footer-nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.aa-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.aa-social-btn:hover {
    background: var(--color-2);
    color: #fff;
    transform: translateY(-2px);
}

.aa-footer-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===================================================
   BANDEAU FLOTTANT CTA — milieu droite (vertical centré)
   =================================================== */
.aa-floating-cta {
    position: fixed;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.aa-floating-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.aa-floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.aa-floating-btn i {
    font-size: 1rem;
}

.aa-floating-btn--phone {
    background: var(--color-1);
    color: #fff !important;
}

.aa-floating-btn--phone:hover {
    background: #1a3a5c;
}

.aa-floating-btn--devis {
    background: var(--color-2);
    color: #fff !important;
}

.aa-floating-btn--devis:hover {
    background: #d4447f;
}

@media (max-width: 575px) {
    .aa-floating-cta {
        right: 1rem;
    }

    .aa-floating-btn span {
        display: none;
    }

    .aa-floating-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .aa-floating-btn i {
        font-size: 1.2rem;
    }
}

/* Bouton réduit pour les pages prestations */
.btn.btn-sm {
    padding: 8px 18px !important;
    font-size: 0.85rem !important;
    border-radius: 100px !important;
}

/* Bloc prestation entièrement cliquable */
.aa-focus-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.aa-focus-link:hover {
    color: inherit;
}

.aa-focus-link .services-box-style-01 {
    cursor: pointer;
}

@media (max-width: 575px) {
    .hero-badges-row {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   HERO — bandeau mots-clés sous l'image
   =================================================== */
.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.4em;
}

.hero-keyword-tag {
    display: inline-block;
    background: rgba(235, 91, 152, 0.15);
    color: var(--color-2);
    border: 1px solid rgba(235, 91, 152, 0.3);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-keywords-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-top: 0.75rem;
}

/* Fix responsive : espace entre topbar et titre hero sur laptops */
@media (min-width: 992px) {
    .hero-content {
        padding-top: 3rem;
    }
}

@media (max-width: 991px) {
    .hero-badges-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem 1rem;
    }

    .hero-keywords {
        justify-content: center;
    }
}

/* ===================================================
   CONTACT — bloc info sur section sombre (bg-color-1)
   =================================================== */
.bg-color-1 .aa-contact-info-block {
    background: var(--color-1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.bg-color-1 .aa-contact-zone:not(.aa-contact-zone-dark) {
    background: rgba(255, 255, 255, 0.06);
}

.bg-color-1 .aa-contact-zone:not(.aa-contact-zone-dark) .aa-contact-zone-label {
    color: var(--color-2);
}

.bg-color-1 .aa-contact-zone:not(.aa-contact-zone-dark) p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.bg-color-1 .aa-contact-zone:not(.aa-contact-zone-dark) li {
    color: rgba(255, 255, 255, 0.85);
}

.bg-color-1 .aa-contact-zone:not(.aa-contact-zone-dark) .aa-tel-link {
    color: #fff;
}

.bg-color-1 .aa-contact-zone-dark {
    background: rgba(0, 0, 0, 0.2);
}

.bg-color-1 .aa-contact-zone + .aa-contact-zone {
    border-top-color: rgba(255, 255, 255, 0.08);
}

/* Protection email — masquer les adresses par défaut */
.aa-email-protect {
    unicode-bidi: bidi-override;
    direction: rtl;
    cursor: pointer;
}

.aa-email-protect:hover {
    color: var(--color-2);
}