:root {
    --primary-blue: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #4D94FF;
    --accent-blue: #00C9FF;
    --dark-bg: #0A1628;
    --light-bg: #F8FBFF;
    --text-dark: #1A1A1A;
    --text-light: #6B7280;
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00C9FF 100%);
    --gradient-dark: linear-gradient(135deg, #0A1628 0%, #1E3A5F 100%);
    --white: #FFFFFF;
    --border-light: #E5E7EB;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 4px 15px rgba(0, 102, 255, 0.3);
    --transition: all 0.3s ease;
}

/* ==========================================
           RESET ET BASE
        ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
           ANIMATIONS GLOBALES
        ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    to {
        left: 100%;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Classes d'animation réutilisables */
.animate-fade-in {
    animation: fadeIn 0.8s ease;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease;
}

/* ==========================================
           PRELOADER
        ========================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    max-width: 200px;
    height: auto;
    animation: float 2s ease-in-out infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ==========================================
           TOP BAR
        ========================================== */
.top-bar {
    background-color: #0A1628;
    background: var(--gradient-dark);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.6s ease;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.top-bar a {
    color: var(--white);
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--accent-blue);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px) scale(1.1);
}

/* ==========================================
           NAVBAR
        ========================================== */
.main-navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    animation: fadeInDown 0.8s ease;
}

.main-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand img {
    height: 60px;
    transition: var(--transition);
}

.main-navbar.scrolled .navbar-brand img {
    height: 50px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
    background: var(--light-bg);
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link.active {
    color: var(--primary-blue) !important;
    font-weight: 600;
}

.nav-link i {
    margin-right: 6px;
    font-size: 16px;
    transition: var(--transition);
}

.nav-link:hover i {
    transform: scale(1.2);
}

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 12px 0;
    margin-top: 8px;
    animation: fadeInDown 0.3s ease;
}

.dropdown-item {
    padding: 10px 24px;
    transition: var(--transition);
    color: var(--text-dark);
}

.dropdown-item:hover {
    background: var(--light-bg);
    color: var(--primary-blue);
    padding-left: 32px;
}

.dropdown-item i {
    font-size: 12px;
    transition: var(--transition);
}

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

/* ==========================================
           BUTTONS
        ========================================== */
.btn-cta {
    background-color: #0066FF;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.4);
    color: var(--white);
}

.btn-contact {
    background: var(--white);
    color: var(--primary-blue);
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: var(--transition);
}

.btn-contact:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.btn-link {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.btn-link:hover {
    gap: 8px;
    color: var(--primary-dark);
}

/* ==========================================
           PAGE TITLE SECTION
        ========================================== */
.page-title-section {
    position: relative;
    background-color: #0A1628;
    background: var(--gradient-dark);
    padding: 120px 0 60px;
    overflow: hidden;
}

.page-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230066FF" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.page-breadcrumb {
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.6s ease;
}

.page-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.page-breadcrumb .breadcrumb-item a {
    color: var(--white);
    transition: var(--transition);
}

.page-breadcrumb .breadcrumb-item a:hover {
    color: var(--accent-blue);
    transform: translateX(-3px);
}

.page-breadcrumb .breadcrumb-item.active {
    color: var(--accent-blue);
    font-weight: 600;
}

.page-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    color: rgba(255, 255, 255, 0.5);
    padding: 0 8px;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

/* Decorative Elements */
.page-title-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 201, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation-delay: 4s;
}

/* ==========================================
           CARDS & CONTAINERS
        ========================================== */
.card-base {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: scaleIn 0.6s ease;
}

.card-base:hover {
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.15);
    transform: translateY(-5px);
}

/* Contact Info Card */
.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
    border-left: 4px solid transparent;
    animation: slideInLeft 0.6s ease;
}

.contact-info-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
    border-left-color: var(--primary-blue);
    transform: translateX(5px);
}

.contact-info-icon,
.feature-icon,
.service-cta-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: #0066FF;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon,
.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-info-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-info-content p,
.contact-info-content a {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    transition: var(--transition);
}

.contact-info-content a:hover {
    color: var(--primary-blue);
}

/* ==========================================
           FEATURES & SERVICES
        ========================================== */
.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
    height: 100%;
    animation: fadeInUp 0.6s ease;
}

.feature-item:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
    transform: translateY(-10px);
}

.feature-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
}

.service-cta-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    animation: scaleIn 0.6s ease;
}

.service-cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}

.service-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    font-size: 36px;
}

.service-cta-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-cta-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ==========================================
           SIDEBAR WIDGETS
        ========================================== */
.sidebar-widget {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: slideInRight 0.6s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.15);
}

.widget-header {
    background-color: #0066FF;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px;
}

.widget-header h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.widget-content {
    padding: 0;
}

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

.services-list li {
    border-bottom: 1px solid var(--border-light);
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li a {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.services-list li a i {
    font-size: 20px;
    margin-right: 12px;
    color: var(--text-light);
    transition: var(--transition);
}

.services-list li a:hover,
.services-list li.active a {
    background: var(--light-bg);
    color: var(--primary-blue);
    padding-left: 30px;
}

.services-list li a:hover i,
.services-list li.active a i {
    color: var(--primary-blue);
    transform: translateX(5px) scale(1.2);
}

/* Contact Widget */
.contact-widget {
    background-color: #0066FF;
    background: var(--gradient-primary);
}

.contact-widget .widget-content {
    padding: 40px 30px;
    text-align: center;
    color: var(--white);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    animation: pulse 2s infinite;
}

.contact-widget h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-widget p {
    opacity: 0.9;
    margin-bottom: 20px;
}

/* ==========================================
           FORMS
        ========================================== */
.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.1);
    transform: translateY(-2px);
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: scale(1.1);
}

.form-check-label {
    cursor: pointer;
    margin-left: 8px;
    color: var(--text-dark);
}

.form-check {
    padding: 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.form-check:hover {
    background: var(--light-bg);
}

/* ==========================================
           FOOTER
        ========================================== */
footer {
    background-color: #0A1628;
    background: var(--gradient-dark);
    animation: fadeInUp 0.8s ease;
}

footer .footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

footer .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

footer .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-block;
    font-size: 14px;
}

footer .footer-links a:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

footer .social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-5px) scale(1.1);
    color: var(--white);
}

/* ==========================================
           SCROLL TO TOP
        ========================================== */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #0066FF;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-primary);
    display: none;
}

#scrollToTop.show {
    opacity: 1;
    visibility: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.3s ease;
}

#scrollToTop:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.4);
}

/* ==========================================
           UTILITIES
        ========================================== */
.badge {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
           RESPONSIVE
        ========================================== */
@media (max-width: 991px) {
    .page-title-section {
        padding: 100px 0 50px;
    }

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

    .top-bar {
        text-align: center;
    }

    .navbar-collapse {
        margin-top: 16px;
        padding: 20px;
        background: var(--white);
        border-radius: 12px;
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        padding: 12px 16px !important;
    }

    .btn-cta {
        width: 100%;
        margin-top: 12px;
    }

    .card-base,
    .service-cta-card,
    .feature-item {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }

    .decoration-circle {
        display: none;
    }

    .contact-info-icon,
    .feature-icon,
    .service-cta-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ==========================================
           SECTIONS SPÉCIFIQUES
        ========================================== */

/* Contact Section */
.contact-section {
    background: var(--light-bg);
}

.contact-info-wrapper,
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    height: 100%;
    animation: fadeInUp 0.8s ease;
}

.social-links-contact h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-5px) rotate(360deg);
}

.map-container {
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    animation: scaleIn 0.8s ease;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Devis Section */
.devis-section {
    background: var(--light-bg);
}

.devis-info-wrapper,
.devis-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.8s ease;
}

.devis-features .feature-item {
    display: flex;
    gap: 16px;
    align-items: start;
    animation: slideInLeft 0.6s ease;
    animation-fill-mode: both;
}

.devis-features .feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.devis-features .feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.devis-features .feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.devis-features .feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    transition: var(--transition);
}

.devis-features .feature-item:hover .feature-icon-small {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.2) rotate(360deg);
}

.feature-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-text p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
}

.quick-contact {
    padding: 24px;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition);
    animation: slideInRight 0.6s ease;
}

.quick-contact:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.quick-contact h5 {
    font-weight: 700;
    color: var(--text-dark);
}

.quick-contact a {
    color: var(--text-dark);
    transition: var(--transition);
}

.quick-contact a:hover {
    color: var(--primary-blue);
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Carriere Section */
.carriere-section {
    background: var(--light-bg);
}

.carriere-content {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    height: 100%;
    animation: fadeInUp 0.8s ease;
}

.carriere-image {
    animation: scaleIn 0.8s ease;
}

.carriere-image img {
    border-radius: 12px;
    transition: var(--transition);
}

.carriere-image img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.carriere-description h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.carriere-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

/* Service Detail Content */
.service-detail-image {
    animation: scaleIn 0.8s ease;
}

.service-detail-image img {
    box-shadow: var(--shadow-lg);
    border-radius: 16px;
    transition: var(--transition);
}

.service-detail-image img:hover {
    transform: scale(1.02);
}

.service-detail-content {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.8s ease;
}

.content-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.service-description h3,
.service-description h4 {
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 16px;
}

.service-description ul {
    padding-left: 20px;
}

.service-description ul li {
    margin-bottom: 8px;
    transition: var(--transition);
}

.service-description ul li:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* Service Features */
.service-features {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.features-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Why Choose Service */
.why-choose-service {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.8s ease 0.3s;
    animation-fill-mode: both;
}

.why-choose-service h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 20px;
    transition: var(--transition);
}

.benefit-item:hover i {
    transform: scale(1.3) rotate(360deg);
}

/* Service CTA */
.service-cta {
    background-color: #0066FF;
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.3);
    animation: scaleIn 0.8s ease 0.4s;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

.service-cta .cta-content {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.service-cta h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-cta p {
    opacity: 0.95;
}

.service-cta .btn-cta {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
}

.service-cta .btn-cta:hover {
    background: transparent;
    color: var(--white);
}

.service-cta .btn-outline-primary {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.service-cta .btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* ==========================================
           NAVBAR MOBILE TOGGLE
        ========================================== */
.navbar-toggler {
    border: none;
    padding: 8px;
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    transform: scale(1.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230066FF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================
           ANIMATIONS SUPPLÉMENTAIRES POUR SCROLL
        ========================================== */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

/* Ajouter une classe pour déclencher l'animation au scroll */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation: slideInFromBottom 0.8s ease forwards;
}

/* ==========================================
           HOVER EFFECTS AVANCÉS
        ========================================== */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.hover-grow {
    transition: var(--transition);
}

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

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.4);
}

/* ==========================================
           LOADING STATES
        ========================================== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ==========================================
           CUSTOM SCROLLBAR
        ========================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ==========================================
           RESPONSIVE FINAL
        ========================================== */
@media (max-width: 991px) {

    .contact-info-wrapper,
    .contact-form-wrapper,
    .devis-info-wrapper,
    .devis-form-wrapper,
    .carriere-content,
    .carriere-form-wrapper,
    .service-detail-content,
    .service-features,
    .why-choose-service,
    .service-cta {
        padding: 24px;
    }

    .service-cta h4,
    .features-title,
    .why-choose-service h3 {
        font-size: 1.5rem;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .content-header h2 {
        font-size: 1.5rem;
    }
}

/* Homepage css */
/* Hero Carousel */
    .hero-carousel {
        position: relative;
        overflow: hidden;
    }
    
    .hero-slide {
        min-height: 700px;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        position: relative;
    }
    
    .hero-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
        background-size: cover;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .hero-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        color: white;
        padding: 8px 24px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: white;
        margin-bottom: 24px;
        line-height: 1.2;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .hero-description {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 32px;
        line-height: 1.8;
    }
    
    .hero-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .btn-hero-primary {
        background: white;
        color: var(--primary-blue);
        padding: 14px 32px;
        border-radius: 30px;
        font-weight: 600;
        border: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .btn-hero-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        color: var(--primary-blue);
    }
    
    .btn-hero-outline {
        background: transparent;
        color: white;
        padding: 14px 32px;
        border-radius: 30px;
        font-weight: 600;
        border: 2px solid white;
        transition: all 0.3s ease;
    }
    
    .btn-hero-outline:hover {
        background: white;
        color: var(--primary-blue);
        transform: translateY(-3px);
    }
    
    /* Features Section */
    .features-section {
        margin-top: -50px;
        position: relative;
        z-index: 10;
    }
    
    .feature-card {
        background: white;
        padding: 40px;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        display: flex;
        gap: 24px;
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 50px rgba(0, 102, 255, 0.15);
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 32px;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 12px;
    }
    
    .feature-content p {
        color: var(--text-light);
        line-height: 1.8;
        margin: 0;
    }
    
    /* Section Styles */
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-badge {
        display: inline-block;
        background: var(--light-bg);
        color: var(--primary-blue);
        padding: 8px 24px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 16px;
        border: 2px solid var(--primary-blue);
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .section-text {
        font-size: 1rem;
        color: var(--text-light);
        line-height: 1.8;
    }
    
    /* About Section */
    .about-images {
        position: relative;
    }
    
    .about-img-main {
        position: relative;
        z-index: 2;
    }
    
    .about-img-main img {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }
    
    .about-badge {
        position: absolute;
        bottom: 30px;
        right: 30px;
        background: var(--gradient-primary);
        color: white;
        padding: 24px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 16px;
        box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
    }
    
    .about-badge i {
        font-size: 40px;
    }
    
    .about-badge h4 {
        font-size: 2rem;
        font-weight: 800;
        margin: 0;
        line-height: 1;
    }
    
    .about-badge p {
        margin: 0;
        font-size: 14px;
        opacity: 0.9;
    }
    
    .about-img-secondary {
        position: absolute;
        bottom: -30px;
        left: -30px;
        width: 50%;
        z-index: 1;
    }
    
    .about-img-secondary img {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }
    
    .feature-list-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        font-size: 1rem;
        color: var(--text-dark);
    }
    
    .feature-list-item i {
        color: var(--primary-blue);
        font-size: 20px;
    }
    
    /* Service Cards */
    .service-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        height: 100%;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
    }
    
    .service-image {
        position: relative;
        height: 280px;
        overflow: hidden;
    }
    
    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .service-card:hover .service-image img {
        transform: scale(1.1);
    }
    
    .service-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-primary);
        opacity: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.4s ease;
    }
    
    .service-card:hover .service-overlay {
        opacity: 0.9;
    }
    
    .service-link {
        width: 60px;
        height: 60px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-blue);
        font-size: 24px;
        transform: scale(0);
        transition: transform 0.3s ease 0.2s;
    }
    
    .service-card:hover .service-link {
        transform: scale(1);
    }
    
    .service-content {
        padding: 30px;
    }
    
    .service-badge {
        display: inline-block;
        background: var(--light-bg);
        color: var(--primary-blue);
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 16px;
    }
    
    .service-title {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 12px;
    }
    
    .service-title a {
        color: var(--text-dark);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .service-title a:hover {
        color: var(--primary-blue);
    }
    
    .service-description {
        color: var(--text-light);
        margin-bottom: 20px;
        line-height: 1.7;
    }
    
    .service-btn {
        color: var(--primary-blue);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .service-btn:hover {
        gap: 8px;
        color: var(--primary-dark);
    }
    
    /* Stats Section */
    .stats-section {
        background: var(--gradient-primary);
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
        background-size: cover;
    }
    
    .stat-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 40px 30px;
        border-radius: 16px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .stat-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-10px);
    }
    
    .stat-icon {
        font-size: 50px;
        margin-bottom: 20px;
        opacity: 0.9;
    }
    
    .stat-number {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 8px;
        line-height: 1;
    }
    
    .stat-label {
        font-size: 1.1rem;
        opacity: 0.9;
        margin: 0;
    }
    
    /* Why Choose Cards */
    .why-card {
        background: white;
        padding: 32px 24px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 50px rgba(0, 102, 255, 0.15);
    }
    
    .why-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 36px;
    }
    
    .why-card h5 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--text-dark);
    }
    
    .why-card p {
        color: var(--text-light);
        margin: 0;
        font-size: 14px;
    }
    
    /* FAQ Accordion */
    .faq-accordion .accordion-item {
        border: none;
        margin-bottom: 16px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .faq-accordion .accordion-button {
        background: white;
        color: var(--text-dark);
        font-weight: 600;
        font-size: 1.1rem;
        padding: 20px 24px;
        border: none;
        box-shadow: none;
    }
    
    .faq-accordion .accordion-button:not(.collapsed) {
        background: var(--gradient-primary);
        color: white;
    }
    
    .faq-accordion .accordion-button:focus {
        box-shadow: none;
    }
    
    .faq-accordion .accordion-button i {
        font-size: 24px;
    }
    
    .faq-accordion .accordion-body {
        padding: 20px 24px;
        color: var(--text-light);
        line-height: 1.8;
    }
    
    /* Blog Cards */
    .blog-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        height: 100%;
    }
    
    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
    }
    
    .blog-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }
    
    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .blog-card:hover .blog-image img {
        transform: scale(1.1);
    }
    
    .blog-date {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--gradient-primary);
        color: white;
        padding: 8px 16px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
    }
    
    .blog-content {
        padding: 24px;
    }
    
    .blog-meta {
        display: flex;
        gap: 20px;
        margin-bottom: 16px;
        font-size: 14px;
        color: var(--text-light);
    }
    
    .blog-meta span {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .blog-title {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 12px;
    }
    
    .blog-title a {
        color: var(--text-dark);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .blog-title a:hover {
        color: var(--primary-blue);
    }
    
    .blog-description {
        color: var(--text-light);
        margin-bottom: 16px;
        line-height: 1.7;
    }
    
    .blog-link {
        color: var(--primary-blue);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .blog-link:hover {
        gap: 8px;
        color: var(--primary-dark);
    }
    
    /* CTA Section */
    .cta-section {
        background: var(--gradient-dark);
    }
    
    .cta-wrapper {
        background: var(--gradient-primary);
        padding: 60px 50px;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
    }
    
    .cta-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: white;
        margin-bottom: 16px;
    }
    
    .cta-description {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
    }
    
    .btn-cta-white {
        background: white;
        color: var(--primary-blue);
        padding: 14px 40px;
        border-radius: 30px;
        font-weight: 600;
        border: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .btn-cta-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        color: var(--primary-blue);
    }
    
    /* Responsive */
    @media (max-width: 991px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-description {
            font-size: 1rem;
        }
        
        .hero-slide {
            min-height: 600px;
        }
        
        .features-section {
            margin-top: 0;
        }
        
        .about-img-secondary {
            display: none;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .cta-title {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-buttons {
            flex-direction: column;
        }
        
        .hero-buttons .btn {
            width: 100%;
        }
        
        .stat-number {
            font-size: 2.5rem;
        }
    }


    /** AUTRE CSSS **/

/* ==========================================
           MOBILE BOTTOM MENU
        ========================================== */
.mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 10px 8px 8px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    min-height: 65px;
}

.mobile-bottom-menu .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6px 10px;
    border-radius: 12px;
    min-width: 58px;
    position: relative;
    flex: 1;
    max-width: 80px;
}

.mobile-bottom-menu .menu-item i {
    font-size: 22px;
    margin-bottom: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-bottom-menu .menu-item span {
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-bottom-menu .menu-item-center {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 12px 18px;
    border-radius: 50%;
    transform: translateY(-12px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
    min-width: 64px;
    min-height: 64px;
    max-width: 64px;
}

.mobile-bottom-menu .menu-item-center i {
    font-size: 30px;
    margin-bottom: 0;
}

.mobile-bottom-menu .menu-item-center span {
    font-weight: 600;
    font-size: 10px;
    margin-top: 2px;
}

.mobile-bottom-menu .menu-item:hover:not(.menu-item-center) {
    color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.08);
}

.mobile-bottom-menu .menu-item.active:not(.menu-item-center) {
    color: var(--primary-blue);
}

.mobile-bottom-menu .menu-item.active:not(.menu-item-center) i {
    transform: scale(1.1);
}

.mobile-bottom-menu .menu-item.active:not(.menu-item-center)::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 0 0 3px 3px;
}

.mobile-bottom-menu .menu-item-center:active {
    transform: translateY(-6px) scale(0.95);
}

/* Animation de montée au chargement */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-bottom-menu {
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Afficher uniquement sur mobile et tablettes */
@media (max-width: 991px) {
    .mobile-bottom-menu {
        display: flex !important;
    }
    
    body {
        padding-bottom: 75px;
    }
    
    main {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .mobile-bottom-menu .menu-item {
        padding: 4px 6px;
        min-width: 50px;
    }
    
    .mobile-bottom-menu .menu-item i {
        font-size: 19px;
    }
    
    .mobile-bottom-menu .menu-item span {
        font-size: 9px;
    }
    
    .mobile-bottom-menu .menu-item-center {
        min-width: 58px;
        min-height: 58px;
        max-width: 58px;
        padding: 10px 14px;
        transform: translateY(-10px);
    }
    
    .mobile-bottom-menu .menu-item-center i {
        font-size: 26px;
    }
    
    body {
        padding-bottom: 70px;
    }
}
    
