 /* Accommodation Section */
        .accommodation-section {
            padding: 4rem 0;
            background: var(--off-white);
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .accommodation-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(178, 178, 178, 0.1);
        }
        
        .accommodation-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 500px;
        }
        
        /* Left Section - Hotel Image */
        .hotel-image-section {
            position: relative;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hotel-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hotel-placeholder {
            text-align: center;
            color: var(--light-gray);
        }
        
        .hotel-placeholder i {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.6;
        }
        
        .hotel-placeholder p {
            font-size: 1.2rem;
            font-weight: 600;
            opacity: 0.8;
        }
        
        .hotel-info-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(87, 86, 86, 0.9));
            color: white;
            padding: 1.5rem;
        }
        
        .hotel-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }
        
        .hotel-subtitle {
            font-size: 0.85rem;
            opacity: 0.9;
        }
        
        /* Right Section - Details */
        .details-section {
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .details-content {
            flex-grow: 1;
        }
        
        .section-badge {
            display: inline-block;
            background: rgba(204, 54, 52, 0.1);
            color: var(--primary-red);
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .section-title {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-gray);
        }
        
        .hotel-name {
            color: var(--primary-red);
        }
        
        .section-description {
            font-size: 0.95rem;
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        /* Benefits */
        .benefits-list {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: nowrap;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(204, 54, 52, 0.05);
            padding: 0.6rem 1rem;
            border-radius: 12px;
            border: 1px solid rgba(204, 54, 52, 0.1);
            flex: 1;
            min-width: 0;
        }
        
        .benefit-icon {
            width: 30px;
            height: 30px;
            background: var(--primary-red);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: white;
            flex-shrink: 0;
        }
        
        .benefit-text {
            font-weight: 600;
            color: var(--dark-gray);
            font-size: 0.8rem;
            white-space: nowrap;
        }
        
        /* Booking Info */
        .booking-info {
            margin-bottom: 1.5rem;
        }
        
        .info-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(178, 178, 178, 0.1);
        }
        
        .info-row:last-child {
            border-bottom: none;
        }
        
        .info-label {
            font-weight: 600;
            color: var(--dark-gray);
            font-size: 0.9rem;
        }
        
        .info-value {
            font-weight: 700;
            color: var(--dark-gray);
            font-size: 0.9rem;
        }
        
        .promo-code {
            background: var(--primary-red);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-weight: 700;
            font-family: 'Courier New', monospace;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        .btn {
            display: block;
            width: 100%;
            padding: 1rem 2rem;
            background: var(--primary-red);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }
        
        .btn::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;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            background: #b32f2d;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(204, 54, 52, 0.4);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .accommodation-container {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            
            .hotel-image-section {
                min-height: 300px;
            }
            
            .details-section {
                padding: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
            
            .accommodation-section {
                padding: 3rem 0;
            }
            
            .hotel-image-section {
                min-height: 250px;
            }
            
            .details-section {
                padding: 1.5rem;
            }
            
            .benefits-list {
                flex-direction: column;
                gap: 0.8rem;
            }
            
            .benefit-text {
                white-space: normal;
            }
            
            .info-row {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
                padding: 1rem 0;
            }
        }
        
        @media (max-width: 480px) {
            .details-section {
                padding: 1.2rem;
            }
            
            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.85rem;
            }
        }