/* ========== CSS Variables ========== */
:root {
    /* Colors - Dark & Professional avec profondeur */
    --color-primary: #0A1128;        /* Bleu nuit profond */
    --color-primary-dark: #050814;
    --color-primary-light: #1A2744;
    --color-accent: #D97706;         /* Orange cuivré élégant */
    --color-accent-dark: #B45309;
    --color-accent-light: #F59E0B;
    --color-accent-glow: rgba(217, 119, 6, 0.4);
    --color-logo:#f1f2f4;
    
    /* Secondary colors */
    --color-secondary: #2563EB;      /* Bleu royal */
    --color-secondary-dark: #1E40AF;
    --color-tertiary: #059669;       /* Vert confiance */
    
    /* Neutrals - Équilibrés */
    --color-white: #FFFFFF;
    --color-gray-50: #F8FAFC;
    --color-gray-100: #F1F5F9;
    --color-gray-200: #E2E8F0;
    --color-gray-300: #CBD5E1;
    --color-gray-400: #94A3B8;
    --color-gray-500: #64748B;
    --color-gray-600: #475569;
    --color-gray-700: #fdfdfd;
    --color-gray-800: #1E293B;
    --color-gray-900: #0F172A;
    --color-gray-1000: #334155;

    
    /* Background */
    --color-background: #E5E9F0;
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-display: 'Montserrat', system-ui, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows - Enrichies pour plus de profondeur */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    --shadow-3d: 0 30px 60px rgba(10, 17, 40, 0.25), 0 10px 25px rgba(217, 119, 6, 0.15);
}

/* ========== Reset & Base Styles ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-background);
    color: var(--color-gray-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gray-900);
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}

/* ========== Container ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(58, 92, 180, 0.15), rgba(30, 60, 120, 0.15));
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 56px;
    height: 56px;
    background: var(--color-logo);
    border-radius: var(--radius-lg);
    border-radius: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 16px rgba(255, 140, 66, 0.3),
        0 8px 32px rgba(255, 140, 66, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden; 
}

/* Logo Entreprise */
.logo-icon::before {
    content: "";
    background: url("../images/logo_amy_syndic_transparent.png") no-repeat center;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: block;
}


.logo-icon:hover {
    transform: scale(1.1) translateZ(20px);
    box-shadow: 
        0 8px 24px rgba(255, 140, 66, 0.4),
        0 16px 48px rgba(255, 140, 66, 0.2);
    background: var(--color-accent);
}

.logo-text h1 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-gray-900);
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--color-gray-500);
    margin: 0;
    font-weight: 500;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray-700);
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent-glow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    color: var(--color-gray-800);
    font-size: 1.5rem;
    padding: 0.5rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-menu-content {
    position: absolute;
    top: 80px; 
    right: 0;
    height: calc(100vh - 80px); 
    width: 280px;
    background: var(--color-white);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    animation: slideInRight 0.3s ease;
    z-index: 1200;
}


@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.mobile-link {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gray-1000);
    border-bottom: 1px solid var(--color-gray-200);
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* ========== Hero Section ========== */
.hero {
    padding: 140px 0 80px;
    background: 
        linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(26, 39, 68, 0.92) 50%, rgba(15, 23, 42, 0.94) 100%),
        var(--hero-bg, url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80')) center/cover no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    perspective: 1500px;
    transform-style: preserve-3d;
}

/* Effet parallax 3D sur l'image de fond */
.hero::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: var(--hero-bg, url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80')) center/cover no-repeat;
    transform: translateZ(-200px) scale(1.15);
    animation: heroParallax3D 35s ease-in-out infinite;
    filter: brightness(0.6) contrast(1.1);
    z-index: 0;
}

@keyframes heroParallax3D {
    0%, 100% { 
        transform: translateZ(-200px) scale(1.15) translateY(0) rotateX(0deg);
    }
    25% { 
        transform: translateZ(-180px) scale(1.18) translateY(-15px) rotateX(2deg);
    }
    50% { 
        transform: translateZ(-220px) scale(1.12) translateY(-25px) rotateX(-2deg);
    }
    75% { 
        transform: translateZ(-190px) scale(1.16) translateY(-10px) rotateX(1deg);
    }
}

/* Overlay gradient 3D avec profondeur */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(217, 119, 6, 0.18) 0%, transparent 50%),
        linear-gradient(135deg, rgba(10, 17, 40, 0.85) 0%, rgba(26, 39, 68, 0.75) 50%, rgba(15, 23, 42, 0.85) 100%);
    pointer-events: none;
    animation: glowPulse3D 10s ease-in-out infinite;
    z-index: 1;
}


/* Overlay gradient simplifié */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(217, 119, 6, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Wave SVG au sol */
.hero .hero-wave {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,20 Q300,80 600,40 T1200,60 L1200,120 L0,120 Z" fill="%23E5E9F0"/></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
    animation: heroContentFade 1.2s ease forwards;
    opacity: 0;
}

@keyframes heroContentFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 8px 24px rgba(10, 17, 40, 0.4),
        0 0 30px rgba(217, 119, 6, 0.3);
    animation: labelFloat 3s ease-in-out infinite;
}

@keyframes labelFloat {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(-8px);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--color-white);
    font-family: var(--font-serif);
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(217, 119, 6, 0.2);
    animation: titleFade 1.2s ease 0.2s backwards;
}

@keyframes titleFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title .text-highlight {
    color: var(--color-accent-light);
    font-weight: 700;
    animation: highlightGlow 3s ease-in-out infinite;
}

@keyframes highlightGlow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(217, 119, 6, 0.5);
    }
    50% { 
        text-shadow: 0 0 35px rgba(217, 119, 6, 0.7);
    }
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    animation: descriptionFade 1.2s ease 0.4s backwards;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: buttonsFade 1.2s ease 0.6s backwards;
}

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

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    animation: featuresFade 1.2s ease 0.8s backwards;
}

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

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-feature i {
    color: var(--color-accent-light);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(217, 119, 6, 0.4));
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}
/* ========== Marquee ========== */
.marquee-container {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(10, 17, 40, 0.3);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2rem;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
}

.marquee-item i {
    color: var(--color-accent-light);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px var(--color-accent-glow));
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    width: 300px;
    height: 300px;
}

.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 20px rgba(10, 17, 40, 0.4),
        0 0 30px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(10, 17, 40, 0.5),
        0 0 50px rgba(59, 130, 246, 0.3);
}

.btn-primary-client {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-white);
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 20px rgba(10, 17, 40, 0.4),
        0 0 30px rgba(217, 119, 6, 0.2);
}

.btn-primary-client:hover {
    background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(10, 17, 40, 0.5),
        0 0 50px rgba(217, 119, 6, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-white);
    box-shadow: 
        0 8px 20px rgba(217, 119, 6, 0.4),
        0 0 30px rgba(217, 119, 6, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(217, 119, 6, 0.5),
        0 0 50px rgba(217, 119, 6, 0.4);
}

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

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

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 
        0 8px 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(217, 119, 6, 0.2);
}

.btn-white:hover {
    background: var(--color-gray-50);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 30px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(217, 119, 6, 0.3);
}

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

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}


/* ========== Slogan Section ========== */
.slogan-section {
    padding: 50px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.slogan-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: sloganPulse 8s ease-in-out infinite;
}

@keyframes sloganPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.8;
    }
}

.slogan-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.slogan-decoration {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

.slogan-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--color-gray-900);
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin: 0;
    position: relative;
    transform-style: preserve-3d;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.05),
        0 0 1px rgba(217, 119, 6, 0.1);
    animation: slogan3D 6s ease-in-out infinite;
}

@keyframes slogan3D {
    0%, 100% { 
        transform: perspective(800px) translateZ(0px) rotateX(0deg);
    }
    50% { 
        transform: perspective(800px) translateZ(25px) rotateX(10deg);
    }
}


.slogan-underline {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-light), transparent);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.2);
    animation: underlineGlow 4s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% { 
        opacity: 0.7;
        box-shadow: 0 2px 6px rgba(217, 119, 6, 0.2);
    }
    50% { 
        opacity: 1;
        box-shadow: 0 2px 12px rgba(217, 119, 6, 0.4);
    }
}
/* ========== Stats Section ========== 
.stats-section {
    padding: 60px 0;
    background: var(--color-white);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    transform: translateY(-10px) rotateX(5deg) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(10, 17, 40, 0.25),
        0 0 40px var(--color-accent-glow);
    border-color: var(--color-accent);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 
        0 8px 20px rgba(10, 17, 40, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.4s;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotateY(180deg);
    box-shadow: 
        0 12px 30px rgba(10, 17, 40, 0.4),
        0 0 40px var(--color-accent-glow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.stat-label {
    font-size: 1rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

*/

/* ========== Services Section ========== */
.services-section {
    padding: 80px 0;
    background: var(--color-background);
}

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

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 
        0 4px 12px rgba(10, 17, 40, 0.3),
        0 0 20px var(--color-accent-glow);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--color-gray-900);
}

.section-title .text-highlight {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.8;
}

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

.service-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--color-gray-200);
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.15), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) perspective(1000px) rotateY(2deg);
    box-shadow: 
        0 30px 60px rgba(10, 17, 40, 0.3),
        0 0 50px var(--color-accent-glow);
    border-color: var(--color-accent);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 8px 20px rgba(10, 17, 40, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 
        0 12px 30px rgba(10, 17, 40, 0.4),
        0 0 40px var(--color-accent-glow);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-gray-900);
}

.service-card p {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ========== Témoignages ========== */
.testimonials-section {
    padding: 80px 0;
    background: var(--color-white);
}

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

.testimonial-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--color-accent);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-8px) translateX(5px) rotateZ(-1deg);
    box-shadow: 
        0 25px 50px rgba(10, 17, 40, 0.25),
        0 0 40px var(--color-accent-glow);
    border-left-width: 6px;
}

.testimonial-rating {
    color: var(--color-accent-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-gray-1000);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    box-shadow: 
        0 4px 12px rgba(10, 17, 40, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-gray-900);
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

/* ========== CTA Section ========== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        0 0 60px var(--color-accent-glow);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: ctaFloat 15s ease-in-out infinite;
}

@keyframes ctaFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.1); }
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--color-white);
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Footer ========== */
.footer {
    background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-primary) 100%);
    color: var(--color-gray-300);
    padding: 60px 0 30px;
}

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

.footer-column h4 {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.footer-logo .logo-icon {
    width: 52px;
    height: 52px;
    font-size: 0;
    background: var(--color-accent);
}

.footer-logo .logo-icon::before {
    content: "";
    background: url("../images/hero-banner.avif") no-repeat center;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: block;
}


.footer-logo h3 {
    font-size: 1.4rem;
    color: var(--color-white);
    margin: 0;
}

.footer-logo p {
    font-size: 0.85rem;
    color: var(--color-gray-400);
    margin: 0;
}

.footer-description {
    color: var(--color-gray-400);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--color-gray-800);
    color: var(--color-gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 
        0 6px 16px rgba(217, 119, 6, 0.4),
        0 0 30px var(--color-accent-glow);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-gray-400);
    transition: color 0.3s;
}

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

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

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--color-gray-400);
}

.footer-contact i {
    color: var(--color-accent-light);
    margin-top: 0.25rem;
    filter: drop-shadow(0 0 8px var(--color-accent-glow));
}

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

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

.footer-legal a {
    color: var(--color-gray-400);
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--color-accent-light);
}



/* ========= FAQ ========== */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gray-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}
.faq-question:hover {
    background: var(--color-gray-50);
}
.faq-question i {
    color: var(--color-primary);
    transition: transform 0.3s;
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer.active {
    max-height: 500px;
}
.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    max-height: 400px;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .faq-answer-content {
        max-height: 300px;
    }
}

/* ========== Chatbot ========== */
.chatbot-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-white);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(217, 119, 6, 0.5),
        0 0 40px var(--color-accent-glow),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    cursor: pointer;
    border: 3px solid var(--color-white);
    animation: chatbotPulse 5s infinite;
}


@keyframes chatbotPulse {
    0%, 96%, 100% {
        transform: scale(1);
    }
    98% {
        transform: scale(1.1);
        box-shadow: 
            0 12px 32px rgba(217, 119, 6, 0.6),
            0 0 60px var(--color-accent-glow),
            inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    }
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 
        0 12px 32px rgba(217, 119, 6, 0.6),
        0 0 60px var(--color-accent-glow),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

.chatbot-toggle.wiggle {
    animation: wiggle 0.5s ease;
}

.chatbot-window {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 400px;
    max-width: calc(100vw - 4rem);
    max-height: 600px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-3d);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid var(--color-gray-200);
}

.chatbot-window.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

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

.chatbot-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatbot-header-title i {
    font-size: 1.5rem;
    color: var(--color-accent-light);
    filter: drop-shadow(0 0 8px var(--color-accent-glow));
}

.chatbot-header-title h3 {
    font-size: 1.125rem;
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-display);
}

.chatbot-close {
    background: none;
    color: var(--color-white);
    font-size: 1.5rem;
    padding: 0.25rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: var(--color-gray-50);
}

.chatbot-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chatbot-welcome h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-gray-900);
}

.chatbot-welcome p {
    color: var(--color-gray-600);
}

.chatbot-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chatbot-option {
    background: var(--color-white);
    padding: 1rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid var(--color-gray-200);
    box-shadow: var(--shadow-sm);
}

.chatbot-option:hover {
    border-color: var(--color-accent);
    transform: translateX(5px);
    box-shadow: 
        var(--shadow-md),
        0 0 20px var(--color-accent-glow);
}

.chatbot-option i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.chatbot-option strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-gray-900);
}

.chatbot-option span {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.chatbot-form-container,
.chatbot-faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-back {
    background: var(--color-gray-200);
    color: var(--color-gray-1000);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    align-self: flex-start;
}

.chatbot-back:hover {
    background: var(--color-gray-300);
}

.chatbot-form-container h4,
.chatbot-faq-container h4 {
    font-size: 1.25rem;
    color: var(--color-gray-900);
}

.chatbot-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-1000);
}

.form-input {
    padding: 0.75rem;
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.9375rem;
    transition: border-color 0.3s;
    background: var(--color-white);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.chatbot-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-faq-item {
    background: var(--color-white);
    padding: 1rem;
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--color-accent);
    box-shadow: var(--shadow-sm);
}

.chatbot-faq-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-gray-900);
}

.chatbot-faq-item p {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.chatbot-message {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.chatbot-success {
    background: #ECFDF5;
    color: #065F46;
    border: 2px solid #10B981;
}

.chatbot-success i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.chatbot-error {
    background: #FEF2F2;
    color: #991B1B;
    border: 2px solid #EF4444;
}

.chatbot-error i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* ========== Animations ========== */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.fade-in.visible {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
}

.slide-up.visible {
    animation: slideUpAnim 0.6s ease forwards;
}

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

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .chatbot-window {
        right: 1rem;
        bottom: 5rem;
        width: calc(100vw - 2rem);
    }
    
    .chatbot-toggle {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}