/* Modern Hotel Detail Styling */
.detail-main-wrap { background: #f8f9fa; padding-bottom: 80px; }

/* Spotlight Gallery */
.gallery-spotlight { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, 250px); gap: 10px; margin-bottom: 30px; border-radius: 20px; overflow: hidden; position: relative; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.large { grid-row: span 2; }
.gallery-btn-all { position: absolute; bottom: 20px; right: 20px; background: #fff; color: #0A1325; padding: 10px 20px; border-radius: 12px; font-weight: 700; font-size: 14px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); cursor: pointer; border: none; display: flex; align-items: center; gap: 8px; z-index: 5; }

/* Sub Nav */
.detail-sub-nav { position: sticky; top: 0; background: #fff; border-bottom: 1px solid #eee; z-index: 100; margin-bottom: 40px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.detail-sub-nav .container { display: flex; gap: 30px; }
.detail-sub-nav a { padding: 20px 0; color: #5e6d77; font-weight: 600; text-decoration: none; border-bottom: 3px solid transparent; transition: all 0.2s; font-size: 15px; }
.detail-sub-nav a:hover, .detail-sub-nav a.active { color: #5191fa; border-color: #5191fa; }

/* Header Info */
.detail-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 30px; }
.detail-header h1 { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: #0A1325; margin-bottom: 10px; }
.detail-addr { color: #5e6d77; display: flex; align-items: center; gap: 8px; font-size: 15px; }
.stars-row { color: #f1c40f; font-size: 14px; margin-bottom: 10px; display: flex; gap: 3px; }

.review-badge-premium { background: #fff; border: 1px solid #eee; border-radius: 20px; padding: 15px 25px; display: flex; align-items: center; gap: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.review-badge-premium .score { background: #0A1325; color: #fff; width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; }
.review-badge-premium .text { line-height: 1.2; }
.review-badge-premium .text b { display: block; font-size: 16px; color: #0A1325; }
.review-badge-premium .text span { font-size: 13px; color: #5e6d77; }

/* Sidebar Booking */
.booking-sidebar {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(10,19,37,0.12);
    position: sticky;
    top: 20px;
    border: 1px solid #e8edf5;
}
.booking-price { border-bottom: 1px solid #eee; padding-bottom: 20px; margin-bottom: 25px; }
.booking-price .amount { font-size: 32px; font-weight: 800; color: #0A1325; }
.booking-price .unit { font-size: 15px; color: #5e6d77; }

.contact-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 15px; border-radius: 12px; font-weight: 700; text-decoration: none; margin-bottom: 12px; transition: all 0.3s; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1eb954; transform: translateY(-3px); }
.btn-call { background: #5191fa; color: #fff; }
.btn-call:hover { background: #2f64d6; transform: translateY(-3px); }

/* FAQ Accordion */
.premium-faq-item { background: #fff; border-radius: 15px; margin-bottom: 15px; border: 1px solid #eee; overflow: hidden; }
.faq-q { padding: 20px; cursor: pointer; font-weight: 700; display: flex; justify-content: space-between; align-items: center; color: #0A1325; }
.faq-a { padding: 0 20px 20px; color: #5e6d77; display: none; line-height: 1.6; }
.active .faq-a { display: block; }
.active .faq-q i { transform: rotate(180deg); }

/* Content Sections */
.detail-section { background: #fff; border-radius: 24px; padding: 40px; margin-bottom: 40px; border: 1px solid #f0f0f0; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.detail-section h3 { font-size: 24px; font-weight: 700; color: #0A1325; margin-bottom: 25px; display: flex; align-items: center; gap: 12px; }
.detail-section h3::before { content: ''; width: 4px; height: 24px; background: #5191fa; border-radius: 2px; }

.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.amenity-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #5e6d77; }
.amenity-item i { color: #5191fa; font-size: 18px; }

@media (max-width: 991px) {
    .gallery-spotlight { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 200px); }
    .gallery-item.large { grid-column: span 2; grid-row: span 1; }
    .detail-header { flex-direction: column; gap: 20px; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Weather Widget */
.weather-widget { background: #fff; border-radius: 20px; padding: 25px; box-shadow: 0 5px 15px rgba(0,0,0,0.02); border: 1px solid #f0f0f0; margin-bottom: 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: #5191fa; 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; }

