/* قسم الباصات المحسن */
.buses-section-enhanced {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.buses-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(74, 155, 142, 0.05) 1px, transparent 1px),
                      radial-gradient(circle at 80% 50%, rgba(74, 155, 142, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* هيدر القسم */
.buses-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.buses-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.buses-sub-title {
    font-size: 2rem;
    font-weight: 600;
    color: #4a9b8e;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.buses-location {
    font-size: 1.8rem;
    font-weight: 600;
    color: #4a9b8e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.buses-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* شبكة الباصات */
.buses-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* على الموبايل - عرض جنب بعض */
@media (max-width: 768px) {
    .buses-grid-enhanced {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* كروت الباصات */
.bus-card-enhanced {
    background: white;
    border-radius: 25px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f3f4;
    text-align: center;
}

.bus-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.bus-card-enhanced.standard {
    border-color: #e9ecef;
}

.bus-card-enhanced.standard:hover {
    border-color: #4a9b8e;
    box-shadow: 0 15px 35px rgba(74, 155, 142, 0.15);
}

.bus-card-enhanced.vip {
    border-color: #ffd700;
    background: linear-gradient(135deg, #ffffff 0%, #fffef7 100%);
    position: relative;
}

.bus-card-enhanced.vip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.bus-card-enhanced.vip:hover {
    border-color: #ffed4e;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

/* شارة VIP */
.vip-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* هيدر الباص */
.bus-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bus-icon-enhanced {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a9b8e, #5fb3a3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(74, 155, 142, 0.3);
}

.bus-icon-enhanced.vip-icon {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.bus-title-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.bus-type {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

/* تفاصيل الباص */
.bus-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.detail-text,
.detail-subtext,
.detail-highlight,
.detail-final {
    display: block;
    line-height: 1.4;
    margin-bottom: 0.2rem;
}

.detail-text {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.detail-subtext {
    color: #6c757d;
    font-size: 0.9rem;
}

.detail-highlight {
    color: #4a9b8e;
    font-weight: 500;
    font-size: 0.9rem;
}

.detail-final {
    color: #6c757d;
    font-size: 0.9rem;
}

/* مميزات الباص */
.bus-features-enhanced {
    margin-bottom: 1.5rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row i {
    color: #ffd700;
    font-size: 0.9rem;
    width: 16px;
}

.feature-row span {
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 500;
}

/* إجراءات الباص */
.bus-action {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.experience-text {
    display: block;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #4a9b8e;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2c3e50;
}

/* الاستجابة للموبايل */
@media (max-width: 768px) {
    .buses-section-enhanced {
        padding: 3rem 0;
    }
    
    .buses-header {
        margin-bottom: 3rem;
    }
    
    .buses-main-title {
        font-size: 2rem;
    }
    
    .buses-sub-title {
        font-size: 1.6rem;
    }
    
    .buses-location {
        font-size: 1.4rem;
    }
    
    .buses-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .buses-grid-enhanced {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .bus-card-enhanced {
        padding: 1.2rem 1rem;
        border-radius: 15px;
        min-height: 280px;
        max-height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .bus-icon-enhanced {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin: 0;
        flex-shrink: 0;
    }

    .bus-header {
        flex-direction: row;
        text-align: right;
        gap: 0.8rem;
        margin-bottom: 1rem;
        align-items: center;
    }

    .bus-title-section h4 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
        text-align: right;
    }

    .bus-type {
        font-size: 0.8rem;
        text-align: right;
    }
    
    .vip-badge {
        top: 0.8rem;
        left: 0.8rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .detail-item {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .detail-text,
    .detail-subtext,
    .detail-highlight,
    .detail-final {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
        line-height: 1.3;
    }

    .bus-features-enhanced {
        margin-bottom: 1rem;
    }

    .feature-row {
        padding: 0.3rem 0;
    }

    .feature-row span {
        font-size: 0.75rem;
    }

    .bus-action {
        padding: 0.8rem;
        margin-top: auto;
    }

    .experience-text {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .contact-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .buses-main-title {
        font-size: 1.8rem;
    }

    .buses-sub-title {
        font-size: 1.4rem;
    }

    .buses-location {
        font-size: 1.2rem;
    }

    .buses-grid-enhanced {
        gap: 0.8rem;
    }

    .bus-card-enhanced {
        padding: 1rem 0.8rem;
        min-height: 260px;
        max-height: 280px;
    }

    .bus-header {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .bus-icon-enhanced {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0;
    }

    .bus-title-section h4 {
        font-size: 0.9rem;
    }

    .bus-type {
        font-size: 0.75rem;
    }

    .detail-item {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
    }

    .detail-text,
    .detail-subtext,
    .detail-highlight,
    .detail-final {
        font-size: 0.75rem;
    }

    .feature-row span {
        font-size: 0.7rem;
    }

    .bus-action {
        padding: 0.6rem;
    }

    .experience-text {
        font-size: 0.75rem;
    }

    .contact-link {
        font-size: 0.8rem;
    }
}
