/* Modern Room Details Styling */
.room-details-container {
    padding: 60px 0;
    background: #fff;
    float: left;
    width: 100%;
    box-sizing: border-box;
}

.room-details-container * {
    box-sizing: border-box;
}

.room-main-content {
    margin-bottom: 40px;
}

.room-title-area {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.room-title-area h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Arimo', sans-serif;
}

.room-title-area span {
    color: #fba919;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
}

.room-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.amenity-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.amenity-card:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateY(-2px);
    border-color: #fba919;
}

.amenity-card i {
    font-size: 20px;
    color: #fba919;
    margin-right: 15px;
    width: 24px;
    text-align: center;
}

.amenity-card span {
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

.room-sidebar {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.price-box {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.price-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.room-price {
    font-size: 36px;
    font-weight: 700;
    color: #fba919;
}

.room-price span {
    font-size: 16px;
    color: #888;
    font-weight: 400;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    font-size: 15px;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list strong {
    color: #333;
    font-weight: 600;
}

.specs-list span {
    color: #666;
}

.btn-booking {
    display: block;
    width: 100%;
    background: #fba919;
    color: #fff !important;
    text-align: center;
    padding: 15px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-booking:hover {
    background: #333;
    color: #fff !important;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .room-sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }
    .room-title-area h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* Tariff Table Styling */
.tariff-container {
    padding: 60px 0;
    float: left;
    width: 100%;
    background: #f9f9f9;
}

.tariff-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    padding: 40px;
    margin-bottom: 40px;
    overflow-x: auto;
}

.tariff-card h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #fba919;
    display: inline-block;
    font-weight: 700;
}

.modern-tariff-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    min-width: 600px;
}

.modern-tariff-table th {
    background: #fba919;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    padding: 18px 15px;
    text-align: left;
}

.modern-tariff-table td {
    padding: 18px 15px;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 15px;
}

.modern-tariff-table tr:last-child td {
    border-bottom: none;
}

.modern-tariff-table tr:hover td {
    background: #fffcf5;
}

.modern-tariff-table tr.active1 td {
    background: #fff9ef;
}

.modern-tariff-table .category-name {
    font-weight: 700;
    color: #333;
}

.modern-tariff-table .price-val {
    font-weight: 700;
    color: #fba919;
}

.tariff-footer-link {
    display: inline-block;
    background: #333;
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tariff-footer-link:hover {
    background: #fba919;
    color: #fff !important;
    transform: translateY(-2px);
}
