/* ========================================
   HOTEL ACCOMMODATION - PROFESSIONAL DESIGN
   ======================================== */

:root {
    /* Hotel Color Palette - Blue Theme (Same as Conference) */
    --hotel-primary: #0066cc;
    --hotel-secondary: #00a86b;
    --hotel-accent: #ff6b35;
    --hotel-success: #10d876;
    --hotel-warning: #ffa726;
    --hotel-info: #29b6f6;
    
    /* Hotel Gradients */
    --gradient-hotel: linear-gradient(135deg, #0066cc 0%, #29b6f6 50%, #00a86b 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 102, 204, 0.95) 0%, rgba(0, 168, 107, 0.9) 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 250, 252, 0.9) 100%);
    
    /* Background Colors */
    --bg-hotel: #f8fafc;
    --bg-card: #ffffff;
    --bg-hero: linear-gradient(135deg, #0066cc 0%, #29b6f6 50%, #00a86b 100%);
    
    /* Text Colors */
    --text-hotel: #1a365d;
    --text-hotel-light: #4a5568;
    --text-hotel-muted: #718096;
    
    /* Modern Shadows */
    --shadow-hotel: 0 8px 25px rgba(0, 102, 204, 0.15);
    --shadow-card: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 102, 204, 0.15);
    
    /* Animation Timings */
    --transition-hotel: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease-out;
}

/* ========================================
   HOTEL HERO SECTION - PROFESSIONAL STYLE
   ======================================== */

.hero-hotel-section {
    margin-top: 130px;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-hotel-section.bg-gradient-modern {
    background: var(--gradient-primary);
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
}

.hotel-icon-modern {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.hotel-icon-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.hotel-icon-modern i {
    font-size: 3rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.icon-pulse {
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.hotel-title-modern {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hotel-subtitle-modern {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto;
}

.hotel-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hotel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hotel-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.hotel-badge i {
    font-size: 1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* ========================================
   MAIN CONTENT STYLES
   ======================================== */

.hotel-main {
    background: var(--bg-hotel);
    min-height: 100vh;
    padding: 2rem 0 4rem;
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-hotel);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-hotel);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.section-title i {
    color: var(--hotel-primary);
    font-size: 0.9em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-hotel-light);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   HOTEL CARDS - MODERN DESIGN
   ======================================== */

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.hotels-grid {
    margin-bottom: 5rem;
}

.hotels-grid {
    position: relative;
}

.hotels-grid::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--hotel-primary) 20%, var(--hotel-secondary) 80%, transparent 100%);
    border-radius: 2px;
}

.hotels-grid .row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

.hotel-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.08), 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 102, 204, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: cardFadeIn 0.8s ease-out forwards;
    opacity: 0;
}

/* Staggered animation delays for cascade effect */
.hotel-card:nth-child(1) { animation-delay: 0.1s; }
.hotel-card:nth-child(2) { animation-delay: 0.2s; }
.hotel-card:nth-child(3) { animation-delay: 0.3s; }
.hotel-card:nth-child(4) { animation-delay: 0.4s; }
.hotel-card:nth-child(5) { animation-delay: 0.5s; }
.hotel-card:nth-child(6) { animation-delay: 0.6s; }
.hotel-card:nth-child(7) { animation-delay: 0.7s; }
.hotel-card:nth-child(8) { animation-delay: 0.8s; }

.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
    z-index: 1;
    pointer-events: none;
}

.hotel-card:hover::before {
    left: 100%;
}

.hotel-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: var(--hotel-primary);
    background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
}

.hotel-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hotel-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 102, 204, 0.05) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hotel-card:hover .hotel-image::before {
    opacity: 1;
}

.hotel-image .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) saturate(1.1) contrast(1.05);
}

.hotel-card:hover .card-img {
    transform: scale(1.08) rotate(0.5deg);
    filter: brightness(1.1) saturate(1.2) contrast(1.1);
}

.hotel-rating {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 2px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hotel-rating i {
    color: #ffd700;
    font-size: 0.8rem;
}

.hotel-badge-card {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-hotel);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.hotel-details {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hotel-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 140px;
    position: relative;
}

.hotel-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-hotel);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    height: 2.6rem;
    display: flex;
    align-items: flex-start;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 2px rgba(0, 102, 204, 0.05);
    background: linear-gradient(135deg, var(--text-hotel) 0%, #2d3748 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    overflow: hidden;
}

.hotel-location {
    color: var(--text-hotel-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.4;
    flex: 1;
    font-weight: 500;
    padding: 0.5rem 0;
}

.hotel-distance {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--hotel-primary), var(--hotel-secondary));
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-top: auto;
    margin-bottom: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 102, 204, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 120px;
    height: 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.hotel-distance:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, var(--hotel-secondary), var(--hotel-primary));
    border-color: rgba(255, 255, 255, 0.4);
}

.hotel-distance::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hotel-distance:hover::before {
    left: 100%;
}

.hotel-distance:active {
    transform: translateY(0) scale(0.98);
    transition: transform 0.1s ease;
}

.hotel-distance i {
    font-size: 0.75rem;
    color: white;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.hotel-location i {
    color: var(--hotel-primary);
    font-size: 0.9rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--hotel-primary) 0%, var(--hotel-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0, 102, 204, 0.15));
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: rgba(0, 102, 204, 0.1);
    color: var(--hotel-primary);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.feature i {
    font-size: 0.7rem;
}

.hotel-contact {
    margin-top: auto;
    padding: 1.5rem 1rem 1rem 1rem;
    border-top: 2px solid rgba(0, 102, 204, 0.08);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.02) 0%, rgba(0, 168, 107, 0.02) 100%);
    border-radius: 12px;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -1rem;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    height: 40px;
    min-height: 40px;
}

.contact-item:hover {
    background: rgba(0, 102, 204, 0.04);
    transform: translateX(5px);
    padding-left: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--hotel-primary);
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--hotel-primary) 0%, var(--hotel-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0, 102, 204, 0.2));
}

.contact-item a {
    color: var(--text-hotel-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    word-break: break-word;
    line-height: 1.4;
    font-weight: 600;
    position: relative;
}

.contact-item a:hover {
    color: var(--hotel-primary);
    text-decoration: none;
    font-weight: 700;
    transform: translateX(2px);
}

.contact-item a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--hotel-primary) 0%, var(--hotel-secondary) 100%);
    border-radius: 1px;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--hotel-primary) 0%, var(--hotel-secondary) 100%);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

/* ========================================
   BOOKING INFORMATION SECTION
   ======================================== */

.booking-info {
    margin-bottom: 4rem;
}

.info-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-hotel);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card h3 i {
    color: var(--hotel-primary);
}

.info-card p {
    color: var(--text-hotel-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    color: var(--text-hotel-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-card li::before {
    content: '✓';
    color: var(--hotel-success);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.booking-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-hotel);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.booking-icon i {
    font-size: 2rem;
    color: white;
}

/* ========================================
   CALL TO ACTION SECTION
   ======================================== */

.cta-section {
    background: var(--gradient-hotel);
    border-radius: 25px;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    justify-content: center;
    transition: all var(--transition-hotel);
    border: 2px solid transparent;
    text-decoration: none;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--hotel-primary);
    border-color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-primary:hover {
    background: var(--hotel-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: white;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet Styles */
@media (max-width: 992px) {
    .hero-hotel-section {
        margin-top: 100px;
        min-height: 60vh;
    }
    
    .section-title {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hotel-card {
        margin-bottom: 2rem;
        min-height: 380px;
    }
    
    .hotels-grid .row {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .booking-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .booking-icon i {
        font-size: 1.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-hotel-section {
        margin-top: 80px;
        padding: 3rem 0;
    }
    
    .hotel-icon-modern {
        width: 100px;
        height: 100px;
    }
    
    .hotel-icon-modern i {
        font-size: 2.5rem;
    }
    
    .hotel-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hotel-badge {
        justify-content: center;
        min-width: 200px;
    }
    
    .hotel-main {
        padding: 1.5rem 0 3rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hotel-card {
        margin-bottom: 1.5rem;
        min-height: 360px;
    }
    
    .hotel-image {
        height: 180px;
    }
    
    .hotel-details {
        padding: 1.25rem;
    }
    
    .hotel-name {
        height: 2.2rem;
        font-size: 1.15rem;
    }
    
    .hotel-location {
        flex: 1;
    }
    
    .hotel-distance {
        width: 120px;
        height: 34px;
        font-size: 0.75rem;
    }
    
    .hotel-contact {
        height: 110px;
        padding: 1.25rem 1rem 0.75rem 1rem;
    }
    
    .contact-item {
        height: 38px;
        min-height: 38px;
        margin-bottom: 0.5rem;
    }
    
    .hotel-features {
        gap: 0.25rem;
    }
    
    .feature {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 1rem;
        margin-top: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-hotel-section {
        margin-top: 70px;
        padding: 2.5rem 0;
    }
    
    .hotel-icon-modern {
        width: 90px;
        height: 90px;
        margin-bottom: 1rem;
    }
    
    .hotel-icon-modern i {
        font-size: 2rem;
    }
    
    .hotel-main {
        padding: 1rem 0 2rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        gap: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .hotel-image {
        height: 160px;
    }
    
    .hotel-details {
        padding: 1rem;
    }
    
    .hotel-name {
        font-size: 1.1rem;
        height: 2.2rem;
    }
    
    .hotel-distance {
        width: 100px;
        height: 32px;
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hotel-contact {
        height: 100px;
        padding: 1rem 1rem 0.5rem 1rem;
    }
    
    .contact-item {
        height: 36px;
        min-height: 36px;
        margin-bottom: 0.4rem;
        padding: 0.4rem 0.6rem;
    }
    
    .contact-item a {
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    .hotels-grid .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }
    
    .info-card {
        padding: 1.25rem;
        margin: 0 0.5rem;
    }
    
    .info-card h3 {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .cta-section {
        padding: 2.5rem 0.5rem;
        margin-top: 1.5rem;
        border-radius: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
    }
    
    .hotel-contact {
        height: 95px;
        padding: 0.75rem 0.75rem 0.5rem 0.75rem;
    }
    
    .contact-item {
        height: 34px;
        min-height: 34px;
        margin-bottom: 0.3rem;
        padding: 0.3rem 0.5rem;
    }
    
    .contact-item a {
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .venue-info-bar,
    .modern-navbar-enhanced,
    .hero-hotel-section .hotel-badge,
    .cta-section {
        display: none !important;
    }
    
    .hero-hotel-section {
        margin-top: 0;
        min-height: auto;
        background: white !important;
        color: black !important;
    }
    
    .hero-hotel-section .hotel-title-modern,
    .hero-hotel-section .hotel-subtitle-modern {
        color: black !important;
        background: none !important;
        -webkit-text-fill-color: black !important;
    }
    
    .hotel-card {
        page-break-inside: avoid;
        margin-bottom: 1rem;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .hotel-image {
        height: 150px;
    }
}
