:root {
    --primary-color: rgb(44, 76, 80);
    --secondary-color: #19beb5;
    --accent-color: #e74c3c;
}

.header-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    margin-bottom: 40px;
}

.accommodation-section {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
}

.hotel-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    margin-bottom: 30px;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hotel-img-container {
    height: 200px;
    overflow: hidden;
}

.hotel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-img {
    transform: scale(1.05);
}

.hotel-body {
    padding: 20px;
}

.hotel-name {
    color: #012251;
    font-weight: 700;
    margin-bottom: 10px;
}

.hotel-rating {
    color: #FFC107;
    margin-bottom: 10px;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    margin-bottom: 15px;
}

.hotel-price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #555;
}

.btn-reserve {
    background-color: #5AF2FF;
    color: #012251;
    border: 1px solid #012251;
    width: 100%;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    background-color: #012251;
    color: #5AF2FF;
    border-color: #5AF2FF;
}

.section-title {
    color: #012251;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.info-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-color);
}

.info-box h4 {
    color: #012251;
    margin-bottom: 15px;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.transport-option {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.transport-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    min-width: 30px;
}

.partner-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

@media (max-width: 768px) {
    .hotel-img-container {
        height: 150px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}