
        :root {
            --primary-dark: #1e3a5f;
            --primary-main: #2d4f7c;
            --primary-light: #3c6499;
            --accent-dark: #d4a017;
            --accent-main: #ffc107;
            --accent-light: #ffd54f;
            --neutral-dark: #2c3e50;
            --neutral-main: #546e7a;
            --neutral-light: #f8f9fa;
            --gradient-primary: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
            --gradient-accent: linear-gradient(135deg, var(--accent-dark), var(--accent-main));
        }
        
        body {
            font-family: 'Cairo', sans-serif;
            line-height: 1.7;
            color: var(--neutral-dark);
            background-color: #fefefe;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            padding: 18px 0;
            transition: all 0.4s ease;
            box-shadow: 0 2px 15px rgba(30, 58, 95, 0.08);
            border-bottom: 1px solid rgba(255, 193, 7, 0.1);
        }
        
        .navbar.scrolled {
            padding: 12px 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-dark) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            color: var(--accent-main);
            margin-right: 5px;
        }
        
        .nav-link {
            font-weight: 500;
            margin-left: 20px;
            transition: all 0.3s;
            color: var(--neutral-dark) !important;
            position: relative;
            padding: 8px 12px !important;
            border-radius: 4px;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-dark) !important;
            background-color: rgba(255, 193, 7, 0.1);
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent-main);
            bottom: 0;
            right: 12px;
            transition: width 0.3s;
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: calc(100% - 24px);
        }
        
        .btn-primary {
            background: var(--gradient-primary);
            border: none;
            padding: 12px 28px;
            font-weight: 500;
            transition: all 0.3s;
            border-radius: 6px;
            box-shadow: 0 4px 6px rgba(30, 58, 95, 0.15);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(30, 58, 95, 0.2);
        }
        
        .btn-accent {
            background: var(--gradient-accent);
            border: none;
            padding: 12px 28px;
            font-weight: 500;
            transition: all 0.3s;
            border-radius: 6px;
            color: var(--primary-dark);
            box-shadow: 0 4px 6px rgba(212, 160, 23, 0.15);
        }
        
        .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(212, 160, 23, 0.2);
            color: var(--primary-dark);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(45, 79, 124, 0.8) 100%), url('https://images.unsplash.com/photo-1553413077-190dd305871c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 120px;
            text-align: center;
            position: relative;
        }
        
        .hero-section h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            font-weight: 700;
            color: white;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-right: auto;
            margin-left: auto;
            opacity: 0.9;
        }
        
        .hero-btns {
            margin-top: 30px;
        }
        
        .hero-btns .btn {
            margin: 0 8px;
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background-color: var(--neutral-light);
        }
        
.about-section .section-title {
    position: relative;
    margin-bottom: 40px;
    text-align: right;
    width: 100%;
}
        
.about-section .section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--accent-main);
    bottom: -15px;
    right: 0;
    transform: none;
    border-radius: 2px;
}
        
        .feature-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(30, 58, 95, 0.06);
            transition: all 0.4s ease;
            padding: 40px 30px;
            text-align: center;
            margin-bottom: 30px;
            height: 100%;
            border-top: 4px solid var(--accent-main);
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(30, 58, 95, 0.1);
        }
        
        .feature-icon {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: var(--accent-main);
        }
        
        /* Services Section */
        .services-section {
            padding: 100px 0;
            background: white;
        }
        
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(30, 58, 95, 0.06);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            height: 100%;
            background: white;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(30, 58, 95, 0.1);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h4 {
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        /* Stats Section */
        .stats-section {
            background: var(--gradient-primary);
            color: white;
            padding: 80px 0;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        /* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--neutral-light);
    position: relative;
}
        
.about-content {
    padding-right: 30px;
}
/* تحسين العناوين في جميع الأقسام */
.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--accent-main);
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    border-radius: 2px;
}

/* لعناوين القسم التي تبدأ من اليمين */
.section-title.text-start:after {
    right: 0;
    transform: none;
}    
    
        /* Storage Section */
        .storage-section {
            padding: 100px 0;
            background: white;
        }
        
        .storage-feature {
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
        }
        
        .storage-feature i {
            color: var(--accent-main);
            font-size: 1.3rem;
            margin-left: 12px;
            margin-top: 5px;
        }
        
        /* Fleet Section */
        .fleet-section {
            padding: 100px 0;
            background-color: var(--neutral-light);
        }
        
        .fleet-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(30, 58, 95, 0.06);
            padding: 30px;
            text-align: center;
            margin-bottom: 30px;
            height: 100%;
            transition: all 0.3s;
            border-left: 3px solid var(--accent-main);
        }
        
        .fleet-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(30, 58, 95, 0.1);
        }
        
        .fleet-icon {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--primary-main);
        }
        
        /* Infrastructure Section */
        .infrastructure-section {
            padding: 100px 0;
            background: white;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(45, 79, 124, 0.85) 100%), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-attachment: fixed;
            color: white;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .client-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-left: 15px;
            float: right;
            border: 3px solid var(--accent-main);
        }

        /* Footer - معدل نهائي */
        .footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 70px 0 20px;
            position: relative;
            z-index: 1000;
            margin-top: 0;
        }

            .footer .container .row {
                display: flex;
                flex-wrap: wrap;
                margin-right: -15px;
                margin-left: -15px;
            }

            .footer .col-lg-4,
            .footer .col-lg-2,
            .footer .col-lg-3,
            .footer .col-md-6 {
                padding-right: 15px;
                padding-left: 15px;
                flex: 0 0 auto;
                width: 100%;
            }

        @media (min-width: 768px) {
            .footer .col-md-6 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }

        @media (min-width: 992px) {
            .footer .col-lg-4 {
                flex: 0 0 33.333333%;
                max-width: 33.333333%;
            }

            .footer .col-lg-2 {
                flex: 0 0 16.666667%;
                max-width: 16.666667%;
            }

            .footer .col-lg-3 {
                flex: 0 0 25%;
                max-width: 25%;
            }
        }

        .footer h5 {
            margin-bottom: 25px;
            position: relative;
            color: var(--accent-light);
            padding-bottom: 15px;
            font-weight: 600;
            text-align: right;
            width: 100%;
        }

            .footer h5:after {
                content: '';
                position: absolute;
                width: 50px;
                height: 3px;
                background-color: var(--accent-main);
                bottom: 0;
                right: 0;
                border-radius: 2px;
                left: auto;
            }

        .footer-links {
            padding-right: 0;
            list-style: none;
        }

            .footer-links li {
                margin-bottom: 12px;
                text-align: right;
            }

            .footer-links a {
                color: rgba(255, 255, 255, 0.8);
                text-decoration: none;
                transition: all 0.3s;
                display: block;
            }

                .footer-links a:hover {
                    color: var(--accent-light);
                    padding-right: 8px;
                }

        .social-icons {
            text-align: right;
        }

            .social-icons a {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                background-color: rgba(255, 255, 255, 0.1);
                border-radius: 50%;
                margin-left: 10px;
                color: white;
                transition: all 0.3s;
            }

                .social-icons a:hover {
                    background-color: var(--accent-main);
                    transform: translateY(-3px);
                    color: var(--primary-dark);
                }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 25px;
            margin-top: 50px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* إصلاح محاذاة عناصر الاتصال */
        .footer-links .fas {
            width: 20px;
            text-align: center;
            margin-left: 8px;
        }
        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-section {
                padding: 150px 0 100px;
            }
            
            .about-content {
                padding-right: 0;
                margin-top: 30px;
            }
        }
/* تنسيقات الصفحات الفرعية */
.page-header {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(45, 79, 124, 0.8) 100%), url('https://images.unsplash.com/photo-1553413077-190dd305871c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 80px;
    margin-top: 76px;
    text-align: center;
}

    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        font-weight: 700;
    }

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    direction: ltr;
    justify-content: center;
}

.breadcrumb-item {
    float: right;
}

    .breadcrumb-item a {
        color: var(--accent-light) !important;
        text-decoration: none;
        font-weight: 500;
    }

    .breadcrumb-item.active {
        color: white !important;
        font-weight: 600;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        color: var(--accent-light) !important;
        content: ">" !important;
        padding: 0 10px;
        float: right;
    }

/* حل بديل باستخدام Flexbox */
.breadcrumb {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">" !important;
    padding: 0 10px;
    color: var(--accent-light) !important;
}

.page-content {
    padding: 80px 0;
}

.team-section {
    padding: 80px 0;
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(30, 58, 95, 0.06);
    margin-bottom: 30px;
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--accent-main);
}

/* تنسيقات صفحة التخزين */
.storage-overview {
    padding: 80px 0;
    background: white;
}

.overview-content {
    padding-left: 30px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--neutral-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .spec-item:hover {
        background: white;
        box-shadow: 0 5px 15px rgba(30, 58, 95, 0.1);
        transform: translateY(-2px);
    }

    .spec-item i {
        font-size: 1.5rem;
        color: var(--accent-main);
        width: 40px;
        text-align: center;
    }

    .spec-item div {
        flex: 1;
    }

    .spec-item strong {
        display: block;
        color: var(--primary-dark);
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .spec-item span {
        color: var(--primary-main);
        font-weight: 600;
        font-size: 1.1rem;
    }

.facility-image {
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}

    .facility-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

/* أنواع التخزين */
.storage-types {
    padding: 80px 0;
}

.storage-type-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .storage-type-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 4px;
        transition: all 0.3s ease;
    }

    .storage-type-card.refrigerated::before {
        background: linear-gradient(90deg, #00b4db 0%, #0083b0 100%);
    }

    .storage-type-card.frozen::before {
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    }

    .storage-type-card.dry::before {
        background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    }

    .storage-type-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(30, 58, 95, 0.15);
    }

.storage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.storage-type-card.refrigerated .storage-icon {
    color: #00b4db;
}

.storage-type-card.frozen .storage-icon {
    color: #667eea;
}

.storage-type-card.dry .storage-icon {
    color: #f5576c;
}

.storage-type-card h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.temp-range {
    color: var(--neutral-main);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.storage-type-card p {
    color: var(--neutral-main);
    line-height: 1.7;
    margin-bottom: 25px;
}

.storage-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .storage-features li {
        padding: 8px 0;
        color: var(--neutral-dark);
        position: relative;
        padding-right: 25px;
        border-bottom: 1px solid rgba(30, 58, 95, 0.1);
    }

        .storage-features li:last-child {
            border-bottom: none;
        }

        .storage-features li::before {
            content: '✓';
            position: absolute;
            right: 0;
            color: var(--accent-main);
            font-weight: bold;
        }

/* التقنيات والأنظمة */
.technology-section {
    padding: 80px 0;
    background: white;
}

.tech-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.06);
    height: 100%;
    transition: all 0.3s ease;
    border-right: 3px solid var(--accent-main);
}

    .tech-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(30, 58, 95, 0.1);
    }

.tech-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

    .tech-header i {
        font-size: 2rem;
        color: var(--accent-main);
        width: 50px;
        text-align: center;
    }

    .tech-header h4 {
        color: var(--primary-dark);
        margin: 0;
        font-size: 1.2rem;
    }

.tech-card p {
    color: var(--neutral-main);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .tech-features span {
        background: rgba(30, 58, 95, 0.08);
        color: var(--primary-dark);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
    }

/* البنية التحتية */
.infrastructure-section {
    padding: 80px 0;
}

.infra-item {
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

    .infra-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(30, 58, 95, 0.1);
    }

.infra-icon {
    font-size: 2.5rem;
    color: var(--accent-main);
    margin-bottom: 20px;
}

.infra-item h5 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.infra-item p {
    color: var(--neutral-main);
    line-height: 1.6;
    margin: 0;
}

/* قطاعات العملاء */
.sectors-section {
    padding: 80px 0;
    background: white;
}

.sector-item {
    padding: 25px 15px;
    background: var(--neutral-light);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .sector-item:hover {
        background: white;
        box-shadow: 0 10px 25px rgba(30, 58, 95, 0.1);
        transform: translateY(-5px);
    }

    .sector-item i {
        color: var(--primary-main);
        margin-bottom: 10px;
        display: block;
    }

    .sector-item span {
        color: var(--primary-dark);
        font-weight: 500;
        font-size: 0.9rem;
    }

/* دعوة للعمل */
.cta-storage {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%) !important;
}

    .cta-storage h3 {
        font-weight: 700;
    }

    .cta-storage .btn-light {
        background: white;
        color: var(--primary-dark);
        border: none;
        padding: 12px 30px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

        .cta-storage .btn-light:hover {
            background: var(--accent-main);
            transform: translateY(-2px);
        }

/* أزرار الاتصال الجذابة */
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

    .contact-btn::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.5s;
    }

    .contact-btn:hover::before {
        left: 100%;
    }

    .contact-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

.btn-accent {
    background: linear-gradient(135deg, var(--accent-main) 0%, var(--accent-dark) 100%);
    color: var(--primary-dark) !important;
}

    .btn-accent:hover {
        background: linear-gradient(135deg, var(--accent-dark) 0%, #e55a00 100%);
        color: var(--primary-dark) !important;
    }

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white !important;
}

    .btn-success:hover {
        background: linear-gradient(135deg, #218838 0%, #1e9e8a 100%);
        color: white !important;
    }

/* تحسين أزرار الخريطة في قسم الخريطة */
.map-placeholder .btn-primary {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
    transition: all 0.3s ease;
}

    .map-placeholder .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
    }

/* أزرار استفسر عن الخدمة */
.btn-service-inquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    min-width: 180px;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-dark) 100%);
    color: white !important;
}

    .btn-service-inquiry::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.6s;
    }

    .btn-service-inquiry:hover::before {
        left: 100%;
    }

    .btn-service-inquiry:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
        border-color: rgba(255, 255, 255, 0.3);
        background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2f4d 100%);
        color: white !important;
    }

    .btn-service-inquiry i {
        font-size: 1.1rem;
        transition: transform 0.3s ease;
    }

    .btn-service-inquiry:hover i {
        transform: scale(1.2);
    }


/* تنسيقات صفحة تفاصيل الخدمات */
.services-details {
    padding: 80px 0;
    background: white;
}

.service-detail-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.08);
    padding: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 95, 0.1);
}

    .service-detail-card:hover {
        box-shadow: 0 20px 50px rgba(30, 58, 95, 0.12);
        transform: translateY(-5px);
    }

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-main) 0%, var(--accent-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.service-header h3 {
    color: var(--primary-dark);
    margin: 0;
    font-weight: 700;
    font-size: 2rem;
}

.service-description {
    color: var(--neutral-main);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features h5,
.service-applications h5,
.service-benefits h5,
.service-technologies h5 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--neutral-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        background: white;
        box-shadow: 0 5px 15px rgba(30, 58, 95, 0.1);
        transform: translateX(5px);
    }

    .feature-item i {
        color: var(--accent-main);
        font-size: 1.2rem;
        width: 25px;
        text-align: center;
    }

    .feature-item span {
        color: var(--neutral-dark);
        font-weight: 500;
    }

.applications-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.app-tag {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-main) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

    .benefits-list li {
        padding: 10px 0;
        color: var(--neutral-dark);
        position: relative;
        padding-right: 25px;
        border-bottom: 1px solid rgba(30, 58, 95, 0.1);
    }

        .benefits-list li:last-child {
            border-bottom: none;
        }

        .benefits-list li::before {
            content: '✓';
            position: absolute;
            right: 0;
            color: var(--accent-main);
            font-weight: bold;
            font-size: 1.1rem;
        }

.transport-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--neutral-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .transport-item:hover {
        background: white;
        box-shadow: 0 8px 20px rgba(30, 58, 95, 0.1);
    }

    .transport-item i {
        font-size: 2rem;
        color: var(--accent-main);
        width: 50px;
        text-align: center;
    }

    .transport-item div {
        flex: 1;
    }

    .transport-item strong {
        display: block;
        color: var(--primary-dark);
        margin-bottom: 5px;
        font-size: 1.1rem;
    }

    .transport-item span {
        color: var(--neutral-main);
        font-size: 0.9rem;
    }

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.capability {
    text-align: center;
    padding: 20px;
    background: var(--neutral-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .capability:hover {
        background: white;
        box-shadow: 0 8px 20px rgba(30, 58, 95, 0.1);
        transform: translateY(-3px);
    }

.cap-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-main);
    margin-bottom: 5px;
}

.cap-label {
    color: var(--neutral-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tech-tag {
    background: linear-gradient(135deg, var(--accent-main) 0%, var(--accent-dark) 100%);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.service-image {
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.5s ease;
    }

.service-detail-card:hover .service-image img {
    transform: scale(1.05);
}

.service-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 220px;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-dark) 100%);
    color: white !important;
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.15);
    font-size: 1.1rem;
    margin-top: 20px;
}

    .service-detail-btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 35px rgba(30, 58, 95, 0.4);
        background: linear-gradient(135deg, var(--primary-dark) 0%, #142339 100%);
        color: white !important;
    }

    .service-detail-btn i {
        font-size: 1.3rem;
        transition: transform 0.3s ease;
    }

    .service-detail-btn:hover i {
        transform: scale(1.2);
    }

.consultation-btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .consultation-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
        background: var(--accent-main);
        color: var(--primary-dark) !important;
    }

/* تحسينات التجاوب */
@media (max-width: 768px) {
    .service-detail-card {
        padding: 30px 20px;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

        .service-header h3 {
            font-size: 1.5rem;
        }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-image {
        height: 300px;
        margin-top: 30px;
    }
}


/* قسم الشركاء */
.partners-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partners-category-title {
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

    .partners-category-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 50%;
        transform: translateX(50%);
        width: 60px;
        height: 3px;
        background: var(--accent-main);
        border-radius: 2px;
    }

.partner-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

    .partner-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 4px;
        transition: all 0.3s ease;
    }

.main-partner::before {
    background: linear-gradient(90deg, var(--primary-main) 0%, var(--primary-dark) 100%);
}

.tech-partner::before {
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

.logistics-partner::before {
    background: linear-gradient(90deg, var(--accent-main) 0%, var(--accent-dark) 100%);
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.15);
    border-color: rgba(30, 58, 95, 0.1);
}

    .partner-card:hover::before {
        height: 6px;
    }

.partner-logo {
    max-width: 120px;
    max-height: 50px;
    filter: grayscale(100%) brightness(0.5);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

.partner-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(45, 79, 124, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 13px;
}

.partner-card:hover .partner-overlay {
    opacity: 1;
}

.partner-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    padding: 0 10px;
}

/* إحصائيات الشراكة */
.partnership-stats {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
    margin-top: 50px;
}

    .partnership-stats .stat-item {
        padding: 20px;
    }

    .partnership-stats .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary-main);
        margin-bottom: 10px;
        background: linear-gradient(135deg, var(--primary-main) 0%, var(--accent-main) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .partnership-stats p {
        color: var(--neutral-main);
        font-weight: 500;
        margin: 0;
    }

/* تأثيرات الحركة للشركاء */
@keyframes floatPartners {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.partner-card {
    animation: floatPartners 6s ease-in-out infinite;
}

    .partner-card:nth-child(2) {
        animation-delay: 0.5s;
    }

    .partner-card:nth-child(3) {
        animation-delay: 1s;
    }

    .partner-card:nth-child(4) {
        animation-delay: 1.5s;
    }

/* شريط تمرير الشركاء (للعرض المتحرك) */
.partners-scroll {
    display: flex;
    animation: scrollPartners 30s linear infinite;
    gap: 40px;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* تحسينات التجاوب */
@media (max-width: 768px) {
    .partner-card {
        height: 120px;
        padding: 20px 15px;
    }

    .partner-logo {
        max-width: 100px;
        max-height: 40px;
    }

    .partners-category-title {
        font-size: 1.3rem;
    }

    .partnership-stats {
        padding: 30px 20px;
    }

        .partnership-stats .stat-number {
            font-size: 2rem;
        }
}

@media (max-width: 576px) {
    .partner-card {
        height: 100px;
        padding: 15px 10px;
    }

    .partner-logo {
        max-width: 80px;
        max-height: 35px;
    }
}