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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #334155;
}

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

/* ========================================
   HERO SECTION ULTRA-MODERNE
   ======================================== */

.services-hero-section {
    min-height: 80vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 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: #10b981;
    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%, #10b981 50%, #3b82f6 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;
    margin: 20px 0;
}

.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: #10b981;
    flex-shrink: 0;
}

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

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

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    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: 10px;
    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: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 400px;
}

.service-visual-card {
    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 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.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);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-visual-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 200px;
    margin: 0 auto;
}

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

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

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

/* ========================================
   SECTION SERVICES DÉTAILLÉS
   ======================================== */

.services-details-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.services-details-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, #0f172a 0%, #10b981 50%, #3b82f6 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: #64748b;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-cards-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, #10b981, #059669);
    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: #0f172a;
    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: #64748b;
    line-height: 1.6;
    margin: 0;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.service-feature:hover {
    color: #10b981;
    transform: translateX(5px);
}

.service-feature-icon {
    color: #10b981;
    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: #64748b;
    font-weight: 600;
    margin-bottom: 5px;
}

.pricing-value {
    font-size: 28px;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
    margin-bottom: 5px;
}

.pricing-note {
    font-size: 13px;
    color: #64748b;
    font-style: italic;
}

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

.service-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    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-button::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-button:hover::before {
    left: 100%;
}

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

/* ========================================
   SECTION DÉPANNAGE URGENT MODERNE
   ======================================== */

.urgent-service-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 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-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.urgent-title {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #10b981 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
}

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

.urgent-features-grid {
    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: #fbbf24;
    flex-shrink: 0;
}

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

.urgent-cta-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, #10b981, #059669);
    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-secondary {
    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-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    color: white;
}

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

.urgent-phone-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-phone-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-phone-card:hover::before {
    opacity: 1;
}

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

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

.phone-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-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.urgent-contact-button {
    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-button: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-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 {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 250px;
    }
    
    .service-visual-card:nth-child(3) {
        grid-column: 1;
    }
    
    /* Services Grid Mobile */
    .services-details-section {
        padding: 80px 0;
    }
    
    .services-section-title {
        font-size: 32px;
    }
    
    .services-section-description {
        font-size: 16px;
    }
    
    .services-cards-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-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .urgent-title {
        font-size: 32px;
    }
    
    .urgent-description {
        font-size: 16px;
    }
    
    .urgent-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .urgent-feature {
        padding: 12px;
    }
    
    .urgent-cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .urgent-cta-primary,
    .urgent-cta-secondary {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .urgent-phone-card {
        padding: 30px 25px;
        max-width: 280px;
    }
    
    .phone-number {
        font-size: 32px;
    }
    
    .urgent-additional-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .urgent-contact-button {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Media Queries pour Très Petits Écrans */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .services-hero-section {
        padding: 60px 0 40px 0;
    }
    
    .services-hero-title {
        font-size: 28px;
    }
    
    .services-section-title,
    .urgent-title {
        font-size: 26px;
    }
    
    .service-card,
    .urgent-phone-card {
        margin: 0 10px;
    }
    
    .urgent-cta-primary,
    .urgent-cta-secondary,
    .hero-cta-primary,
    .hero-cta-secondary {
        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; }

