/* ============================================
   HOTEL SECTION MOBILE FIXES
   Fixes hotel section display issues on mobile
   ============================================ */

@media (max-width: 768px) {
    /* Hotel section layout */
    #hotels .hotel-content,
    #hotels.hotel-info-section .hotel-content {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 15px !important;
    }
    
    #hotels .hotel-text,
    #hotels .hotel-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
    
    #hotels .hotel-image {
        order: -1 !important;
        margin-bottom: 20px !important;
    }
    
    #hotels .hotel-image img {
        width: 100% !important;
        max-width: 280px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    /* Hotel highlights grid */
    #hotels .hotel-highlights {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin: 20px 0 !important;
    }
    
    #hotels .hotel-highlights .highlight-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 15px !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    #hotels .hotel-highlights .highlight-item i {
        font-size: 20px !important;
        flex-shrink: 0 !important;
    }
    
    #hotels .hotel-highlights .highlight-item h4 {
        font-size: 16px !important;
        margin: 0 0 5px 0 !important;
    }
    
    #hotels .hotel-highlights .highlight-item p {
        font-size: 14px !important;
        margin: 0 !important;
        line-height: 1.5 !important;
    }
    
    /* Hotel stats */
    #hotels .hotel-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        margin: 20px 0 !important;
        padding-top: 20px !important;
        border-top: 1px solid rgba(0,0,0,0.1) !important;
    }
    
    #hotels .hotel-stats .stat-item {
        text-align: center !important;
        padding: 10px !important;
    }
    
    #hotels .hotel-stats .stat-item h4 {
        font-size: 24px !important;
        margin: 0 0 5px 0 !important;
    }
    
    #hotels .hotel-stats .stat-item p {
        font-size: 12px !important;
        margin: 0 !important;
    }
    
    /* Hotel button */
    #hotels .discover-hotel-btn,
    #hotels button.discover-hotel-btn {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        margin: 20px 0 0 0 !important;
        padding: 14px 20px !important;
        font-size: 16px !important;
        text-align: center !important;
        white-space: normal !important;
        height: auto !important;
        min-height: 50px !important;
    }
    
    /* Hotel text content */
    #hotels .hotel-text h3 {
        font-size: 22px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }
    
    #hotels .hotel-text p {
        font-size: 15px !important;
        line-height: 1.7 !important;
        text-align: justify !important;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    #hotels .hotel-highlights .highlight-item {
        padding: 12px !important;
    }
    
    #hotels .hotel-highlights .highlight-item h4 {
        font-size: 14px !important;
    }
    
    #hotels .hotel-highlights .highlight-item p {
        font-size: 13px !important;
    }
    
    #hotels .hotel-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    #hotels .hotel-stats .stat-item h4 {
        font-size: 20px !important;
    }
    
    #hotels .hotel-image img {
        max-width: 220px !important;
    }
}
