/* ============================================
   STYLESHEET COMPLET - VERSION 3.4 RESPONSIVE FIX
   Flo-Wellness.be
   ============================================ */
.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 28px 22px;
    background: #ffffff;
    border: 1px solid rgba(0, 172, 193, 0.10);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 172, 193, 0.08);
    min-height: 220px;
}

.step-number {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #00acc1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    margin: 0 auto 18px auto;
    box-shadow: 0 8px 18px rgba(0, 172, 193, 0.22);
}

.step-card h3 {
    margin: 0 0 12px 0;
    font-size: 1.08rem;
    color: #1a4a52;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.step-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #62737a;
    text-align: center;
    max-width: 26ch;
}

@media (max-width: 768px) {
    .step-card {
        min-height: auto;
        padding: 24px 18px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1rem;
        margin-bottom: 14px;
    }
}

.hero-wrapper.no-image {
    padding: 80px 20px;
    background: #fdfaf7; /* Une couleur très douce pour remplacer l'image */
}

.hero-content.full-width {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* BASE STYLES */
*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    padding: 0;
    padding-top: 120px; /* top-header 30px + main-header 90px */
    background-color: #ffffff;
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    font-weight: 400;
    color: #444;
}

/* ============================================
   TOP HEADER
   ============================================ */
.top-header {
    background-color: #00acc1;
    color: white;
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    font-size: 0.75rem;
    margin: 0;
    padding: 5px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    transition: transform 0.3s ease;
}

.top-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-right a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-socials {
    display: flex;
    gap: 10px;
    margin-left: 10px;
}

.top-socials a {
    color: white;
    text-decoration: none;
}

/* ============================================
   MAIN HEADER & NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 30px; /* hauteur de la top-header */
    left: 0;
    right: 0;
    z-index: 1000;
    transition: top 0.3s ease;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    width: 100%;
}

.header-boxed {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    height: 90px;
    flex-wrap: nowrap;
}

.logo-container {
    flex: 0 0 auto;
    margin-right: auto;
    order: 1;
}

.logo-container img {
    height: 80px;
    display: block;
}

.nav-menu {
    flex: 1 1 auto;
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 0;
    justify-content: center;
    min-width: 0;
    order: 2;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #555;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    gap: 5px;
    position: relative;
    padding: 8px 12px;
    transition: color 0.2s;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    text-align: center;
    background: none !important;
    border: none !important;
    height: auto;
    min-height: 60px;
}

.nav-item > i:not(.dropdown-icon) {
    font-size: 1.15rem;
    color: #00acc1;
    display: block;
}

.nav-item .nav-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
}

.nav-item:hover,
.nav-item.active {
    color: #00acc1;
}

.nav-item:hover::after,
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: #00acc1;
    border-radius: 2px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.dropdown-icon {
    display: inline-block;
    font-size: 0.68rem;
    margin-left: 3px;
    color: #00acc1;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 8px 0;
    border: 1px solid #eee;
    z-index: 9999;
    margin-top: 4px;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    text-decoration: none;
    color: #555;
    font-size: 0.82rem;
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
}

.dropdown-content a:hover {
    background-color: #f0fbfc;
    color: #00acc1;
}

.dropdown-content i {
    color: #00acc1;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.dropdown-content .ext-icon {
    margin-left: auto;
    font-size: 0.65rem;
    color: #bbb;
    width: auto;
    flex-shrink: 0;
    transition: color 0.2s;
}

.dropdown-content a:hover .ext-icon {
    color: #00acc1;
}

/* Contact Button */
.contact-container {
    flex: 0 0 auto;
    margin-left: 0;
    order: 3;
}

.btn-contact {
    background-color: #00acc1;
    color: white;
    padding: 11px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
    display: inline-block;
}

.btn-contact:hover {
    background-color: #0097a7;
    transform: translateY(-2px);
}

/* Burger Menu */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    margin-left: 0;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1200;
    flex-shrink: 0;
    order: 4;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #00acc1;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.99);
    z-index: 1150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
    overflow-y: auto;
}

.mobile-nav.open {
    display: flex !important;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #1a4a52;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 12px;
    width: 260px;
    transition: background 0.2s, color 0.2s;
}

.mobile-nav-item i {
    color: #00acc1;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: #f0fbfc;
    color: #00acc1;
}

.mobile-nav-divider {
    width: 260px;
    height: 1px;
    background: #eee;
    margin: 6px 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
    padding: 8px;
}

.mobile-cta {
    display: inline-block;
    margin-top: 16px;
    background-color: #00acc1;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
}

/* Mobile accordion */
.mobile-nav-accordion {
    width: 280px;
}

.mobile-accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #1a4a52;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    transition: background 0.2s, color 0.2s;
    text-align: left;
}

.mobile-accordion-toggle i:first-child {
    color: #00acc1;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.mobile-acc-icon {
    margin-left: auto;
    font-size: 0.8rem;
    color: #00acc1;
    transition: transform 0.3s ease;
}

.mobile-accordion-toggle.open .mobile-acc-icon {
    transform: rotate(180deg);
}

.mobile-accordion-toggle:hover {
    background: #f0fbfc;
    color: #00acc1;
}

.mobile-accordion-content {
    display: none;
    flex-direction: column;
    background: #f7fdfe;
    border-radius: 12px;
    margin: 0 8px 4px 8px;
    overflow: hidden;
}

.mobile-accordion-content.open {
    display: flex;
}

.mobile-nav-subitem {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #3a6a72;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 24px;
    font-family: 'Nunito', sans-serif;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(0, 172, 193, 0.08);
}

.mobile-nav-subitem:last-child {
    border-bottom: none;
}

.mobile-nav-subitem i {
    color: #00acc1;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.mobile-nav-subitem:hover {
    background: #e0f7fa;
    color: #00acc1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-wrapper {
    background: linear-gradient(90deg, #ffffff 0%, #e0f7fa 100%);
    width: 100%;
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) 380px;
    align-items: center;
    gap: 52px;
    min-height: 300px;
    padding: 24px 70px 0 70px;
    background: transparent;
    position: relative;
}

.hero-section::before {
    display: none;
}

.hero-content {
    max-width: 620px;
    z-index: 1;
    min-width: 0;
}

.hero-content h1 {
    font-size: 3rem;
    color: #1a4a52;
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 700;
    font-family: 'Nunito', 'Segoe UI', sans-serif;
}

.hero-content h1 span {
    color: #00acc1;
    font-weight: 400;
}

.hero-content h1 .heart-inline {
    display: inline-block;
    color: #00acc1;
    opacity: 0.5;
    padding-left: 5px;
    vertical-align: middle;
}

.hero-description {
    font-size: 0.98rem;
    color: #667;
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 36px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.btn-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #00acc1;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 18px;
    margin-bottom: 50px;
    transition: background 0.3s, transform 0.2s;
    padding-right: 22px;
}

.btn-services:hover {
    background-color: #0097a7;
    transform: translateY(-2px);
}

.btn-services i {
    display: inline-block;
    margin-left: 0;
    vertical-align: middle;
}

.hero-image {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 172, 193, 0.18);
    z-index: 1;
    flex: 0 0 380px;
    justify-self: end;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 22px;
    width: 100%;
    max-width: none;
    margin-top: 24px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 18px;
    padding: 16px 20px;
    box-shadow: 0 2px 12px rgba(0, 172, 193, 0.08);
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 172, 193, 0.10);
    flex: 0 0 46px;
}

.feature-icon i {
    font-size: 1rem;
    color: #00acc1;
}

.feature-text strong {
    display: block;
    color: #1a4a52;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.1;
    margin-bottom: 3px;
    white-space: normal;
}

.feature-text span {
    display: block;
    color: #7f8b91;
    font-size: 0.82rem;
    line-height: 1.2;
    white-space: normal;
}

/* Hero Wave */
.hero-wave {
    line-height: 0;
    display: block;
    margin-top: -1px;
    background: transparent;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 90px;
}

/* ============================================
   SECTIONS & TITLES
   ============================================ */

.comfort-section {
    padding: 40px;
    text-align: center;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.comfort-section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #1a4a52;
    font-weight: 600;
}

.comfort-section p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #666;
    font-size: 1rem;
}

.site-boxed {
    max-width: 1600px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.title-container {
    text-align: center;
    padding: 10px 20px 30px;
    font-family: 'Nunito', sans-serif;
    margin-top: -10px;
}

.title-container h1,
.title-container h2,
.title-container .services-title {
    font-size: 2.35rem;
    color: #1a2b3c;
    margin-bottom: 12px;
    font-weight: 300;
    letter-spacing: 1.5px;
    font-family: 'Nunito', sans-serif;
    font-style: italic;
}

.divider {
    width: 40px;
    height: 3px;
    background-color: #00acc1;
    margin: 0 auto;
    border-radius: 2px;
}

/* ============================================
   CARDS & CONTENT BLOCKS
   ============================================ */
.main-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 24px 40px 40px 40px;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
}

.card {
    background: white;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.card.new-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfeff 100%);
    border: 1px solid rgba(0, 172, 193, 0.12);
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(16, 83, 97, 0.08);
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card.new-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(16, 83, 97, 0.12);
}

.icon-circle {
    background-color: #e0f7f9;
    min-width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.card.new-card .icon-circle {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 172, 193, 0.12), rgba(0, 172, 193, 0.04));
}

.icon-circle i {
    font-size: 28px;
    color: #00acc1;
}

.text-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 700;
    font-family: 'Nunito', 'Segoe UI', sans-serif;
}

.card.new-card .text-content h3 {
    font-size: 1.22rem;
    margin: 0;
    color: #1a4a52;
}

.text-content p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
}

.card.new-card .text-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #62737a;
    margin: 0 0 14px 0;
}

.more-link {
    color: #00acc1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
}

.card.new-card .more-link {
    background: #00acc1;
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.84rem;
}

.card.new-card .more-link:hover {
    background: #0097a7;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 10px 30px rgba(14, 77, 92, 0.08);
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(0, 173, 191, 0.12);
    color: #00adbf;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
    font-size: 1.15rem;
}

.service-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #1f4653;
}

.service-content p {
    margin: 0 0 14px 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #5f6f76;
}

.service-link {
    color: #00adbf;
    text-decoration: none;
    font-weight: 700;
}

/* ============================================
   GLOBAL BANNER
   ============================================ */
.global-banner {
    background: linear-gradient(90deg, #cdeef3 0%, #e8f9fb 50%, #f7fdfe 100%);
    border-radius: 40px;
    margin: 20px;
    padding: 42px 48px;
    display: grid;
    grid-template-columns: 1.6fr 0.7fr 1.1fr 1fr;
    gap: 34px;
    align-items: center;
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    color: #1a4a52;
}

.intro-box h2 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    max-width: 520px;
}

.intro-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
}

.center-logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.circle-border {
    width: 110px;
    height: 110px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-border i {
    font-size: 40px;
    color: #00acc1;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.35;
    white-space: normal;
}

.check-list li i {
    color: #00acc1;
    font-size: 1.1rem;
    margin-top: 3px;
    flex: 0 0 auto;
}

/* Testimonial */
.testimonial-box {
    flex: 1.5;
    background-color: #00acc1;
    color: white;
    padding: 30px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 170px;
}

.icon-quote {
    font-size: 25px;
    opacity: 0.6;
    margin-bottom: 10px;
}

.testimonial-box p {
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-weight: 600;
}

.municipalities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 15px;
}

.municipalities-grid .footer-col {
    flex: none !important;
}

.municipalities-note {
    color: #a8d4db;
    font-size: 0.85rem;
    margin-top: 15px;
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(135deg, #1a4a52 0%, #0d3038 100%);
    color: #cde8ec;
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    padding: 60px 0 0 0;
    margin-top: 0;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px 50px;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-brand {
    flex: 1.4;
}

.footer-logo {
    height: 60px;
    margin-bottom: 16px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 20px 0;
    max-width: 260px;
    opacity: 0.9;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.footer-socials a:hover {
    background-color: #00acc1;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #00acc1;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a8d4db;
    text-decoration: none;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, gap 0.2s;
}

.footer-links a i {
    font-size: 0.6rem;
    color: #00acc1;
}

.footer-links a:hover {
    color: #ffffff;
    gap: 12px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: #a8d4db;
}

.footer-contact-info i {
    color: #00acc1;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-info a {
    color: #a8d4db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-info a:hover {
    color: white;
}

.footer-btn {
    display: inline-block;
    background-color: #00acc1;
    color: white;
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.2s;
}

.footer-btn:hover {
    background-color: #5bbcc9;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #6aabb6;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 8px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* BURGER BUTTON VISIBILITY - masquer nav desktop plus tôt */
@media (max-width: 1280px) {
    .burger-btn {
        display: flex !important;
    }

    .nav-menu,
    .contact-container {
        display: none !important;
    }
}

/* Tablets (1024px and below) */
@media (max-width: 1100px) {
    .hero-features {
        grid-template-columns: 1fr;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .global-banner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1280px) {
    .top-header {
        display: none;
    }

    .nav-menu,
    .contact-container {
        display: none !important;
    }

    .main-header {
        padding: 0;
        top: 0 !important; /* top-header cachée, pas d'espace à compenser */
    }

    body {
        padding-top: 90px;
    }

    .burger-btn {
        display: flex !important;
        margin-left: auto !important;
    }

    /* =============================================
       FIX PRINCIPAL : header toujours en ROW
       ============================================= */
    .header-boxed {
        padding: 0 20px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 90px !important;
        gap: 12px !important;
    }

    .logo-container {
        order: 1 !important;
        flex: 0 0 auto !important;
        margin-right: auto !important;
    }

    .logo-container img {
        height: 80px !important;
        max-width: none !important;
        width: auto !important;
    }

    .burger-btn {
        order: 2 !important;
        flex-shrink: 0 !important;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: auto;
        padding: 24px 24px 0 24px;
    }

    .hero-image {
        width: 250px;
        height: 250px;
        flex: 0 0 auto;
        justify-self: center;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature {
        min-width: 0;
        padding: 14px 16px;
    }

    .main-wrapper {
        grid-template-columns: 1fr;
        padding: 15px 20px 30px;
    }

    .global-banner {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        margin: 15px;
    }

    .check-list li {
        justify-content: center;
    }

    .circle-border {
        margin: 20px 0;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }

    .site-boxed {
        max-width: 100% !important;
        margin: 0 !important;
        box-shadow: none !important;
        overflow-x: hidden !important;
    }

    .header-boxed {
        flex-direction: row !important;
        align-items: center !important;
        padding: 0 16px !important;
        height: 90px !important;
        gap: 10px !important;
    }

    .logo-container {
        flex: 0 0 auto !important;
        margin-right: auto !important;
    }

    .logo-container img {
        height: 80px !important;
        max-width: none !important;
        width: auto !important;
    }

    .burger-btn {
        flex-shrink: 0 !important;
        margin-left: 0 !important;
    }

    .main-wrapper {
        grid-template-columns: 1fr;
        padding: 15px;
        background-color: #fff !important;
    }

    .card {
        width: 100%;
        padding: 20px;
        margin-bottom: 15px;
        box-sizing: border-box;
    }

    .global-banner {
        margin: 10px;
        padding: 20px;
        border-radius: 20px;
    }

    .title-container {
        padding: 10px 15px 20px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 35px;
        padding: 0 20px 40px;
    }

    .footer-col {
        min-width: 0;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 18px 20px;
    }

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

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-features {
        gap: 10px;
    }

    .feature {
        min-width: 0;
        width: 100%;
    }

    .comfort-section {
        padding: 30px 20px;
    }
}

/* Extra small (480px and below) */
@media (max-width: 480px) {
    body {
        padding-top: 90px;
    }

    .header-boxed {
        padding: 0 12px !important;
        height: 90px !important;
    }

    .logo-container img {
        height: 80px !important;
        max-width: none !important;
        width: auto !important;
    }

    .hero-section {
        padding: 16px 16px 0 16px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-image {
        width: 200px;
        height: 200px;
    }

    .global-banner {
        margin: 8px;
        padding: 16px;
    }

    .footer-inner {
        padding: 0 16px 30px;
    }

    .footer-bottom {
        padding: 14px 16px;
    }
}