/* Modern Hotels Page UI */
.hotels-hero {
    position: relative;
    padding: 120px 0 140px;
    background: linear-gradient(135deg, #0A1325 0%, #1a2b48 100%);
    text-align: center;
    color: #fff;
    overflow: visible;
}

.hotels-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: #f8f9fa;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hotels-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.hotels-search-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 10px;
    max-width: 900px;
    margin: 30px auto 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hotels-search-box {
    background: #fff;
    border-radius: 14px;
    display: flex;
    padding: 6px;
    gap: 6px;
}

.hotels-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.hotels-input-group i { color: #5191fa; margin-right: 12px; font-size: 20px; }
.hotels-input-group label { display: block; font-size: 11px; font-weight: 700; color: #5e6d77; margin: 0; text-transform: uppercase; }
.hotels-input-group select, .hotels-input-group input { 
    border: none; background: transparent; width: 100%; font-size: 14px; font-weight: 600; color: #0A1325; outline: none; padding: 0;
}

.hotels-submit-btn {
    background: linear-gradient(135deg, #5191fa 0%, #2f64d6 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0 40px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(81, 145, 250, 0.3);
}
.hotels-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(81, 145, 250, 0.4); }

.main-content-section { padding: 40px 0 100px; background: #f8f9fa; }

/* Filter Styles */
.filter-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.filter-card h3 { font-size: 18px; font-weight: 700; color: #0A1325; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.filter-card h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: #5191fa; }

.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-list li { margin-bottom: 12px; }

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #5e6d77;
    transition: color 0.2s;
}
.custom-checkbox:hover { color: #5191fa; }

/* Hotel Card Styling */
.hotel-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.hotel-card:hover { transform: translateY(-10px); box-shadow: 0 20px 45px rgba(0,0,0,0.08); }

.hotel-thumb { position: relative; height: 230px; overflow: hidden; }
.hotel-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hotel-card:hover .hotel-thumb img { transform: scale(1.1); }

.hotel-featured {
    position: absolute;
    top: 15px; left: 15px;
    background: #f1c40f;
    color: #0A1325;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.hotel-stars {
    position: absolute;
    bottom: 15px; left: 15px;
    display: flex;
    gap: 2px;
    background: rgba(0,0,0,0.5);
    padding: 4px 8px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}
.hotel-stars i { color: #f1c40f; font-size: 12px; }

.hotel-body { padding: 25px; }
.hotel-location { font-size: 13px; color: #5191fa; font-weight: 600; margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.hotel-title { font-size: 19px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; height: 53px; overflow: hidden; }
.hotel-title a { color: #0A1325; text-decoration: none; transition: color 0.2s; }
.hotel-title a:hover { color: #5191fa; }

.hotel-review { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.review-score { background: #0A1325; color: #fff; padding: 4px 8px; border-radius: 8px; font-weight: 700; font-size: 13px; }
.review-text { font-size: 13px; color: #5e6d77; }

.hotel-footer { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 15px; border-top: 1px solid #f0f0f0; }
.hotel-price-box { flex: 1; }
.hotel-price-box .prefix { display: block; font-size: 11px; color: #a0a6ad; text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.hotel-price-box .price-value { font-size: 22px; font-weight: 800; color: #0A1325; line-height: 1; }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 991px) {
    .hotels-search-box { flex-direction: column; }
    .hotels-submit-btn { padding: 15px; width: 100%; }
}

/* Weather Widget */
.weather-widget { background: #fff; border-radius: 20px; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid #f0f0f0; margin-bottom: -10px; margin-top: 10px; }
.weather-widget h3 { font-size: 18px; font-weight: 700; color: #0A1325; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.weather-widget h3 i { color: #f1c40f; font-size: 24px; }
.weather-scroll { display: flex; overflow-x: auto; gap: 15px; padding-bottom: 10px; }
.weather-scroll::-webkit-scrollbar { height: 6px; }
.weather-scroll::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.weather-scroll::-webkit-scrollbar-thumb { background: #d4af37; border-radius: 10px; }
.weather-day { min-width: 80px; text-align: center; padding: 15px 10px; background: #f8f9fa; border-radius: 12px; border: 1px solid #eaeaea; transition: transform 0.2s; flex: 1; }
.weather-day:hover { transform: translateY(-3px); background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-color: #5191fa; }
.w-date { font-size: 12px; font-weight: 600; color: #5e6d77; margin-bottom: 8px; }
.w-icon { font-size: 28px; color: #5191fa; margin-bottom: 8px; display: block; }
.w-temps { font-size: 14px; font-weight: 700; }
.w-max { color: #e74c3c; }
.w-min { color: #3498db; margin-left: 5px; opacity: 0.8; }

