/* === قسم الفنادق الثوري === */

.revolutionary-hotels-section {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 25%, #374151 75%, #1f2937 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.revolutionary-hotels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    z-index: 1;
}

/* جسيمات الخلفية */
.hotels-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hotels-particle {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.4;
    animation: hotelsFloat 15s ease-in-out infinite;
}

.hotels-particle:nth-child(1) {
    width: 4px;
    height: 4px;
    background: var(--gold-400);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hotels-particle:nth-child(2) {
    width: 6px;
    height: 6px;
    background: var(--emerald-400);
    top: 60%;
    left: 80%;
    animation-delay: 5s;
}

.hotels-particle:nth-child(3) {
    width: 3px;
    height: 3px;
    background: var(--primary-cyan);
    top: 80%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes hotelsFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.8;
    }
}

/* الحاوية */
.hotels-container {
    position: relative;
    z-index: 2;
}

/* عنوان القسم */
.hotels-title {
    text-align: center;
    margin-bottom: var(--space-16);
}

.hotels-title h2 {
    font-family: 'Cairo', sans-serif;
    font-size: var(--text-5xl);
    font-weight: var(--font-black);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-4);
    position: relative;
}

.hotels-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
}

.hotels-title p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* شبكة الفنادق */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

/* كارد الفندق الثوري */
.revolutionary-hotel-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-3xl);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    height: 450px;
    cursor: pointer;
}

.revolutionary-hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 1;
}

.revolutionary-hotel-card:hover::before {
    opacity: 1;
}

.revolutionary-hotel-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-3xl);
    border-color: rgba(245, 158, 11, 0.5);
}

/* صورة الفندق */
.hotel-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: brightness(1) contrast(1.1);
}

.revolutionary-hotel-card:hover .hotel-image img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

/* شارة الفندق */
.hotel-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--gradient-emerald);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    z-index: 3;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.revolutionary-hotel-card:hover .hotel-badge {
    transform: scale(1.1);
}

/* محتوى الكارد */
.hotel-content {
    padding: var(--space-6);
    position: relative;
    z-index: 2;
}

.hotel-title {
    font-family: 'Cairo', sans-serif;
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
}

.hotel-location i {
    color: var(--gold-400);
    font-size: var(--text-sm);
}

/* تقييم الفندق */
.hotel-rating {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.hotel-stars {
    display: flex;
    gap: var(--space-1);
}

.hotel-stars i {
    color: var(--gold-400);
    font-size: var(--text-sm);
    transition: var(--transition-normal);
}

.hotel-stars i.text-muted {
    color: rgba(255, 255, 255, 0.3);
}

.hotel-rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
}

/* وصف الفندق */
.hotel-card-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* مرافق الفندق */
.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.amenity-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.amenity-tag i {
    color: var(--gold-400);
    font-size: var(--text-xs);
}

/* أزرار الكارد */
.hotel-card-actions {
    display: flex;
    gap: var(--space-2);
}

.hotel-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    border: none;
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.hotel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.hotel-btn:hover::before {
    left: 100%;
}

.hotel-btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
}

.hotel-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-glow);
    color: var(--white);
}

.hotel-btn-secondary {
    background: var(--gradient-emerald);
    color: var(--white);
}

.hotel-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-emerald-glow);
    color: var(--white);
}

/* حالة عدم وجود فنادق */
.no-hotels {
    text-align: center;
    padding: var(--space-20) var(--space-8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-3xl);
    margin: var(--space-8) 0;
}

.no-hotels-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: var(--text-4xl);
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.no-hotels-title {
    font-family: 'Cairo', sans-serif;
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--space-4);
}

.no-hotels-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-6);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* الاستجابة للأجهزة */
@media (max-width: 1024px) {
    .hotels-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-6);
    }
    
    .revolutionary-hotel-card {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .revolutionary-hotels-section {
        padding: var(--space-16) 0;
    }
    
    .hotels-title h2 {
        font-size: var(--text-4xl);
    }
    
    .hotels-title p {
        font-size: var(--text-lg);
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .revolutionary-hotel-card {
        height: 400px;
        margin: 0 var(--space-4);
    }
    
    .hotel-image {
        height: 220px;
    }
}

@media (max-width: 640px) {
    .revolutionary-hotel-card {
        height: 380px;
        margin: 0 var(--space-2);
    }
    
    .hotel-image {
        height: 200px;
    }
    
    .hotel-content {
        padding: var(--space-4);
    }
    
    .hotel-title {
        font-size: var(--text-xl);
    }
    
    .hotel-card-actions {
        flex-direction: column;
    }
    
    .no-hotels {
        padding: var(--space-12) var(--space-4);
    }
    
    .no-hotels-icon {
        width: 80px;
        height: 80px;
        font-size: var(--text-3xl);
    }
    
    .no-hotels-title {
        font-size: var(--text-2xl);
    }
    
    .no-hotels-description {
        font-size: var(--text-base);
    }
}
