@charset "UTF-8";

/*!
 * Bootstrap v5.0.0-beta3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

/* --------------------------------------------------------------
   VARIABLES & CONFIGURATION
-------------------------------------------------------------- */
:root {
    /* Variables Bootstrap */
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));

    /* Variables Tecture Personnalisées */
    --tecture-font: "Figtree", sans-serif;
    --tecture-font-2: "Barlow Semi Condensed", sans-serif;
    --tecture-gray: #b6b6b6;
    --tecture-gray-rgb: 182, 182, 182;
    --tecture-white: #ffffff;
    --tecture-white-rgb: 255, 255, 255;
    --tecture-base: #c3d200;
    --tecture-base-rgb: 195, 210, 0; /* Corrigé de 166,161,130 */
    --tecture-black: #1f2022;
    --tecture-black-rgb: 31, 32, 34;
    --tecture-bdr-color: rgba(255, 255, 255, 0.20);
    --tecture-bdr-color-rgb: 55, 58, 60;
}

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

@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--tecture-font);
    font-size: 17px;
    line-height: 26px;
    font-weight: 400;
    color: var(--tecture-gray);
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body.locked {
    overflow: hidden;
}

.body-bg-color-1 {
    position: relative;
    background-color: #0a0c09;
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: .25;
    height: 1px;
}

/* --------------------------------------------------------------
   TYPOGRAPHY
-------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--tecture-font-2);
    color: var(--tecture-white);
    margin: 0 0 0.5rem 0;
    font-weight: 500;
    line-height: 1.2;
}

h1 { font-size: calc(1.375rem + 1.5vw); }
@media (min-width:1200px) { h1 { font-size: 2.5rem; } }

h2 { font-size: calc(1.325rem + .9vw); }
@media (min-width:1200px) { h2 { font-size: 2rem; } }

h3 { font-size: calc(1.3rem + .6vw); }
@media (min-width:1200px) { h3 { font-size: 1.75rem; } }

h4 { font-size: calc(1.275rem + .3vw); }
@media (min-width:1200px) { h4 { font-size: 1.5rem; } }

h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    color: #aeb0b4;
    font-size: 17px;
    line-height: 26px;
    margin: 0 0 1rem;
}

a {
    color: var(--tecture-base);
    text-decoration: none;
    transition: all 500ms ease;
}

a:hover,
a:focus {
    color: var(--tecture-black);
}

/* --------------------------------------------------------------
   LAYOUT & CONTAINERS
-------------------------------------------------------------- */
.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1400px;
    }
}

.auto-container {
    position: static;
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1400px;
}

.row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x)/ -2);
    margin-left: calc(var(--bs-gutter-x)/ -2);
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    margin-top: var(--bs-gutter-y);
}

/* Classes de colonnes Bootstrap */
.col-1 { flex: 0 0 auto; width: 8.33333333%; }
.col-2 { flex: 0 0 auto; width: 16.66666667%; }
.col-3 { flex: 0 0 auto; width: 25%; }
.col-4 { flex: 0 0 auto; width: 33.33333333%; }
.col-5 { flex: 0 0 auto; width: 41.66666667%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-7 { flex: 0 0 auto; width: 58.33333333%; }
.col-8 { flex: 0 0 auto; width: 66.66666667%; }
.col-9 { flex: 0 0 auto; width: 75%; }
.col-10 { flex: 0 0 auto; width: 83.33333333%; }
.col-11 { flex: 0 0 auto; width: 91.66666667%; }
.col-12 { flex: 0 0 auto; width: 100%; }

@media (min-width: 576px) {
    .col-sm-1 { flex: 0 0 auto; width: 8.33333333%; }
    .col-sm-2 { flex: 0 0 auto; width: 16.66666667%; }
    .col-sm-3 { flex: 0 0 auto; width: 25%; }
    .col-sm-4 { flex: 0 0 auto; width: 33.33333333%; }
    .col-sm-5 { flex: 0 0 auto; width: 41.66666667%; }
    .col-sm-6 { flex: 0 0 auto; width: 50%; }
    .col-sm-7 { flex: 0 0 auto; width: 58.33333333%; }
    .col-sm-8 { flex: 0 0 auto; width: 66.66666667%; }
    .col-sm-9 { flex: 0 0 auto; width: 75%; }
    .col-sm-10 { flex: 0 0 auto; width: 83.33333333%; }
    .col-sm-11 { flex: 0 0 auto; width: 91.66666667%; }
    .col-sm-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 768px) {
    .col-md-1 { flex: 0 0 auto; width: 8.33333333%; }
    .col-md-2 { flex: 0 0 auto; width: 16.66666667%; }
    .col-md-3 { flex: 0 0 auto; width: 25%; }
    .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
    .col-md-5 { flex: 0 0 auto; width: 41.66666667%; }
    .col-md-6 { flex: 0 0 auto; width: 50%; }
    .col-md-7 { flex: 0 0 auto; width: 58.33333333%; }
    .col-md-8 { flex: 0 0 auto; width: 66.66666667%; }
    .col-md-9 { flex: 0 0 auto; width: 75%; }
    .col-md-10 { flex: 0 0 auto; width: 83.33333333%; }
    .col-md-11 { flex: 0 0 auto; width: 91.66666667%; }
    .col-md-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-1 { flex: 0 0 auto; width: 8.33333333%; }
    .col-lg-2 { flex: 0 0 auto; width: 16.66666667%; }
    .col-lg-3 { flex: 0 0 auto; width: 25%; }
    .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
    .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
    .col-lg-6 { flex: 0 0 auto; width: 50%; }
    .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
    .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
    .col-lg-9 { flex: 0 0 auto; width: 75%; }
    .col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
    .col-lg-11 { flex: 0 0 auto; width: 91.66666667%; }
    .col-lg-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 1200px) {
    .col-xl-1 { flex: 0 0 auto; width: 8.33333333%; }
    .col-xl-2 { flex: 0 0 auto; width: 16.66666667%; }
    .col-xl-3 { flex: 0 0 auto; width: 25%; }
    .col-xl-4 { flex: 0 0 auto; width: 33.33333333%; }
    .col-xl-5 { flex: 0 0 auto; width: 41.66666667%; }
    .col-xl-6 { flex: 0 0 auto; width: 50%; }
    .col-xl-7 { flex: 0 0 auto; width: 58.33333333%; }
    .col-xl-8 { flex: 0 0 auto; width: 66.66666667%; }
    .col-xl-9 { flex: 0 0 auto; width: 75%; }
    .col-xl-10 { flex: 0 0 auto; width: 83.33333333%; }
    .col-xl-11 { flex: 0 0 auto; width: 91.66666667%; }
    .col-xl-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 1400px) {
    .col-xxl-1 { flex: 0 0 auto; width: 8.33333333%; }
    .col-xxl-2 { flex: 0 0 auto; width: 16.66666667%; }
    .col-xxl-3 { flex: 0 0 auto; width: 25%; }
    .col-xxl-4 { flex: 0 0 auto; width: 33.33333333%; }
    .col-xxl-5 { flex: 0 0 auto; width: 41.66666667%; }
    .col-xxl-6 { flex: 0 0 auto; width: 50%; }
    .col-xxl-7 { flex: 0 0 auto; width: 58.33333333%; }
    .col-xxl-8 { flex: 0 0 auto; width: 66.66666667%; }
    .col-xxl-9 { flex: 0 0 auto; width: 75%; }
    .col-xxl-10 { flex: 0 0 auto; width: 83.33333333%; }
    .col-xxl-11 { flex: 0 0 auto; width: 91.66666667%; }
    .col-xxl-12 { flex: 0 0 auto; width: 100%; }
}

/* --------------------------------------------------------------
   COMPONENTS COMMUNS
-------------------------------------------------------------- */
.thm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--tecture-font);
    font-weight: 700;
    font-size: 17px;
    color: var(--tecture-white);
    background-color: var(--tecture-base);
    padding: 17px 40px;
    border: none;
    border-radius: 0;
    text-transform: capitalize;
    gap: 5px;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.thm-btn span {
    font-size: 23px;
    position: relative;
    top: -1px;
}

.thm-btn:before,
.thm-btn:after {
    content: "";
    position: absolute;
    background-color: var(--tecture-white);
    width: 50%;
    height: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.thm-btn:before {
    top: 0;
    left: 0;
}

.thm-btn:after {
    bottom: 0;
    right: 0;
}

.thm-btn:hover:before,
.thm-btn:hover:after {
    height: 100%;
}

.thm-btn:hover {
    color: var(--tecture-black);
}

.section-title {
    position: relative;
    display: block;
    margin-bottom: 58px;
    margin-top: 10px;
}

.section-title__title {
    color: var(--tecture-white);
    font-size: 54px;
    line-height: 64px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Badge */
.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

/* --------------------------------------------------------------
   FORMULAIRES
-------------------------------------------------------------- */
.form-label {
    margin-bottom: .5rem;
    font-weight: 500;
    color: var(--tecture-white);
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.form-select {
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: .125rem;
}

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

/* --------------------------------------------------------------
   BOUTONS
-------------------------------------------------------------- */
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* --------------------------------------------------------------
   NAVIGATION - CORRECTIONS DES DROPDOWNS
-------------------------------------------------------------- */

/* ============================================
   STYLES CORRIGÉS POUR LES MENUS
   HOME TOUJOURS CLIQUABLE, SOULIGNEMENTS CONSERVÉS
   ============================================ */

/* 1. HOME TOUJOURS CLIQUABLE SUR TOUTES LES PAGES */
.main-menu__list > li[data-nav="home"] > a,
.stricky-header .main-menu__list > li[data-nav="home"] > a,
.mobile-nav__container .main-menu__list > li[data-nav="home"] > a {
    pointer-events: auto !important;
    cursor: pointer !important;
    color: var(--tecture-white) !important;
    opacity: 1 !important;
    transition: all 500ms ease !important;
}

.main-menu__list > li[data-nav="home"]:hover > a,
.stricky-header .main-menu__list > li[data-nav="home"]:hover > a,
.mobile-nav__container .main-menu__list > li[data-nav="home"]:hover > a {
    color: var(--tecture-base) !important;
}

/* Home actif sur la page d'accueil uniquement */
body[class*="index"] .main-menu__list > li[data-nav="home"] > a,
body[class*="home"] .main-menu__list > li[data-nav="home"] > a,
body[class*="accueil"] .main-menu__list > li[data-nav="home"] > a {
    color: var(--tecture-base) !important;
    font-weight: 700 !important;
}

/* 2. SOULIGNEMENTS POUR LES DROPDOWNS (conservés) */
.main-menu__list > li.dropdown > a::after {
    display: block !important;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Pro" !important;
    position: absolute !important;
    top: 52% !important;
    right: 7px !important;
    font-size: 14px !important;
    transform: translateY(-50%) !important;
    transition: all 500ms ease !important;
    z-index: 1 !important;
    color: var(--tecture-white) !important;
}

.main-menu__list > li.dropdown.current > a::after,
.main-menu__list > li.dropdown:hover > a::after {
    color: var(--tecture-base) !important;
}

/* 3. COULEURS POUR LES CATÉGORIES ACTIVES */
.main-menu__list > li[data-nav="industriel"].current > a,
.main-menu__list > li[data-nav="commercial"].current > a,
.main-menu__list > li[data-nav="industriel"].active > a,
.main-menu__list > li[data-nav="commercial"].active > a,
.stricky-header .main-menu__list > li[data-nav="industriel"].current > a,
.stricky-header .main-menu__list > li[data-nav="commercial"].current > a,
.stricky-header .main-menu__list > li[data-nav="industriel"].active > a,
.stricky-header .main-menu__list > li[data-nav="commercial"].active > a,
.mobile-nav__container .main-menu__list > li[data-nav="industriel"].current > a,
.mobile-nav__container .main-menu__list > li[data-nav="commercial"].current > a {
    color: #c3d200 !important;
    font-weight: 700 !important;
}

/* 4. EFFET DE SOULIGNEMENT POUR LES ÉLÉMENTS SIMPLES (SANS FLÈCHE) */
.main-menu__list > li:not(.dropdown).current > a::after,
.main-menu__list > li:not(.dropdown).active > a::after,
.stricky-header .main-menu__list > li:not(.dropdown).current > a::after,
.stricky-header .main-menu__list > li:not(.dropdown).active > a::after,
.mobile-nav__container .main-menu__list > li:not(.dropdown).current > a::after,
.mobile-nav__container .main-menu__list > li:not(.dropdown).active > a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 120px;
    height: 5px;
    background: #c3d200;
    opacity: 0.92;
}

/* Ajustement pour mobile */
.mobile-nav__container .main-menu__list > li:not(.dropdown).current > a::after {
    bottom: -2px;
    height: 3px;
    width: calc(100% - 40px);
    max-width: none;
    left: 20px;
    transform: none;
}

/* 5. SOULIGNEMENT POUR LES DROPDOWNS ACTIFS (optionnel) */
.main-menu__list > li.dropdown.current > a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 7px;
    right: 7px;
    height: 5px;
    background: #c3d200;
    opacity: 0.92;
    z-index: -1;
}

/* 6. SUPPRIMER LES RÈGLES DE DÉSACTIVATION */
.page-industrial .main-menu__list > li[data-nav="home"] > a,
.page-commercial .main-menu__list > li[data-nav="home"] > a,
.page-industrial .stricky-header .main-menu__list > li[data-nav="home"] > a,
.page-commercial .stricky-header .main-menu__list > li[data-nav="home"] > a,
.page-industrial .mobile-nav__container .main-menu__list > li[data-nav="home"] > a,
.page-commercial .mobile-nav__container .main-menu__list > li[data-nav="home"] > a {
    color: var(--tecture-white) !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    opacity: 1 !important;
}

/* 7. HOVER SUR LES PAGES CATÉGORIES */
.page-industrial .main-menu__list > li[data-nav="home"]:hover > a,
.page-commercial .main-menu__list > li[data-nav="home"]:hover > a,
.page-industrial .stricky-header .main-menu__list > li[data-nav="home"]:hover > a,
.page-commercial .stricky-header .main-menu__list > li[data-nav="home"]:hover > a,
.page-industrial .mobile-nav__container .main-menu__list > li[data-nav="home"]:hover > a,
.page-commercial .mobile-nav__container .main-menu__list > li[data-nav="home"]:hover > a {
    color: var(--tecture-base) !important;
}

/* 8. STYLES POUR LES ÉLÉMENTS SIMPLES (NON-DROPDOWN) */
.main-menu__list > li:not(.dropdown).current > a::after,
.main-menu__list > li:not(.dropdown).active > a::after,
.stricky-header .main-menu__list > li:not(.dropdown).current > a::after,
.stricky-header .main-menu__list > li:not(.dropdown).active > a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 120px;
    height: 5px;
    background: #c3d200;
    opacity: 0.92;
}

/* Pour le sticky header */
.stricky-header .main-menu__list > li:not(.dropdown).current > a::after,
.stricky-header .main-menu__list > li:not(.dropdown).active > a::after {
    bottom: -5px;
    height: 5px;
}

/* ============================================
   STYLES GÉNÉRAUX DU MENU (conservés)
   ============================================ */
.main-menu {
    position: relative;
    display: block;
}

.main-menu__list,
.main-menu__list > li > ul,
.main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.main-menu__list > li,
.stricky-header .main-menu__list > li {
    position: relative;
    padding-top: 27px;
    padding-bottom: 27px;
}

.main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
    margin-left: 25px;
}

.main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--tecture-black);
    font-weight: 700;
    padding: 0 7px;
    text-transform: capitalize;
    position: relative;
    transition: all 500ms ease;
    z-index: 1;
}

/* Couleur pour les dropdowns */
.main-menu-two .main-menu__list > li > a,
.stricky-header.main-menu-two .main-menu__list > li > a {
    color: var(--tecture-white);
}

.main-menu__list > li.current > a,
.main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
    color: var(--tecture-base);
}

/* Flèche des dropdowns */
.main-menu__list > li.dropdown > a {
    padding-right: 20px;
}

.main-menu__list > li.dropdown > a:after {
    position: absolute;
    top: 52%;
    right: 7px;
    font-family: "Font Awesome 5 Pro";
    content: "\f107";
    font-size: 14px;
    color: var(--tecture-black);
    transform: translateY(-50%);
    transition: all 500ms ease;
    z-index: 1;
}

/* Sous-menus */
.main-menu__list > li > ul,
.main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transform: perspective(500px) rotatex(-20deg);
    transform-origin: 50% 0%;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.09);
    transition: all 300ms linear;
}

.main-menu__list > li:hover > ul,
.main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: perspective(500px) rotatex(0);
}

/* --------------------------------------------------------------
   STICKY HEADER
-------------------------------------------------------------- */
.stricky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 991;
    background-color: #fff;
    visibility: hidden;
    transform: translateY(-120%);
    transition: transform 500ms ease, visibility 500ms ease;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important;
    }
}

.stricky-header.stricky-fixed {
    transform: translateY(0);
    visibility: visible;
}

.stricky-header.main-menu-two {
    background-color: var(--tecture-black);
}

/* --------------------------------------------------------------
   MOBILE NAVIGATION
-------------------------------------------------------------- */
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transform: translateX(-100%);
    transform-origin: left center;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    visibility: hidden;
}

.mobile-nav__wrapper.expanded {
    transform: translateX(0%);
    visibility: visible;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--tecture-black);
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding: 30px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

/* --------------------------------------------------------------
   SEARCH POPUP
-------------------------------------------------------------- */
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-110%);
    transition: transform 500ms ease, opacity 500ms ease;
}

.search-popup.active {
    transform: translateY(0%);
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

.search-popup__content form {
    display: flex;
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

/* --------------------------------------------------------------
   UTILITIES
-------------------------------------------------------------- */


.section-separator {
    border-color: var(--tecture-bdr-color);
    border-width: 1px;
    margin: 0;
}

.section-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Scroll to top */
.scroll-to-top {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 60px;
    right: -12px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: rotate(-90deg);
    transition: all 0.2s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 70px;
}

/* Utilitaires d'espacement */
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ms-0 { margin-left: 0 !important; }
.me-0 { margin-right: 0 !important; }

.m-1 { margin: 0.25rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.ms-1 { margin-left: 0.25rem !important; }
.me-1 { margin-right: 0.25rem !important; }

.m-2 { margin: 0.5rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.me-2 { margin-right: 0.5rem !important; }

.m-3 { margin: 1rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.ms-3 { margin-left: 1rem !important; }
.me-3 { margin-right: 1rem !important; }

.m-4 { margin: 1.5rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.me-4 { margin-right: 1.5rem !important; }

.m-5 { margin: 3rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.ms-5 { margin-left: 3rem !important; }
.me-5 { margin-right: 3rem !important; }

.p-0 { padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.ps-0 { padding-left: 0 !important; }
.pe-0 { padding-right: 0 !important; }

.p-1 { padding: 0.25rem !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.ps-1 { padding-left: 0.25rem !important; }
.pe-1 { padding-right: 0.25rem !important; }

.p-2 { padding: 0.5rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.ps-2 { padding-left: 0.5rem !important; }
.pe-2 { padding-right: 0.5rem !important; }

.p-3 { padding: 1rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.ps-3 { padding-left: 1rem !important; }
.pe-3 { padding-right: 1rem !important; }

.p-4 { padding: 1.5rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.ps-4 { padding-left: 1.5rem !important; }
.pe-4 { padding-right: 1.5rem !important; }

.p-5 { padding: 3rem !important; }
.pt-5 { padding-top: 3rem !important; }
.pb-5 { padding-bottom: 3rem !important; }
.ps-5 { padding-left: 3rem !important; }
.pe-5 { padding-right: 3rem !important; }

/* Alignement du texte */
.text-start { text-align: left !important; }
.text-center { text-align: center !important; }
.text-end { text-align: right !important; }

/* Affichage */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

@media (min-width: 576px) {
    .d-sm-none { display: none !important; }
    .d-sm-block { display: block !important; }
    .d-sm-flex { display: flex !important; }
}

@media (min-width: 768px) {
    .d-md-none { display: none !important; }
    .d-md-block { display: block !important; }
    .d-md-flex { display: flex !important; }
}

@media (min-width: 992px) {
    .d-lg-none { display: none !important; }
    .d-lg-block { display: block !important; }
    .d-lg-flex { display: flex !important; }
}

/* Flexbox */
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.justify-content-start { justify-content: flex-start !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-center { align-items: center !important; }
.align-items-end { align-items: flex-end !important; }

/* Gap */
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 3rem !important; }

/* --------------------------------------------------------------
   RESPONSIVE
-------------------------------------------------------------- */
@media (max-width: 1199px) {
    .main-menu__list > li > a,
    .stricky-header .main-menu__list > li > a {
        font-size: 14px;
        padding: 10px;
    }
    
    .main-menu__list > li,
    .stricky-header .main-menu__list > li {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .col-lg-4, .col-lg-8 {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .section-title__title {
        font-size: 36px;
        line-height: 46px;
    }
    
    .thm-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* --------------------------------------------------------------
   ANIMATIONS
-------------------------------------------------------------- */
@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--tecture-white-rgb), 0.7);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(var(--tecture-white-rgb), 0);
    }
}

@keyframes underlineExpand {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-bob-y {
    animation: float 3s ease-in-out infinite;
}

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

/* --------------------------------------------------------------
   CHAT POPUP & SIDEBAR
-------------------------------------------------------------- */
.chat-popup {
    position: fixed;
    left: -100%;
    bottom: 0;
    width: 350px;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    background: var(--tecture-black);
    border-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.chat-popup.popup-visible {
    left: 0;
    visibility: visible;
    opacity: 1;
}

.xs-sidebar-group .xs-sidebar-widget {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    z-index: 999999;
    overflow-y: auto;
    transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    visibility: hidden;
    opacity: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    left: 0;
    background-color: var(--tecture-black);
    transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

/* --------------------------------------------------------------
   FIN DU FICHIER
-------------------------------------------------------------- */