/* صفحة الباصات */
.buses-page {
    padding-top: 0;
}

/* هيرو الصفحة */
.buses-hero {
    background: linear-gradient(135deg, #4a9b8e 0%, #5fb3a3 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.buses-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
}

/* أنواع الباصات */
.bus-types {
    padding: 4rem 0;
    background: #f8f9fa;
}

.bus-types h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.bus-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.bus-type-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bus-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.bus-type-card.featured {
    border-color: #ffd700;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffd700;
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bus-type-header {
    margin-bottom: 2rem;
}

.bus-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a9b8e, #5fb3a3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.bus-type-icon i {
    font-size: 2rem;
    color: white;
}

.bus-type-card.featured .bus-type-icon {
    background: linear-gradient(135deg, #ffd700, #ffb300);
}

.bus-type-card.featured .bus-type-icon i {
    color: #2c3e50;
}

.bus-type-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bus-type-header p {
    color: #6c757d;
    font-size: 1rem;
}

.bus-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: right;
}

.bus-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #2c3e50;
}

.bus-features i {
    color: #4a9b8e;
    font-size: 0.9rem;
}

/* تم حذف CSS الخاص بالأسعار */

.book-btn {
    width: 100%;
    background: linear-gradient(135deg, #4a9b8e, #5fb3a3);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 155, 142, 0.3);
}

.bus-type-card.featured .book-btn {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #2c3e50;
}

/* خطوات الرحلة */
.journey-steps {
    padding: 4rem 0;
    background: white;
}

.journey-steps h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.journey-steps p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a9b8e, #5fb3a3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 1.5rem;
    color: white;
}

.step-card h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-card p {
    color: #6c757d;
    margin: 0;
}

/* معرض الصور */
.bus-gallery {
    padding: 4rem 0;
    background: #f8f9fa;
}

.bus-gallery h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.gallery-main {
    max-width: 800px;
    margin: 0 auto;
}

.main-image {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
}

.image-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.image-info p {
    margin: 0;
    opacity: 0.9;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #4a9b8e;
    transform: scale(1.1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-images {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.no-images i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* نموذج الحجز */
.booking-section {
    padding: 4rem 0;
    background: white;
}

.booking-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.booking-section p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 3rem;
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9b8e;
    box-shadow: 0 0 0 3px rgba(74, 155, 142, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.whatsapp-btn,
.call-btn {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.call-btn {
    background: linear-gradient(135deg, #4a9b8e, #5fb3a3);
    color: white;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 155, 142, 0.3);
}

/* مميزات الخدمة */
.service-features {
    padding: 4rem 0;
    background: #f8f9fa;
}

.service-features h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-item .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a9b8e, #5fb3a3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-item .feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: #6c757d;
    margin: 0;
}

/* الاستجابة للجوال */
@media (max-width: 768px) {
    .buses-hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .hero-features span {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .bus-types-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .bus-type-card.featured {
        transform: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .booking-form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .main-image img {
        height: 250px;
    }
    
    .gallery-thumbnails {
        gap: 0.5rem;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
}
