.service-hero {
    background: #ffffff;
    padding: 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.service-hero .container {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: none;
    margin: 0;
    min-height: 500px;
    align-items: stretch;
}

.service-hero-image {
    background-image: var(--bgImage);
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 500px;
}

.service-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.service-hero-text {
    background: #f8f9fa;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.service-breadcrumb {
    font-size: 16px;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 24px;
    text-decoration: none;
    border-bottom: 2px solid #2563eb;
    display: inline-block;
    padding-bottom: 4px;
}

.hero-title {
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.service-hero-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

.service-icon {
    display: none;
}

/* ==========================================
   SECTION BLEUE ADDITIONNELLE (Optionnelle)
   ========================================== */
.service-section-barre {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: left;
}

.service-section-barre .container {
    max-width: 1200px;
}

.service-section-barre h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.service-section-barre p {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ==========================================
   BREADCRUMB NAVIGATION
   ========================================== */
.breadcrumb-section {
    background: white;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.breadcrumb-nav a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary-dark);
}

.breadcrumb-nav i {
    font-size: 12px;
    opacity: 0.6;
}

/* ==========================================
   SECTIONS DE CONTENU
   ========================================== */
.service-section {
    padding: 40px 0;
    background: var(--bgColor) !important;
}

.service-section.alt-bg {
    background: var(--bg-secondary);
}

.service-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

.service-section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
}

.service-section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* ==========================================
   GRILLES DE SERVICES
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 40px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

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

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

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: var(--text-secondary);
    font-size: 14px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ==========================================
   MÉTHODOLOGIE SECTION
   ========================================== */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.method-card {
    background: white;
    padding: 32px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 24px rgba(197, 60, 60, 0.1);
}

.method-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.method-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.method-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================
   STATISTIQUES D'IMPACT
   ========================================== */
.impact-section {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ==========================================
   TECHNOLOGIES ET INNOVATIONS
   ========================================== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.tech-card {
    background: white;
    padding: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.tech-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.tech-description {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ==========================================
   ÉTUDES DE CAS
   ========================================== */
.case-study-card {
    background: var(--bg-secondary);
    padding: 40px;
    margin-top: 40px;
    border-left: 4px solid var(--primary-color);
}

.case-study-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.case-study-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.result-item {
    text-align: center;
    padding: 16px;
    background: white;
    border: 1px solid #e5e7eb;
}

.result-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.result-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ==========================================
   CALL TO ACTION
   ========================================== */
.cta-section {
    background: var(--bg-secondary);
    padding: 80px 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 60, 60, 0.3);
}

.cta-button i {
    margin-right: 8px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    .service-hero-title {
        font-size: 2.5rem;
    }

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

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

    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .case-results {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}