/* صفحة تفاصيل الرحلة */

/* مسار التنقل */
.breadcrumb-nav {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #6c757d;
}

.breadcrumb a {
    color: #4a9b8e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #2c3e50;
}

.breadcrumb .active {
    color: #6c757d;
    font-weight: 500;
}

.breadcrumb i {
    margin-left: 0.3rem;
}

/* هيرو الرحلة */
.trip-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.trip-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.trip-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trip-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 78, 74, 0.8), rgba(88, 28, 135, 0.8));
    z-index: 2;
}

.trip-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trip-badge-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trip-badge {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.trip-badge.featured {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #2c3e50;
}

.trip-badge.duration {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.trip-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.trip-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.trip-quick-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 155, 142, 0.4);
}

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

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* محتوى تفاصيل الرحلة */
.trip-details-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.trip-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.trip-info-card,
.trip-features-card,
.trip-description-card,
.trip-contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.trip-info-card h2,
.trip-features-card h2,
.trip-description-card h2,
.trip-contact-card h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.trip-info-card h2 i {
    color: #4a9b8e;
}

.trip-features-card h2 i {
    color: #ffd700;
}

.trip-description-card h2 i {
    color: #6c757d;
}

.trip-contact-card h2 i {
    color: #28a745;
}

/* قائمة معلومات الرحلة */
.trip-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #4a9b8e;
}

.info-label {
    font-weight: 600;
    color: #2c3e50;
}

.info-value {
    color: #6c757d;
    font-weight: 500;
}

.status-active {
    color: #28a745 !important;
    font-weight: 600 !important;
}

/* شبكة المميزات */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(74, 155, 142, 0.1);
    transform: translateY(-2px);
}

.feature-item i {
    color: #28a745;
    font-size: 1.1rem;
}

.feature-item span {
    color: #2c3e50;
    font-weight: 500;
}

/* محتوى الوصف */
.description-content {
    line-height: 1.8;
    color: #2c3e50;
    font-size: 1.05rem;
}

/* خيارات الاتصال */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-option:nth-child(1) {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

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

.contact-option.booking {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.contact-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-option i {
    font-size: 1.3rem;
}

/* رحلات مشابهة */
.similar-trips {
    padding: 4rem 0;
    background: white;
}

.similar-trips h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.similar-trips h2 i {
    color: #4a9b8e;
}

.similar-trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.similar-trip-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.similar-trip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.similar-trip-image {
    height: 200px;
    overflow: hidden;
}

.similar-trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.similar-trip-card:hover .similar-trip-image img {
    transform: scale(1.05);
}

.similar-trip-content {
    padding: 1.5rem;
}

.similar-trip-content h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.trip-duration {
    color: #6c757d;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #4a9b8e;
    color: #4a9b8e;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background: #4a9b8e;
    color: white;
    transform: translateY(-2px);
}

/* الاستجابة للموبايل */
@media (max-width: 768px) {
    .breadcrumb-nav {
        margin-top: 70px;
        padding: 0.8rem 0;
    }
    
    .trip-hero {
        min-height: 60vh;
    }
    
    .trip-hero h1 {
        font-size: 2rem;
    }
    
    .trip-quick-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .trip-details-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .similar-trips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .trip-hero h1 {
        font-size: 1.5rem;
    }
    
    .trip-badge-container {
        flex-direction: column;
        align-items: center;
    }
    
    .trip-info-card,
    .trip-features-card,
    .trip-description-card,
    .trip-contact-card {
        padding: 1.5rem;
    }
}
