/* ========================================
   PAGE SERVICES ULTRA-MODERNE - STYLE VALIDÉ
   ======================================== */

/* Variables CSS */
:root {
    --primary-green: #10b981;
    --primary-green-dark: #059669;
    --primary-blue: #3b82f6;
    --primary-blue-dark: #2563eb;
    --accent-yellow: #fbbf24;
    --dark-bg: #0f172a;
    --dark-bg-light: #1e293b;
    --dark-bg-lighter: #334155;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

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

/* Hero Section Ultra-Moderne */
.services-hero-section {
    min-height: 85vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 50%, var(--dark-bg-lighter) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.services-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-grid" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-grid)"/></svg>');
    opacity: 0.6;
}

.services-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-breadcrumb a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
    color: white;
    font-weight: 600;
}

.services-hero-title {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-green) 50%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin: 0;
}

.services-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 500px;
    margin: 0;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-feature-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

.hero-feature-text {
    font-weight: 600;
    color: white;
    font-size: 14px;
}

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

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.hero-cta-primary::before {
    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.4s ease;
}

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

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    color: white;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.hero-visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-visual-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.service-visual-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 150px;
}

.service-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-visual-card:hover::before {
    opacity: 1;
}

.service-visual-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-visual-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-visual-card:hover .service-visual-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-visual-label {
    font-weight: 700;
    color: white;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/* Section Services */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-grid" width="25" height="25" patternUnits="userSpaceOnUse"><rect width="25" height="25" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/><circle cx="12.5" cy="12.5" r="1" fill="%23cbd5e1" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23services-grid)"/></svg>');
    opacity: 0.4;
}

.services-section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.services-section-title {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-green) 50%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.services-section-description {
    font-size: 20px;
    color: var(--gray-600);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.service-card-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.8));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    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.4s ease;
}

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

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.service-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-bg);
    margin: 0;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.service-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.service-description {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
    padding: 8px 0;
    transition: all 0.3s ease;
}

.service-feature:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.service-feature-icon {
    color: var(--primary-green);
    flex-shrink: 0;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    padding: 2px;
    width: 20px;
    height: 20px;
}

.service-pricing {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-align: center;
    margin-top: auto;
}

.pricing-label {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.pricing-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 5px;
    display: block;
}

.pricing-note {
    font-size: 13px;
    color: var(--gray-600);
    font-style: italic;
    display: block;
}

.service-card-footer {
    padding: 30px;
    background: rgba(248, 250, 252, 0.5);
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.service-cta::before {
    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.4s ease;
}

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

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
    color: white;
}

.service-cta-secondary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.service-cta-secondary:hover {
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.service-cta-tertiary {
    background: linear-gradient(135deg, var(--accent-yellow), #f59e0b);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
}

.service-cta-tertiary:hover {
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
}

/* Section Dépannage Urgent */
.urgent-service-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 50%, var(--dark-bg-lighter) 100%);
    position: relative;
    overflow: hidden;
}

.urgent-service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

.urgent-service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.urgent-service-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.urgent-service-title {
    font-size: 42px;
    font-weight: 900;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.title-highlight {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.urgent-service-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.urgent-service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.urgent-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.urgent-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.urgent-feature-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

.urgent-feature-text {
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.urgent-service-buttons {
    display: flex;
    gap: 16px;
}

.urgent-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.urgent-cta-primary::before {
    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.4s ease;
}

.urgent-cta-primary:hover::before {
    left: 100%;
}

.urgent-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    color: white;
}

.urgent-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.urgent-cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    color: white;
}

.urgent-service-contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.urgent-contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
}

.urgent-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.urgent-contact-card:hover::before {
    opacity: 1;
}

.urgent-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.urgent-contact-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 15px 0;
    position: relative;
    z-index: 2;
}

.urgent-contact-number {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.urgent-additional-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.urgent-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.urgent-contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

/* Responsive Design Mobile */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .services-hero-section {
        padding: 80px 0 60px 0;
        min-height: 70vh;
    }
    
    .services-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .services-hero-title {
        font-size: 36px;
    }
    
    .services-hero-description {
        font-size: 16px;
        max-width: 100%;
    }
    
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .hero-feature-item {
        padding: 14px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .services-visual-showcase {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .service-visual-card {
        min-width: 120px;
        padding: 20px;
    }
    
    .service-visual-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-visual-label {
        font-size: 14px;
    }
    
    /* Services Grid Mobile */
    .services-section {
        padding: 80px 0;
    }
    
    .services-section-title {
        font-size: 32px;
    }
    
    .services-section-description {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .service-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .service-card-header {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-card-content {
        padding: 25px 20px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 15px;
    }
    
    .service-card-footer {
        padding: 25px 20px;
    }
    
    /* Section Dépannage Urgent Mobile */
    .urgent-service-section {
        padding: 80px 0;
    }
    
    .urgent-service-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .urgent-service-title {
        font-size: 32px;
    }
    
    .urgent-service-description {
        font-size: 16px;
    }
    
    .urgent-service-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .urgent-feature {
        padding: 12px;
    }
    
    .urgent-service-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .urgent-cta-primary,
    .urgent-cta-whatsapp {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .urgent-contact-card {
        padding: 30px 25px;
        max-width: 280px;
    }
    
    .urgent-contact-number {
        font-size: 32px;
    }
    
    .urgent-additional-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .urgent-contact-link {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Media Queries pour Très Petits Écrans */
@media (max-width: 480px) {
    .services-hero-section {
        padding: 60px 0 40px 0;
    }
    
    .services-hero-title {
        font-size: 28px;
    }
    
    .services-section-title,
    .urgent-service-title {
        font-size: 26px;
    }
    
    .service-card,
    .urgent-contact-card {
        margin: 0 10px;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary,
    .urgent-cta-primary,
    .urgent-cta-whatsapp {
        max-width: 260px;
    }
}

/* Animations d'entrée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

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

