/* styles.css - Complete CSS for Shree Sammed Shikhar Digamber Jain Bispanthi Kothi Website */

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #F4A460;
    --light-color: #FFF8DC;
    --dark-color: #5D4037;
}

/* ========== GLOBAL STYLES ========== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
}

/* ===================== Scroll to Top Start ================================= */
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    color: #fff;
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    z-index: 5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer;
    -webkit-transform: scale(0);
    transform: scale(0);
    background-color: #ab8b63;
    text-decoration: none;
}

.scroll-top:hover {
    color: #fff;
    background-color: #ab8b63;
}

.scroll-top.show {
    -webkit-transform: scale(1);
    transform: scale(1);
}


.selection-widget.widget-hide {
    transform: scale(.3);
    opacity: 0;
    visibility: hidden;

}

.selection-widget {
    position: fixed;
    right: 30px;
    bottom: 150px;
    background: white;
    border-radius: 8px;
    box-shadow: 1px 1px 1px 1px hsl(var(--base));
    z-index: 5;
    transform: scale(1);
    transition: .2s linear;
    visibility: visible;
    opacity: 1;
}

.selection-widget .link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.selection-widget .link small,
.selection-widget .link .amount {
    color: hsl(var(--black));
}

.selection-widget .link small {
    line-height: 1;
}
/* ===================== Scroll to Top End ================================= */

/* ========== HEADER STYLES ========== */

/* Top Header */
.top-header {
    background-color: var(--dark-color);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-header a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.top-header a:hover {
    color: white;
}

.contact-btn {
    background-color: var(--accent-color);
    color: var(--dark-color) !important;
    border: none;
    padding: 5px 15px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s, color 0.3s;
}

.contact-btn:hover {
    background-color: white;
    color: var(--dark-color);
}

/* Main Navigation */
.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.navbar {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* ========== HOME PAGE STYLES ========== */

/* Slider/Carousel */
.carousel-item {
    height: 500px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    background: rgba(139, 69, 19, 0.7);
    border-radius: 10px;
    padding: 20px;
    bottom: 50px;
    max-width: 80%;
    margin: 0 auto;
}

.carousel-caption h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.carousel-caption p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Booking Form */
.booking-section {
    background-color: var(--light-color);
    padding: 40px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.booking-form .form-control {
    border-radius: 5px;
    border: 1px solid var(--accent-color);
    padding: 10px 15px;
    font-size: 0.95rem;
}

.booking-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.booking-form .btn-booking {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s;
    width: 100%;
}

.booking-form .btn-booking:hover {
    background-color: var(--secondary-color);
}

/* Common Section Styles */
.section-title {
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Feature Boxes */
.feature-box {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

/* Room Cards */
.room-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    border: none;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.room-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.room-card .card-body {
    padding: 20px;
}

.room-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.room-card .card-text {
    color: #666;
    margin-bottom: 15px;
}

.room-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Gallery */
.gallery-img {
    border-radius: 8px;
    transition: transform 0.3s;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.gallery-img:hover {
    transform: scale(1.03);
}

/* ========== ABOUT PAGE STYLES ========== */

/* Breadcrumb */
.breadcrumb-section {
    background-color: var(--light-color);
    padding: 20px 0;
    margin-top: 20px;
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--accent-color);
}

.breadcrumb-item a {
    color: var(--dark-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* About Hero */
.about-hero {
    background: linear-gradient(rgba(91, 64, 55, 0.8), rgba(91, 64, 55, 0.8)), url('https://images.unsplash.com/photo-1584132967334-10e028bd69f7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero .lead {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--accent-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: white;
    border: 4px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    right: -13px;
}

.right::after {
    left: -13px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Team Cards */
.team-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    border: none;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.team-card img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.team-card .card-body {
    padding: 20px;
    text-align: center;
}

.team-card .card-title {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.team-card .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Call to Action */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section .btn-light {
    background-color: white;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s, color 0.3s;
}

.cta-section .btn-light:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

/* ========== FOOTER STYLES ========== */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer p {
    color: #ddd;
    line-height: 1.8;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

.copyright p {
    margin-bottom: 5px;
}

/* ========== FORM STYLES ========== */
.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(244, 164, 96, 0.25);
    outline: none;
}

.form-select {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(244, 164, 96, 0.25);
    outline: none;
}

/* ========== UTILITY CLASSES ========== */
.bg-light-color {
    background-color: var(--light-color) !important;
}

.text-primary-color {
    color: var(--primary-color) !important;
}

.text-accent-color {
    color: var(--accent-color) !important;
}

.btn-primary-color {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary-color:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
    /* Header */
    .top-header .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .top-header .ms-auto {
        margin-left: 0 !important;
        margin-top: 5px;
    }
    
    /* Slider */
    .carousel-item {
        height: 350px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .booking-section {
        margin-top: 0;
        border-radius: 0;
    }
    
    /* About Page */
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 18px;
    }
    
    .right {
        left: 0%;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero .lead {
        font-size: 1.1rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Footer */
    .footer .row > div {
        margin-bottom: 30px;
    }
    
    .footer h5 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .about-hero {
        padding: 60px 0;
    }
    
    .carousel-caption {
        padding: 10px;
        bottom: 20px;
    }
    
    .booking-form .row {
        margin-bottom: 10px;
    }
}

/* Print Styles */
@media print {
    .top-header,
    .navbar,
    .booking-section,
    .footer {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}




/* Contact Page Specific Styles */
        .contact-hero {
            background: linear-gradient(rgba(91, 64, 55, 0.85), rgba(91, 64, 55, 0.85)), url('https://images.unsplash.com/photo-1513475382585-d06e58bcb0e0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1170&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .contact-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .contact-hero .lead {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .contact-info-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s;
            border-top: 4px solid var(--primary-color);
        }
        
        .contact-info-card:hover {
            transform: translateY(-5px);
        }
        
        .contact-icon {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 20px;
            display: block;
        }
        
        .contact-details h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .contact-details p {
            margin-bottom: 10px;
            color: #555;
        }
        
        .contact-details a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-details a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .contact-form-wrapper {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-top: 4px solid var(--accent-color);
        }
        
        .contact-form-wrapper h3 {
            color: var(--primary-color);
            margin-bottom: 25px;
            text-align: center;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 8px;
        }
        
        .form-control, .form-select {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 12px 15px;
            transition: all 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem rgba(244, 164, 96, 0.25);
        }
        
        .btn-submit {
            background-color: var(--primary-color);
            color: white;
            padding: 12px 40px;
            border-radius: 5px;
            font-weight: 600;
            border: none;
            transition: background-color 0.3s;
            width: 100%;
            font-size: 1.1rem;
        }
        
        .btn-submit:hover {
            background-color: var(--secondary-color);
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 400px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .business-hours {
            background: var(--light-color);
            padding: 30px;
            border-radius: 10px;
        }
        
        .business-hours h4 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .hours-list {
            list-style: none;
            padding: 0;
        }
        
        .hours-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
        }
        
        .hours-list li:last-child {
            border-bottom: none;
        }
        
        .hours-list .day {
            font-weight: 600;
            color: var(--dark-color);
        }
        
        .hours-list .time {
            color: var(--secondary-color);
            font-weight: 500;
        }
        
        
        
        .social-contact {
            margin-top: 40px;
            text-align: center;
        }
        
        .social-contact h4 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .social-icons-large a {
            display: inline-block;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            margin: 0 10px;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .social-icons-large a:hover {
            background-color: var(--accent-color);
            color: var(--dark-color);
            transform: translateY(-5px);
        }
        
        /* Responsive Styles for Contact Page */
        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2rem;
            }
            
            .contact-hero .lead {
                font-size: 1.1rem;
            }
            
            .contact-form-wrapper {
                padding: 25px;
            }
            
            .contact-info-card {
                margin-bottom: 30px;
            }
            
            .business-hours {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .contact-hero {
                padding: 60px 0;
            }
            
            .contact-form-wrapper {
                padding: 20px;
            }
            
            .social-icons-large a {
                width: 45px;
                height: 45px;
                line-height: 45px;
                margin: 0 5px;
            }
        }
        
        
        
         /* Booking Page Specific Styles */
        .booking-hero {
            background: linear-gradient(rgba(91, 64, 55, 0.85), rgba(91, 64, 55, 0.85)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1170&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .booking-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .booking-hero .lead {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Filter Panel */
        .filter-panel {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            border-top: 4px solid var(--primary-color);
        }
        
        .filter-panel h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .filter-group {
            margin-bottom: 20px;
        }
        
        .filter-group label {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 8px;
            display: block;
        }
        
        .filter-slider {
            width: 100%;
            margin: 15px 0;
        }
        
        .price-range-display {
            display: flex;
            justify-content: space-between;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        /* Room Cards Enhanced */
        .room-card-booking {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
            margin-bottom: 30px;
            border: none;
            height: 100%;
        }
        
        .room-card-booking:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .room-card-booking img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .room-card-booking .card-body {
            padding: 25px;
        }
        
        .room-type-badge {
            background-color: var(--accent-color);
            color: var(--dark-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .room-features {
            list-style: none;
            padding: 0;
            margin: 15px 0;
        }
        
        .room-features li {
            padding: 5px 0;
            color: #666;
            font-size: 0.9rem;
        }
        
        .room-features li i {
            color: var(--primary-color);
            margin-right: 8px;
            width: 20px;
        }
        
        .room-price-booking {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.5rem;
            margin: 15px 0;
        }
        
        .room-price-booking small {
            font-size: 0.9rem;
            color: #777;
            font-weight: normal;
        }
        
        .availability-badge {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .available {
            background-color: #d4edda;
            color: #155724;
        }
        
        .limited {
            background-color: #fff3cd;
            color: #856404;
        }
        
        /* Booking Modal */
        .modal-header {
            background-color: var(--primary-color);
            color: white;
            border-bottom: none;
        }
        
        .modal-header .btn-close {
            filter: invert(1);
        }
        
        .modal-content {
            border-radius: 10px;
            border: none;
        }
        
        /* Steps Navigation */
        .booking-steps {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
        }
        
        .booking-steps::before {
            content: '';
            position: absolute;
            top: 25px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #eee;
            z-index: 1;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background-color: #eee;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: #777;
            margin: 0 auto 10px;
            border: 3px solid white;
        }
        
        .step.active .step-number {
            background-color: var(--primary-color);
            color: white;
        }
        
        .step.completed .step-number {
            background-color: var(--accent-color);
            color: var(--dark-color);
        }
        
        .step-label {
            font-size: 0.9rem;
            color: #777;
            font-weight: 500;
        }
        
        .step.active .step-label {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* Room Comparison */
        .comparison-table {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-top: 40px;
        }
        
        .comparison-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            text-align: center;
        }
        
        .comparison-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        /* Loading Animation */
        .loading-spinner {
            display: none;
            text-align: center;
            padding: 50px;
        }
        
        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* No Results */
        .no-results {
            text-align: center;
            padding: 60px 20px;
            display: none;
        }
        
        .no-results i {
            font-size: 60px;
            color: #ddd;
            margin-bottom: 20px;
        }
        
        /* Responsive Styles for Booking Page */
        @media (max-width: 768px) {
            .booking-hero h1 {
                font-size: 2rem;
            }
            
            .booking-hero .lead {
                font-size: 1.1rem;
            }
            
            .booking-steps {
                flex-wrap: wrap;
            }
            
            .step {
                flex: 0 0 33.333%;
                margin-bottom: 20px;
            }
            
            .step-number {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }
            
            .filter-panel {
                padding: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .booking-hero {
                padding: 60px 0;
            }
            
            .step {
                flex: 0 0 100%;
            }
            
            .room-card-booking .card-body {
                padding: 20px;
            }
        }
        
        /* Custom Range Slider */
        input[type="range"] {
            -webkit-appearance: none;
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: #ddd;
            outline: none;
        }
        
        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary-color);
            cursor: pointer;
        }
        
        input[type="range"]::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary-color);
            cursor: pointer;
            border: none;
        }
        
        /* Toggle Switch */
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }
        
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .toggle-slider {
            background-color: var(--primary-color);
        }
        
        input:checked + .toggle-slider:before {
            transform: translateX(30px);
        }
        
        /* Guest Counter */
        .guest-counter {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
        }
        
        .counter-btn {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            border: none;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .counter-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
        }
        
        .counter-value {
            font-size: 1.2rem;
            font-weight: 600;
            min-width: 40px;
            text-align: center;
        }