/* صفحة باقات العمرة */

/* التمرير السلس */
html {
    scroll-behavior: smooth;
}

/* مسار التنقل */
.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;
}

/* هيرو الصفحة المحسن */
.packages-hero-enhanced {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.packages-hero-enhanced .hero-background-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 78, 74, 0.9), rgba(88, 28, 135, 0.9)),
                url('../images/kaaba-bg.jpg') center/cover;
    z-index: 1;
}

.packages-hero-enhanced .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 1px, transparent 1px),
                      radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
}

/* إذا لم تكن الصورة متوفرة، استخدم الخلفية الملونة فقط */
.packages-hero-enhanced .hero-background-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4a9b8e, #2c3e50);
    z-index: -1;
}

.packages-hero-content-enhanced {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.packages-hero-enhanced .hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c3e50;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

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

.packages-hero-enhanced .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

.packages-hero-enhanced .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #e2e8f0;
}

/* مميزات الهيرو */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-features .feature-item i {
    color: #ffd700;
    font-size: 1.1rem;
}

.hero-features .feature-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* إحصائيات محسنة */
.hero-stats-enhanced {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item-enhanced {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 150px;
}

.stat-item-enhanced:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-item-enhanced .stat-icon {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.stat-item-enhanced .stat-icon i {
    color: #2c3e50;
    font-size: 1.5rem;
}

.stat-item-enhanced .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-item-enhanced .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* أزرار الهيرو */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-whatsapp-hero {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    font-size: 1.1rem;
}

.btn-whatsapp-hero:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline-hero {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* أنيميشن النبض */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* الاستجابة للموبايل - الهيرو المحسن */
@media (max-width: 768px) {
    .packages-hero-enhanced {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .packages-hero-enhanced h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .packages-hero-enhanced .hero-subtitle {
        font-size: 1.1rem;
    }

    .packages-hero-enhanced .hero-description {
        font-size: 1rem;
    }

    .hero-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-features .feature-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .hero-stats-enhanced {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .stat-item-enhanced {
        padding: 1.5rem 1rem;
        min-width: 120px;
    }

    .stat-item-enhanced .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-item-enhanced .stat-number {
        font-size: 2rem;
    }

    .hero-actions {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .btn-whatsapp-hero,
    .btn-outline-hero {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .packages-hero-enhanced h1 {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-features .feature-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .hero-stats-enhanced {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .stat-item-enhanced {
        width: 100%;
        max-width: 200px;
    }
}
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* تم حذف CSS الخاص بفلاتر البحث */

/* نتائج البحث */
.packages-results {
    padding: 3rem 0;
}

.results-header {
    margin-bottom: 2rem;
    text-align: center;
}

.results-header h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.search-info {
    color: #6c757d;
    font-size: 1rem;
}

.search-info i {
    color: #4a9b8e;
    margin-left: 0.5rem;
}

/* شبكة الباقات */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 1rem 0;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: rgba(74, 155, 142, 0.3);
}

.package-card.featured {
    border: 2px solid #ffd700;
}

.package-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #2c3e50;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border: 2px solid white;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.package-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, rgba(0,0,0,0.1));
    pointer-events: none;
}

.package-duration {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-content {
    padding: 2rem;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.package-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.4;
    flex: 1;
}

.package-duration-badge {
    background: linear-gradient(135deg, #4a9b8e, #5fb3a3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(74, 155, 142, 0.3);
}

.package-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.package-features {
    margin-bottom: 2rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.package-features h5 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-features h5 i {
    color: #ffd700;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    background: white;
    color: #4a9b8e;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 2px solid rgba(74, 155, 142, 0.2);
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.feature-tag:hover {
    background: rgba(74, 155, 142, 0.1);
    border-color: #4a9b8e;
    transform: translateY(-2px);
}

.feature-tag i {
    color: #28a745;
    font-size: 0.8rem;
}

.more-features {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    background: #e9ecef;
    border-radius: 25px;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.more-features i {
    color: #6c757d;
}

/* تم إزالة CSS الخاص بالأسعار */

.package-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.package-actions .btn {
    flex: 1;
    padding: 1rem 1.5rem;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 155, 142, 0.4);
    background: linear-gradient(135deg, #5fb3a3, #4a9b8e);
}

.btn-secondary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-color: #ff6b35;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}

/* زر الواتساب في كروت الباقات */
.btn-whatsapp-book {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    color: white !important;
    border-color: #25d366 !important;
    text-decoration: none !important;
}

.btn-whatsapp-book:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
    background: linear-gradient(135deg, #128c7e, #25d366) !important;
    color: white !important;
}

.btn-whatsapp-book i {
    font-size: 1.1rem;
}

/* رسالة عدم وجود نتائج */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.no-results-icon {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.no-results p {
    color: #6c757d;
    margin-bottom: 2rem;
}

.no-results-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #4a9b8e;
    color: #4a9b8e;
}

.btn-outline:hover {
    background: #4a9b8e;
    color: white;
}

/* الاستجابة للموبايل */
@media (max-width: 768px) {
    .breadcrumb-nav {
        margin-top: 70px;
        padding: 0.8rem 0;
    }

    .packages-hero {
        min-height: 50vh;
    }
    
    .packages-hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-actions {
        justify-content: center;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-actions {
        flex-direction: column;
    }
    
    .no-results-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .packages-hero h1 {
        font-size: 1.5rem;
    }
    
    .filters-card {
        padding: 1rem;
    }
    
    .package-content {
        padding: 1rem;
    }
}
