/* Styles pour séparation desktop/mobile */
.desktop-only {
    display: flex;
}

/* NOUVEAU CSS MENU MOBILE COMPLET */
/* Désactivation des styles conflictuels */
.mobile-menu-container, 
.mobile-menu, 
.mobile-menu-header, 
.mobile-menu-close, 
.mobile-menu-content, 
.mobile-menu-links, 
.mobile-dropdown, 
.mobile-dropdown-toggle, 
.mobile-dropdown-menu, 
.mobile-menu-contact, 
.mobile-contact-item, 
.mobile-menu-buttons,
.mobile-menu-overlay {
    display: none !important;
}

/* Nouveau système de menu mobile sans aucun lien avec les précédents styles */
#mobile-nav-container {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 10000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    overflow-y: auto;
}

#mobile-nav-container.active {
    right: 0;
}

#mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
    background-color: #ffffff;
}

#mobile-nav-logo {
    display: flex;
    align-items: center;
}

#mobile-nav-logo-text {
    margin-left: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #0078ff;
}

#mobile-nav-close {
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

#mobile-nav-content {
    padding: 20px;
    background-color: #ffffff;
}

#mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

#mobile-nav-links li {
    border-bottom: 1px solid #eaeaea;
}

#mobile-nav-links li:last-child {
    border-bottom: none;
}

#mobile-nav-links a {
    display: flex;
    align-items: center;
    padding: 15px 0;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    background-color: transparent;
}

#mobile-nav-links a i:first-child {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    color: #0078ff;
}

#mobile-nav-links li.active a {
    color: #0078ff;
}

.mobile-nav-dropdown {
    position: relative;
}

.mobile-nav-dropdown-toggle {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

/* Modification pour que l'icône chevron soit du côté droit avec position absolue */
.mobile-nav-dropdown-toggle .fa-chevron-down {
    position: absolute;
    right: 0;
    margin-left: 0;
    transition: transform 0.3s ease;
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-nav-dropdown-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(0, 120, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin: 5px 0 10px 0;
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-menu {
    display: block;
}

.mobile-nav-dropdown-menu li {
    border-bottom: 1px solid rgba(0, 120, 255, 0.1);
}

.mobile-nav-dropdown-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-dropdown-menu a {
    padding: 12px 15px;
    font-size: 15px;
    font-weight: normal;
}

#mobile-nav-contact {
    margin-top: 30px;
}

.mobile-nav-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #333;
}

.mobile-nav-contact-item i {
    width: 20px;
    margin-right: 12px;
    color: #0078ff;
}

#mobile-nav-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#mobile-nav-buttons .btn {
    width: 100%;
    text-align: center;
}

#mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

/* Media Queries */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .burger-menu {
        display: block !important;
    }
    
    #mobile-nav-container {
        display: block !important;
    }
}

@media (min-width: 769px) {
    /* Masquer tous les éléments mobiles sur desktop */
    .burger-menu {
        display: none !important;
    }
    
    #mobile-nav-container,
    #mobile-nav-overlay {
        display: none !important;
    }
}

:root {
    --primary-color: #0078ff;
    --primary-light: rgba(0, 120, 255, 0.1);
    --primary-medium: rgba(0, 120, 255, 0.6);
    --secondary-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --light-text: #fff;
    --border-color: #eaeaea;
    --success-color: #28a745;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #f8fafc;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    position: absolute;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Styles pour le logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

#mobile-nav-logo .logo-image {
    height: 30px;
    width: auto;
    margin-right: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
}

.contact-info {
    margin-right: 30px;
    display: flex;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 14px;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 8px;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-icon-wrapper {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f5f7fa;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cart-icon-wrapper:hover {
    background-color: var(--primary-light);
}

.cart-icon-wrapper i {
    font-size: 18px;
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color);
    color: white;
    font-size: 11px;
    font-weight: bold;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 120, 255, 0.3);
}

.btn:hover {
    background-color: #0061cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 120, 255, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 120, 255, 0.3);
}

/* Navigation styles */
nav {
    background-color: white;
    border-radius: 50px;
    box-shadow: var(--box-shadow);
    padding: 0 15px;
    margin-top: 20px;
}

.nav-container {
    display: flex;
    justify-content: center;
    height: 70px;
}

.nav-links {
    position: relative;
    display: flex;
    list-style: none;
    height: 100%;
    margin: 0 auto;
}

.nav-links > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 5px;
}

.nav-links > li > a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    padding: 0 20px;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    height: 100%;
}

.nav-links > li > a:hover {
    color: var(--primary-color);
}

.nav-links > li > a i {
    margin-right: 8px;
    font-size: 16px;
}

.nav-links > li.active > a {
    color: var(--primary-color);
}

.nav-links > li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Style commun de base pour tous les mega menus */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: auto;
    max-width: 1200px;
    background-color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    border-radius: 20px;
    margin-top: 15px;
}

.has-mega-menu {
    position: static !important;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

/* Styles généraux pour tous les mega menus */
.mega-menu-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
}

.mega-menu-list {
    list-style: none;
}

.mega-menu-list li {
    margin-bottom: 15px;
    width: 100%;
}

.mega-menu-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 15px;
    width: 100%;
}

.mega-menu-list a:hover {
    color: var(--primary-color);
}

.mega-menu-list a i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 14px;
    width: 18px;
    text-align: center;
}

/* MEGA MENU HÉBERGEMENT - Style en grille étendue */
.nav-links > li:nth-child(2) .mega-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 30px 40px;
    max-width: 1300px; /* Plus large */
}

.nav-links > li:nth-child(2) .mega-menu-featured {
    grid-column: span 4;
    background-color: var(--primary-light);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

/* MEGA MENU DOMAINES - Style horizontal */
.nav-links > li:nth-child(3) .mega-menu {
    padding: 30px 40px;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.nav-links > li:nth-child(3) .mega-menu-column {
    padding: 0 15px;
    border-right: 1px solid var(--primary-light);
}

.nav-links > li:nth-child(3) .mega-menu-column:last-child {
    border-right: none;
}

.nav-links > li:nth-child(3) .mega-menu-featured {
    grid-column: span 3;
    padding: 25px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 120, 255, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

/* MEGA MENU STOCKAGE - Style horizontal */
.nav-links > li:nth-child(4) .mega-menu {
    padding: 30px 40px;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.nav-links > li:nth-child(4) .mega-menu-column {
    padding: 0 15px;
    border-right: 1px solid var(--primary-light);
}

.nav-links > li:nth-child(4) .mega-menu-column:last-child {
    border-right: none;
}

.nav-links > li:nth-child(4) .mega-menu-featured {
    grid-column: span 3;
    margin-top: 15px;
    padding: 25px;
    border-radius: 12px;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Éléments communs pour les zones featured */
.mega-menu-featured-content {
    flex: 1;
}

.mega-menu-featured h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.mega-menu-featured p {
    color: var(--text-light);
    margin-bottom: 15px;
    max-width: 80%;
}

.mega-menu-illustration {
    width: 120px;
    height: 120px;
    background-color: var(--primary-medium);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
}

/* Hero section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

/* Media query pour inverser l'ordre sur mobile */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        grid-row: 1;
    }
    
    .hero-content {
        grid-row: 2;
        max-width: 100%;
        text-align: center;
    }
    
    .hero p {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

.hero-tag {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a202c;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    right: -20%;
    top: -30%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 120, 255, 0.1) 0%, rgba(0, 120, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.server-illustration {
    width: 400px;
    height: 400px;
    background-color: white;
    box-shadow: var(--box-shadow);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.server-illustration::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--primary-light);
    border-radius: 50%;
    z-index: 0;
}

.server-illustration i {
    position: relative;
    z-index: 1;
}

/* Styles pour l'animation de la section hero */
.hero-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
    transform: scale(0.9);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: opacity 0.8s ease, visibility 0.8s, transform 0.8s ease;
}

/* Styles pour les différentes illustrations */
.server-illustration,
.cloud-illustration,
.secure-illustration,
.globe-illustration {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.server-illustration::before,
.cloud-illustration::before,
.secure-illustration::before,
.globe-illustration::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--primary-light);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 3s infinite ease-in-out;
}

.server-illustration i,
.cloud-illustration i,
.secure-illustration i,
.globe-illustration i {
    position: relative;
    z-index: 1;
    font-size: 80px;
    color: var(--primary-color);
}

/* Animation de pulsation pour les illustrations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Couleurs spécifiques pour chaque illustration */
.cloud-illustration::before {
    background-color: rgba(0, 120, 255, 0.15);
}

.secure-illustration::before {
    background-color: rgba(0, 200, 83, 0.15);
}

.secure-illustration i {
    color: #00c853;
}

.globe-illustration::before {
    background-color: rgba(255, 87, 34, 0.15);
}

.globe-illustration i {
    color: #ff5722;
}

/* Animation d'entrée pour les slides */
@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideOut {
    from { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to { 
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
}

.hero-slide.animate-in {
    animation: slideIn 0.8s forwards;
}

.hero-slide.animate-out {
    animation: slideOut 0.8s forwards;
}

/* Features section */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.section-description {
    color: var(--text-light);
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 30px;
    margin-bottom: 25px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a202c;
}

.feature-description {
    color: var(--text-light);
    margin-bottom: 20px;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Pricing section */
.pricing {
    padding: 100px 0;
    background-color: #f9fafb;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-tab {
    padding: 12px 25px;
    background-color: white;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.pricing-tab:first-child {
    border-radius: 50px 0 0 50px;
}

.pricing-tab:last-child {
    border-radius: 0 50px 50px 0;
}

.pricing-tab.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.pricing-card.featured::before {
    content: 'Populaire';
    position: absolute;
    top: 12px;
    right: -30px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-head {
    margin-bottom: 30px;
    text-align: center;
}

.pricing-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a202c;
}

.pricing-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.pricing-duration {
    color: var(--text-light);
    font-size: 14px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success-color);
    margin-right: 10px;
    font-weight: bold;
}

.pricing-button {
    display: block;
    text-align: center;
}

/* Footer - Design amélioré */
footer {
    background-color: #0a1f44;
    color: #fff;
    padding: 80px 0 0;
    position: relative;
    margin-top: 60px;
}

footer::before {
    content: '';
    position: absolute;
    top: -5px; /* Réduit pour une ligne plus fine */
    left: 0;
    right: 0;
    height: 5px; /* Réduit pour une ligne plus fine */
    background: #0078ff; /* Utilise la couleur primaire au lieu d'un gradient */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 100%;
}

.footer-column {
    padding: 0 10px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1;
}

.footer-links a:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 16px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-links > li:nth-child(2) .mega-menu {
        grid-template-columns: repeat(4, 1fr);
        max-width: 95%;
    }
    
    .nav-links > li:nth-child(3) .mega-menu,
    .nav-links > li:nth-child(4) .mega-menu {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero p {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Header mobile complètement redesigné */
    header {
        position: relative;
        background-color: white;
        padding: 15px 0;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    }
    
    .header-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 15px;
    }
    
    .logo {
        grid-column: 1;
    }
    
    .burger-menu {
        display: block !important;
        grid-column: 3;
    }
    
    .header-right {
        grid-column: 1 / span 3;
        grid-row: 2;
        margin-top: 20px;
        display: none;
    }
    
    .header-right.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .contact-info {
        margin: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .contact-item {
        white-space: nowrap;
        background-color: #f5f9ff;
        padding: 8px 15px;
        border-radius: 50px;
    }
    
    .header-buttons {
        margin-top: 5px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    /* Nouvelle navbar mobile avec style moderne */
    nav {
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        background: transparent;
    }
    
    .nav-container {
        height: auto;
        padding: 0;
    }
    
    /* Menu mobile style */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        overflow-y: auto;
        margin: 0;
        z-index: 1000;
        padding: 80px 0 30px;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links > li {
        height: auto;
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(0, 120, 255, 0.05);
    }
    
    .nav-links > li:last-child {
        border-bottom: none;
    }
    
    .nav-links > li > a {
        padding: 15px 25px;
        width: 100%;
        justify-content: flex-start;
        font-weight: 500;
    }
    
    .nav-links > li.active > a {
        background-color: var(--primary-light);
        border-left: 3px solid var(--primary-color);
    }
    
    .has-mega-menu > a::after {
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-left: auto;
        transition: transform 0.3s;
    }
    
    .has-mega-menu.open > a::after {
        transform: rotate(180deg);
    }
    
    /* Mega menus en mode accordéon */
    .mega-menu {
        position: static;
        width: 100%;
        max-width: 100%;
        display: block;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        margin: 0;
        background-color: #f8fafc;
        opacity: 1;
        visibility: visible;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease-out;
    }
    
    .mega-menu.active {
        height: auto;
        padding: 15px 0;
    }
    
    .mega-menu-column {
        padding: 10px 25px;
        border-right: none;
        border-bottom: 1px solid var(--primary-light);
        margin-bottom: 10px;
    }
    
    .mega-menu-column:last-child {
        border-bottom: none;
    }
    
    .mega-menu-featured {
        padding: 20px 25px !important;
        margin: 0;
        background-color: transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .mega-menu-illustration {
        width: 80px;
        height: 80px;
        margin: 15px auto 0;
    }
    
    /* Overlay sombre quand le menu est ouvert */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(2px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        max-width: 100%;
    }
}

/* Styles pour le menu burger mobile */
.burger-menu {
    display: none;
    cursor: pointer;
    width: 28px;
    height: 22px;
    position: relative;
    margin-left: auto;
    z-index: 1010;
    transition: all 0.3s ease;
}

.burger-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.burger-menu span:nth-child(1) {
    top: 0px;
}

.burger-menu span:nth-child(2),
.burger-menu span:nth-child(3) {
    top: 9px;
}

.burger-menu span:nth-child(4) {
    top: 18px;
}

.burger-menu.open span:nth-child(1) {
    top: 9px;
    width: 0%;
    left: 50%;
}

.burger-menu.open span:nth-child(2) {
    transform: rotate(45deg);
}

.burger-menu.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.burger-menu.open span:nth-child(4) {
    top: 9px;
    width: 0%;
    left: 50%;
}

@media (max-width: 768px) {
    .header-right {
        display: none !important;
    }
    
    .nav-links {
        display: none !important;
    }
    
    nav.desktop-only {
        display: none !important;
    }
    
    .menu-overlay {
        display: none !important;
    }
}

@media (min-width: 769px) {
    /* Masquer tous les éléments mobiles sur desktop */
    .mobile-menu-container,
    .mobile-menu,
    .mobile-menu-header,
    .mobile-menu-content,
    .mobile-menu-links,
    .mobile-dropdown-menu,
    .mobile-menu-contact,
    .mobile-menu-buttons,
    .mobile-menu-overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .burger-menu {
        display: none !important;
    }
}

/* Animation lorsque le compteur change */
@keyframes cartCountPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.cart-count.animate {
    animation: cartCountPulse 0.5s ease;
}

/* Style pour le panier mobile */
.mobile-cart-link {
    position: relative;
}

.mobile-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    height: 20px;
    min-width: 20px;
    padding: 0 5px;
    border-radius: 10px;
    margin-left: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .cart-icon-wrapper {
        display: none !important;
    }
}

/* Styles pour les nouveaux modèles d'animation */
.image-illustration {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
}

.image-illustration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    z-index: 0;
}

.image-illustration img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    z-index: 1;
    transform: scale(1);
    transition: transform 3s ease-in-out;
}

.hero-slide.active .image-illustration img {
    animation: gentle-zoom 5s infinite alternate;
}

@keyframes gentle-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* Style pour l'animation personnalisée */
.custom-animation {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.circle-pulse {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 120, 255, 0.2) 0%, rgba(0, 120, 255, 0.05) 70%, transparent 100%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse-expand 3s infinite ease-in-out;
}

@keyframes pulse-expand {
    0% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(0.8); opacity: 0.3; }
}

.tech-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.tech-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

/* Positionnement des icônes */
.tech-icon:nth-child(2) {
    top: 30%;
    left: 10%;
    animation: float 4s infinite ease-in-out;
}

.tech-icon:nth-child(3) {
    top: 10%;
    right: 25%;
    animation: float 4s infinite ease-in-out 1s;
}

.tech-icon:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation: float 4s infinite ease-in-out 2s;
}

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