/*
* خدمات الشحن
* الديوان اليمني
*/

/* ======== أنماط عامة ======== */
.shipping-image {
    position: relative;
}

.shipping-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background-color: var(--primary);
    color: #fff;
    border-radius: var(--border-radius);
    padding: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    z-index: 1;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-left: 15px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    font-weight: 700;
}

/* ======== مميزات خدمات الشحن ======== */
.shipping-features {
    margin-top: 30px;
}

.shipping-feature {
    display: flex;
    margin-bottom: 25px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(46, 40, 87, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    margin-left: 15px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--grey);
    margin-bottom: 0;
}

/* ======== خدمات الشحن ======== */
.shipping-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.shipping-service-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.shipping-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.shipping-service-card:hover .service-icon {
    background-color: var(--primary);
    color: #fff;
}

.service-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-description {
    color: var(--grey);
    margin-bottom: 20px;
    font-size: 14px;
}

.service-details {
    margin-bottom: 20px;
}

.detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.detail-label {
    color: var(--grey);
}

.detail-value {
    font-weight: 600;
    color: var(--primary);
}

/* ======== مراحل خدمة الشحن ======== */
.shipping-process {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.shipping-process::before {
    content: '';
    position: absolute;
    top: 0;
    right: 25px;
    width: 2px;
    height: 100%;
    background-color: var(--light);
    z-index: 1;
}

.process-step {
    display: flex;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-left: 30px;
    flex-shrink: 0;
}

.step-content {
    padding-top: 5px;
}

.step-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-description {
    color: var(--grey);
}

/* ======== نموذج طلب الشحن ======== */
.shipping-form-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

/* ======== المزايا ======== */
.advantage-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
    background-color: var(--primary);
    color: #fff;
}

.advantage-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.advantage-description {
    color: var(--grey);
    margin-bottom: 0;
}

/* ======== شركاء الشحن ======== */
.partners-slider {
    max-width: 1000px;
    margin: 0 auto;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 15px;
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ======== نموذج التواصل ======== */
.contact-box {
    background-color: var(--primary);
    border-radius: var(--border-radius);
    padding: 40px;
    color: #fff;
    box-shadow: var(--shadow);
}

.contact-content h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-left: 30px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-info-item i {
    margin-left: 10px;
    color: var(--secondary);
}

/* ======== استجابة الموبايل ======== */
@media (max-width: 991px) {
    .shipping-badge {
        top: 20px;
        right: -10px;
    }
    
    .shipping-services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .shipping-process::before {
        right: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-left: 20px;
    }
    
    .contact-box {
        padding: 30px;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .shipping-badge {
        display: none;
    }
    
    .shipping-process::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 15px;
    }
}