/* ============================================
   MODERN FUTURISTIC DESIGN - SPE FRANCE
   Design élégant, moderne & orienté conversion
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Modern Blue, White, Red Palette */
    --primary-blue: #0066FF;
    --primary-blue-dark: #0052CC;
    --primary-blue-light: #3385FF;
    --secondary-cyan: #00D4FF;
    --accent-red: #FF3333;
    --accent-red-dark: #CC0000;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    --gradient-red: linear-gradient(135deg, #FF3333 0%, #CC0000 100%);
    --gradient-tricolor: linear-gradient(135deg, #0066FF 0%, #00D4FF 50%, #FF3333 100%);
    --gradient-hero: linear-gradient(135deg, #0A1929 0%, #1A365D 50%, #0A1929 100%);
    
    /* Text Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-light: #999999;
    --text-white: #FFFFFF;
    
    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-dark: #0A1929;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 102, 255, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 102, 255, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 102, 255, 0.2);
    --shadow-red: 0 8px 30px rgba(255, 51, 51, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.4);
    --shadow-glow-red: 0 0 30px rgba(255, 51, 51, 0.5);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   FLOATING CTA BUTTON
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    animation: floatUp 0.6s ease-out 1s both;
}

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

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--gradient-red);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: var(--shadow-red), var(--shadow-glow-red);
    transition: var(--transition-smooth);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-red), var(--shadow-glow-red);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(255, 51, 51, 0.4), 0 0 40px rgba(255, 51, 51, 0.6);
    }
}

.floating-cta-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 51, 51, 0.4), 0 0 50px rgba(255, 51, 51, 0.6);
}

.floating-cta-btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   HEADER - Modern & Clean
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 0.875rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.nav-wrapper .logo {
    flex-shrink: 0;
    z-index: 1001;
}

.nav-wrapper .nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.nav-wrapper .nav-contact {
    flex-shrink: 0;
    display: flex;
    z-index: 1001;
}

.nav-wrapper .mobile-menu-toggle {
    flex-shrink: 0;
    display: none;
    z-index: 1001;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    transition: var(--transition-fast);
}

.logo-main {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-accent {
    font-size: 1.25rem;
    color: var(--accent-red);
}

.logo:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    max-width: 100%;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 1.75rem);
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: transform 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Sub-menu Desktop */
.nav-item-has-children {
    position: relative;
}

.nav-item-has-children > .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    padding: 8px 0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    z-index: 1000;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.nav-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-item-has-children > .sub-menu li {
    margin: 0;
}

.nav-item-has-children > .sub-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.nav-item-has-children > .sub-menu a::after {
    display: none;
}

.nav-item-has-children > .sub-menu a:hover {
    background: rgba(0, 102, 255, 0.06);
    color: var(--primary-blue);
}

.nav-item-has-children > a {
    position: relative;
    padding-right: 24px;
}

.nav-item-has-children > a::before {
    content: '▼';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.5rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.nav-item-has-children:hover > a::before {
    transform: translateY(-50%) rotate(180deg);
    color: var(--primary-blue);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .nav-wrapper {
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 0.125rem;
    }
    
    .nav-menu a {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .nav-contact {
        gap: 0.5rem;
    }
    
    .phone-link {
        font-size: 0.875rem;
    }
    
    .btn-cta-primary {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

.phone-link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.phone-link:hover {
    color: var(--accent-red-dark);
}

.btn-cta-primary {
    background: var(--gradient-red);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(255, 51, 51, 0.25);
    white-space: nowrap;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.35);
}

/* Alias for btn-primary (compatibility) */
.btn-primary {
    background: var(--gradient-red);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(255, 51, 51, 0.25);
    white-space: nowrap;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.35);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: var(--transition-smooth);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO SECTION - Futuristic Design
   ============================================ */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-hero);
    color: white;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-gradient-1 {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.hero-gradient-2 {
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.1), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255,255,255,0.1), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.15), transparent);
    background-size: 200% 200%;
    animation: particleMove 20s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes particleMove {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: 0.875rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

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

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-line-1 {
    display: block;
    font-size: 0.6em;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line-2 {
    display: block;
    margin: 8px 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.gradient-text {
    background: linear-gradient(135deg, #00D4FF 0%, #0066FF 50%, #FF3333 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.title-line-3 {
    display: block;
    font-size: 0.5em;
    font-weight: 500;
    opacity: 0.85;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: var(--gradient-red);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(255, 51, 51, 0.4), 0 0 30px rgba(255, 51, 51, 0.3);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 51, 51, 0.5), 0 0 40px rgba(255, 51, 51, 0.4);
}

.pulse-animation {
    animation: pulseBtn 2s ease-in-out infinite;
}

@keyframes pulseBtn {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(255, 51, 51, 0.4), 0 0 30px rgba(255, 51, 51, 0.3);
    }
    50% {
        box-shadow: 0 15px 50px rgba(255, 51, 51, 0.5), 0 0 40px rgba(255, 51, 51, 0.5);
    }
}

.btn-phone {
    display: block;
    font-size: 0.85em;
    opacity: 0.9;
    margin-top: 4px;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.hero-stat-item {
    text-align: center;
}

.stat-number {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-tricolor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.stat-unit {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 4px;
    background: var(--gradient-tricolor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 8px;
    font-weight: 500;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    animation: bounce 2s ease-in-out infinite;
    z-index: 1;
}

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

/* ============================================
   URGENCY BANNER
   ============================================ */
.urgency-banner {
    background: var(--gradient-red);
    color: white;
    padding: 16px 0;
    position: relative;
    overflow: hidden;
}

.urgency-banner::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;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.urgency-icon {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.urgency-text {
    font-weight: 500;
    font-size: 0.95rem;
}

.urgency-btn {
    padding: 8px 20px;
    background: white;
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    border-radius: 24px;
    transition: var(--transition-fast);
}

.urgency-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   SECTIONS - Common Styles
   ============================================ */
section {
    padding: 80px 0;
    position: relative;
}

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

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(0, 102, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    padding: 0;
}

.service-card .service-features li {
    padding: 10px 0 10px 72px;
    margin: 0;
    color: var(--text-secondary);
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
    text-indent: 0;
    list-style: none;
}

.service-card .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.875rem;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    line-height: 1;
    flex-shrink: 0;
    box-sizing: border-box;
    overflow: visible;
}

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

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

/* Service Icon Wrapper */
.service-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 20px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 255, 0.15));
}

.service-icon {
    font-size: 3rem;
    line-height: 1;
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-blue);
    width: 20px;
    height: 20px;
}

.service-features li span {
    flex: 1;
}

/* Service Card Urgent */
.service-card-urgent {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.05), rgba(204, 0, 0, 0.05));
    border: 2px solid rgba(255, 51, 51, 0.2);
}

.service-card-urgent::before {
    background: var(--gradient-red);
}

.service-urgent-info {
    text-align: center;
    padding: 24px 0;
}

.service-urgent-info p {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.btn-urgent-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gradient-red);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(255, 51, 51, 0.4);
    margin: 16px 0;
}

.btn-urgent-phone:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 51, 51, 0.5);
}

.btn-urgent-phone svg {
    width: 24px;
    height: 24px;
}

.urgent-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 12px;
}

/* ============================================
   PAGE HEADER SECTION (Services, About, etc.)
   ============================================ */
.page-header-section {
    background: var(--gradient-hero);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 51, 51, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-section .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    opacity: 0.95;
    max-width: 700px;
}

/* Services Page Main */
.services-page-main {
    padding: 0;
}

.services-page-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-page-section .services-grid {
    gap: 40px;
}

/* CTA Section Services */
.cta-section-services {
    background: var(--gradient-tricolor);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section-services .cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.cta-section-services .cta-title {
    color: white;
    margin-bottom: 16px;
}

.cta-section-services .cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-section-services .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: white;
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-cta-large svg {
    width: 24px;
    height: 24px;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
    background: white;
}

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

.benefit-card {
    padding: 32px;
    background: var(--bg-light);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: white;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-hero);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 51, 51, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--gradient-red);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(255, 51, 51, 0.4);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 51, 51, 0.5);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.cta-alternative {
    opacity: 0.8;
    font-size: 0.95rem;
}

.cta-alternative a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

/* ============================================
   ZONES SECTION
   ============================================ */
.zones-section {
    background: var(--bg-light);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.zone-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-left: 4px solid var(--primary-blue);
}

.zone-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent-red);
}

.zone-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.zone-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--bg-light);
    color: var(--text-primary);
    padding: 40px 0;
}

.stats-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-card-large {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.stat-number-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-unit-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.stat-label-large {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 400;
}

.stats-grid-small {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-width: 100px;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

/* Footer Section (compatible avec footer-col) */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3,
.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer-section p strong {
    color: white;
    font-weight: 600;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--accent-red);
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 4px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.footer-logo .logo-main {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-accent {
    font-size: 1.25rem;
    color: var(--accent-red);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--accent-red);
}

.footer-phone {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
    margin: 16px 0;
    text-decoration: none;
}

.btn-footer-cta {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gradient-red);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 24px;
    transition: var(--transition-fast);
    margin-top: 8px;
}

.btn-footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-red);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    body {
        padding-top: 56px;
    }
    
    /* Mobile Menu - Slide from left */
    .nav-menu {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: min(85vw, 320px);
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        flex-direction: column;
        padding: 80px 0 0;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        list-style: none;
        margin: 0;
    }
    
    .nav-menu.active {
        transform: translateX(0) !important;
    }
    
    .nav-menu > li {
        width: 100%;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 14px 1.5rem;
        border-radius: 0;
        width: 100%;
        text-align: left;
    }
    
    .nav-menu > li > a::after {
        display: none;
    }
    
    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
        background: rgba(0, 102, 255, 0.06);
        color: var(--primary-blue);
    }
    
    /* Sub-menu Mobile */
    .nav-item-has-children {
        flex-direction: column;
    }
    
    .nav-item-has-children > a {
        position: relative;
        padding-right: 3rem;
    }
    
    .nav-item-has-children > a::before {
        content: '›';
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%) rotate(0deg);
        font-size: 1.25rem;
        color: var(--text-secondary);
        transition: transform 0.3s ease;
        font-weight: 300;
    }
    
    .nav-item-has-children.active > a::before {
        transform: translateY(-50%) rotate(90deg);
        color: var(--primary-blue);
    }
    
    .nav-item-has-children > .sub-menu {
        display: none;
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(0, 102, 255, 0.04);
        margin: 0;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        min-width: auto;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .nav-item-has-children.active > .sub-menu {
        display: block;
        max-height: 500px;
        padding: 8px 0;
    }
    
    .nav-item-has-children > .sub-menu li {
        padding: 0;
        margin: 0;
    }
    
    .nav-item-has-children > .sub-menu a {
        padding: 10px 1.5rem 10px 3rem;
        font-size: 0.9rem;
        color: var(--text-secondary);
    }
    
    .nav-item-has-children > .sub-menu a:hover {
        background: rgba(0, 102, 255, 0.08);
        color: var(--primary-blue);
    }
    
    .nav-contact {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-wrapper {
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }
    
    .nav-wrapper .nav-menu {
        flex: none;
        justify-content: flex-start;
        min-width: auto;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        cursor: pointer;
        z-index: 1001;
        position: relative;
    }
    
    .nav-wrapper .mobile-menu-toggle {
        display: flex !important;
    }
    
    .logo-main {
        font-size: 1.25rem;
    }
    
    .logo-accent {
        font-size: 1rem;
    }
    
    .hero-section {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }

    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-page-section {
        padding: 60px 0;
    }
    
    .page-header-section {
        padding: 80px 0 60px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-title {
        font-size: 1.35rem;
    }
    
    .btn-urgent-phone {
        padding: 14px 24px;
        font-size: 1.1rem;
    }
    
    .cta-section-services {
        padding: 60px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta-large,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .stats-section {
        padding: 32px 0;
    }
    
    .stats-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .stats-grid-small {
        gap: 16px;
        width: 100%;
    }
    
    .stat-item {
        flex: 1;
        min-width: auto;
        padding: 12px 16px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-number-large {
        font-size: 1.75rem;
    }
    
    .stat-unit-large {
        font-size: 1.25rem;
    }
    
    .stat-label-large {
        font-size: 0.8rem;
    }
    
    .floating-cta {
        bottom: 16px;
        right: 16px;
    }
    
    .floating-cta-btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }
    
    .floating-cta-btn span {
        display: none;
    }
    
    .floating-cta-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .zones-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .urgency-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-large,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

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

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