/* ============================================
   DESIGN MODERNE & ÉPURÉ - BLEU PRINCIPAL
   ============================================ */

/* Reset et variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette de bleus modernes */
    --blue-primary: #2563eb;
    --blue-dark: #1e40af;
    --blue-light: #3b82f6;
    --blue-lighter: #60a5fa;
    --blue-pale: #dbeafe;
    --blue-bg: #eff6ff;
    
    /* Couleurs neutres */
    --white: #ffffff;
    --bg-rosatre: #fef7f7; /* Fond principal légèrement rosâtre et blanchi */
    --gray-50: #faf5f5; /* Légèrement rosâtre */
    --gray-100: #f5f0f0; /* Légèrement rosâtre */
    --gray-200: #e8e0e0; /* Légèrement rosâtre */
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typographie */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Ombres subtiles */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base */
body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--bg-rosatre);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    /* -moz-osx-font-smoothing: grayscale; */ /* Préfixe Firefox, peut causer un warning mais fonctionne */
    padding-top: 80px; /* Compensation pour navbar fixe ovale */
}

/* Pas de padding-top sur l'accueil pour éviter le bandeau blanc */
body.homepage {
    padding-top: 0;
}

/* Pas de bordure blanche sur mobile */
@media (max-width: 968px) {
    body.homepage {
        padding-top: 0;
        margin-top: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   NAVIGATION - Style Apple Ultra Moderne & Épuré
   ============================================ */
:root {
    --nav-primary: #007AFF;
    --nav-white: #FFFFFF;
    --nav-text-dark: #1D1D1F;
    --nav-text-muted: #86868B;
}

.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(30px);
    -webkit-backdrop-filter: saturate(180%) blur(30px);
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1200px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(40px);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    top: 8px;
    border-radius: 50px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 28px;
    max-width: 1440px;
    margin: 0 auto;
    height: 56px;
}

.nav-logo {
    font-size: 16px;
    font-weight: 600;
    color: var(--nav-text-dark);
    text-decoration: none;
    letter-spacing: -0.4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    height: 100%;
    flex-shrink: 0;
}

.logo-image {
    height: 100px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

.logo-text {
    display: none; /* Masquer le texte, garder seulement le logo */
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
 
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--nav-text-dark);
    font-weight: 400;
    font-size: 13px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6px 12px;
    border-radius: 20px;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--nav-primary);
    background: rgba(0, 122, 255, 0.06);
}

.nav-link.active {
    position: relative;
    color: var(--nav-primary);
    font-weight: 500;
    background: rgba(0, 122, 255, 0.1);
    border: 2px solid rgba(0, 122, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.15);
}

.nav-link.active::before {
    display: none;
}

.btn-nav {
    background: transparent;
    color: var(--nav-primary) !important;
    padding: 7px 16px;
    border-radius: 20px;
    border: 2px solid var(--nav-primary);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.15);
}

.btn-nav:hover {
    color: var(--nav-primary) !important;
    border-color: var(--nav-primary);
    background: rgba(0, 122, 255, 0.05);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.25);
    transform: translateY(-0.5px);
}

.btn-nav.active {
    color: var(--nav-primary) !important;
    border-color: var(--nav-primary);
    background: rgba(0, 122, 255, 0.1);
}

.btn-nav:active {
    transform: translateY(0);
}

.social-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 16px;
    border-left: 0.5px solid rgba(0, 0, 0, 0.08);
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nav-text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-icon:hover {
    background: rgba(0, 122, 255, 0.08);
    transform: scale(1.1);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-icon:hover svg {
    transform: scale(1.15);
}

.social-icon-instagram:hover {
    background: rgba(225, 48, 108, 0.1);
}

.social-icon-facebook:hover {
    background: rgba(24, 119, 242, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 6px;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
}

.nav-toggle span {
    width: 18px;
    height: 1.5px;
    background: var(--nav-text-dark);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.nav-toggle:hover {
    background: rgba(0, 122, 255, 0.06);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
@media (max-width: 968px) {
    .navbar {
        width: calc(100% - 24px);
        top: 8px;
    }
    
    .nav-container {
        padding: 0 20px;
        height: 60px;
        position: relative;
    }
    
    .nav-logo {
        font-size: 15px;
        gap: 8px;
    }
    
    .logo-image {
        height: 50px;
        max-width: 90px;
    }
    
    .logo-text {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-wrapper {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: saturate(180%) blur(30px);
        -webkit-backdrop-filter: saturate(180%) blur(30px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 0;
        border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        align-items: stretch;
        border-radius: 20px;
    }
    
    .navbar.menu-open .nav-wrapper {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 4px;
        width: 100%;
        align-items: stretch;
    }
    
    .nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .social-nav {
        margin-top: 16px;
        padding-top: 16px;
        padding-left: 0;
        border-left: none;
        border-top: 0.5px solid rgba(0, 0, 0, 0.08);
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .navbar {
        width: calc(100% - 16px);
        top: 8px;
        border-radius: 20px;
        max-width: none;
    }
    
    .nav-container {
        padding: 0 16px;
        height: 56px;
        position: relative;
    }
    
    .nav-logo {
        font-size: 14px;
        gap: 6px;
        flex-shrink: 0;
    }
    
    .logo-image {
        height: 40px;
        max-width: 80px;
    }
    
    .logo-text {
        display: none;
    }
    
    .nav-toggle {
        z-index: 1001;
        position: relative;
    }
    
    .nav-wrapper {
        top: 64px;
        padding: 16px 20px;
        width: 100%;
        left: 0;
        right: 0;
        border-radius: 20px;
    }
    
    .nav-link {
        padding: 14px 16px;
        font-size: 15px;
        display: block;
    }
}

@media (max-width: 480px) {
    .navbar {
        width: calc(100% - 16px);
        top: 8px;
        border-radius: 20px;
        max-width: none;
    }
    
    .nav-container {
        padding: 0 14px;
        height: 54px;
        position: relative;
    }
    
    .nav-logo {
        gap: 6px;
        flex-shrink: 0;
    }
    
    .logo-image {
        height: 38px;
        max-width: 75px;
    }
    
    .logo-text {
        display: none;
    }
    
    .nav-toggle {
        width: 36px;
        height: 36px;
        padding: 8px;
        z-index: 1001;
        position: relative;
        flex-shrink: 0;
    }
    
    .nav-toggle span {
        width: 18px;
        height: 2px;
    }
    
    .nav-wrapper {
        top: 68px;
        padding: 16px 18px;
        border-radius: 20px;
        width: 100%;
        left: 0;
        right: 0;
    }
    
    .nav-link {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 12px;
        display: block;
    }
    
    .social-nav {
        padding-top: 12px;
        margin-top: 12px;
    }
}


/* ============================================
   HERO SECTION - Impact visuel
   ============================================ */
.hero {
    background-image: url('../images/main/backgroundindex.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: calc(var(--spacing-xl) + 80px) 0 var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -80px; /* Compensation pour navbar fixe */
}

html, body {
    overflow-x: hidden;
}

/* Overlay clair */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.85) 0%,
        rgba(30, 64, 175, 0.9) 100%
    );
    z-index: 0;
}

/* Texture grille */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.2; /* plus discret */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -1px;
    line-height: 1.1;
}


.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

/* ============================================
   BOUTONS - Design moderne
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--white);
    color: var(--blue-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--gray-50);
}

/* Animation pulse pour le bouton "Demander un devis" */
.btn-pulse {
    animation: buttonPulse 2s ease-in-out infinite;
    position: relative;
    overflow: visible;
}

.btn-pulse:hover {
    animation: none;
    transform: translateY(-2px) scale(1.05);
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3), 0 0 0 0 rgba(0, 122, 255, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4), 0 0 0 8px rgba(0, 122, 255, 0);
    }
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--blue-primary);
    transform: translateY(-2px);
}

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

/* ============================================
   SECTIONS - Espacement généreux
   ============================================ */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-900);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.page-header {
    background: var(--blue-bg);
    padding: calc(var(--spacing-lg) + 80px) 0 var(--spacing-lg) 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
    margin-top: -80px; /* Compensation pour navbar fixe */
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    font-weight: 400;
}

/* ============================================
   SERVICES - Cards épurées
   ============================================ */
.services-preview {
    background: var(--bg-rosatre);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-pale);
}

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: var(--spacing-md);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
}

.service-card:hover .service-image {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.service-card:hover .service-icon {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

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

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

.service-link {
    color: var(--blue-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--blue-dark);
    text-decoration: underline;
}

/* ============================================
   FEATURES - Design 3D Moderne & Animé
   ============================================ */
/* ============================================
   WHY US - Design épuré et moderne
   ============================================ */
.why-us {
    padding: calc(var(--spacing-xl) * 2) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.why-us-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-xl) * 1.5);
    position: relative;
    z-index: 1;
}

.why-us-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    color: var(--gray-900);
}

/* Fallback si JavaScript est désactivé - afficher le titre */
.no-js .title-word,
.title-word.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.title-word.visible {
    opacity: 1;
    transform: translateY(0);
}

.title-word:nth-child(3) {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.why-us-features {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem 3rem;
    background: var(--white);
    border-radius: 24px;
    border: 2px solid rgba(37, 99, 235, 0.08);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateX(-100px) scale(0.95);
    position: relative;
    overflow: hidden;
    visibility: hidden;
    cursor: pointer;
}

.why-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.why-feature::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.why-feature.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
    visibility: visible;
}

.why-feature.visible::before {
    width: 5px;
}

.why-feature:hover {
    transform: translateX(12px) scale(1.02);
    border-color: rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    box-shadow: 
        0 12px 48px rgba(37, 99, 235, 0.2),
        0 4px 16px rgba(37, 99, 235, 0.15),
        0 0 0 1px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: subtlePulse 2s ease-in-out infinite;
}

.why-feature:hover::before {
    width: 8px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
}

.why-feature:hover::after {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(37, 99, 235, 0.2);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    padding: 1rem 1.5rem;
    border-radius: 18px;
    min-width: 100px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    border: 2px solid rgba(37, 99, 235, 0.1);
    box-shadow: 
        0 4px 12px rgba(37, 99, 235, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feature-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.why-feature:hover .feature-number {
    color: var(--blue-primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border-color: rgba(37, 99, 235, 0.3);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.25),
        0 4px 12px rgba(37, 99, 235, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.why-feature:hover .feature-number::before {
    width: 150px;
    height: 150px;
    animation: numberGlow 1.5s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.feature-text {
    flex: 1;
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-feature:hover .feature-text {
    transform: translateX(8px);
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: inline-block;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-primary) 0%, var(--blue-light) 100%);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-feature:hover .feature-title {
    color: var(--blue-primary);
    transform: translateX(4px);
}

.why-feature:hover .feature-title::after {
    width: 100%;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.feature-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.9;
}

.why-feature:hover .feature-description {
    color: var(--gray-800);
    opacity: 1;
    transform: translateX(4px);
}

/* Effet de brillance au survol */
.why-feature {
    background-image: 
        linear-gradient(135deg, transparent 0%, rgba(37, 99, 235, 0.02) 50%, transparent 100%);
    background-size: 200% 200%;
    background-position: -100% -100%;
    transition: background-position 0.8s ease;
}

.why-feature:hover {
    background-position: 100% 100%;
}

/* Animation de pulse subtile pour attirer l'attention */
@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 
            0 12px 48px rgba(37, 99, 235, 0.2),
            0 4px 16px rgba(37, 99, 235, 0.15),
            0 0 0 1px rgba(37, 99, 235, 0.2);
    }
    50% {
        box-shadow: 
            0 16px 56px rgba(37, 99, 235, 0.25),
            0 6px 20px rgba(37, 99, 235, 0.2),
            0 0 0 2px rgba(37, 99, 235, 0.3);
    }
}

.why-feature:hover {
    animation: subtlePulse 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .why-us {
        padding: var(--spacing-xl) 0;
    }
    
    .why-us-title {
        font-size: clamp(2rem, 6vw, 3rem);
        gap: 0.4rem;
    }
    
    .why-us-features {
        gap: 1.25rem;
    }
    
    .why-feature {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .why-feature {
        transform: translateY(30px);
    }
    
    .why-feature.visible {
        transform: translateY(0);
    }
    
    .why-feature:hover {
        transform: translateY(-6px) scale(1.01);
        animation: none;
    }
    
    .why-feature:hover .feature-number {
        transform: scale(1.08) rotate(3deg);
    }
    
    .feature-number {
        font-size: 2.5rem;
        min-width: 80px;
        padding: 0.75rem 1.25rem;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .feature-description {
        font-size: 1rem;
    }
}

@media (max-width: 280px) {
    .why-us-title {
        font-size: 2rem;
    }
    
    .why-feature {
        padding: 1.5rem 1.25rem;
    }
    
    .feature-number {
        font-size: 2rem;
        min-width: 70px;
        padding: 0.625rem 1rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
}

/* ============================================
   CTA SECTION - Appel à l'action
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.cta-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    font-weight: 300;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
/* ============================================
   ABOUT PAGE - Moderne & Épuré
   ============================================ */
.about-content {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-title {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: var(--gray-900);
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--blue-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.animate-title:first-child {
    margin-top: 0;
}

.animate-text {
    color: var(--gray-700);
    line-height: 2;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-text:nth-child(2) {
    animation-delay: 0.3s;
}

.animate-text:nth-child(3) {
    animation-delay: 0.4s;
}

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

.about-image {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

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

.image-placeholder {
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--white) 100%);
    border-radius: 24px;
    padding: var(--spacing-lg);
    text-align: center;
    color: var(--gray-600);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gray-200);
    box-shadow: 
        0 10px 40px rgba(37, 99, 235, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(37, 99, 235, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Valeurs Section */
.values-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--white) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: valueCardAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-light));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

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

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 12px 40px rgba(37, 99, 235, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--blue-light);
}

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

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    font-weight: bold;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
}

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

.value-card h3 strong {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.value-card p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Expertise Section */
.expertise-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.expertise-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-700);
    line-height: 1.8;
    max-width: 800px;
    margin: 2rem auto 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

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

.expertise-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(37, 99, 235, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: valueCardAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.expertise-card:nth-child(1) { animation-delay: 0.2s; }
.expertise-card:nth-child(2) { animation-delay: 0.3s; }
.expertise-card:nth-child(3) { animation-delay: 0.4s; }

.expertise-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(37, 99, 235, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--blue-primary);
}

.expertise-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.15) rotate(5deg);
}

.expertise-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--blue-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expertise-card p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   SERVICES DETAIL
   ============================================ */
.services-detail {
    padding: var(--spacing-xl) 0;
    background: var(--bg-rosatre);
}

.services-detail:nth-child(even) {
    background: var(--white);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    border-radius: 24px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.service-detail-card.in-view {
    animation: serviceCardAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(37, 99, 235, 0.15),
        0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.service-detail-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--white) 100%);
}

.service-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.service-detail-card:hover .service-detail-image {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-detail-card:hover .service-image-overlay {
    opacity: 1;
}

.service-detail-content {
    padding: 3rem;
}

.service-detail-content h2 {
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
    min-height: 1.2em;
}

.typewriter-text {
    position: relative;
    display: inline-block;
}

.typewriter-text::after {
    content: '|';
    display: inline-block;
    animation: typewriterBlink 1s infinite;
    color: var(--blue-primary);
    margin-left: 2px;
    font-weight: 300;
}

.typewriter-text.completed::after {
    opacity: 0;
    animation: none;
}

.service-detail-card:hover .service-detail-content h2 {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes typewriterBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.service-description {
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.service-subtitle {
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.service-list {
    list-style: none;
    margin-top: var(--spacing-sm);
    display: grid;
    gap: 0.75rem;
}

.service-list li {
    padding: 1rem 1.5rem;
    padding-left: 3.5rem;
    position: relative;
    color: var(--gray-700);
    line-height: 1.8;
    background: rgba(37, 99, 235, 0.04);
    border-radius: 14px;
    border-left: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05rem;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-10px);
    animation: serviceListItemAppear 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-list li:nth-child(1) { animation-delay: 0.1s; }
.service-list li:nth-child(2) { animation-delay: 0.2s; }
.service-list li:nth-child(3) { animation-delay: 0.3s; }
.service-list li:nth-child(4) { animation-delay: 0.4s; }
.service-list li:nth-child(5) { animation-delay: 0.5s; }
.service-list li:nth-child(6) { animation-delay: 0.6s; }
.service-list li:nth-child(7) { animation-delay: 0.7s; }
.service-list li:nth-child(8) { animation-delay: 0.8s; }

.service-list li:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(37, 99, 235, 0.08) 100%);
    border-left-color: var(--blue-primary);
    transform: translateX(8px) translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(37, 99, 235, 0.2),
        0 2px 6px rgba(37, 99, 235, 0.1);
    color: var(--gray-900);
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 1.25rem;
    color: var(--blue-primary);
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-list li:hover:before {
    transform: scale(1.3) rotate(10deg);
    text-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

@keyframes serviceListItemAppear {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ============================================
   AUTRES SERVICES SECTION
   ============================================ */
.other-services-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.other-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.other-services-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 4rem 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.other-services-card.in-view {
    animation: otherServicesAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.other-services-content {
    text-align: center;
}

.other-services-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.other-services-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.other-services-human-touch {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 2rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.05);
    border-left: 4px solid var(--blue-primary);
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.other-services-human-touch strong {
    color: var(--blue-primary);
    font-weight: 700;
}

.other-services-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2.5rem;
    margin-top: 2rem;
}

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

.other-service-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: otherServiceItemAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.other-service-item:nth-child(1) { animation-delay: 0.1s; }
.other-service-item:nth-child(2) { animation-delay: 0.2s; }
.other-service-item:nth-child(3) { animation-delay: 0.3s; }
.other-service-item:nth-child(4) { animation-delay: 0.4s; }
.other-service-item:nth-child(5) { animation-delay: 0.5s; }
.other-service-item:nth-child(6) { animation-delay: 0.6s; }

.other-service-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--blue-primary);
    box-shadow: 
        0 12px 40px rgba(37, 99, 235, 0.2),
        0 4px 16px rgba(37, 99, 235, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.other-service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.other-service-item:hover .other-service-icon {
    transform: scale(1.2) rotate(5deg);
}

.other-service-item h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.other-service-item:hover h3 {
    color: var(--blue-primary);
}

.other-service-item p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

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

.other-services-cta {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(37, 99, 235, 0.1);
}

.cta-message {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-message strong {
    color: var(--gray-900);
    font-weight: 700;
}

/* ============================================
   RÉALISATIONS - Slider Avant/Après
   ============================================ */
.realisations-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-rosatre);
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.realisation-item {
    background: transparent;
    padding: var(--spacing-sm);
    border-radius: 20px;
    box-shadow: none;
    border: none;
    max-width: 600px;
    margin: 0 auto;
}

.realisation-item h3 {
    margin-bottom: var(--spacing-md);
    text-align: center;
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Cartes épurées blanches transparentes avec effets hover bleus */
.photo-frame-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: transparent;
    border-radius: 20px;
    position: relative;
}

/* Carte blanche transparente */
.photo-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 0;
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 16px 48px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.photo-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0) 0%, rgba(37, 99, 235, 0) 100%);
    border-radius: 20px;
    pointer-events: none;
    transition: all 0.4s ease;
    opacity: 0;
}

.photo-frame:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(37, 99, 235, 0.25),
        0 32px 80px rgba(37, 99, 235, 0.15),
        0 0 0 2px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(37, 99, 235, 0.4);
}

.photo-frame:hover::before {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(37, 99, 235, 0.08) 100%);
    opacity: 1;
}

/* Suppression du passe-partout pour un style plus épuré */
.photo-mat {
    background: transparent;
    padding: 0;
    border-radius: 20px;
    box-shadow: none;
    position: relative;
    background-image: none;
}

.photo-mat::before,
.photo-mat::after {
    display: none;
}

.before-after-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    user-select: none;
    touch-action: none;
    background: #f5f5f5;
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
}

.slider-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.before-image {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.after-image {
    z-index: 0;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    cursor: grab;
    z-index: 2;
    transform: translateX(-50%);
    box-shadow: var(--shadow-md);
}

.slider-handle:active {
    cursor: grabbing;
}

.slider-line {
    width: 100%;
    height: 100%;
    background: var(--white);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: var(--blue-primary);
    border: 3px solid var(--blue-primary);
}

.slider-labels {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-sm);
    z-index: 3;
    pointer-events: none;
}

.label-before,
.label-after {
    background: rgba(37, 99, 235, 0.9);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.label-before:hover,
.label-after:hover {
    background: rgba(37, 99, 235, 1);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.label-before:active,
.label-after:active {
    transform: scale(0.98);
}

.label-before {
    margin-right: auto;
}

.label-after {
    margin-left: auto;
}

/* ============================================
   RÉALISATIONS - Galerie
   ============================================ */
.realisations-gallery-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-50);
}

.projet-groupe {
    margin-bottom: var(--spacing-lg);
}

.projet-title {
    font-size: 2.25rem;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.projet-description {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-size: 1.125rem;
}

.realisations-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

/* Carousel infini */
.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: var(--spacing-md);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.carousel-container .realisations-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.carousel-track {
    display: flex;
    gap: var(--spacing-md);
    will-change: transform;
    animation: none; /* Désactiver toute animation CSS pour laisser JavaScript gérer */
}

.carousel-item {
    flex-shrink: 0;
    width: 320px;
    max-width: 100%;
}

.realisation-photo-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.realisation-photo-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 20px 50px rgba(37, 99, 235, 0.25),
        0 32px 70px rgba(37, 99, 235, 0.15),
        0 0 0 2px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(37, 99, 235, 0.4);
}

.realisation-photo-card img {
    width: 100%;
    height: auto;
    min-height: 280px;
    max-height: 450px;
    object-fit: cover;
    display: block;
    background: #f5f5f5;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px 24px 0 0;
}

.realisation-photo-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.95);
}

/* Appliquer les formes selon les métadonnées */
.realisation-photo-card img[style*="border-radius: 50%"] {
    object-fit: cover;
}

/* Pour les images carrées/circulaires avec aspect-ratio */
.realisation-photo-card[style*="padding-bottom"] {
    position: relative;
    width: 100%;
}

.realisation-photo-card[style*="padding-bottom"] img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 0;
    max-height: none;
}

.photo-description {
    padding: 1.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--gray-900);
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 24px 24px;
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 80px;
}

.realisation-photo-card:hover .photo-description {
    background: rgba(37, 99, 235, 0.05);
    border-top-color: rgba(37, 99, 235, 0.2);
}

.photo-description p {
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: center;
    width: 100%;
}

.realisation-photo-card:hover .photo-description p {
    color: var(--gray-900);
}

/* ============================================
   GALERIE MODALE - Lightbox
   ============================================ */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-modal-description {
    color: var(--white);
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 800px;
    padding: 0 2rem;
}

.gallery-close,
.gallery-prev,
.gallery-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-close:hover,
.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.gallery-close {
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    line-height: 1;
}

.gallery-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .gallery-modal-content {
        max-width: 95vw;
    }
    
    .gallery-modal-image {
        max-height: 70vh;
    }
    
    .gallery-close {
        top: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
        font-size: 2rem;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 44px;
        height: 44px;
        font-size: 1.75rem;
    }
    
    .gallery-prev {
        left: 1rem;
    }
    
    .gallery-next {
        right: 1rem;
    }
    
    .gallery-modal-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* ============================================
   CONTACT
   ============================================ */
/* ============================================
   CONTACT PAGE - Moderne, Épuré & Interactif
   ============================================ */
.contact-section {
    padding: calc(var(--spacing-xl) * 1.5) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 30%, #f1f5f9 60%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.1) 50%, transparent 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Contact Info */
.contact-info {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.contact-info-header {
    margin-bottom: 3rem;
}

.contact-info h2 {
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--blue-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 0;
    font-weight: 400;
}

.contact-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 2px solid rgba(37, 99, 235, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: contactItemAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }

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

.contact-item:hover {
    transform: translateY(-8px) translateX(8px);
    box-shadow: 
        0 16px 40px rgba(37, 99, 235, 0.18),
        0 8px 20px rgba(37, 99, 235, 0.12),
        0 0 0 1px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.25);
    background: rgba(255, 255, 255, 1);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-icon-wrapper {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.contact-item-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.contact-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-light) 100%);
    border-radius: 20px;
    box-shadow: 
        0 6px 20px rgba(37, 99, 235, 0.3),
        0 3px 10px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 
        0 12px 32px rgba(37, 99, 235, 0.4),
        0 6px 16px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-primary) 100%);
}

.contact-item:hover .contact-icon::before {
    width: 150px;
    height: 150px;
}

.contact-item:hover .contact-icon::after {
    opacity: 1;
}

.contact-item:hover .contact-icon svg {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.contact-item-content h3 {
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.375rem;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-item-content h3 {
    color: var(--blue-primary);
}

.contact-main-info {
    color: var(--gray-900);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.contact-sub-info {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.contact-link {
    color: var(--blue-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.contact-link:hover {
    color: var(--blue-dark);
    transform: translateX(4px);
}

.contact-link:hover::after {
    width: 100%;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 24px 64px rgba(37, 99, 235, 0.12),
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 0 1px rgba(37, 99, 235, 0.08);
    border: 2px solid rgba(37, 99, 235, 0.1);
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue-primary) 0%, var(--blue-light) 50%, var(--blue-primary) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(37, 99, 235, 0.08);
}

.form-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--blue-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

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

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-form.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.label-icon {
    font-size: 1.125rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.form-group:focus-within .label-icon {
    opacity: 1;
}

.required {
    color: var(--blue-primary);
    font-weight: 700;
    margin-left: 2px;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    color: var(--gray-900);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
    border-color: var(--blue-primary);
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.1),
        0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.contact-form .form-group input:hover,
.contact-form .form-group textarea:hover,
.contact-form .form-group select:hover {
    border-color: rgba(37, 99, 235, 0.3);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.contact-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232563eb' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.contact-form .btn-primary {
    margin-top: 0.75rem;
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-light) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: auto;
    gap: 0.625rem;
    letter-spacing: 0.01em;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-primary) 100%);
}

.contact-form .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.contact-form .btn-primary .btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-form .btn-primary:hover .btn-icon {
    transform: translateX(2px) translateY(-2px);
}

.contact-form .btn-primary .btn-text {
    font-weight: 600;
    font-size: 0.9375rem;
}

/* Alerts */
.alert {
    padding: 1.5rem 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    font-weight: 500;
    animation: alertSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background: currentColor;
    z-index: 0;
}

.alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.alert-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.alert-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 0 0.5rem 0;
}

.alert-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.06) 100%);
    border-color: rgba(16, 185, 129, 0.35);
    color: #065f46;
}

.alert-success .alert-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.alert-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, rgba(239, 68, 68, 0.06) 100%);
    border-color: rgba(239, 68, 68, 0.35);
    color: #991b1b;
}

.alert-error .alert-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

.alert p {
    margin: 0;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info-header h2 {
        font-size: 2rem;
    }
    
    .contact-info-subtitle {
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }
    
    .contact-icon-wrapper {
        align-self: center;
    }
    
    .contact-icon {
        width: 64px;
        height: 64px;
    }
    
    .contact-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-header h2 {
        font-size: 1.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .contact-form {
        gap: 1.5rem;
    }
    
    .btn-submit {
        width: 100%;
        min-width: auto;
    }
    
    .alert {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .alert-icon {
        align-self: center;
    }
}

.char-counter {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    text-align: right;
    font-weight: 500;
}

.contact-form.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation message envoyé */
.message-sent-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    z-index: 10;
    width: 100%;
    max-width: 300px;
    animation: fadeIn 0.4s ease forwards;
    pointer-events: none;
}

.message-sent-animation.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

/* Le contact-form-wrapper doit avoir position relative pour l'animation */
.contact-form-wrapper {
    position: relative !important;
}

.mail-animation {
    position: relative;
    width: 60px;
    height: 60px;
}

.mail-icon {
    width: 100%;
    height: 100%;
    color: var(--blue-primary);
    opacity: 0;
    transform: translateY(-50px) rotate(-20deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.message-sent-animation.animate .mail-icon {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    animation: mailMove 1.8s ease-in-out;
}

@keyframes mailMove {
    0% {
        transform: translateX(-100px) translateY(-50px) rotate(-20deg);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    100% {
        transform: translateX(100px) translateY(-50px) rotate(20deg);
        opacity: 0;
    }
}

.success-message {
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.message-sent-animation.animate .success-message {
    opacity: 1;
    transform: scale(1);
    animation-delay: 1.2s;
}

.success-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 0.75rem;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    animation: successPulse 0.6s ease;
}

.success-message h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.5rem 0;
}

.success-message p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

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

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.form-group label {
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    color: var(--gray-900);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
    border-color: var(--blue-primary);
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.1),
        0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.contact-form .form-group input:hover,
.contact-form .form-group textarea:hover,
.contact-form .form-group select:hover {
    border-color: rgba(37, 99, 235, 0.3);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.contact-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232563eb' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

/* Styles génériques pour autres formulaires */
.form-group input:not(.contact-form input),
.form-group select:not(.contact-form select),
.form-group textarea:not(.contact-form textarea) {
    padding: 0.875rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:not(.contact-form input):focus,
.form-group select:not(.contact-form select):focus,
.form-group textarea:not(.contact-form textarea):focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px var(--blue-pale);
}

.form-group textarea:not(.contact-form textarea) {
    resize: vertical;
    min-height: 120px;
}

/* OpenStreetMap / Leaflet Container */
#map-container {
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    background: #f5f5f5;
}

#map-container:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    border-color: var(--blue-primary);
}

#map {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    z-index: 1;
}

/* Suggestions d'autocomplétion OpenStreetMap */
#suggestions-container {
    scrollbar-width: thin;
    scrollbar-color: #c0c0c0 #f5f5f5;
}

#suggestions-container::-webkit-scrollbar {
    width: 8px;
}

#suggestions-container::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

#suggestions-container::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 10px;
}

#suggestions-container::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f8f9fa !important;
}

@media (max-width: 768px) {
    #map {
        height: 250px;
    }
    
    #suggestions-container {
        max-height: 200px;
    }
}


/* ============================================
   AVIS
   ============================================ */
.avis-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-rosatre);
}

.add-avis-form {
    background: var(--gray-50);
    padding: var(--spacing-md);
    border-radius: 16px;
    margin-top: var(--spacing-lg);
    border: 1px solid var(--gray-200);
}

.add-avis-form h2 {
    margin-bottom: var(--spacing-md);
    color: var(--gray-900);
    font-weight: 700;
}

.rating-input {
    display: flex;
    gap: 8px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.rating-input input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

.rating-input label {
    font-size: 2.5rem;
    color: var(--gray-300, #d1d5db);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}

.rating-input label:hover {
    color: var(--blue-primary, #007AFF);
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px rgba(0, 122, 255, 0.4));
}

.rating-input input[type="radio"]:checked + label {
    color: var(--blue-primary, #007AFF);
    transform: scale(1.3);
    animation: starExplosion 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 6px 20px rgba(0, 122, 255, 0.6));
    z-index: 10;
    position: relative;
}

.rating-input input[type="radio"]:checked ~ label {
    color: var(--blue-primary, #007AFF);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Particules d'explosion */
.star-explosion-particle {
    position: fixed;
    font-size: 1.5rem;
    color: #007AFF;
    pointer-events: none;
    z-index: 10000;
    opacity: 1;
    animation: particleExplode 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    filter: drop-shadow(0 2px 8px rgba(0, 122, 255, 0.6));
    text-shadow: 0 0 12px rgba(0, 122, 255, 0.8);
}

@keyframes starExplosion {
    0% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 2px 4px rgba(0, 122, 255, 0.2));
    }
    20% {
        transform: scale(1.8) rotate(20deg);
        filter: drop-shadow(0 16px 40px rgba(0, 122, 255, 0.9));
    }
    40% {
        transform: scale(1.5) rotate(-15deg);
        filter: drop-shadow(0 12px 32px rgba(0, 122, 255, 0.8));
    }
    60% {
        transform: scale(1.4) rotate(10deg);
        filter: drop-shadow(0 10px 28px rgba(0, 122, 255, 0.7));
    }
    80% {
        transform: scale(1.35) rotate(-5deg);
        filter: drop-shadow(0 8px 24px rgba(0, 122, 255, 0.6));
    }
    100% {
        transform: scale(1.3) rotate(0deg);
        filter: drop-shadow(0 6px 20px rgba(0, 122, 255, 0.6));
    }
}

@keyframes particleExplode {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1.2) rotate(0deg);
        filter: drop-shadow(0 4px 16px rgba(0, 122, 255, 0.9));
    }
    30% {
        opacity: 1;
        transform: translate(calc(var(--tx) * 0.3), calc(var(--ty) * 0.3)) scale(1) rotate(calc(var(--rot) * 0.3));
        filter: drop-shadow(0 3px 12px rgba(0, 122, 255, 0.7));
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0.2) rotate(var(--rot));
        filter: drop-shadow(0 1px 4px rgba(0, 122, 255, 0.3));
    }
}

.avis-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.avis-list-header h2 {
    margin: 0;
    color: var(--gray-900);
    font-weight: 700;
}

/* ============================================
   BOUTON AJOUTER UN AVIS - Animations au survol
   ============================================ */
/* Bouton Ajouter un avis - État par défaut : blanc avec texte bleu */
.btn-add-avis {
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--blue-primary) !important;
    background: var(--white) !important;
    color: var(--blue-primary) !important;
    box-shadow: 
        0 2px 8px rgba(37, 99, 235, 0.12),
        0 1px 4px rgba(37, 99, 235, 0.08);
    font-weight: 600;
}

/* État actif : bouton bleu avec texte blanc */
.btn-add-avis.active {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-light) 100%);
    color: var(--white);
    border-color: var(--blue-primary);
    box-shadow: 
        0 4px 16px rgba(37, 99, 235, 0.3),
        0 2px 8px rgba(37, 99, 235, 0.2);
}

.btn-add-avis::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.2);
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.btn-add-avis.active::before {
    background: rgba(255, 255, 255, 0.3);
}

.btn-add-avis::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

/* Hover : bouton blanc devient bleu */
.btn-add-avis:hover {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-light) 100%);
    color: var(--white);
    border-color: var(--blue-primary);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.35),
        0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-add-avis:hover::before {
    background: rgba(255, 255, 255, 0.2);
    width: 250px;
    height: 250px;
}

.btn-add-avis:hover::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    left: 100%;
}

/* Hover sur état actif : bouton bleu reste bleu mais plus foncé */
.btn-add-avis.active:hover {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
    box-shadow: 
        0 8px 32px rgba(37, 99, 235, 0.45),
        0 4px 16px rgba(37, 99, 235, 0.35);
}

.btn-add-avis:active {
    transform: scale(0.95) translateY(0);
    animation: none;
}

.btn-add-avis span,
.btn-add-avis {
    position: relative;
    z-index: 2;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(37, 99, 235, 0.4),
            0 4px 16px rgba(37, 99, 235, 0.3),
            0 0 0 4px rgba(37, 99, 235, 0.1);
    }
    50% {
        box-shadow: 
            0 12px 40px rgba(37, 99, 235, 0.5),
            0 6px 20px rgba(37, 99, 235, 0.4),
            0 0 0 6px rgba(37, 99, 235, 0.15);
    }
}

@media (max-width: 768px) {
    .social-buttons-modern {
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-btn-modern {
        min-width: 100%;
        justify-content: flex-start;
    }
    
    .social-section-title {
        font-size: 2rem;
    }
    
    .social-section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .avis-list-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-add-avis {
        width: 100%;
    }
}

/* Responsive pour section réseaux sociaux */
@media (max-width: 768px) {
    .social-buttons-modern {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .social-btn-modern {
        min-width: 100%;
        justify-content: flex-start;
        padding: 1.25rem 2rem;
    }
    
    .social-section-title {
        font-size: 2rem;
    }
    
    .social-section-subtitle {
        font-size: 1rem;
    }
    
    .social-btn-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-btn-icon svg {
        width: 28px;
        height: 28px;
    }
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.avis-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.avis-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.avis-name {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 1.25rem;
    margin: 0;
}

.avis-card .avis-header h3.avis-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
}

.avis-date {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.avis-rating {
    margin-bottom: var(--spacing-sm);
}

.star {
    color: var(--gray-300);
    font-size: 1.25rem;
}

.star.filled {
    color: var(--blue-primary);
}

.avis-comment {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

/* Lieu d'intervention */
.avis-location {
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(0, 122, 255, 0.05);
    border-left: 3px solid var(--blue-primary);
    border-radius: 6px;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.avis-location-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avis-location-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: var(--transition);
    transform-origin: center;
    display: block;
}

.avis-location-icon.animated {
    animation: locationPulse 1.5s ease-in-out infinite;
}

@keyframes locationPulse {
    0%, 100% {
        transform: scale(1) translateY(0) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: scale(1.2) translateY(-3px) rotate(-5deg);
        opacity: 0.95;
    }
    50% {
        transform: scale(1.4) translateY(-5px) rotate(0deg);
        opacity: 0.9;
    }
    75% {
        transform: scale(1.2) translateY(-3px) rotate(5deg);
        opacity: 0.95;
    }
}

.avis-location-text {
    display: inline-block;
    flex: 1;
}

.btn-show-full-address {
    margin-left: 8px;
    padding: 4px 12px;
    background: transparent;
    border: 1px solid var(--blue-primary);
    color: var(--blue-primary);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-show-full-address:hover {
    background: var(--blue-primary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Carte dans les avis */
.avis-map-container {
    margin-top: var(--spacing-sm);
    width: 100%;
}

.avis-map {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-200);
    background: #f5f5f5;
}

@media (max-width: 640px) {
    .avis-map {
        height: 120px;
    }
}

/* Photos d'avis */
.avis-photos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: var(--spacing-xs);
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.avis-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.avis-photo-item {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.avis-photo-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-primary);
    z-index: 5;
}

.avis-photo-item-admin {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .avis-photo-item {
        width: 100px;
        height: 100px;
    }
    
    .avis-photo-item-admin {
        width: 70px;
        height: 70px;
    }
}

.avis-photo-item-admin:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-md);
    z-index: 5;
}

.avis-photo-item img,
.avis-photo-item-admin img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Prévisualisation photos formulaire */
.photo-upload-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    flex-wrap: wrap;
}

.btn-photo-upload {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border: 2px solid var(--blue-primary);
    color: var(--blue-primary);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-photo-upload svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.btn-photo-upload:hover {
    background: var(--blue-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.file-input-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.file-input-wrapper input[type="file"] {
    flex: 1;
    padding: 8px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.file-input-wrapper input[type="file"]:hover {
    border-color: var(--blue-primary);
}

.photo-counter {
    padding: 6px 12px;
    background: var(--blue-pale);
    color: var(--blue-primary);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.photo-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 6px;
    margin-top: var(--spacing-sm);
    max-width: 100%;
}

.photo-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    border: 1.5px solid var(--gray-200);
    background: var(--gray-50);
    transition: var(--transition);
    max-width: 70px;
}

.photo-preview-item:hover {
    border-color: var(--blue-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-preview-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    padding: 3px 4px;
    font-size: 9px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.photo-name {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 8px;
}

.photo-size {
    opacity: 0.9;
    font-size: 7px;
}

.remove-photo {
    position: absolute;
    top: 3px;
    right: 3px;
    background: rgba(220, 38, 38, 0.95);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.remove-photo:hover {
    background: rgba(220, 38, 38, 1);
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.remove-photo svg {
    width: 12px;
    height: 12px;
    stroke-width: 2.5;
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Modal pour agrandir les photos */
.photo-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.photo-modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.photo-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
}

.photo-modal-close:hover {
    color: var(--gray-300);
}

.no-avis {
    text-align: center;
    padding: var(--spacing-lg);
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* ============================================
   SOCIAL SECTION
   ============================================ */
/* ============================================
   SOCIAL SECTION - Design moderne et épuré
   ============================================ */
.social-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    padding: calc(var(--spacing-xl) * 1.5) 0;
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(225, 48, 108, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

.social-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
}

.social-section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 0 0 var(--spacing-xl) 0;
    font-weight: 400;
}

.social-buttons-modern {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.social-btn-modern {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2.5rem;
    background: var(--white);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(37, 99, 235, 0.1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    cursor: pointer;
}

.social-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.social-btn-modern:hover::before {
    left: 100%;
}

.social-btn-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-btn-icon svg {
    width: 32px;
    height: 32px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    text-align: left;
}

.social-btn-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    transition: color 0.3s ease;
    line-height: 1.2;
}

.social-btn-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: color 0.3s ease;
    line-height: 1.4;
}

/* Instagram Button */
.social-btn-instagram {
    border-color: rgba(225, 48, 108, 0.15);
}

.social-btn-instagram:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(225, 48, 108, 0.3);
    box-shadow: 
        0 12px 40px rgba(225, 48, 108, 0.2),
        0 6px 20px rgba(225, 48, 108, 0.15),
        0 0 0 1px rgba(225, 48, 108, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 248, 250, 1) 100%);
}

.social-btn-instagram:hover .social-btn-icon {
    transform: scale(1.15) rotate(5deg);
}

.social-btn-instagram:hover .social-btn-label {
    color: #dc2743;
}

.social-btn-instagram:hover .social-btn-text {
    color: var(--gray-700);
}

/* Facebook Button */
.social-btn-facebook {
    border-color: rgba(24, 119, 242, 0.15);
}

.social-btn-facebook:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(24, 119, 242, 0.3);
    box-shadow: 
        0 12px 40px rgba(24, 119, 242, 0.2),
        0 6px 20px rgba(24, 119, 242, 0.15),
        0 0 0 1px rgba(24, 119, 242, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 247, 255, 1) 100%);
}

.social-btn-facebook:hover .social-btn-icon {
    transform: scale(1.15) rotate(-5deg);
}

.social-btn-facebook:hover .social-btn-label {
    color: #1877F2;
}

.social-btn-facebook:hover .social-btn-text {
    color: var(--gray-700);
}

/* ============================================
   FOOTER - Design moderne épuré bleu
   ============================================ */
.footer {
    background: linear-gradient(180deg, #3b82f6 0%, #60a5fa 30%, #3b82f6 60%, #2563eb 100%);
    color: var(--white);
    padding: calc(var(--spacing-xl) + 2rem) 0 var(--spacing-lg);
    margin-top: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.footer-section {
    opacity: 0;
    transform: translateY(20px);
    animation: footerSectionAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

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

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    opacity: 0.9;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 35px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section:hover h4::after {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    opacity: 1;
    transform: translateX(4px);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.7;
    font-size: 0.9rem;
    display: inline-block;
    position: relative;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.footer-section a:hover {
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(3px);
}

.footer-section a:hover::before {
    width: 100%;
}

/* Contact Icons - Icônes cliquables uniquement */
.footer-contact-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    overflow: hidden;
}

.contact-icon-link::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: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-icon-link:hover::before {
    width: 100px;
    height: 100px;
}

.contact-icon-link:hover {
    transform: scale(1.15) translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 26px;
    height: 26px;
    stroke-width: 2;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.contact-icon-link:hover .contact-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Social Links - Grandes icônes avec agrandissement visible */
.footer-social {
        display: flex;
    flex-direction: row;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-link:hover::before {
    width: 120px;
    height: 120px;
}

.social-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

/* Instagram - Vrai logo avec dégradé officiel - Agrandissement visible */
.social-link-instagram {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(225, 48, 108, 0.25);
}

.social-link-instagram:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(225, 48, 108, 0.5);
    transform: scale(1.2) translateY(-4px);
    box-shadow: 0 12px 32px rgba(225, 48, 108, 0.35);
}

.instagram-icon {
    filter: drop-shadow(0 2px 6px rgba(225, 48, 108, 0.4));
}

.social-link-instagram:hover .instagram-icon {
    transform: scale(1.25) rotate(5deg);
}

/* Facebook - Vrai logo bleu officiel - Agrandissement visible */
.social-link-facebook {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(24, 119, 242, 0.25);
}

.social-link-facebook:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(24, 119, 242, 0.5);
    transform: scale(1.2) translateY(-4px);
    box-shadow: 0 12px 32px rgba(24, 119, 242, 0.35);
}

.facebook-icon {
    filter: drop-shadow(0 2px 6px rgba(24, 119, 242, 0.4));
}

.social-link-facebook:hover .facebook-icon {
    transform: scale(1.25) rotate(-5deg);
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: ctaPulse 2.5s ease-in-out infinite;
}

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

.footer-cta-btn span {
    position: relative;
    z-index: 2;
}

.footer-cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    z-index: 1;
    letter-spacing: 0.2px;
}

.footer-bottom p {
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }

    .hero {
        padding: calc(var(--spacing-lg) + 60px) 0 var(--spacing-lg) 0;
        margin-top: -60px;
    }

    .hero-content {
        padding: 0 var(--spacing-sm);
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-content h2 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature {
        padding: 2.5rem 1.5rem;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .realisations-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .service-detail-image-wrapper {
        min-height: 300px;
        order: -1;
    }
    
    .service-detail-content {
        padding: 2rem;
    }
    
    .service-detail-content h2 {
        font-size: 2rem;
    }
    
    .other-services-card {
        padding: 2.5rem 2rem;
    }
    
    .other-services-title {
        font-size: 2.25rem;
    }
    
    .other-services-description {
        font-size: 1.1rem;
    }
    
    .other-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .other-service-item {
        padding: 1.5rem 1.25rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.35rem;
    }
    
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-md);
    }
    
    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .social-link {
        width: 56px;
        height: 56px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    }
    
    .footer-contact-icons {
        gap: 0.875rem;
    }
    
    .contact-icon-link {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 280px) {
    .hero {
        background-size: cover;
        background-position: 75% center;
        background-repeat: no-repeat;
        min-height: 70vh;
        padding: calc(var(--spacing-lg) + 54px) 0 var(--spacing-md) 0;
        margin-top: -54px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .hero::before {
        background: linear-gradient(
            180deg,
            rgba(37, 99, 235, 0.35) 0%,
            rgba(30, 64, 175, 0.5) 100%
        );
    }

    .hero-content {
        padding-bottom: var(--spacing-sm);
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .hero-content h2 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-sm);
        padding: 0;
    }

    .hero-buttons {
        max-width: 100%;
        gap: 0.625rem;
    }

    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* ============================================
   HOMEPAGE SECTIONS
   ============================================ */
.homepage-avis,
.homepage-avant-apres,
.homepage-realisations {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.section-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.avant-apres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.avant-apres-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.avant-apres-card h3 {
    padding: var(--spacing-md);
    margin: 0;
    color: var(--gray-900);
    font-size: 1.25rem;
    border-bottom: 1px solid var(--gray-200);
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image-before,
.slider-image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-image-after {
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--blue-primary);
    cursor: ew-resize;
    z-index: 10;
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--blue-primary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.realisation-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.realisation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.realisation-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.realisation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.realisation-card:hover .realisation-image img {
    transform: scale(1.05);
}

.realisation-card h3 {
    padding: var(--spacing-md);
    margin: 0;
    color: var(--gray-900);
    font-size: 1.25rem;
}

.realisation-card p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    margin: 0;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .avant-apres-grid,
    .realisations-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after-slider {
        height: 300px;
    }
}





















