/*
    Theme Name: OraAdvices
    Theme URI: http://localhost/oraadvices
    Author: ORA ADVICES
    Description: Thème WordPress sur mesure pour Ora Advices
    Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================
   NAVBAR DESKTOP - STYLE ORIGINAL
============================ */
.site-header {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 1000;
    background: transparent;
}

.navbar-card {
    width: 90vw;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    position: fixed;
    padding: 0 2rem;
    background: rgba(28, 63, 43, 0.45);
    backdrop-filter: blur(18px) saturate(150%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* RECTANGLE LOGO */
.logo-rect {
    background: #fff;
    width: 250px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 0 0 16px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    clip-path: polygon(0 0, 65% 0, 100% 100%, 0% 100%);
    z-index: 10;
}

.logo-rect .custom-logo {
    max-width: 75%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

/* NAVIGATION DESKTOP */
.main-nav {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    margin-left: 560px;
    margin-right: auto;
    width: calc(100% - 260px - 200px);
    max-width: 250px;
    flex: none;
    min-width: unset !important;
}

.nav-list {
    display: flex;
    gap: clamp(10px, 2vw, 23px);
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
}

.nav-list li a {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-list li a:hover::after {
    width: 100%;
}

/* STYLE SPÉCIAL POUR LE BOUTON CONTACT DANS LE MENU */
.nav-list li.contact-menu-item a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff !important;
    color: #0C8F43 !important;
    border-radius: 24px !important;
    padding: 0 20px !important;
    height: 44px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(28, 191, 107, 0.15) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    gap: 8px !important;
    min-width: 150px !important;
    border-bottom: none !important;
    margin-left: 10px !important;
}

.nav-list li.contact-menu-item a::after {
    display: none !important;
}

.nav-list li.contact-menu-item a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(28, 191, 107, 0.25) !important;
    background: #fff !important;
    color: #0C8F43 !important;
}

/* CACHER L'ANCIEN BOUTON CONTACT SÉPARÉ */
.header-contact-btn {
    display: none !important;
}

/* MENU BURGER - CACHÉ SUR DESKTOP */
.menu-burger {
    display: none;
}

/* ==========================================
   TABLETTE 1200px-1300px - NAVIGATION COMPLÈTE
========================================== */
@media (max-width: 1300px) and (min-width: 1201px) {
    .site-header {
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
        background: #fff !important;
        height: 70px !important;
        box-shadow: 0 2px 20px rgba(0,0,0,0.1) !important;
        z-index: 10000 !important;
    }

    .navbar-card {
        width: 100% !important;
        height: 70px !important;
        padding: 0 20px !important;
        background: #fff !important;
        border-radius: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
        z-index: 10001 !important;
    }

    /* LOGO SUR TABLETTE */
    .logo-rect {
        width: auto !important;
        background: #fff !important;
        clip-path: none !important;
        position: relative !important;
        left: 0 !important;
        height: 100% !important;
        border-radius: 0 !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    .logo-rect .custom-logo {
        max-width: 150px !important;
        height: auto !important;
    }

    /* NAVIGATION VISIBLE SUR TABLETTE */
    .main-nav {
        display: flex !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: auto !important;
        max-width: none !important;
    }

    .nav-list {
        gap: 15px !important;
    }

    .nav-list li a {
        color: #0C8F43 !important;
        font-size: 14px !important;
    }

    .nav-list li.contact-menu-item a {
        background: #0C8F43 !important;
        color: #fff !important;
        font-size: 14px !important;
        padding: 0 15px !important;
        height: 36px !important;
        min-width: 130px !important;
    }

    /* CACHER LE BURGER SUR TABLETTE */
    .menu-burger {
        display: none !important;
    }
}

/* ==========================================
   CORRECTION POUR LA PLAGE 1090px-790px 
   VERSION PROPRE ET FONCTIONNELLE
========================================== */
@media (max-width: 1200px) and (min-width: 700px) {
    .site-header {
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
        background: #fff !important;
        height: 70px !important;
        box-shadow: 0 2px 20px rgba(0,0,0,0.1) !important;
        z-index: 10000 !important;
    }

    .navbar-card {
        width: 100% !important;
        height: 70px !important;
        padding: 0 20px !important;
        background: #fff !important;
        border-radius: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
        z-index: 10001 !important;
    }

    /* LOGO */
    .logo-rect {
        width: auto !important;
        background: #fff !important;
        clip-path: none !important;
        position: relative !important;
        left: 0 !important;
        height: 100% !important;
        border-radius: 0 !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    .logo-rect .custom-logo {
        max-width: 150px !important;
        height: auto !important;
    }

    /* CACHER LA NAVIGATION NORMALE */
    .main-nav {
        display: none !important;
    }

    /* AFFICHER LE BURGER */
    .menu-burger {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer !important;
        margin-left: auto;
        flex-shrink: 0;
        z-index: 10002 !important;
    }

    .menu-burger span {
        width: 100%;
        height: 2.5px;
        background: #0C8F43;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* MENU OUVERT - STYLE SIMPLE ET PROPRE */
    .main-nav.mobile-open {
        display: flex !important;
        flex-direction: column;
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        background: linear-gradient(160deg, #0C8F43 0%, #0a7a38 50%, #08692f 100%) !important;
        
        overflow-y: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    /* LISTE */
    .main-nav.mobile-open .nav-list {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 40px 0 30px !important;
        gap: 0 !important;
        list-style: none !important;
        box-sizing: border-box !important;
    }
    
    /* ITEMS */
    .main-nav.mobile-open .nav-list li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,0.15) !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    /* LIENS */
    .main-nav.mobile-open .nav-list li a {
        color: #fff !important;
        font-size: 1.2rem !important;
        font-weight: 500 !important;
        padding: 20px 30px !important;
        text-decoration: none !important;
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        transition: all 0.3s ease !important;
        font-family: 'Poppins', sans-serif !important;
        box-sizing: border-box !important;
    }

    .main-nav.mobile-open .nav-list li a:hover {
        background: rgba(255,255,255,0.1) !important;
    }

    /* BOUTON CONTACT */
    .main-nav.mobile-open .nav-list li.contact-menu-item {
        border-bottom: none !important;
        margin-top: 25px !important;
        border-top: 1px solid rgba(255,255,255,0.2) !important;
        padding-top: 25px !important;
        width: 100% !important;
    }

    .main-nav.mobile-open .nav-list li.contact-menu-item a {
        background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%) !important;
        color: #0C8F43 !important;
        border-radius: 16px !important;
        padding: 18px 25px !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        margin: 0 30px !important;
        box-shadow: 0 8px 25px rgba(255,255,255,0.15) !important;
        border: 2px solid rgba(255,255,255,0.3) !important;
        justify-content: center !important;
        text-align: center !important;
        width: calc(100% - 60px) !important;
        display: block !important;
    }

    .main-nav.mobile-open .nav-list li.contact-menu-item a:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 12px 35px rgba(255,255,255,0.25) !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%) !important;
    }

    /* ANIMATION BURGER */
    .menu-burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px) !important;
    }
    .menu-burger.active span:nth-child(2) {
        opacity: 0 !important;
    }
    .menu-burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px) !important;
    }

    body.menu-open {
        overflow: hidden !important;
    }
}
/* ==========================================
   MOBILE - EN DESSOUS DE 700px - MENU BURGER
========================================== */
@media (max-width: 699px) {
    .site-header {
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
        background: #fff !important;
        height: 70px !important;
        box-shadow: 0 2px 20px rgba(0,0,0,0.1) !important;
        z-index: 10000 !important;
    }

    .navbar-card {
        width: 100% !important;
        height: 70px !important;
        padding: 0 20px !important;
        background: #fff !important;
        border-radius: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
        z-index: 10001 !important;
    }

    /* LOGO SUR MOBILE */
    .logo-rect {
        width: auto !important;
        background: #fff !important;
        clip-path: none !important;
        position: relative !important;
        left: 0 !important;
        height: 100% !important;
        border-radius: 0 !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    .logo-rect .custom-logo {
        max-width: 150px !important;
        height: auto !important;
    }

    /* CACHER LA NAVIGATION SUR MOBILE */
    .main-nav {
        display: none !important;
    }

    /* AFFICHER LE BURGER SUR MOBILE */
    .menu-burger {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer !important;
        margin-left: auto;
        flex-shrink: 0;
        z-index: 10002 !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: all !important;
        position: relative;
        -webkit-tap-highlight-color: transparent;
    }

    .menu-burger span {
        width: 100%;
        height: 2.5px;
        background: #0C8F43;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* MENU MOBILE OUVERT */
    .main-nav.mobile-open {
        display: flex !important;
        flex-direction: column;
        position: fixed !important;
        
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        min-width: 100vw !important;
        height: calc(100vh - 70px) !important;
        min-height: calc(100vh - 70px) !important;
        background: linear-gradient(160deg, #0C8F43 0%, #0a7a38 50%, #08692f 100%) !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        z-index: 99999 !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: all !important;
        transform: translateX(0) !important;
    }

    /* LISTE - PLEINE LARGEUR */
    .main-nav.mobile-open .nav-list {
        display: flex !important;
        flex-direction: column;
        width: 100% !important;
        margin: 0 !important;
        padding: 40px 0 30px !important;
        gap: 0;
        box-sizing: border-box;
        visibility: visible !important;
        opacity: 1 !important;
        height: calc(100vh - 70px) !important;
        min-height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
    }
    
    .main-nav.mobile-open .nav-list li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* LIENS - PLEINE LARGEUR */
    .main-nav.mobile-open .nav-list li a {
        color: #fff !important;
        font-size: 1.2rem !important;
        font-weight: 500 !important;
        padding: 20px 30px !important;
        text-decoration: none !important;
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        transition: all 0.3s ease !important;
        font-family: 'Poppins', sans-serif !important;
        box-sizing: border-box !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* EFFET AU SURVOL */
    .main-nav.mobile-open .nav-list li a:hover {
        background: rgba(255,255,255,0.1) !important;
    }

    /* BOUTON CONTACT - PLEINE LARGEUR */
    .main-nav.mobile-open .nav-list li.contact-menu-item {
        border-bottom: none !important;
        margin-top: 25px !important;
        border-top: 1px solid rgba(255,255,255,0.2) !important;
        padding-top: 25px !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .main-nav.mobile-open .nav-list li.contact-menu-item a {
        background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%) !important;
        color: #0C8F43 !important;
        border-radius: 16px !important;
        padding: 18px 25px !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        margin: 0 30px !important;
        box-shadow: 0 8px 25px rgba(255,255,255,0.15) !important;
        border: 2px solid rgba(255,255,255,0.3) !important;
        justify-content: center !important;
        text-align: center !important;
        width: calc(100% - 60px) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .main-nav.mobile-open .nav-list li.contact-menu-item a:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 12px 35px rgba(255,255,255,0.25) !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%) !important;
    }

    /* ANIMATION BURGER */
    .menu-burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px) !important;
    }
    .menu-burger.active span:nth-child(2) {
        opacity: 0 !important;
    }
    .menu-burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px) !important;
    }

    body.menu-open {
        overflow: hidden !important;
    }
}
/* ==========================================
   STYLES EXISTANTS POUR HERO SECTION
========================================== */
.hero-section {
    position: relative;
    width: 96vw;
    max-width: 1440px;
    height: 60vh;
    min-height: 650px;
    margin: 15px auto 0 auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 24px;
    background: transparent;
}

.hero-media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    display: block;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.hero-video,
.hero-fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    display: block;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 63, 43, 0.4) 0%, rgba(28, 63, 43, 0.2) 50%, rgba(28, 63, 43, 0.4) 100%);
    z-index: 2;
    border-radius: 24px;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-grid-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.hero-single-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.single-column-center {
    text-align: center;
}

.column-left {
    text-align: left;
}

.column-right {
    text-align: left;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    width: 86vw;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2.8%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.hero-grid-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    width: 100%;
    align-items: start;
}

.column-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
}

.column-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 25px;
    margin-top: 160px;
    padding-right: 0;
}

.hero-main-title {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: clamp(1.5rem, 5vw, 3.3rem);
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    margin: 0;
    text-transform: none;
    max-width: 600px;
    padding: 0;
    text-align: center;
	
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255);
    margin-top: 1rem;
    line-height: 1.4;
    max-width: 600px;
}

.hero-grid-two-columns .hero-subtitle {
    text-align: center;
}

/* Pour le layout une colonne, le sous-titre est centré */
.hero-single-column .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-main-title .bold-text {
    font-weight: 700;
    color: #ffffff;
	white-space: nowrap;
}

.hero-single-column-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 2rem;
}

.hero-description {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 10px 0;
    max-width: 400px;
    padding: 0;
    width: 100%;
    text-align: right;
}

.hero-title-container {
    text-align: center;
    margin-bottom: auto; /* Pousse vers le haut */
}

.hero-description strong {
    color: #0C8F43;
    font-weight: 600;
}

.consultation-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    color: #0C8F43;
    padding: 12px 20px;
    border-radius: 100px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
    width: fit-content;
    min-width: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    align-self: flex-end;
}

.consultation-link:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.link-arrow {
    color: #0C8F43;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.consultation-link:hover .link-arrow {
    transform: translateX(3px);
}

/* ==========================================
   MEDIA QUERIES EXISTANTES
========================================== */
@media (max-width: 900px) {
    .site-header {
        top: 0;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
        position: fixed;
        z-index: 1000;
    }
    .navbar-card {
        width: 100%;
        max-width: none;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        height: 60px;
        padding: 0 20px;
        justify-content: space-between;
    }
    .main-nav,
    .header-contact-btn {
        display: none;
    }
    .menu-burger {
        display: flex;
    }
    
    .hero-section {
        margin-top: 90px;
        width: 100%;
        border-radius: 0;
        height: calc(100vh - 90px);
        min-height: 500px;
    }
    .hero-grid-two-columns {
        grid-template-columns: 1fr;
    }
    .column-left {
        align-items: center;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        order: 1;
    }
    .column-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 0;
        order: 2;
        width: 100%;
    }
 
.myhero-main-titles {
    font-size: 4.5rem !important; /* Desktop fixe */
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    text-align: left;
    margin-bottom: 2rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
    max-width: none;
}
	
	
.myhero-main-titles strong {
    color: #ffffff;
    font-weight: 900;
}

/* Version desktop - deux colonnes */
.hero-grid-two-columns .myhero-main-titles {
    font-size: 4.5rem; /* Taille fixe demandée sur desktop */
    text-align: left;
    margin-bottom: 0;
    max-width: none;
}

/* Version desktop - colonne unique */
.hero-single-column .myhero-main-titles {
    font-size: 4.5rem; /* Taille fixe demandée sur desktop */
    text-align: center;
    margin-bottom: 2rem;
    max-width: none;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .myhero-main-titles {
        font-size: clamp(1.8rem, 8vw, 3rem) !important;
        text-align: center !important;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-grid-two-columns .myhero-main-titles,
    .hero-single-column .myhero-main-titles {
        font-size: clamp(1.8rem, 8vw, 3rem) !important;
        text-align: center !important;
    }
    
    .myhero-main-titles strong::after {
        height: 2px;
        bottom: -1px;
    }
}

/* Styles pour la description et le bouton */
.hero-description {
    display: block;
    text-align: center;
    padding-left: 0;
    max-width: 500px;
    margin: 0;
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
}

.consultation-link {
    width: fit-content;
    min-width: auto;
    padding: 10px 18px;
    font-size: 0.95rem;
}
}
@media (max-width: 768px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: white;
        z-index: 1000;
    }
    
    .navbar-card {
        width: 100%;
        height: 70px;
        background: white;
        border-radius: 0;
        padding: 0 20px;
        position: relative;
    }
    
    .logo-rect {
        background: transparent !important;
        clip-path: none !important;
        border-radius: 0 !important;
        position: relative !important;
        width: auto !important;
    }
    
    .logo-rect .custom-logo {
        max-width: 120px;
    }
    
    .main-nav,
    .header-contact-btn {
        display: none;
    }
    
    .menu-burger {
        display: flex !important;
    }
    
    .menu-burger span {
        background: #0C8F43;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 5px 0;
    }
    .navbar-card {
        height: 50px;
        padding: 0 3%;
    }
    .hero-section {
        margin: 55px auto 0 auto;
        height: calc(75vh - 55px);
        min-height: 400px;
    }
    .hero-content {
        padding: 0 20px;
    }
    .hero-grid-two-columns {
        gap: 12px;
    }
    .column-left {
        gap: 10px;
    }
    .column-right {
        gap: 10px;
    }
    .hero-main-title {
        font-size: 1.4rem;
        line-height: 1.2;
		white-space: nowrap;
    }
    .hero-description {
        font-size: 14px;
        max-width: 350px;
    }
    .consultation-link {
        width: fit-content;
        min-width: auto;
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}

.mobile-menu-open .navbar-card {
    flex-direction: column;
    height: auto;
    padding: 0;
    gap: 0;
    background: #1C3F2B;
    border-radius: 0;
}

.mobile-menu-open .logo-rect {
    background: #fff;
    width: 100%;
    height: 60px;
    border-radius: 0;
    clip-path: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
}

.mobile-menu-open .main-nav {
    display: flex;
    order: 2;
    margin: 0;
    width: 100%;
    padding: 15px 5%;
    background: #1C3F2B;
}

.mobile-menu-open .nav-list {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.mobile-menu-open .nav-list li a {
    color: #fff;
    font-size: 16px;
    padding: 8px 0;
    text-decoration: none;
    display: block;
    text-align: center;
}

.mobile-menu-open .header-contact-btn {
    display: flex;
    order: 3;
    margin: 10px 5% 15px 5%;
    background: #fff;
    color: #1C3F2B;
    width: 200px;
    align-self: center;
    border-radius: 6px;
    justify-content: center;
}

.missions-section {
    background: #EAEFF5;
}


/* Bouton Voir plus des missions */

.see-more-missions {
    border: 2px solid #0C8F43 !important;
    color: #0C8F43 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Lexend', sans-serif;
}

.see-more-missions:hover {
    background-color: #0C8F43 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(12, 143, 67, 0.3);
}

.see-more-missions:hover svg {
    stroke: white;
}

.see-more-missions svg {
    transition: transform 0.3s ease;
}

.see-more-missions:hover svg {
    transform: translateX(3px);
}

.mission-title {
    color: #0C8F43 !important;
}

.header-card {
    border: 1px solid #e9ecef !important;
    transition: all 0.3s ease;
}

.header-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.green-circle {
    width: 12px;
    height: 12px;
    background-color: #0C8F43;
    border-radius: 50%;
    flex-shrink: 0;
}

.missions-main-title {
    color: #0C8F43 !important;
}

.letter-spacing-wide {
    letter-spacing: 0.08em;
}

.missions-section .row.justify-content-center .col-lg-4 {
    margin-bottom: 2rem;
}

.mission-card {
    transition: all 0.3s ease;
    border-left: 4px solid #1CBF6B !important;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff !important;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    background-color: #0C8F43 !important;
}

.mission-card:hover .h5,
.mission-card:hover .fw-bold,
.mission-card:hover .text-dark {
    color: #ffffff !important;
}

.mission-card:hover .text-muted {
    color: #e8f5e9 !important;
}

.mission-icons {
    height: 50px;
    flex-shrink: 0;
}

.mission-icon-normal {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.mission-icon-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-card:hover .mission-icon-normal {
    opacity: 0;
}

.mission-card:hover .mission-icon-hover {
    opacity: 1;
}

.mission-icon-placeholder {
    transition: all 0.3s ease;
    background-color: #f8f9fa !important;
}

.mission-card:hover .mission-icon-placeholder {
    background-color: #ffffff !important;
    transform: scale(1.1);
}

.mission-card:hover .mission-icon-placeholder span {
    color: #0C8F43 !important;
}

.mission-card * {
    transition: color 0.3s ease, background-color 0.3s ease;
}

.blur-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: fit-content;
    width: fill;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title-container {
    width: fit-content;
    max-width: 70%;
}

.blur-card h3 {
    line-height: 1.3;
    word-wrap: break-word;
}

.contact-btn {
    border: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    width: fit-content;
    height: fit-content;
    gap: 1px;
}


/* Style des placeholders */

.contact-form .form-control::placeholder {
    color: #6c757d;
    font-family: 'Lexend', sans-serif;
    font-size: 0.9rem;
}


/* Champ date qui devient sélecteur */

.contact-form input[type="date"]::before {
    content: attr(placeholder);
    color: #6c757d;
    margin-right: 0.5em;
}

.contact-form input[type="date"]:focus::before,
.contact-form input[type="date"]:valid::before {
    content: "";
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.contact-arrow {
    transition: transform 0.3s ease;
}

.contact-btn:hover .contact-arrow {
    transform: translateX(3px);
}

.btn-textEntrer {
    color: #0C8F43 !important;
    font-family: 'Poppins', sans-serif !important;
}

.blur-card-title {
    font-family: 'Poppins', sans-serif !important;
}

.about-section {
    background: #EAEFF5;
}

.about-card {
    height: auto;
    flex: 1;
    min-height: 500px;
}

.about-image-container,
.about-image-placeholder {
    min-height: 500px;
}

@media (max-width: 991.98px) {
    .about-card {
        min-height: auto;
    }
    .about-image-container,
    .about-image-placeholder {
        min-height: 300px;
    }
}

.about-section-image {
    flex: 1;
}

.poppins-title {
    font-family: 'Poppins', sans-serif !important;
    color: #0C8F43 !important;
}

.lexend-text {
    font-family: 'Lexend', sans-serif !important;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
}

.about-section .row.align-items-stretch {
    min-height: 500px;
}

.about-section-image {
    transition: height 0.3s ease;
}

.about-image-placeholder {
    border: 2px dashed #dee2e6;
    min-height: 400px;
}

.about-contact-btn {
    background-color: #0C8F43 !important;
    border: none;
    color: white !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-family: 'Lexend', sans-serif;
    width: fit-content;
    height: fit-content;
    white-space: nowrap;
    margin-top: 0.5rem;
}

.about-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 143, 67, 0.3) !important;
}

.contact-arrow {
    transition: transform 0.3s ease;
}

.about-contact-btn:hover .contact-arrow {
    transform: translateX(3px);
}

.about-content {
    position: relative;
    flex-grow: 1;
    margin-bottom: 0.5rem;
}

.about-row-equal-height {
    display: flex;
    align-items: stretch;
    /* Force les enfants à avoir même hauteur */
}

.about-row-equal-height>.col-lg-6 {
    display: flex;
}

.about-image-wrapper {
    height: auto;
    /* S'adaptera via JavaScript */
}

.content-truncate {
    max-height: none;
    overflow: visible;
}

.content-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, white);
    pointer-events: none;
}

.voir-plus-btn {
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.voir-plus-btn:hover {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }
    .about-section-image {
        max-height: 400px;
        margin-top: 2rem;
    }
}

.values-section {
    background: #EAEFF5;
}

.values-main-title {
    color: #0C8F43 !important;
    font-family: 'Poppins', sans-serif !important;
}

.values-swiper {
    padding: 20px 10px;
    position: relative;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
}

.value-icon img {
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon img {
    transform: scale(1.1);
}

.values-swiper .swiper-button-next,
.values-swiper .swiper-button-prev {
    color: #0C8F43 !important;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.values-swiper .swiper-button-next:after,
.values-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
}

.values-swiper .swiper-button-next {
    right: -20px;
}

.values-swiper .swiper-button-prev {
    left: -20px;
}

.value-card {
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    max-height: 360px;
    height: 320px;
}

.value-card .d-flex {
    flex-shrink: 0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.value-number {
    background: white !important;
    font-size: 0.9rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.value-icon-placeholder {
    transition: all 0.3s ease;
}

.green-text {
    color: #0C8F43 !important;
    font-size: 15px;
}

.value-card:hover .value-icon-placeholder {
    background-color: #ffffff !important;
    transform: scale(1.1);
}

.value-card:hover .value-number span {
    font-size: 2.1rem !important;
}

.value-card:hover .value-icon-placeholder span {
    color: white !important;
}

.value-title {
    color: #0C8F43;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
    min-height: 5px;
}

.value-description {
    flex-grow: 1;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #0C8F43;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0C8F43 !important;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .values-swiper {
        padding: 10px 5px;
    }
    .values-swiper .swiper-button-next,
    .values-swiper .swiper-button-prev {
        display: none;
    }
    .value-card {
        min-height: 350px;
        margin: 0 10px;
    }
}

.contact-section {
    background: #EAEFF5;
}

.contact-green-bg {
    background-color: #0C8F43;
    background: linear-gradient(135deg, #0C8F43 0%, #0a7a38 100%);
}

.contact-main-title {
    font-family: 'Poppins', sans-serif !important;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-subtitle {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form-card {
    border: 1px solid #e9ecef !important;
    margin-bottom: -100px;
    position: relative;
    z-index: 10;
}

.contact-form .form-control {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(12, 143, 67, 0.1);
    border-color: #0C8F43 !important;
}

.contact-form .form-label {
    font-family: 'Lexend', sans-serif;
    font-size: 0.85rem;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-text {
    font-family: 'Lexend', sans-serif;
    font-size: 0.95rem;
}

.contact-item {
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-submit-btn {
    background-color: #DA8A2A !important;
    border: none !important;
    font-family: 'Lexend', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    outline: none !important;
}

.contact-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(218, 138, 42, 0.4) !important;
    background-color: #DA8A2A !important;
    border: none !important;
}

.contact-submit-btn:disabled {
    background-color: #efbe83 !important;
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
}

.contact-submit-btn svg {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover:not(:disabled) svg {
    transform: translateX(3px);
}

.contact-form hr {
    border-color: #e9ecef;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 1.5rem !important;
        margin-bottom: -50px;
    }
    .contact-main-title {
        font-size: 2.2rem;
    }
    .contact-green-bg {
        padding-bottom: 100px;
    }
}

.footer-ribbon {
    background-color: #32BA6B !important;
    border: none;
    margin: 0;
}

.hover-underline {
    position: relative;
    transition: all 0.3s ease;
}

.hover-underline:hover {
    opacity: 0.8;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .footer-ribbon {
        padding: 1rem 0 !important;
    }
    .footer-ribbon .row {
        flex-direction: column;
        text-align: center;
    }
    .footer-ribbon .col-md-6 {
        margin-bottom: 0.5rem;
    }
    .footer-ribbon .col-md-6:last-child {
        margin-bottom: 0;
    }
}

html {
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        scroll-padding-top: 100px;
    }
}


/* Politique de Confidentialité */

.privacy-policy-section .section-number {
    font-size: 1rem;
}

.privacy-policy-section .section-content {
    border-left: 3px solid #0C8F43;
    padding-left: 2rem;
}


/* Mentions Légales */

.legal-notice-section .legal-card {
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.legal-notice-section .legal-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.legal-notice-section .legal-icon {
    margin-right: 0.5rem;
}

.legal-notice-section .info-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.legal-notice-section .info-item:last-child {
    border-bottom: none;
}


/* Responsive */

@media (max-width: 768px) {
    .privacy-policy-section .section-content {
        margin-left: 0;
        padding-left: 1rem;
        border-left: 2px solid #0C8F43;
    }
    .legal-notice-section .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .legal-notice-section .info-item strong {
        min-width: auto !important;
        margin-bottom: 0.25rem;
    }
}

