/* Hotels Page - Minimal Design */

/* Global smooth scrolling for hotel pages */
html {
    scroll-behavior: smooth;
}

/* Hotel Detail Page Specific Styles */
.hotel-detail-page {
    padding: 6rem 0 4rem;
    min-height: 100vh;
    background: #f9fafb;
}

.hotel-detail-page .container {
    max-width: 1200px;
}

/* Loading State */
.loading-container {
    text-align: center;
    padding: 4rem 2rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e5e7eb;
    border-top-color: #0a2463;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-container p {
    color: #6b7280;
    font-size: 1rem;
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 4rem 2rem;
}

.error-message i {
    font-size: 4rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

.error-message p {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2rem;
}

/* Back Button - Minimalist */
.back-button-container {
    margin-bottom: 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #6b7280;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.2s;
    box-shadow: none;
}

.back-button:hover {
    background: transparent;
    border-color: transparent;
    color: #111827;
    transform: none;
}

.back-button i {
    font-size: 0.85rem;
    transition: none;
}

.back-button:hover i {
    transform: none;
}

/* Hotels Section */
.hotels-section {
    padding: 3rem 0 4rem;
    background-color: #ffffff;
    min-height: 80vh;
}

.hotels-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.hotels-header h1 {
    font-size: 2rem;
    color: #111827;
    margin: 0;
    font-weight: 600;
}

.hotels-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    background-color: #f9fafb;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.hotels-count i {
    color: #9ca3af;
}

/* Search and Sort Controls - Minimalist */
.hotels-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #111827;
    background: #ffffff;
    transition: all 0.2s;
}

.search-box input:focus {
    outline: none;
    border-color: #9ca3af;
}

.search-box input::placeholder {
    color: #9ca3af;
}

.search-box i {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.9rem;
    pointer-events: none;
}

.sort-controls select {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #111827;
    background: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    appearance: none;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 200px;
}

.sort-controls select:focus {
    outline: none;
    border-color: #9ca3af;
}

.sort-controls select:hover {
    border-color: #9ca3af;
}

/* Hotels Grid */
.hotels-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.loading-message {
    text-align: center;
    padding: 3rem;
    color: #9ca3af;
    grid-column: 1 / -1;
}

.empty-message {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
    grid-column: 1 / -1;
}

.empty-message i {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
    display: block;
}

.empty-message h3 {
    margin-bottom: 0.5rem;
    color: #374151;
}

/* Hotel Card - Horizontal Layout with Carousel */
.hotel-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: row;
    min-height: 320px;
    height: auto;
}

.hotel-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.hotel-card-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 45%;
    flex-shrink: 0;
}

.hotel-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hotel-carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hotel-carousel-image.active {
    opacity: 1;
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-nav i {
    color: #0a2463;
    font-size: 0.9rem;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: #ffffff;
    transform: scale(1.3);
}

.hotel-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hotel-badge i {
    color: #fbbf24;
}

.hotel-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hotel-card-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    color: #111827;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hotel-location i {
    color: #ef4444;
    font-size: 0.85rem;
}

.hotel-excerpt {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #374151;
    font-weight: 500;
    transition: all 0.2s;
}

.amenity-tag:hover {
    background-color: #ffffff;
    border-color: #d1d5db;
}

.amenity-tag i {
    font-size: 0.95rem;
    color: #0a2463;
}

.amenity-tag span {
    line-height: 1;
}

.amenity-more {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.85rem;
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
    font-style: italic;
}

.hotel-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
}

.hotel-price-tag {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.price-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0a2463;
    line-height: 1;
}

.price-amount-range {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a2463;
    line-height: 1.3;
}

.price-period {
    font-size: 0.85rem;
    color: #6b7280;
}

.btn-read-more {
    padding: 0.65rem 1.5rem;
    background-color: #0a2463;
    color: #ffffff;
    border: none;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-read-more:hover {
    background-color: #081b4d;
    transform: translateX(4px);
}

.btn-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.btn-read-more:hover i {
    transform: translateX(4px);
}

/* See All Link - At Bottom of Card */
.see-all-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem;
    margin-top: 1rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    color: #0a2463;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.see-all-link:hover {
    background: #f3f4f6;
    color: #1e3a8a;
}

.see-all-link i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.see-all-link:hover i {
    transform: translateX(4px);
}

/* Image Gallery Modal */
.image-gallery-modal {
    z-index: 10001;
}

.image-gallery-content {
    max-width: 1200px;
    width: 95%;
    max-height: 95vh;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.image-gallery-content .close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: #6b7280;
    transition: all 0.3s;
    z-index: 10;
}

.image-gallery-content .close-modal:hover {
    background: #ffffff;
    color: #111827;
    transform: rotate(90deg);
}

.gallery-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1.5rem 0;
    padding-right: 3rem;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-image.active {
    opacity: 1;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-nav:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-prev {
    left: 1rem;
}

.gallery-nav-next {
    right: 1rem;
}

.gallery-nav i {
    color: #0a2463;
    font-size: 1.2rem;
}

.gallery-counter {
    text-align: center;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1rem;
    font-weight: 500;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: #d1d5db #f3f4f6;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.gallery-thumb {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.gallery-thumb:hover {
    opacity: 0.9;
}

.gallery-thumb.active {
    opacity: 1;
    border-color: #0a2463;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-main {
        height: 350px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-nav-prev {
        left: 0.5rem;
    }

    .gallery-nav-next {
        right: 0.5rem;
    }

    .gallery-thumb {
        width: 80px;
        height: 60px;
    }

    .image-gallery-content {
        padding: 1.5rem;
    }

    .gallery-title {
        font-size: 1.2rem;
    }
}

/* Hotel Detail Modal */
.hotel-detail-modal .modal-content {
    max-width: 1100px;
    width: 95%;
    max-height: 95vh;
    overflow-y: auto;
    padding: 0;
    background: #ffffff;
}

.hotel-detail-content .close-modal {
    position: sticky;
    top: 1rem;
    right: 1rem;
    float: right;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hotel-detail-hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hotel-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-detail-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hotel-detail-badge i {
    color: #fbbf24;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.25rem;
}

.hotel-detail-badge span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.hotel-detail-badge small {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hotel Detail Content Container */
#hotelDetailContent {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

/* Detail Header Section - Minimalist Design */
.detail-header-section {
    background: #ffffff;
    padding: 2rem 0;
    color: #111827;
    border-radius: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #e5e7eb;
}

.detail-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.detail-title-info {
    flex: 1;
}

.detail-hotel-name {
    font-size: 2rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.detail-location-text {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.detail-location-text i {
    color: #9ca3af;
    font-size: 0.9rem;
}

.detail-rating-badge {
    background: #f9fafb;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.rating-stars {
    color: #fbbf24;
    font-size: 0.85rem;
}

/* Price Banner - Minimalist Display */
.detail-price-banner {
    background: transparent;
    border-radius: 0;
    padding: 1rem 0 0 0;
    border: none;
}

.price-banner-content {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-banner-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    font-weight: 500;
}

.price-banner-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.price-banner-period {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Detail Image Gallery with Carousel - Minimalist */
.detail-image-gallery {
    position: relative;
    width: 100%;
    height: 400px;
    background: #f3f4f6;
    overflow: hidden;
    margin-bottom: 0;
}

.detail-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.detail-carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.detail-carousel-image.active {
    opacity: 1;
}

.detail-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s;
    box-shadow: none;
}

.detail-carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%);
}

.detail-carousel-prev {
    left: 1rem;
}

.detail-carousel-next {
    right: 1rem;
}

.detail-carousel-btn i {
    color: #111827;
    font-size: 1rem;
}

.detail-carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.detail-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.detail-indicator:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: none;
}

.detail-indicator.active {
    background: #ffffff;
    transform: none;
}

/* Hotel Facts Section - Minimalist */
.hotel-facts-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #e5e7eb;
}

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

.fact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: none;
}

.fact-card:hover {
    transform: none;
    box-shadow: none;
}

.fact-icon {
    font-size: 1.5rem;
    color: #6b7280;
    flex-shrink: 0;
}

.fact-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fact-value {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111827;
    line-height: 1;
}

.fact-label {
    font-size: 0.8rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Section Title - Minimalist */
.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 1.5rem 0;
    display: block;
    padding-bottom: 0;
    border-bottom: none;
}

.section-title i {
    display: none;
}

/* Remove animation for minimalist feel */
.hotel-detail-section {
    animation: none;
}

.hotel-detail-main {
    padding: 3rem 0;
    background: #ffffff;
}

.hotel-detail-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.hotel-detail-section:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.hotel-detail-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    text-align: left;
}

.hotel-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    font-size: 0.95rem;
    color: #374151;
    transition: none;
}

.amenity-item:hover {
    background-color: transparent;
    border-color: transparent;
}

.amenity-item i {
    color: #9ca3af;
    font-size: 1rem;
}

.amenity-item span {
    font-weight: 400;
}

/* Enhanced Room Cards - Minimalist Design */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.room-card-enhanced {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.room-card-enhanced:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.room-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f3f4f6;
}

.room-image-wrapper.no-image {
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-image-placeholder {
    font-size: 3rem;
    color: #d1d5db;
}

.room-image-enhanced {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.room-card-enhanced:hover .room-image-enhanced {
    transform: scale(1.05);
}

.room-price-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(10, 36, 99, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-align: center;
}

.room-price-large {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.room-price-small {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.room-card-body {
    padding: 1.5rem;
}

.room-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.75rem 0;
}

.room-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.room-feature {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    background-color: #f9fafb;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4b5563;
    font-weight: 500;
}

.room-feature i {
    color: #0a2463;
    font-size: 0.9rem;
}

.no-rooms-message {
    text-align: center;
    padding: 3rem 2rem;
    color: #9ca3af;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.no-rooms-message i {
    font-size: 1.2rem;
}

/* Contact Cards - Minimalist Design */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: none;
}

.contact-card:hover {
    background: transparent;
    border-color: transparent;
    transform: none;
    box-shadow: none;
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    background: #f3f4f6;
}

.phone-icon {
    background: #f3f4f6;
}

.email-icon {
    background: #f3f4f6;
}

.website-icon {
    background: #f3f4f6;
}

.contact-icon-wrapper i {
    color: #6b7280;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.contact-value {
    font-size: 0.95rem;
    color: #111827;
    font-weight: 400;
}

.contact-link {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #6b7280;
    text-decoration: none;
}

/* Old Room Cards - Keep for compatibility */
.rooms-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.room-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s;
}

.room-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.room-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.room-info {
    flex: 1;
}

.room-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

.room-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.room-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.room-details span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.room-details i {
    color: #9ca3af;
}

.room-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
}

.room-price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0a2463;
    line-height: 1;
}

.room-price-period {
    font-size: 0.85rem;
    color: #6b7280;
}

.no-rooms {
    text-align: center;
    color: #9ca3af;
    padding: 2rem;
    font-style: italic;
}

/* Contact Info */
.hotel-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 8px;
    font-size: 1rem;
    color: #374151;
}

.contact-item i {
    color: #0a2463;
    font-size: 1.1rem;
}

.contact-item a {
    color: #0a2463;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.detail-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.write-review-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.write-review-btn:hover {
    background-color: #ffffff;
    border-color: #fbbf24;
    color: #f59e0b;
}

.write-review-btn i {
    color: #fbbf24;
}

.hotel-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.loading-reviews,
.no-reviews {
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
    padding: 1rem;
}

.review-item {
    padding: 1rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-weight: 500;
    font-size: 0.9rem;
}

.review-author i {
    color: #9ca3af;
    font-size: 1.2rem;
}

.review-stars {
    color: #fbbf24;
    font-size: 1rem;
}

.review-title {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: #111827;
    font-weight: 600;
}

.review-text {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}

.review-date {
    color: #9ca3af;
    font-size: 0.8rem;
}

/* Review Modal */
.star-rating {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.star-rating i {
    font-size: 2rem;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating i:hover,
.star-rating i.hover {
    color: #fbbf24;
    transform: scale(1.1);
}

.star-rating i.selected {
    color: #fbbf24;
}

.review-form textarea {
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hotel-card {
        flex-direction: column;
        height: auto;
    }

    .hotel-card-image-wrapper {
        width: 100%;
        height: 280px;
    }

    .hotel-card-content {
        padding: 1.5rem;
    }

    /* Detail page responsive */
    .hotel-detail-page {
        padding: 6rem 0 3rem;
    }

    .detail-header-section {
        padding: 2rem 2rem;
    }

    .hotel-detail-main {
        padding: 2rem;
    }

    .detail-hotel-name {
        font-size: 1.75rem;
    }

    .facts-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .detail-title-bar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .detail-rating-badge {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .hotels-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hotels-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .search-box {
        max-width: 100%;
    }

    .sort-controls select {
        width: 100%;
    }

    .hotels-grid {
        gap: 1.5rem;
    }

    .hotel-card-image-wrapper {
        height: 200px;
    }

    .carousel-nav {
        width: 32px;
        height: 32px;
    }

    .carousel-prev {
        left: 0.5rem;
    }

    .carousel-next {
        right: 0.5rem;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    /* Detail page mobile */
    .hotel-detail-page {
        padding: 5rem 0 2rem;
    }

    .detail-header-section {
        padding: 1.5rem;
    }

    .hotel-detail-main {
        padding: 1.5rem;
    }

    .detail-hotel-name {
        font-size: 1.5rem;
    }

    .hotel-facts-section {
        padding: 1.5rem;
    }

    .facts-grid {
        grid-template-columns: 1fr;
    }

    .fact-card {
        padding: 1rem;
    }

    .detail-image-gallery {
        height: 300px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .detail-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .detail-carousel-prev {
        left: 0.75rem;
    }

    .detail-carousel-next {
        right: 0.75rem;
    }
}
