
    /* =============== GLOBAL STYLES =============== */
    :root {
        --primary: #C4161C;
        --primary-dark: #a81217;
        --secondary: #1e1e1e;
        --white: #ffffff;
        --background: #f8f9fa;
        --text-muted: #666;
        --border: #e0e0e0;
        --radius: 8px;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
        --transition: all 0.3s ease;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background-color: var(--background);
        color: var(--secondary);
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* =============== SERVICES PAGE STYLES =============== */
    .services-page {
        background-color: var(--background);
        position: relative;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* =============== PAGE HEADER =============== */
    .page-header {
        background: linear-gradient(rgba(30, 30, 30, 0.95), rgba(30, 30, 30, 0.9)),
                    linear-gradient(135deg, var(--secondary) 0%, #2a2a2a 100%);
        color: var(--white);
        padding: 100px 0 80px;
        text-align: center;
        position: relative;
        overflow: hidden;
        margin-bottom: 0;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600" opacity="0.05"><path d="M0,0V600H1200V0ZM200,400Q150,350,100,350Q50,350,0,300V200Q50,150,100,150Q150,150,200,200Q250,250,300,250Q350,250,400,200Q450,150,500,150Q550,150,600,200Q650,250,700,250Q750,250,800,200Q850,150,900,150Q950,150,1000,200Q1050,250,1100,250Q1150,250,1200,200V300Q1150,350,1100,350Q1050,350,1000,400Z"/></svg>');
        background-size: cover;
        background-position: center;
    }

    .header-content {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        
    }

    .page-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        color: var(--white);
        font-weight: 800;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-description {
        font-size: 1.3rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 3rem;
        font-weight: 300;
    }

    .header-stats {
        display: flex;
        justify-content: center;
        gap: 4rem;
        margin-top: 4rem;
        flex-wrap: wrap;
    }

    .stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: var(--transition);
    }

    .stat:hover {
        transform: translateY(-5px);
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 800;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 0.5rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .stat-label {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
    }

    /* =============== SERVICES INTRODUCTION =============== */
    .services-intro {
        padding: 100px 0;
        background-color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .services-intro::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    }

    .intro-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;
    }

.section-title {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

/* الكلمة اللي تحتها الخط */
.section-title .title-word {
    position: relative;
    display: inline-block;
    padding-bottom: 0.6rem;
}

.section-title .title-word::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );
    border-radius: 2px;
}


    .intro-text {
        font-size: 1.25rem;
        line-height: 1.8;
        color: var(--text-muted);
        margin-bottom: 2.5rem;
        font-weight: 400;
    }

    .intro-text strong {
        color: var(--primary);
        font-weight: 700;
    }

    .intro-features {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .feature {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: linear-gradient(135deg, rgba(196, 22, 28, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
        padding: 1.25rem 2rem;
        border-radius: var(--radius);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(196, 22, 28, 0.1);
        transition: var(--transition);
        min-width: 250px;
    }

    .feature:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
        border-color: var(--primary);
    }

    .feature-icon {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary);
        color: var(--white);
        border-radius: 50%;
    }

    .feature-text {
        font-weight: 600;
        color: var(--secondary);
        font-size: 1.1rem;
    }

    /* =============== MAIN SERVICES GRID =============== */
    .main-services {
        padding: 100px 0;
        background-color: var(--background);
        position: relative;
    }

    .section-subtitle {
        font-size: 1.25rem;
        color: var(--text-muted);
        margin-bottom: 3rem;
        text-align: center;
        font-weight: 400;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
        margin-top: 3rem;
    }

    .service-card {
        background-color: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        overflow: hidden;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
        border: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
    }

    .service-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
    }

    /* Card colors for different services */
    .service-card.manufacturing {
        border-top: 4px solid #C4161C;
        background: linear-gradient(145deg, #ffffff 0%, #fff5f5 100%);
    }

    .service-card.supply {
        border-top: 4px solid #2F5D8C;
        background: linear-gradient(145deg, #ffffff 0%, #f5f9ff 100%);
    }

    .service-card.installation {
        border-top: 4px solid #51B848;
        background: linear-gradient(145deg, #ffffff 0%, #f5fff5 100%);
    }

    .service-card.operation {
        border-top: 4px solid #FF922B;
        background: linear-gradient(145deg, #ffffff 0%, #fffaf5 100%);
    }

    .service-card.consulting {
        border-top: 4px solid #7950F2;
        background: linear-gradient(145deg, #ffffff 0%, #f9f5ff 100%);
    }

    .service-card.maintenance {
        border-top: 4px solid #20C997;
        background: linear-gradient(145deg, #ffffff 0%, #f5fffb 100%);
    }

    .service-header {
        padding: 2.5rem 2.5rem 1.5rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .service-header::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(196, 22, 28, 0.03) 0%, rgba(47, 93, 140, 0.03) 100%);
        opacity: 0.5;
    }

    .service-icon {
        font-size: 4rem;
        margin-bottom: 1.5rem;
        display: inline-block;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 2;
    }

    .service-card:hover .service-icon {
        transform: scale(1.15) rotate(5deg);
    }

    .service-title {
        font-size: 1.6rem;
        color: var(--secondary);
        margin: 0;
        line-height: 1.3;
        font-weight: 700;
        position: relative;
        z-index: 2;
    }

    .service-body {
        padding: 2rem 2.5rem;
        flex: 1;
        position: relative;
        z-index: 2;
    }

    .service-description {
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 1.5rem;
        font-size: 1.05rem;
        font-weight: 400;
    }

    .service-features {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem;
    }

    .service-features li {
        color: var(--text-muted);
        margin-bottom: 0.8rem;
        padding-right: 1.8rem;
        position: relative;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .service-features li::before {
        content: '✓';
        position: absolute;
        right: 0;
        color: var(--primary);
        font-weight: bold;
        font-size: 1.1rem;
    }

    .service-footer {
        padding: 1.5rem 2.5rem;
        border-top: 1px solid var(--border);
        background-color: rgba(0, 0, 0, 0.02);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
    }

    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
        font-size: 0.95rem;
    }

    .service-link:hover {
        color: var(--primary-dark);
        transform: translateX(-5px);
    }

    .link-icon {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .service-link:hover .link-icon {
        transform: translateX(5px);
    }

    .service-btn {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: var(--white);
        padding: 0.75rem 1.75rem;
        border-radius: var(--radius);
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        font-size: 0.95rem;
        box-shadow: 0 4px 12px rgba(196, 22, 28, 0.2);
    }

    .service-btn:hover {
        background: linear-gradient(135deg, var(--primary-dark) 0%, #8a0e13 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(196, 22, 28, 0.3);
    }

    /* =============== SERVICE PROCESS =============== */
    .service-process {
        padding: 100px 0;
        background-color: var(--white);
        position: relative;
    }

    .process-timeline {
        max-width: 1000px;
        margin: 4rem auto 0;
        position: relative;
    }

    .process-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        right: 50%;
        transform: translateX(50%);
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary) 0%, transparent 100%);
        z-index: 1;
    }

    .timeline-step {
        display: flex;
        align-items: center;
        gap: 2rem;
        margin-bottom: 3rem;
        position: relative;
        z-index: 2;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .timeline-step.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .timeline-step:nth-child(even) {
        flex-direction: row-reverse;
        text-align: left;
        transform: translateX(20px);
    }

    .timeline-step:nth-child(even).visible {
        transform: translateX(0);
    }

    .step-number {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        font-weight: 800;
        flex-shrink: 0;
        z-index: 3;
        position: relative;
        box-shadow: 0 4px 15px rgba(196, 22, 28, 0.3);
        border: 4px solid var(--white);
    }

    .step-content {
        background-color: var(--white);
        padding: 2rem;
        border-radius: var(--radius);
        flex: 1;
        box-shadow: var(--shadow);
        border: 1px solid rgba(196, 22, 28, 0.1);
        transition: var(--transition);
    }

    .step-content:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-3px);
    }

    .step-content h3 {
        color: var(--secondary);
        margin-bottom: 0.75rem;
        font-size: 1.4rem;
        font-weight: 700;
    }

    .step-content p {
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
        font-weight: 400;
    }

    /* =============== SERVICE BENEFITS =============== */
    .service-benefits {
        padding: 100px 0;
        background-color: var(--background);
        position: relative;
    }

    .benefits-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .benefit-item {
        background-color: var(--white);
        border-radius: var(--radius);
        padding: 2.5rem;
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        box-shadow: var(--shadow);
        transition: var(--transition);
        border: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 0;
        transform: translateY(20px);
    }

    .benefit-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(196, 22, 28, 0.1) 0%, rgba(196, 22, 28, 0.05) 100%);
        border-radius: 50%;
        color: var(--primary);
    }

    .benefit-content h3 {
        color: var(--secondary);
        margin-bottom: 0.75rem;
        font-size: 1.4rem;
        font-weight: 700;
    }

    .benefit-content p {
        color: var(--text-muted);
        line-height: 1.6;
        font-size: 1rem;
        margin: 0;
        font-weight: 400;
    }

    /* =============== CASE STUDIES =============== */
    .case-studies {
        padding: 100px 0;
        background-color: var(--white);
        position: relative;
    }

    .cases-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .case-card {
        background-color: var(--white);
        border-radius: var(--radius);
        overflow: hidden;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        height: 100%;
        box-shadow: var(--shadow);
        border: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 0;
        transform: translateY(20px);
    }

    .case-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .case-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .case-header {
        padding: 2.5rem;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .case-header::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="30" fill="white"/></svg>');
        background-size: cover;
    }

    .case-category {
        display: inline-block;
        background-color: rgba(255, 255, 255, 0.2);
        padding: 0.4rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
        margin-bottom: 1rem;
        font-weight: 600;
        backdrop-filter: blur(10px);
        position: relative;
        z-index: 2;
    }

    .case-header h3 {
        font-size: 1.5rem;
        margin: 0;
        color: var(--white);
        font-weight: 700;
        position: relative;
        z-index: 2;
    }

    .case-body {
        padding: 2.5rem;
        flex: 1;
        position: relative;
        z-index: 2;
    }

    .case-body p {
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 2rem;
        font-size: 1rem;
        font-weight: 400;
    }

    .case-stats {
        display: flex;
        gap: 2rem;
    }

    .case-stats .stat {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .case-stats .stat-value {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .case-stats .stat-label {
        font-size: 0.9rem;
        color: var(--text-muted);
        font-weight: 500;
    }

    .case-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1.25rem;
        background-color: rgba(196, 22, 28, 0.05);
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
        font-size: 1rem;
        position: relative;
        z-index: 2;
    }

    .case-link:hover {
        background-color: var(--primary);
        color: var(--white);
    }

    .case-link .link-icon {
        transition: transform 0.3s ease;
    }

    .case-link:hover .link-icon {
        transform: translateX(5px);
    }

    /* =============== CTA SECTION =============== */
    .services-cta {
        padding: 100px 0;
        background: linear-gradient(135deg, var(--secondary) 0%, #2a2a2a 100%);
        color: var(--white);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .services-cta::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 20% 80%, rgba(196, 22, 28, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    }

    .cta-content {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .cta-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        color: var(--white);
        font-weight: 800;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .cta-description {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 3rem;
        line-height: 1.7;
        font-weight: 300;
    }

    .cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }

    .cta-btn {
        display: inline-block;
        padding: 1.25rem 2.5rem;
        border-radius: var(--radius);
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        transition: var(--transition);
        min-width: 200px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .cta-btn.primary {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: var(--white);
        border: none;
    }

    .cta-btn.primary:hover {
        background: linear-gradient(135deg, var(--primary-dark) 0%, #8a0e13 100%);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(196, 22, 28, 0.4);
    }

    .cta-btn.secondary {
        background-color: transparent;
        color: var(--white);
        border: 2px solid var(--white);
        backdrop-filter: blur(10px);
    }

    .cta-btn.secondary:hover {
        background-color: var(--white);
        color: var(--secondary);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    }

    .cta-note {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        background-color: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: var(--radius);
        margin-top: 3rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cta-note span {
        font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .cta-note p {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 400;
    }

    .cta-note strong {
        color: var(--primary);
        font-weight: 700;
    }

    /* =============== RESPONSIVE DESIGN =============== */
    @media (max-width: 1200px) {
        .container {
            max-width: 100%;
            padding: 0 40px;
        }
        
        .page-title {
            font-size: 3rem;
        }
        
        .section-title {
            font-size: 2.5rem;
        }
        
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .benefits-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .cases-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 992px) {
        .page-title {
            font-size: 2.5rem;
        }
        
        .section-title {
            font-size: 2.2rem;
        }
        
        .process-timeline::before {
            right: 30px;
        }
        
        .timeline-step {
            flex-direction: row !important;
            text-align: right !important;
            gap: 1.5rem;
        }
        
        .timeline-step:nth-child(even) {
            transform: translateX(-20px);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            font-size: 1.2rem;
        }
        
        .step-content {
            padding: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        .container {
            padding: 0 30px;
        }
        
        /* جميع الأقسام */
        .page-header,
        .services-intro,
        .main-services,
        .service-process,
        .service-benefits,
        .case-studies,
        .services-cta {
            padding: 60px 0 !important;
        }
        
        /* العناوين */
        .page-title {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .cta-title {
            font-size: 2.2rem;
        }
        
        /* النصوص */
        .page-description,
        .intro-text,
        .cta-description {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        
        /* الإحصائيات */
        .header-stats {
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .stat-number {
            font-size: 2.5rem;
        }
        
        /* الميزات */
        .intro-features {
            flex-direction: column;
            align-items: stretch;
            gap: 1rem;
        }
        
        .feature {
            width: 100%;
            justify-content: flex-start;
            padding: 1rem 1.5rem;
        }
        
        /* الشبكات */
        .services-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .benefits-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .cases-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        /* بطاقات الخدمات */
        .service-card {
            margin-bottom: 1.5rem;
            opacity: 1 !important;
            transform: none !important;
        }
        
        .service-header,
        .service-body,
        .service-footer {
            padding: 1.5rem;
        }
        
        .service-footer {
            flex-direction: column;
            align-items: stretch;
            gap: 1rem;
        }
        
        .service-btn {
            width: 100%;
        }
        
        /* الجدول الزمني */
        .process-timeline {
            padding-right: 40px;
            margin-top: 2rem;
        }
        
        .process-timeline::before {
            right: 20px;
        }
        
        .timeline-step {
            margin-bottom: 2rem;
            gap: 1rem;
            opacity: 1 !important;
            transform: none !important;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            font-size: 1rem;
            border-width: 3px;
        }
        
        .step-content {
            padding: 1.25rem;
        }
        
        .step-content h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .step-content p {
            font-size: 0.95rem;
        }
        
        /* إحصائيات الحالات */
        .case-stats {
            flex-direction: column;
            gap: 1rem;
        }
        
        .case-stats .stat {
            align-items: flex-start;
        }
        
        /* أزرار الـ CTA */
        .cta-buttons {
            flex-direction: column;
            align-items: stretch;
            gap: 1rem;
        }
        
        .cta-btn {
            width: 100%;
            padding: 1rem 2rem;
            font-size: 1rem;
        }
        
        /* ملاحظة الـ CTA */
        .cta-note {
            flex-direction: column;
            text-align: center;
            padding: 1.5rem;
            gap: 1rem;
        }
        
        .cta-note span {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }
        
        .cta-note p {
            font-size: 1rem;
        }
        
        /* إيقاف جميع الأنيميشن على الجوال */
        .animate-section,
        .animate-card,
        .timeline-step {
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
            animation: none !important;
        }
        
        .service-card,
        .benefit-item,
        .case-card {
            opacity: 1 !important;
            transform: none !important;
        }
    }

    @media (max-width: 576px) {
        .container {
            padding: 0 20px;
        }
        
        .page-title {
            font-size: 1.8rem;
        }
        
        .section-title {
            font-size: 1.6rem;
        }
        
        .header-stats {
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .stat {
            width: 100%;
        }
        
        .feature {
            flex-direction: column;
            text-align: center;
            gap: 0.5rem;
        }
        
        .feature-icon {
            margin: 0 auto;
        }
        
        .service-icon {
            font-size: 3rem;
        }
        
        .service-title {
            font-size: 1.4rem;
        }
        
        .benefit-item {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
            opacity: 1 !important;
            transform: none !important;
        }
        
        .benefit-icon {
            margin: 0 auto;
        }
        
        .process-timeline {
            padding-right: 30px;
        }
        
        .process-timeline::before {
            right: 15px;
        }
        
        .timeline-step {
            gap: 0.75rem;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            font-size: 0.9rem;
            border-width: 2px;
        }
        
    }

    /* =============== ANIMATION DELAYS =============== */
    .service-card:nth-child(1) { transition-delay: 0.1s; }
    .service-card:nth-child(2) { transition-delay: 0.2s; }
    .service-card:nth-child(3) { transition-delay: 0.3s; }
    .service-card:nth-child(4) { transition-delay: 0.4s; }
    .service-card:nth-child(5) { transition-delay: 0.5s; }
    .service-card:nth-child(6) { transition-delay: 0.6s; }

    .timeline-step:nth-child(1) { transition-delay: 0.1s; }
    .timeline-step:nth-child(2) { transition-delay: 0.2s; }
    .timeline-step:nth-child(3) { transition-delay: 0.3s; }
    .timeline-step:nth-child(4) { transition-delay: 0.4s; }
    .timeline-step:nth-child(5) { transition-delay: 0.5s; }
    .timeline-step:nth-child(6) { transition-delay: 0.6s; }

    .benefit-item:nth-child(1) { transition-delay: 0.1s; }
    .benefit-item:nth-child(2) { transition-delay: 0.2s; }
    .benefit-item:nth-child(3) { transition-delay: 0.3s; }
    .benefit-item:nth-child(4) { transition-delay: 0.4s; }
    .benefit-item:nth-child(5) { transition-delay: 0.5s; }
    .benefit-item:nth-child(6) { transition-delay: 0.6s; }

    .case-card:nth-child(1) { transition-delay: 0.1s; }
    .case-card:nth-child(2) { transition-delay: 0.2s; }
    .case-card:nth-child(3) { transition-delay: 0.3s; }
