/* =========================================
   تنسيقات صفحة الشحن والتسليم (Shipping Style - المحدث)
   ========================================= */

.shipping-page {
    padding: 40px 0 80px;
}

/* 1. العنوان الموحد (عريض جداً + سطر سماوي) */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-family: 'Cairo', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #000;
    display: inline-block;
    border-bottom: 5px solid #7dd3fc;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* 2. الحاوية الرئيسية للمحتوى */
.shipping-content-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

/* 3. تنسيق الصورة الجديدة */
.shipping-banner {
    width: 100%;
    background: #f8f8f8;
}

.shipping-banner img {
    width: 100%;
    max-height: 400px; /* تحديد طول مناسب للصورة */
    object-fit: cover; /* لضمان عدم تمطيط الصورة */
    display: block;
}

/* 4. صندوق المعلومات والأقسام */
.shipping-info-box {
    padding: 40px;
}

.shipping-section {
    margin-bottom: 35px;
}

.shipping-section:last-child {
    margin-bottom: 0;
}

/* تنسيق العناوين مع الأيقونات */
.shipping-section h3 {
    font-size: 22px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.shipping-section h3 i {
    color: #259bea;
    font-size: 20px;
}

.shipping-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    margin-right: 32px; /* إزاحة بسيطة ليكون النص تحت العنوان مباشرة بعد الأيقونة */
}

/* 5. بطاقة طريقة الشحن (Method Card) */
.method-card {
    background: #fff;
    border: 2px solid #eee;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
    margin-top: 15px;
}

.method-card:hover {
    border-color: #7dd3fc;
    background: #fafafa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.method-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.company-name {
    font-size: 20px;
    font-weight: 900;
    color: #259bea;
}

.speed-tag {
    background: #25d366;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
}

/* =========================================
   تجاوب الموبايل (Mobile Responsive)
   ========================================= */
@media (max-width: 768px) {
    .shipping-info-box { 
        padding: 25px 20px; 
    }
    
    .page-header h1 { 
        font-size: 28px; 
    }
    
    .shipping-section h3 {
        font-size: 19px;
    }

    .shipping-section p {
        margin-right: 0; /* إلغاء الإزاحة في الموبايل لتوفير مساحة */
        font-size: 15px;
    }
    
    .method-header { 
        flex-direction: column; 
        gap: 10px; 
        align-items: flex-start; 
    }
}