/* --------------------------------------------------------
25.          Room Details Page Custom CSS
-----------------------------------------------------------*/

/* Services Grid */
.services_grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.service_item {
    background: #fff;
    border-radius: 8px;
    padding: 25px 20px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid #3ac4fa;
}

.service_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service_icon {
    width: 60px;
    height: 60px;
    background: #f7c411;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service_icon i {
    font-size: 24px;
    color: #313a45;
}

.service_content h6 {
    color: #313a45;
    font-family: 'Karla', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service_content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.service_content p:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3ac4fa;
    font-weight: bold;
}

/* Booking Button Box */
.booking_button_box {
    background: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 5px solid #3ac4fa;
}

.booking_icon {
    width: 80px;
    height: 80px;
    background: #3ac4fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.booking_icon i {
    font-size: 36px;
    color: #fff;
}

.booking_button_box h4 {
    color: #313a45;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
}

.booking_button_box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.booking_button_box .btn {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
}

.booking_note {
    color: #888;
    font-size: 12px;
    margin-top: 15px;
    font-style: italic;
}

/* Quick Facts */
.quick_facts {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.facts_list {
    margin-top: 20px;
}

.fact_item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.fact_item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.fact_item i {
    width: 40px;
    height: 40px;
    background: #f7c411;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: #313a45;
    font-size: 16px;
}

.fact_content h6 {
    color: #313a45;
    font-family: 'Karla', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.fact_content p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* FAQ Section */
.faq_section {
    margin-top: 20px;
}

.panel-group {
    margin-bottom: 0;
}

.panel {
    border: none;
    border-radius: 4px;
    box-shadow: none;
    margin-bottom: 15px;
    background: #f9f9f9;
}

.panel-default {
    border-color: #e0e0e0;
}

.panel-default > .panel-heading {
    background: #fff;
    border-color: #e0e0e0;
    border-radius: 4px;
    padding: 0;
}

.panel-title {
    font-size: 15px;
    font-weight: 600;
}

.panel-title a {
    display: block;
    padding: 15px 20px;
    color: #313a45;
    text-decoration: none;
    position: relative;
}

.panel-title a:hover,
.panel-title a:focus {
    color: #3ac4fa;
    text-decoration: none;
}

.panel-title a i {
    color: #3ac4fa;
    margin-right: 10px;
}

.panel-title a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #3ac4fa;
    font-size: 16px;
}

.panel-title a.collapsed:after {
    content: '\f105';
}

.panel-body {
    padding: 20px;
    border-top: none !important;
    background: #fff;
    border-radius: 0 0 4px 4px;
}

.panel-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.panel-body p strong {
    color: #313a45;
    display: inline-block;
    min-width: 100px;
}

.panel-body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.panel-body ul li {
    color: #666;
    margin-bottom: 5px;
    line-height: 1.5;
}

.panel-body ul li strong {
    color: #313a45;
}

/* Overall Rating */
.overall_rating {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
}

.rating_stars {
    margin-bottom: 10px;
}

.rating_stars i {
    color: #f7c411;
    font-size: 18px;
    margin: 0 2px;
}

.rating_score {
    color: #313a45;
    font-weight: 700;
    font-size: 15px;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .service_item {
        margin-bottom: 20px;
    }
    
    .booking_button_box {
        margin-bottom: 30px;
    }
    
    .quick_facts {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .service_item {
        padding: 20px 15px;
    }
    
    .service_icon {
        width: 50px;
        height: 50px;
    }
    
    .service_icon i {
        font-size: 20px;
    }
    
    .booking_icon {
        width: 70px;
        height: 70px;
    }
    
    .booking_icon i {
        font-size: 30px;
    }
    
    .booking_button_box h4 {
        font-size: 20px;
    }
    
    .panel-title a {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .panel-body {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .services_grid > div {
        width: 100%;
    }
    
    .fact_item i {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .panel-title a {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .panel-title a:after {
        right: 15px;
        font-size: 14px;
    }
}
/* --------------------------------------------------------
          End Room Details Page Custom CSS
-----------------------------------------------------------*/