/* SERVICE PAGES - HIGH PRIORITY OVERRIDES */

/* MODERN SAUDI TECH ELEGANCE - PREMIUM SERVICE PAGES */

/* Hero Section - Dynamic & Eye-catching */
body .service-hero {
    padding: 150px 0 100px !important;
    background: radial-gradient(ellipse at top, #1A1A1A 0%, #111111 100%) !important;
    color: #FFFFFF !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 70vh !important;
}

body .service-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(45deg, rgba(255, 76, 30, 0.1) 0%, transparent 70%) !important;
    z-index: 1 !important;
}

body .service-hero::after {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    right: -30% !important;
    width: 100% !important;
    height: 200% !important;
    background: conic-gradient(from 45deg, transparent, rgba(255, 76, 30, 0.05), transparent) !important;
    transform: rotate(15deg) !important;
    z-index: 1 !important;
}

body .service-hero .container {
    position: relative !important;
    z-index: 2 !important;
}

body .service-hero .hero-title {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    line-height: 1.2 !important;
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

body .service-hero .hero-subtitle {
    font-size: 1.4rem !important;
    margin-bottom: 50px !important;
    opacity: 0.95 !important;
    max-width: 800px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    color: white !important;
}

body .service-hero .hero-stats {
    display: flex !important;
    gap: 40px !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    margin-top: 30px !important;
}

body .service-hero .stat-item {
    text-align: center !important;
    min-width: 160px !important;
    padding: 25px 20px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 16px !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

body .service-hero .stat-number {
    font-size: 3rem !important;
    font-weight: 700 !important;
    display: block !important;
    color: #ffd700 !important;
    margin-bottom: 10px !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
    line-height: 1 !important;
}

body .service-hero .stat-label {
    font-size: 1.1rem !important;
    opacity: 0.9 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Content Sections - Modern Layout */
body .service-overview {
    padding: 120px 0 !important;
    background: linear-gradient(135deg, #111111 0%, #1A1A1A 50%, #111111 100%) !important;
    position: relative !important;
}

body .service-overview::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, #FF4C1E 50%, transparent 100%) !important;
}

body .service-overview h2 {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    margin-bottom: 48px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    position: relative !important;
}

body .service-overview h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: -16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 120px !important;
    height: 4px !important;
    background: linear-gradient(90deg, #FF4C1E 0%, #FF7349 100%) !important;
    border-radius: 2px !important;
}

body .key-features {
    padding: 120px 0 !important;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 76, 30, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 76, 30, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #111111 0%, #1A1A1A 100%) !important;
    position: relative !important;
}

body .features-grid {
    display: grid !important;
    gap: 48px !important;
    margin-top: 80px !important;
}

/* Premium Card Design */
body .feature-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%) !important;
    border-radius: 24px !important;
    padding: 48px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(255, 76, 30, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) !important;
}

body .feature-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(255, 76, 30, 0.03) 0%, transparent 70%) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

body .feature-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    border-color: rgba(255, 76, 30, 0.4) !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 76, 30, 0.2),
        0 8px 32px rgba(255, 76, 30, 0.15) !important;
}

body .feature-card:hover::before {
    opacity: 1 !important;
}

body .feature-card .feature-icon {
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #FF4C1E 0%, #FF7349 100%) !important;
    border-radius: 20px !important;
    box-shadow: 
        0 8px 24px rgba(255, 76, 30, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    position: relative !important;
    transition: all 0.4s ease !important;
}

body .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 
        0 12px 32px rgba(255, 76, 30, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) !important;
}

body .feature-card h3 {
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin-bottom: 20px !important;
    line-height: 1.4 !important;
}

body .ai-products,
body .applications,
body .solutions,
body .methodology,
body .service-levels {
    padding: 100px 0 !important;
}

body .products-grid,
body .applications-grid,
body .solutions-grid,
body .areas-grid,
body .types-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)) !important;
    gap: 40px !important;
    margin-top: 60px !important;
}

/* Modern Product/Service Cards */
body .product-card,
body .application-card,
body .solution-card,
body .area-card,
body .type-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%) !important;
    border-radius: 24px !important;
    padding: 40px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(255, 76, 30, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.03) !important;
    color: #FFFFFF !important;
}

body .product-card::before,
body .application-card::before,
body .solution-card::before,
body .area-card::before,
body .type-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(255, 76, 30, 0.02) 0%, transparent 70%) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

body .product-card:hover,
body .application-card:hover,
body .solution-card:hover,
body .area-card:hover,
body .type-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: rgba(255, 76, 30, 0.3) !important;
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 76, 30, 0.15),
        0 8px 24px rgba(255, 76, 30, 0.1) !important;
}

body .product-card:hover::before,
body .application-card:hover::before,
body .solution-card:hover::before,
body .area-card:hover::before,
body .type-card:hover::before {
    opacity: 1 !important;
}

/* Call to Action Section - Premium Design */
body .service-cta {
    padding: 120px 0 !important;
    background: 
        radial-gradient(ellipse at center, rgba(255, 76, 30, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, #111111 0%, #1A1A1A 100%) !important;
    color: #FFFFFF !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    border-top: 1px solid rgba(255, 76, 30, 0.2) !important;
}

body .service-cta::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(255, 76, 30, 0.02) 101px,
            rgba(255, 76, 30, 0.02) 102px
        ) !important;
    z-index: 1 !important;
}

body .service-cta .container {
    position: relative !important;
    z-index: 2 !important;
}

body .service-cta h2 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    margin-bottom: 32px !important;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 76, 30, 0.8) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

body .service-cta p {
    font-size: 1.3rem !important;
    opacity: 0.9 !important;
    margin-bottom: 48px !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body .section-header h2 {
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
    text-align: center !important;
}

/* Methodology Steps - Timeline Style */
body .step {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%) !important;
    padding: 48px !important;
    border-radius: 24px !important;
    text-align: center !important;
    position: relative !important;
    border: 1px solid rgba(255, 76, 30, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.03) !important;
    color: #FFFFFF !important;
}

body .step::before {
    content: attr(data-step) !important;
    position: absolute !important;
    top: -16px !important;
    left: 24px !important;
    background: linear-gradient(135deg, #FF4C1E 0%, #FF7349 100%) !important;
    color: #FFFFFF !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    box-shadow: 0 4px 12px rgba(255, 76, 30, 0.3) !important;
}

body .step:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: rgba(255, 76, 30, 0.3) !important;
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 76, 30, 0.15),
        0 8px 24px rgba(255, 76, 30, 0.1) !important;
}

/* Service Level Cards */
body .level-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%) !important;
    padding: 40px !important;
    border-radius: 24px !important;
    position: relative !important;
    border: 1px solid rgba(255, 76, 30, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.03) !important;
    color: #FFFFFF !important;
}

body .level-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: rgba(255, 76, 30, 0.3) !important;
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 76, 30, 0.15),
        0 8px 24px rgba(255, 76, 30, 0.1) !important;
}

/* Responsive overrides */
@media (max-width: 768px) {
    body .service-hero {
        padding: 100px 0 60px !important;
    }
    
    body .service-hero .hero-title {
        font-size: 2.5rem !important;
    }
    
    body .service-hero .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    body .features-grid,
    body .products-grid,
    body .applications-grid,
    body .solutions-grid,
    body .areas-grid,
    body .types-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    body .section-header h2 {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 480px) {
    body .service-hero .hero-title {
        font-size: 2rem !important;
    }
    
    body .service-hero .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    body .section-header h2 {
        font-size: 1.9rem !important;
    }
}

/* PREMIUM RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    body .products-grid,
    body .applications-grid,
    body .solutions-grid,
    body .areas-grid,
    body .types-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)) !important;
        gap: 40px !important;
    }
}

@media (max-width: 768px) {
    body .service-hero {
        padding: 120px 0 80px !important;
        min-height: 60vh !important;
    }
    
    body .service-hero .hero-title {
        font-size: 2.8rem !important;
    }
    
    body .service-hero .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    body .service-hero .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
        gap: 32px !important;
    }
    
    body .features-grid,
    body .products-grid,
    body .applications-grid,
    body .solutions-grid,
    body .areas-grid,
    body .types-grid,
    body .methodology-steps,
    body .levels-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    
    body .section-header h2 {
        font-size: 2.5rem !important;
    }
    
    body .service-overview h2 {
        font-size: 2.8rem !important;
    }
}

@media (max-width: 480px) {
    body .service-hero {
        padding: 100px 0 60px !important;
    }
    
    body .service-hero .hero-title {
        font-size: 2.2rem !important;
    }
    
    body .service-hero .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    body .section-header h2 {
        font-size: 2rem !important;
    }
    
    body .service-overview h2 {
        font-size: 2.2rem !important;
    }
    
    body .feature-card,
    body .product-card,
    body .application-card,
    body .solution-card,
    body .area-card,
    body .type-card,
    body .step,
    body .level-card {
        padding: 32px !important;
    }
}

/* MODERN BUTTON STYLES */
body .btn-primary {
    background: linear-gradient(135deg, #FF4C1E 0%, #FF7349 100%) !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 16px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 24px rgba(255, 76, 30, 0.3) !important;
}

body .btn-primary:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 32px rgba(255, 76, 30, 0.4) !important;
    background: linear-gradient(135deg, #FF7349 0%, #FF4C1E 100%) !important;
}

/* PREMIUM TYPOGRAPHY SYSTEM */
body .service-page {
    font-family: "Noto Kufi Arabic", sans-serif !important;
    background: 
        radial-gradient(ellipse at top left, rgba(255, 76, 30, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 76, 30, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, #111111 0%, #1A1A1A 100%) !important;
    min-height: 100vh !important;
}

/* Card Headings - Modern Typography */
body .feature-card h3,
body .product-card h3,
body .application-card h3,
body .solution-card h3,
body .area-card h3,
body .type-card h3,
body .step h3,
body .level-card h3 {
    color: #FFFFFF !important;
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
    position: relative !important;
}

body .feature-card h3::after,
body .product-card h3::after,
body .application-card h3::after,
body .solution-card h3::after,
body .area-card h3::after,
body .type-card h3::after,
body .step h3::after,
body .level-card h3::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 0 !important;
    width: 40px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #FF4C1E 0%, #FF7349 100%) !important;
    border-radius: 1px !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

body .feature-card:hover h3::after,
body .product-card:hover h3::after,
body .application-card:hover h3::after,
body .solution-card:hover h3::after,
body .area-card:hover h3::after,
body .type-card:hover h3::after,
body .step:hover h3::after,
body .level-card:hover h3::after {
    opacity: 1 !important;
}

/* Card Content - Premium Typography */
body .feature-card p,
body .product-card p,
body .application-card p,
body .solution-card p,
body .area-card p,
body .type-card p,
body .step p,
body .level-card p {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.7 !important;
    font-size: 1rem !important;
    margin-bottom: 0 !important;
    font-weight: 400 !important;
}

/* Section Headers - Eye-catching Design */
body .section-header h2 {
    color: #FFFFFF !important;
    font-weight: 800 !important;
    font-size: 3.2rem !important;
    text-align: center !important;
    margin-bottom: 24px !important;
    line-height: 1.2 !important;
    position: relative !important;
}

body .section-header h2::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 200px !important;
    height: 200px !important;
    background: radial-gradient(circle, rgba(255, 76, 30, 0.05) 0%, transparent 70%) !important;
    z-index: -1 !important;
}

body .section-header p {
    color: rgba(255, 255, 255, 0.7) !important;
    text-align: center !important;
    max-width: 900px !important;
    margin: 0 auto 64px !important;
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

/* PREMIUM ICONS & VISUAL ELEMENTS */
body .service-image {
    width: 56px !important;
    height: 56px !important;
    margin-bottom: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    background: linear-gradient(135deg, rgba(255, 76, 30, 0.1) 0%, rgba(255, 115, 73, 0.05) 100%) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 76, 30, 0.2) !important;
    transition: all 0.3s ease !important;
}

body .service-image:hover {
    transform: scale(1.1) rotate(5deg) !important;
    background: linear-gradient(135deg, rgba(255, 76, 30, 0.15) 0%, rgba(255, 115, 73, 0.1) 100%) !important;
    border-color: rgba(255, 76, 30, 0.4) !important;
    box-shadow: 0 8px 24px rgba(255, 76, 30, 0.2) !important;
}

body .service-image img {
    width: 70% !important;
    height: 70% !important;
    object-fit: contain !important;
    filter: brightness(0) saturate(100%) invert(100%) !important;
    transition: all 0.3s ease !important;
}

/* MODERN GRID LAYOUTS */
body .products-grid,
body .applications-grid,
body .solutions-grid,
body .areas-grid,
body .types-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)) !important;
    gap: 48px !important;
    margin-top: 80px !important;
}

body .methodology-steps {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
    gap: 40px !important;
    margin-top: 80px !important;
}

body .levels-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 32px !important;
    margin-top: 64px !important;
} 