/*
Theme Name: Tebior Theme
Theme URI: https://bessahlirezki.com/
Author: Bessahli Rezki ( Metronomi )
Author URI: https://metronomi.fr/
Description: Thème WordPress personnalisé
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: tebior-theme
*/

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Import des polices Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,400;0,700;1,400&family=Funnel+Display:wght@300;400;500;600;700&family=La+Belle+Aurore&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');

body {
    line-height: 1.6;
    color: #333;
    background-color: #F5EFE6;
    overflow-x: hidden;
    padding-top: 252px;
    /* Compense la hauteur du header fixe */
    margin: 0;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Barre d'administration WordPress */
#wpadminbar {
    z-index: 999999 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ajuster le padding du body quand la barre admin est présente */
body.admin-bar {
    padding-top: 252px !important;
}

body.admin-bar .site-header {
    top: 32px !important;
    z-index: 100000 !important;
}

/* Pour les écrans plus petits */
@media screen and (max-width: 782px) {
    body.admin-bar {
        padding-top: 252px !important;
    }

    body.admin-bar .site-header {
        top: 46px !important;
    }
}

html {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

*:not(html):not(body) {
    max-width: 100%;
}


/* Conteneur principal */
.container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Conteneur principal pour le contenu */
.main-content {
    min-height: calc(100vh - 252px);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin-top: -220px;
}

/* ===== HEADER STYLES ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100000;
    background: linear-gradient(180deg, #F5EFE6 11%, rgba(245, 239, 230, 0) 85%);
    height: 252px;
    min-height: 252px;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1), background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.site-header.expanding {
    height: 100vh;
    background: linear-gradient(180deg, #F5EFE6 0%, #F5EFE6 61%, rgba(245, 239, 230, 0) 97%);
}

.header-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Header fermé */
.header-closed {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.header-top {
    align-self: stretch;
    height: 94.95px;
    padding-left: 30px;
    padding-right: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    align-self: stretch;
    padding-top: 14px;
    padding-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-main {
    width: 125px;
    height: 58px;
    mix-blend-mode: darken;
    object-fit: contain;
}

.tebior-catalyseur__handwriting {
    font-size: 46px;
    margin-top: 400px;
}

/* Header droite */
.header-right {
    width: 918.67px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 60px;
}

.header-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

/* Boutons */
.contact-btn,
.foundation-btn {
    padding: 20px;
    outline: 1px solid;
    outline-offset: -1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn {
    outline-color: #C1D9EC;
}

span {
    color: #005DA4;
    font-size: 18px;

    font-weight: 300;
    line-height: 26px;
    letter-spacing: 0.72px;
}

.foundation-btn {
    outline-color: #B3D1BD;
}

.foundation-btn span {
    color: #0D6729;
    font-size: 18px;

    font-weight: 300;
    text-transform: uppercase;
    line-height: 22px;
    letter-spacing: 0.72px;
}

.btn-vert-sapin {
    display: inline-flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--Secondaires-VERT-SAPIN, #0D6729);
}

.btn-bleu-ciel {
    display: inline-flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--Primaires-BLEU-CIEL, #005DA4);

}

/* Hamburger Menu */
.hamburger-menu {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 42px;
    height: 61px;
}

.burger-icon {
    width: 42px;
    height: 61px;
    transition: all 0.3s ease;
    display: block;
}

.close-icon {
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hamburger-menu.active .burger-icon {
    display: none;
}

.hamburger-menu.active .close-icon {
    display: block;
}

/* Header ouvert (dropdown) */
.header-open {
    position: absolute;
    top: 95px;
    /* Commencer après la partie du haut */
    left: 0;
    width: 100%;
    height: calc(100vh - 95px);
    /* Ajuster la hauteur */
    background: transparent;
    display: none;
    z-index: 100001;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.header-open.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 50px 0 0 0;
    /* Réduire le padding puisque le header reste visible */
}

/* Section Solutions */
.solutions-section {
    width: 604px;
    /* position: absolute; */
    left: 782px;
    top: -12.5px;
    /* Ajuster la position */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
}

/* Suppression des soulignements pour tous les liens du header */
.site-header a,
.header-container a,
.header-closed a,
.header-open a {
    text-decoration: none !important;
}

.site-header a:hover,
.header-container a:hover,
.header-closed a:hover,
.header-open a:hover {
    text-decoration: none !important;
}

/* Suppression des soulignements pour tous les liens du menu */
.header-open a,
.solutions-section a,
.nav-section a,
.solution-link,
.solution-text,
.nav-link {
    text-decoration: none !important;
    display: flex;
}

.header-open a:hover,
.solutions-section a:hover,
.nav-section a:hover,
.solution-link:hover,
.solution-text:hover,
.nav-link:hover {
    text-decoration: none !important;
}

/* Titres de section dans le menu dropdown - Règles spécifiques pour éviter les conflits */
.header-open .section-title,
.solutions-section .section-title,
.nav-section .section-title {
    align-self: stretch !important;
    color: rgba(0, 0, 0, 0.30) !important;

    font-style: normal !important;

    letter-spacing: 0.56px !important;
    /* 4% de 14px */
    text-transform: uppercase !important;
    text-align: left !important;
    margin-bottom: 0 !important;
}

.solutions-list {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.solution-link {
    width: 604px;
    height: 44px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(47, 48, 49, 0.20);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 1;
}

.solution-link:hover {
    opacity: 1;
    transition: all 0.3s ease;
}

.solution-link:hover .solution-text {
    opacity: 0.6;
    transition: all 0.3s ease;
}

.solution-link:hover .solution-icon {
    opacity: 1;
    transition: all 0.3s ease;
}

.solution-link:hover .solution-image {
    opacity: 1;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Couleurs spécifiques pour chaque solution au hover - maintenant gérées par les images */

.solution-text {
    width: 494px;
    font-size: 22px !important;

    font-weight: 300;
    line-height: 26px;
    text-decoration: none;
    text-wrap: nowrap;
}

.solution-link[data-expertise="Plateformes logistiques & industrielles"] .solution-text {
    color: #005DA4;
}

.solution-link[data-expertise="Aménagement des espaces de vie"] .solution-text {
    color: #F08A00;
}

.solution-link[data-expertise="Voiries urbaines et départementales"] {
    height: 57px;
}

.solution-link[data-expertise="Voiries urbaines et départementales"] .solution-text {
    color: #CF1623;
    line-height: 18px;
}

.solution-link[data-expertise="Génie civil / gros oeuvre"] .solution-text {
    color: #2F3031;
}

.solution-link[data-expertise="Immeubles de bureaux"] .solution-text {
    color: #E95D13;
}

.solution-link[data-expertise="Transport et recyclage"] .solution-text {
    color: #005DA4;
}

.solution-link[data-expertise="Enrobés"] .solution-text {
    color: #D47983;
}



.solution-link[data-expertise="Réalisation de mesures compensatoires"] .solution-text {
    color: #0D6729;
}



.icon-shape {
    width: 16px;
    height: 16px;
    background: transparent;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.solution-image {
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: all 0.3s ease;
    object-fit: contain;
}

/* Styles spécifiques pour les icônes selon les solutions */







/* Section Expertises - Version simplifiée */
.expertise-section {
    background: #005DA4;
    padding: 80px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.expertise-section .section-title {
    color: #F5EFE6 !important;
    margin-bottom: 40px;
    text-align: center;
}

.expertise-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Scroll snapping pour toute la page */
html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

/* Sections avec scroll snapping */
.stats-section {
    scroll-snap-align: start;
}

.development-section {
    scroll-snap-align: start;
}

.news-section {
    scroll-snap-align: start;
}

.solutions-wheel-framer {
    position: relative;
    width: 1440px;
    height: 1210px;
    margin: 0 auto;
    overflow: hidden;
}

.wheel-background {
    display: none;
    /* Supprimé car le fond est maintenant sur la section */
}

.vertical-line-center {
    position: absolute;
    left: 720px;
    top: 0px;
    width: 2px;
    height: 99px;
    background: #7AAED5;
}

.center-image-container {
    position: absolute;
    left: 495px;
    top: 381px;
    width: 453px;
    height: 452px;
    border-radius: 50%;
    overflow: hidden;
}

.center-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.center-border-circle {
    position: absolute;
    left: 494.12px;
    top: 380.58px;
    width: 453px;
    height: 452px;
    border-radius: 50%;
    border: 1px solid #F5EFE6;
}

.orange-arc {
    position: absolute;
    left: 721px;
    top: 380.08px;
    width: 228px;
    height: 398px;
    background: url('data:image/svg+xml,<svg width="228" height="398" viewBox="0 0 228 398" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M-6.57363e-05 2.08399C45.6319 2.08399 90.195 15.928 127.827 41.7947C165.458 67.6615 194.395 104.339 210.831 147.002C227.267 189.666 230.432 236.316 219.909 280.817C209.385 325.317 185.668 365.582 151.876 396.315" stroke="%23E95D13" stroke-width="4" stroke-dasharray="1000" stroke-dashoffset="1000"/></svg>') no-repeat;
    background-size: contain;
    transition: all 0.3s ease-in-out;
}

.orange-arc.progress-0 {
    background: url('data:image/svg+xml,<svg width="228" height="398" viewBox="0 0 228 398" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M-6.57363e-05 2.08399C45.6319 2.08399 90.195 15.928 127.827 41.7947C165.458 67.6615 194.395 104.339 210.831 147.002C227.267 189.666 230.432 236.316 219.909 280.817C209.385 325.317 185.668 365.582 151.876 396.315" stroke="%23E95D13" stroke-width="4" stroke-dasharray="1000" stroke-dashoffset="1000"/></svg>') no-repeat;
    background-size: contain;
}

.orange-arc.progress-1 {
    background: url('data:image/svg+xml,<svg width="228" height="398" viewBox="0 0 228 398" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M-6.57363e-05 2.08399C45.6319 2.08399 90.195 15.928 127.827 41.7947C165.458 67.6615 194.395 104.339 210.831 147.002C227.267 189.666 230.432 236.316 219.909 280.817C209.385 325.317 185.668 365.582 151.876 396.315" stroke="%23E95D13" stroke-width="4" stroke-dasharray="1000" stroke-dashoffset="800"/></svg>') no-repeat;
    background-size: contain;
}

.orange-arc.progress-2 {
    background: url('data:image/svg+xml,<svg width="228" height="398" viewBox="0 0 228 398" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M-6.57363e-05 2.08399C45.6319 2.08399 90.195 15.928 127.827 41.7947C165.458 67.6615 194.395 104.339 210.831 147.002C227.267 189.666 230.432 236.316 219.909 280.817C209.385 325.317 185.668 365.582 151.876 396.315" stroke="%23E95D13" stroke-width="4" stroke-dasharray="1000" stroke-dashoffset="600"/></svg>') no-repeat;
    background-size: contain;
}

.orange-arc.progress-3 {
    background: url('data:image/svg+xml,<svg width="228" height="398" viewBox="0 0 228 398" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M-6.57363e-05 2.08399C45.6319 2.08399 90.195 15.928 127.827 41.7947C165.458 67.6615 194.395 104.339 210.831 147.002C227.267 189.666 230.432 236.316 219.909 280.817C209.385 325.317 185.668 365.582 151.876 396.315" stroke="%23E95D13" stroke-width="4" stroke-dasharray="1000" stroke-dashoffset="400"/></svg>') no-repeat;
    background-size: contain;
}

.orange-arc.progress-4 {
    background: url('data:image/svg+xml,<svg width="228" height="398" viewBox="0 0 228 398" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M-6.57363e-05 2.08399C45.6319 2.08399 90.195 15.928 127.827 41.7947C165.458 67.6615 194.395 104.339 210.831 147.002C227.267 189.666 230.432 236.316 219.909 280.817C209.385 325.317 185.668 365.582 151.876 396.315" stroke="%23E95D13" stroke-width="4" stroke-dasharray="1000" stroke-dashoffset="200"/></svg>') no-repeat;
    background-size: contain;
}

.orange-arc.progress-5 {
    background: url('data:image/svg+xml,<svg width="228" height="398" viewBox="0 0 228 398" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M-6.57363e-05 2.08399C45.6319 2.08399 90.195 15.928 127.827 41.7947C165.458 67.6615 194.395 104.339 210.831 147.002C227.267 189.666 230.432 236.316 219.909 280.817C209.385 325.317 185.668 365.582 151.876 396.315" stroke="%23E95D13" stroke-width="4" stroke-dasharray="1000" stroke-dashoffset="0"/></svg>') no-repeat;
    background-size: contain;
}

.connection-points {
    position: absolute;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.point.active {
    background: #E95D13 !important;
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(233, 93, 19, 0.6);
    z-index: 10;
}

.point-1 {
    left: 713.52px;
    top: 374px;
    width: 15px;
    height: 14px;
    background: #F5EFE6;
}

.point-2 {
    left: 560.30px;
    top: 434.10px;
    width: 15px;
    height: 14px;
    background: #F5EFE6;
}

.point-3 {
    left: 867.39px;
    top: 434.10px;
    width: 14px;
    height: 14px;
    background: #F5EFE6;
}

.point-4 {
    left: 560.30px;
    top: 765.62px;
    width: 15px;
    height: 15px;
    background: #F5EFE6;
}

.point-5 {
    left: 713.52px;
    top: 826.38px;
    width: 15px;
    height: 14px;
    background: #F5EFE6;
}

.point-6 {
    left: 940px;
    top: 600px;
    width: 14px;
    height: 14px;
    background: #EFE0CC;
}

.point-7 {
    left: 487px;
    top: 600.52px;
    width: 14px;
    height: 14px;
    background: #F5EFE6;
}

.special-orange-circle {
    position: absolute;
    left: 862px;
    top: 761px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #E95D13;
}

.orange-border-circle {
    position: absolute;
    left: 843px;
    top: 742px;
    width: 61px;
    height: 61px;
    border-radius: 50%;
    border: 1px solid #E95D13;
}

.additional-points {
    position: absolute;
    width: 100%;
    height: 100%;
}

.point-8 {
    left: 713.52px;
    top: 374px;
    width: 15px;
    height: 14px;
    background: #F5EFE6;
}

.point-9 {
    left: 487px;
    top: 600.52px;
    width: 14px;
    height: 14px;
    background: #F5EFE6;
}

.solution-texts {
    position: absolute;
    width: 100%;
    height: 100%;
}

.solution-text {
    position: absolute;
    text-align: center;
    color: rgba(245.24, 238.63, 229.83, 0.50);
    font-size: 20px;

    font-weight: 400;
    line-height: 26px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.solution-text:hover {
    color: rgba(245.24, 238.63, 229.83, 0.80);
    background: rgba(255, 255, 255, 0.1);
}

.solution-text.active {
    color: #F5EFE6;
    font-weight: 500;
}

.vertical-line-bottom-1 {
    position: absolute;
    left: 721px;
    top: 912px;
    width: 2px;
    height: 112px;
    background: #7AAED5;
}

.vertical-line-bottom-2 {
    position: absolute;
    left: 721px;
    top: 1084px;
    width: 2px;
    height: 126px;
    background: #7AAED5;
}

.center-title-frame {
    position: absolute;
    left: 284px;
    top: 122px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.center-subtitle {
    text-align: center;
    color: rgba(245.24, 238.63, 229.83, 0.80);
    font-size: 20px;

    font-weight: 400;
    line-height: 30px;
}

.center-main-title {
    width: 872px;
    text-align: center;
    color: #F5EFE6;
    font-size: 60px;

    font-weight: 300;
    line-height: 66px;
}

.wheel-button {
    position: absolute;
    left: 554px;
    top: 1024px;
    padding: 16px 24px;
    border: 1px solid #F5EFE6;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.wheel-button:hover {
    background: rgba(245, 239, 230, 0.1);
}

.wheel-button span {
    text-align: center;
    color: #F5EFE6;
    font-size: 20px;

    font-weight: 400;
    text-transform: uppercase;
    line-height: 20px;
    letter-spacing: 1px;
}

/* Amélioration du scroll snapping */
body {
    scroll-behavior: smooth;
}

.cursive-texte-carr {
    font-size: 46px !important;
    line-height: 97% !important;
}



/* Indicateur de progression du scroll */
.expertise-section::before {
    content: '';
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 4px;
    height: 200px;
    background: rgba(245, 239, 230, 0.3);
    border-radius: 2px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-section.scroll-active::before {
    opacity: 1;
}



.expertise-section::after {
    content: '';
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 4px;
    height: 40px;
    background: #E95D13;
    border-radius: 2px;
    z-index: 1001;
    opacity: 0;
    transition: all 0.3s ease;
}

.expertise-section.scroll-active::after {
    opacity: 1;
    transform: translateY(calc(-50% + var(--scroll-progress, 0) * 80px));
}

/* Animation de transition fluide */
.expertise-section {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive pour le scroll snapping */
@media (max-width: 768px) {

    .expertise-section::before,
    .expertise-section::after {
        right: 15px;
        height: 150px;
    }

    .expertise-section::after {
        height: 30px;
    }
}

@media (max-width: 1200px) {
    .solutions-wheel-framer {
        transform: scale(0.6);
        transform-origin: center top;
    }
}

@media (max-width: 768px) {
    .solutions-wheel-framer {
        transform: scale(0.4);
        transform-origin: center top;
    }

    .center-main-title {
        font-size: 40px;
        line-height: 44px;
        width: 600px;
    }
}

@media (max-width: 480px) {
    .solutions-wheel-framer {
        transform: scale(0.3);
        transform-origin: center top;
    }

    .center-main-title {
        font-size: 30px;
        line-height: 34px;
        width: 400px;
    }
}

/* Séparateur vertical */

/* Séparateur vertical */

/* Séparateur vertical */
.vertical-separator {
    left: 720px;
    top: 50px;
    /* Ajuster la position */
    width: 2px;
    height: 375px;
    background: #C1D9EC;
}

/* Section Navigation */
.navigation-sections {
    width: 280px;
    /* position: absolute; */
    left: 398px;
    top: 53px;
    /* Ajuster la position */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}

.nav-section {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}

.nav-section .section-title {
    align-self: stretch;
    display: flex;
    gap: 10px;
}

.nav-links {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.nav-link {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #005DA4;
    font-size: 26px;

    font-weight: 300;
    line-height: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Bouton fermer */
.close-dropdown {
    position: absolute;
    left: 1353px;
    top: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.close-dropdown svg path {
    stroke: #005DA4;
}

/* Responsive */
@media screen and (max-width: 1440px) {
    .header-right {
        width: auto;
        gap: 30px;
    }



    .navigation-sections {
        left: 20px;
    }



    .close-dropdown {
        left: calc(100% - 50px);
    }
}

@media screen and (max-width: 768px) {
    .site-header {
        height: auto;
        min-height: auto;
    }

    .header-top {
        padding: 20px;
        height: auto;
    }

    .header-right {
        width: 100%;
        gap: 20px;
    }

    .header-buttons {
        gap: 15px;
    }

    .contact-btn,
    .foundation-btn {
        padding: 15px;
    }

    .contact-btn span,
    .foundation-btn span {
        font-size: 14px;
    }


    .dropdown-content {
        padding: 100px 20px 20px;
    }

    .solutions-section,
    .navigation-sections {
        position: static;
        width: 100%;
        margin-bottom: 30px;
    }

    .vertical-separator {
        display: none;
    }

    .close-dropdown {
        position: fixed;
        top: 20px;
        right: 20px;
        left: auto;
    }
}

.logo-icon {
    width: 125px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.globe-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text h1 {
    margin: 0;
    font-family: 'Bitter', 'Georgia', 'Times New Roman', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--tebior-dark);
    font-style: italic;
    letter-spacing: 1px;
}

.logo-subtitle {
    margin: 0;

    font-size: 0.9rem;
    font-weight: 400;
    color: var(--tebior-dark);
    margin-top: -5px;
}

.logo-text a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.logo-text a:hover {
    color: #3498db;
}

/* Navigation Desktop */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 1;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid #F5EFE6;
    background: transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.button-arrow {
    font-size: 16px;
    font-weight: bold;
}

.button-text {
    text-decoration: none;
    font-family: 'Bitter', 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.contact-button .button-arrow,
.contact-button .button-text {
    color: #3498db;
}

.foundation-button .button-arrow,
.foundation-button .button-text {
    color: #27ae60;
}

/* Menu Dropdown Desktop */
.desktop-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #f8f6f0 0%, #e8f4f8 50%, #d5e8f0 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 99998;
    display: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.navigation-sections a.nav-link {
    line-height: 80%;
}

.solution-icon {
    width: 100%;
    margin-bottom: 0px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3px;
    /* width: 100%; */
}

.desktop-dropdown.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    padding: 3rem 2rem;
    inline-size: min-content;
    float: inline-end;
}

.dropdown-section {
    display: flex;
    flex-direction: column;
}

.dropdown-section h3 {
    color: #7f8c8d;

    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1.5rem 0;
}

.dropdown-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-section li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.dropdown-section li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dropdown-section a {
    color: #2c3e50;
    text-decoration: none;

    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.dropdown-section a:hover {
    color: #3498db;
}

/* Couleurs spécifiques pour les solutions */
.dropdown-section.solutions a:nth-child(2) {
    color: #3498db;
}

.dropdown-section.solutions a:nth-child(3) {
    color: #e67e22;
}

.dropdown-section.solutions a:nth-child(4) {
    color: #e74c3c;
}

.dropdown-section.solutions a:nth-child(5) {
    color: #2c3e50;
}

.dropdown-section.solutions a:nth-child(6) {
    color: #e67e22;
}

.dropdown-section.solutions a:nth-child(7) {
    color: #3498db;
}

.dropdown-section.solutions a:nth-child(8) {
    color: #e91e63;
}

.dropdown-section.solutions a:nth-child(9) {
    color: #27ae60;
}

/* Overlay Mobile Menu */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #f8f6f0 0%, #e8f4f8 50%, #d5e8f0 100%);
    z-index: 99997;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease;
    transform: translateY(-100%) !important;
}

.mobile-overlay.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.mobile-navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem 2rem;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 2rem 0;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    margin-bottom: 3rem;
}

.mobile-header h2 {
    color: #2c3e50;
    font-weight: 400;
    font-style: italic;
    font-size: 28px;
    margin: 0;
}

.close-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.close-menu span {
    width: 24px;
    height: 2px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.close-menu span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.close-menu span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-section {
    display: flex;
    flex-direction: column;
}

.mobile-section h3 {
    color: #7f8c8d;

    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1.5rem 0;
}

.mobile-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-section li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.mobile-section li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mobile-section a {
    color: #2c3e50;
    text-decoration: none;

    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-section a:hover {
    color: #3498db;
}

/* Couleurs spécifiques pour les solutions */
.mobile-section.solutions a:nth-child(2) {
    color: #3498db;
}

.mobile-section.solutions a:nth-child(3) {
    color: #e67e22;
}

.mobile-section.solutions a:nth-child(4) {
    color: #e74c3c;
}

.mobile-section.solutions a:nth-child(5) {
    color: #2c3e50;
}

.mobile-section.solutions a:nth-child(6) {
    color: #e67e22;
}

.mobile-section.solutions a:nth-child(7) {
    color: #3498db;
}

.mobile-section.solutions a:nth-child(8) {
    color: #e91e63;
}

.mobile-section.solutions a:nth-child(9) {
    color: #27ae60;
}

.hamburger-menu {
    background: url('images/burger-menu-tebior.webp') no-repeat center center;
    background-size: contain;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger-menu span {
    display: none;
    /* Masquer les barres car on utilise l'image */
}

.hamburger-menu:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

/* Animation du hamburger - croix fine quand ouvert */
.hamburger-menu.active {
    background: none;
    /* Masquer l'image du burger */
}

.hamburger-menu.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #2c3e50;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.3s ease;
}

.hamburger-menu.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #2c3e50;
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: all 0.3s ease;
}

/* Gestion du menu ouvert */
/* Le scroll du body est maintenant géré en JavaScript */

/* Navigation Mobile */
.mobile-navigation {
    display: none;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem;
}

.mobile-navigation.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-navigation li {
    margin-bottom: 1rem;
    text-align: center;
}

.mobile-navigation a {
    color: var(--tebior-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 0.75rem 0;
    transition: color 0.3s ease;
}

.mobile-navigation a:hover {
    color: var(--tebior-primary);
}

.mobile-foundation {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* Contenu principal */
.site-main {
    min-height: 60vh;
}

.content-area {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Articles */
.post {
    background: #F5EFE6;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.post-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.post-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.post-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #3498db;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
}

.post-content {
    padding: 1.5rem;
}

.post-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Sidebar */
.sidebar {
    background: #F5EFE6;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    height: fit-content;
}

.widget {
    margin-bottom: 2rem;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.widget ul {
    list-style: none;
}

.widget li {
    margin-bottom: 0.5rem;
}

.widget a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: #3498db;
}

/* ==========================================
   FOOTER - NOUVEAU DESIGN
   ========================================== */


.btn-contact {
    background: var(--tebior-primary);
    color: #F5EFE6;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;

}

.btn-contact:hover {
    background: var(--tebior-lapis-lazuli);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-info p {
    margin: 0.25rem 0;
    color: var(--tebior-dark);
    font-size: 0.9rem;
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-icon.facebook {
    background: #3b5998;
    color: #F5EFE6;
}

.social-icon.linkedin {
    background: #0077b5;
    color: #F5EFE6;
}

.social-icon.youtube {
    background: #ff0000;
    color: #F5EFE6;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Footer bottom avec formes colorées */


.shape-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.shape-left,
.shape-center,
.shape-right {
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.shape-left {
    flex: 0 0 25%;
}

.shape-center {
    flex: 0 0 50%;
}

.shape-right {
    flex: 0 0 25%;
}



.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--tebior-dark);
}

.copyright p {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
}



/* Responsive */
@media (max-width: 1024px) {
    .desktop-nav {
        gap: 1.5rem;
    }

    .desktop-nav ul {
        gap: 2rem;
    }

    .foundation-link {
        margin-left: 1.5rem;
        padding-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0.75rem 0;
        min-height: 70px;
    }

    /* Masquer la navigation desktop */
    .desktop-nav {
        display: none;
    }

    /* Afficher le menu mobile */
    .mobile-menu-toggle {
        display: block;
    }

    /* Ajuster le logo pour mobile */
    .logo-container {
        gap: 12px;
    }

    .logo-icon {
        width: 65px;
        height: 55px;
    }

    .logo-text h1 {
        font-size: 1.8rem;
    }

    /* Contenu principal */
    .content-area {
        grid-template-columns: 1fr;
    }

    .site-main {
        padding: 1.5rem 0;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0.5rem 0;
        min-height: 60px;
    }

    .logo-container {
        gap: 10px;
    }

    .logo-icon {
        width: 55px;
        height: 45px;
    }

    .logo-text h1 {
        font-size: 1.6rem;
    }

    .hamburger-menu span {
        display: none;
        /* Masquer les barres car on utilise l'image */
    }

    .mobile-navigation {
        padding: 1.5rem;
    }

    .mobile-navigation a {
        font-size: 1rem;
        padding: 0.6rem 0;
    }

    .mobile-foundation {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #3498db;
    color: #F5EFE6;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #95a5a6;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

/* Utilitaires */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* ==========================================
   STYLES PAGE D'ACCUEIL
   ========================================== */

/* Typographie pour les titres */
.section-title {

    color: var(--tebior-dark);
    text-align: center;
}

.section-title.white {
    color: #F5EFE6;
}

/* Section Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 915px;
    overflow: hidden;
    border-radius: 5px;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 271px;
    background: linear-gradient(180deg, rgba(47, 48, 49, 0) 0%, rgba(47, 48, 49, 0.50) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #F5EFE6;
}

.hero-title {
    height: 213px;

    font-size: 110px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 100px;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.36);
    margin: 0;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.decoration-circle {
    position: absolute;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    shape-rendering: geometricPrecision;
}

.decoration-circle.orange {
    left: 668px;
    top: 238px;
    background: #F08A00;
}

.decoration-circle.blue {
    left: 655px;
    top: 238px;
    background: #005DA4;
    width: 58px;
    height: 58px;
}

.decoration-circle.red {
    left: 668px;
    top: 286px;
    background: #CF1623;
}

.decoration-circle.orange-rotated {
    left: 654px;
    top: 402px;
    background: #F08A00;
    transform: rotate(-90deg);
    transform-origin: top left;
}

.decoration-quarters {
    position: absolute;
    left: 667px;
    top: 222px;
    width: 146px;
    height: 144px;
    shape-rendering: geometricPrecision;
}

.decoration-quarters svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
}

.decoration-letters {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 200px;
    height: 400px;
}

.letter-svg {
    width: 99px;
    height: 117px;
    opacity: 0.4;
    shape-rendering: geometricPrecision;
    text-rendering: optimizeLegibility;
}

.letter-svg path {
    stroke-width: 0.5;
    stroke-linejoin: round;
    stroke-linecap: round;
}

/* Navigation Carrousel */
.hero-slider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    height: 180px;
}

.slider-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.slider-item:hover {
    opacity: 0.8;
}

.slider-item.active {
    opacity: 1;
}

.slider-number {
    width: 96px;
    text-align: center;
    color: #FFFAF2;

    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}

.slider-line {
    width: 100%;
    height: 2px;
    background: #FFFAF2;
    transition: height 0.3s ease;
}

.slider-line.active {
    height: 5px;
}

.slider-label {
    align-self: stretch;
    text-align: center;
    color: #FFFAF2;
    font-family: 'La Belle Aurore', cursive;
    font-size: 34px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.5px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Section Catalyseur */
.catalyst-section {
    background: #f8f6f0;
    padding: 80px 0;
}

.catalyst-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.catalyst-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--tebior-primary);
    color: var(--tebior-primary);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;

}

.btn-outline:hover {
    background: var(--tebior-primary);
    color: #F5EFE6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline.white {
    border-color: #F5EFE6;
    color: #F5EFE6;
}

.btn-outline.white:hover {
    background: #F5EFE6;
    color: var(--tebior-dark);
}

.catalyst-logo {
    margin-top: 2rem;
}

.logo-circles {
    display: flex;
    gap: 10px;
}

.logo-circles .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-circles .circle.blue {
    background: #3498db;
}

.logo-circles .circle.pink {
    background: #e91e63;
}

.image-collage {
    position: relative;
    width: 100%;
    height: 400px;
}

.image-collage img {
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.image-collage img:hover {
    transform: scale(1.05);
}

.image-collage .img-1 {
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    z-index: 3;
}

.image-collage .img-2 {
    top: 20%;
    right: 0;
    width: 50%;
    height: 70%;
    z-index: 2;
}

.image-collage .img-3 {
    bottom: 0;
    left: 30%;
    width: 50%;
    height: 50%;
    z-index: 1;
}

/* Section Statistiques */
.stats-section {
    background: var(--tebior-dark);
    padding: 40px 0;
    box-sizing: border-box;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: #F5EFE6;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Section Expertises - Ancienne définition supprimée */

.expertise-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.central-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.central-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-labels {
    position: absolute;
    width: 100%;
    height: 100%;
}

.expertise-label {
    position: absolute;
    color: #F5EFE6;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.expertise-label[data-position="top-left"] {
    top: 10%;
    left: 5%;
}

.expertise-label[data-position="top-right"] {
    top: 10%;
    right: 5%;
}

.expertise-label[data-position="middle-left"] {
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
}

.expertise-label[data-position="middle-right"] {
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
}

.expertise-label[data-position="bottom-left"] {
    bottom: 10%;
    left: 5%;
}

.expertise-label[data-position="bottom-right"] {
    bottom: 10%;
    right: 5%;
}

.connection-line {
    position: absolute;
    background: #F5EFE6;
    height: 2px;
    width: 100px;
    top: 50%;
    transform: translateY(-50%);
}

/* Section Développement */
.development-section {
    background: #f8f6f0;
    padding: 80px 0;
    position: relative;
}

.development-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.development-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.img-rounded-top {
    border-radius: 15px 15px 0 0;
}

.img-rounded-bottom {
    border-radius: 0 0 15px 15px;
}

.development-text h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.development-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.development-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-arrow {
    background: #2c3e50;
    color: #F5EFE6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-arrow:hover {
    background: #3498db;
}

.development-logo {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}

.logo-quarters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    width: 60px;
    height: 60px;
}

.quarter {
    border-radius: 10px 0 0 0;
}

.quarter.green {
    background: #27ae60;
}

/* Section Actualités */
.news-section {
    background: #f8f6f0;
    padding: 80px 0;
    position: relative;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: #F5EFE6;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card {
    padding: 1.5rem;
}

.news-date {
    color: #3498db;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.news-logo {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}

.logo-semicircles {
    display: flex;
    gap: 5px;
}

.semicircle {
    width: 30px;
    height: 60px;
    border-radius: 30px 0 0 30px;
}

.semicircle.pink {
    background: #e91e63;
}

.semicircle.orange {
    background: #e67e22;
}


/* Responsive - Mobile First Approach */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-tags {
        flex-direction: column;
        gap: 1rem;
    }

    .tag {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* Règles responsive pour les titres du menu - éviter les conflits */
    .header-open .section-title,
    .solutions-section .section-title,
    .nav-section .section-title {
        font-size: 14px !important;
        margin-bottom: 0 !important;
    }

    .catalyst-content,
    .development-content,
    .video-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .expertise-labels {
        display: none;
    }

    .central-image {
        width: 250px;
        height: 250px;
    }

    .image-collage {
        height: 300px;
    }

    .image-collage .img-1 {
        width: 70%;
        height: 50%;
    }

    .image-collage .img-2 {
        width: 60%;
        height: 60%;
    }

    .image-collage .img-3 {
        width: 60%;
        height: 40%;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Règles responsive pour les titres du menu - éviter les conflits */
    .header-open .section-title,
    .solutions-section .section-title,
    .nav-section .section-title {
        font-size: 14px !important;
        margin-bottom: 0 !important;
    }

    .catalyst-content,
    .development-content,
    .video-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-labels {
        display: none;
    }

    .central-image {
        width: 280px;
        height: 280px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
        line-height: 100%;

    }

    .section-title {
        font-size: 2.2rem;
    }

    /* Règles responsive pour les titres du menu - éviter les conflits */
    .header-open .section-title,
    .solutions-section .section-title,
    .nav-section .section-title {
        font-size: 14px !important;
        margin-bottom: 0 !important;
    }

    .catalyst-content,
    .development-content,
    .video-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .central-image {
        width: 300px;
        height: 300px;
    }
}

@media (min-width: 1025px) {
    .hero-title {
        font-size: 7rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    /* Règles responsive pour les titres du menu - éviter les conflits */
    .header-open .section-title,
    .solutions-section .section-title,
    .nav-section .section-title {
        font-size: 14px !important;
        margin-bottom: 0 !important;
    }

    .catalyst-content,
    .development-content,
    .video-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .central-image {
        width: 300px;
        height: 300px;
    }
}

/* Améliorations de performance et accessibilité */
.hero-background img,
.image-collage img,
.central-image img,
.news-image img,
.video-thumbnail img {
    will-change: transform;
    backface-visibility: hidden;
}

/* Animations fluides */
.hero-section,
.catalyst-section,
.stats-section,
.expertise-section,
.development-section,
.news-section,
.video-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-section {
    animation-delay: 0.1s;
}

.catalyst-section {
    animation-delay: 0.2s;
}

.stats-section {
    animation-delay: 0.3s;
}

.expertise-section {
    animation-delay: 0.4s;
}

.development-section {
    animation-delay: 0.5s;
}

.news-section {
    animation-delay: 0.6s;
}

.video-section {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Optimisations pour les performances */
.hero-background {
    contain: layout style paint;
}

.image-collage {
    contain: layout style paint;
}

/* Amélioration de l'accessibilité */
@media (prefers-reduced-motion: reduce) {

    .hero-section,
    .catalyst-section,
    .stats-section,
    .expertise-section,
    .development-section,
    .news-section,
    .video-section {
        animation: none;
        opacity: 1;
    }

    .btn-outline,
    .btn-arrow,
    .play-button {
        transition: none;
    }
}

/* Optimisations pour les images PNG */
.central-image img,
.development-images img,
.news-image img,
.video-thumbnail img {
    object-fit: cover;
    transition: transform 0.3s ease;
}

.central-image img:hover,
.development-images img:hover,
.news-image img:hover,
.video-thumbnail img:hover {
    transform: scale(1.05);
}

/* Amélioration de la qualité des images */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}


.contact-section {
    text-align: right;
}

.btn-contact {
    background: #3498db;
    color: #F5EFE6;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-contact:hover {
    background: #2980b9;
}

.contact-info {
    text-align: right;
}

.contact-info p {
    margin: 0.25rem 0;
    color: #2c3e50;
    font-size: 0.95rem;
}

.social-media {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #F5EFE6;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon:hover {
    transform: scale(1.1);
}


.logo-shapes {
    display: flex;
    gap: 10px;
}

.logo-shapes .shape {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-shapes .shape.green {
    background: #27ae60;
}

.logo-shapes .shape.orange {
    background: #e67e22;
}

.logo-shapes .shape.blue {
    background: #3498db;
}

.logo-shapes .shape.pink {
    background: #e91e63;
}

.logo-shapes .shape.red {
    background: #e74c3c;
}

.copyright p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {



    .contact-section,
    .contact-info {
        text-align: left;
    }

    .social-media {
        justify-content: flex-start;
    }

}

/* Optimisation pour tous les écrans - Responsive amélioré */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        min-height: 350px;
    }

    .stats-section,
    .expertise-section {
        padding: 30px 0;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 200px;
        /* Réduction du padding pour mobile */
    }

    .site-header {
        min-height: 200px;
    }

    .header-content {
        min-height: 200px;
        padding: 1rem 0;
    }

    .hero-section {
        height: calc(100vh - 200px);
        min-height: 300px;
        max-height: calc(100vh - 200px);
    }

    .nav-buttons {
        gap: 30px;
        padding: 0 10px;
    }

    .nav-number {
        font-size: 16px;
    }

    .nav-label {
        font-size: 14px;
    }

    .main-content {
        min-height: calc(100vh - 200px);
    }

    .container {
        padding: 0 10px;
    }

    .stats-section,
    .expertise-section {
        padding: 20px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 180px;
    }

    .site-header {
        min-height: 180px;
    }

    .header-content {
        min-height: 180px;
        padding: 0.5rem 0;
    }

    .hero-section {
        height: calc(100vh - 180px);
        min-height: 250px;
        max-height: calc(100vh - 180px);
    }

    .nav-buttons {
        gap: 20px;
        padding: 0 5px;
    }

    .nav-number {
        font-size: 14px;
    }

    .nav-label {
        font-size: 12px;
    }

    .main-content {
        min-height: calc(100vh - 180px);
    }

    .container {
        padding: 0 5px;
    }

    .stats-section,
    .expertise-section {
        padding: 15px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Optimisation pour les très petits écrans */
@media (max-height: 600px) {
    .hero-section {
        min-height: 200px;
    }

    .stats-section,
    .expertise-section {
        padding: 15px 0;
    }
}

/* Optimisation pour les écrans très larges */
@media (min-width: 2000px) {
    .container {
        max-width: 2000px;
    }
}






@media (min-width: 1024px) {

    h1 {
        font-family: 'Funnel Display', sans-serif !important;
        font-weight: 300 !important;
        font-size: 110px !important;
        line-height: 100px !important;
        text-transform: uppercase !important;
    }

    h2 {
        font-family: 'Funnel Display', sans-serif !important;
        font-weight: 300 !important;
        font-size: 60px !important;
        line-height: 66px !important;

    }

    h3 {
        font-family: "Funnel Display" !important;
        font-size: 34px !important;
        font-style: normal !important;
        font-weight: 400 !important;
        line-height: 117.647% !important;
    }

    p {
        font-size: 24px !important;
        font-style: normal !important;
        font-weight: 400 !important;
        line-height: 125% !important;
    }

    .text-audessus-h2 {
        font-family: "Funnel Display";
        font-size: 20px !important;
        font-style: normal !important;
        font-weight: 400 !important;
        line-height: 30px !important;
    }

}


@media (min-width: 576px) {
    .d-md-none-reverse {
        display: contents !important;
    }
}

.d-none-ni {
    display: none;
}


@media (max-width: 1024px) {
    .btn-header-desktop {
        display: none !important;
    }

    .slider-label {
        font-size: 1.8rem !important;
    }

    .header-buttons {
        display: none !important;
    }

    .tebior-catalyseur__content {
        text-align: center;
        margin-top: 55px;
    }

    .tebior-catalyseur__handwriting {
        margin-bottom: 90px;
    }
}


@media (max-width: 1120px) {}

body>header>div>div.header-open.active>div>div.navigation-sections>div:nth-child(1)>div.nav-links>a,
body>header>div>div.header-open.active>div>div.navigation-sections>div:nth-child(2)>div.nav-links>a {
    font-size: 26px !important;
}


.tebior-media-section {
    margin: 0;
}

.tebior-content {
    background: var(--Secondaires-MANDARINE, #F08A00);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.tebior-label {
    color: white;
    font-size: 1.25rem;
    display: block;
    margin-bottom: 1.25rem;
}

.tebior-title {
    color: white;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.media-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #F08A00;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.media-button:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.media-button p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.tebior-video-wrapper {
    padding: 0;
    display: flex;
    align-items: stretch;
}

.tebior-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .tebior-content {
        padding: 2rem 1.5rem;
        text-align: center;
        align-items: center;
    }

    .tebior-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .tebior-video-wrapper {
        min-height: 300px;
    }
}

@media (min-width: 992px) {
    .tebior-content {
        padding: 6rem 4rem;
    }

    .tebior-video-wrapper {
        min-height: 500px;
    }
}

.media-button {
    border: 1px solid var(--Primaires-MILKSHAKE, #F5EFE6);
    padding: 16px 24px;
    background: transparent;
    transition: 0.5s ease;
}

.media-button:hover {
    background-color: #F5EFE6;
    color: orange;
    transition: 0.5s ease;

}



@media (max-width: 1024px) {

    body>main>main>section.engagement-section>div>div>div.col-lg-6>div>img {
        position: unset !important;
        width: unset !important;
    }

    .row {
        margin-left: unset !important;
    }

    body>main>main>section.engagement-section>div>div>div.col-lg-5.pt-5.pt-lg-0>p {
        justify-self: center !important;
        font-size: 35px !important;
    }

    body>header>div>div.header-open.active>div {
        display: block !important;
        transition: all 0.3s ease-in-out !important;
    }

    body>header>div>div.header-open.active>div>div.vertical-separator {
        display: none !important;
    }

    body>header>div>div.header-open.active>div>div.navigation-sections {
        margin-bottom: 40px !important;
    }

    body>header>div>div.header-open.active>div>div.solutions-section>div.solutions-list>a>span {
        padding-left: 0px !important;
    }

    .tebior-catalyseur__handwriting {
        margin-top: 30px;
    }

    .u-a5 {
        font-family: Arial, sans-serif !important;
        font-size: 13px !important;
        line-height: 14px !important;
        letter-spacing: 3px !important;
        text-transform: uppercase !important;
        font-weight: 700 !important;
        text-shadow: 0 0 3px rgba(0, 0, 0, 0.5) !important;
        color: #fff !important;
    }

    .u-b4 {
        font-family: Arial, sans-serif !important;
        font-size: 10px !important;
        line-height: 17px !important;
        letter-spacing: 0.3px !important;
        font-weight: normal !important;
        color: #fff !important;
    }

    .c-mouse-vertical-carousel__eyebrow {
        padding-bottom: 0px;
        margin-bottom: 5px;
    }

    .homepage-media-stats {
        height: auto !important;
    }

    .image-container-engagements {
        height: auto !important;
    }

    body>main>main>section.engagement-section>div>div.align-items-start.gap-5.row {
        margin-left: 0px;
    }

    body>main>main>section.engagement-section>div>div.row.align-items-start.gap-5>div.col-lg-5.pt-5.pt-lg-0>p {
        transform: rotate(-5deg) translateX(16%);
        font-size: 34px !important;
    }

    .btn-actu-home-p {
        width: 100%;
    }
}

@media (max-width: 768px) {

    body>main>main>section.tebior-section-catalyseur>div.tebior-catalyseur__inner>div.tebior-catalyseur__content>div.tebior-catalyseur__column-left>p.tebior-catalyseur__text {
        font-size: 18px !important;
        line-height: 28px !important;
    }


}


.hero-content {
    display: block;
    align-content: center;
}

@media (max-width: 1024px) {

    .text-info,
    body>main>main>section.engagement-section>div>div>div.col-lg-5.pt-5.pt-lg-0>div.js-carousel-content>div:nth-child(3)>h3,
    body>main>main>section.engagement-section>div>div>div.col-lg-5.pt-5.pt-lg-0>div.js-carousel-content>div.carousel-slide.active>h3 {
        font-size: 36px !important;
    }

    .slider-label {
        font-size: 1.5rem !important;
    }

    .tebior-catalyseur__content {
        display: block !important;
    }

    body>main>main>section.tebior-section-catalyseur>div.tebior-catalyseur__inner>div.tebior-catalyseur__vertical-separator {
        display: none !important;
    }

    body>main>main>section.tebior-section-catalyseur>div.tebior-catalyseur__inner>div.tebior-catalyseur__content>div.tebior-catalyseur__column-left>button {
        margin: 0 auto;
    }

    body>main>main>section.tebior-section-catalyseur>div.tebior-catalyseur__inner>div.tebior-catalyseur__content>div.tebior-catalyseur__column-left>p.tebior-catalyseur__handwriting {
        margin-bottom: 160px !important;
    }


    h1 {
        font-family: 'Funnel Display', sans-serif !important;
        font-weight: 300 !important;
        font-size: 55px !important;
        line-height: 100% !important;
        text-transform: uppercase !important;
    }

    h2 {
        font-family: 'Funnel Display', sans-serif !important;
        font-weight: 300 !important;
        font-size: 30px !important;
        line-height: 100% !important;

    }

    h3 {
        font-family: "Funnel Display" !important;
        font-size: 17px !important;
        font-style: normal !important;
        font-weight: 400 !important;
        line-height: 117.647% !important;
    }

    p {
        font-size: 22px !important;
        font-style: normal !important;
        font-weight: 400 !important;
        line-height: 125% !important;
    }

    .text-audessus-h2 {
        font-family: "Funnel Display";
        font-size: 10px !important;
        font-style: normal !important;
        font-weight: 400 !important;
        line-height: 100% !important;
    }

    .site-header.expanding {
        background-color: #F5EFE6 !important;
    }

    .dropdown-content {
        overflow-x: scroll;
        height: 100%;
        overflow-y: none;
    }

    .tebior-catalyseur__handwriting {
        font-size: 40px !important;
    }

    .solution-text {
        text-wrap: wrap !important;
        text-align: left !important;
    }

    body>header>div>div.header-open.active>div>div.solutions-section>div.solutions-list>a>span {
        padding-left: 0px !important;
        width: 90vw;
        margin-bottom: 0px;
    }

    .solution-link {
        padding: 25px 0;
    }

    body>header>div>div.header-open.active>div>div.solutions-section>div.solutions-list>a:nth-child>span {
        margin-bottom: 20px;
    }

    .solutions-list {
        gap: 20px;
    }

    .hero-title {
        font-size: 45px !important;
        line-height: 100% !important;
    }

    .hero-banner {

        height: 103vh !important;

    }

    .footer-arcs {
        display: none !important;
    }

}


.footer-desc {
    font-size: 14px !important;

}

.btn-ensav-1 {
    padding: 16px 24px !important;
    border-radius: 0px !important;

}

.btn-ensav-2 {
    padding: 16px 24px !important;
    border-radius: 0px !important;

}

.btn-ensav-3 {
    padding: 16px 24px !important;
    border-radius: 0px !important;

}