/* Custom CSS for Maa Baglamukhi Resort */

/* Root Variables */
:root {
    --primary-color: #9f2a2d;
    --secondary-color: #000000;
    --accent-color: #9f2a2d;
    --dark-color: #000000;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --warm-bg: #f5f5dc;
    --gradient-primary: linear-gradient(135deg, #dc3545 0%, #9f2a2d 100%);
    --gradient-secondary: linear-gradient(135deg, #000000 0%, #333333 100%);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    background: url('/assets/bg.jpg') center center fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    margin-bottom: 1rem;
}

.container-fluid {
    max-width: 90%;
}

.btn {
    border-radius: 0;
    padding: 8px 24px !important;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.lead {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    max-width: 60%;
    margin: 0 auto;
}

/* Navigation */
.custom-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-top: 2px solid #9f2a2d;
    border-bottom: 2px solid #9f2a2d;
    top: 110px;
    height: 56px;
    padding: 0;
    background: #9f2a2d;
    /* background: rgba(255, 255, 255, 0.98); */
}

.custom-navbar.scrolled {
    background: #9f2a2d;
    top: 0;
}

.custom-navbar.scrolled-home {
    background: #9f2a2d;
    top: 0;
}

.custom-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.brand-name {
    display: flex;
    align-items: center;
    color: var(--secondary-color) !important;
    text-decoration: none;
    flex: 1;
}

.brand-text {
    font-size: 1.2rem;
    color: var(--light-color);
}

.navbar-logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -35px);
    z-index: 10;
    background: #fff;
    padding: 12px;
    border: 2px solid #9f2a2d;
    transition: all 0.3s ease;
}

.custom-navbar.scrolled-home .navbar-logo {
    transform: translate(-50%, 30px) scale(0.5);
}

.custom-navbar.scrolled .navbar-logo {
    transform: translate(-50%, 30px) scale(0.5);
}

.navbar-logo img {
    height: 150px;
    width: auto;
}

.navbar-logo a {
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.navbar-logo a:hover {
    transform: scale(1.05);
}

.navbar-collapse {
    flex: 1;
    justify-content: flex-end;
}

.navbar-nav .nav-link {
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
    opacity: 0.7;
    color: #fff;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    opacity: 1;
    color: #fff;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--light-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: #ffffff80;
    display: flex;
    align-items: center;
    padding: 150px 0;
}

.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons .btn {
    margin: 0.5rem 0.5rem 0.5rem 0;
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

/* Image Gallery */
.image-gallery {
    background: white;
}

.image-gallery .gallery-item {
    margin-bottom: 2rem;
}

.image-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
}

/* About Section */
.about-section,
.cta-section {
    padding: 6rem 0;
    background: var(--warm-bg);
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Menu Section */
.menu-section {
    background: white;
    position: relative;
    z-index: 1;
}

.menu-items {
    padding: 0 1rem;
}

.menu-item {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;
}

.menu-item p {
    color: #666;
    margin: 0;
}

/* Enhanced Price Styling */
.menu-item .price {
    background: var(--bs-warning);
    color: #000000;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 1.1rem;
    position: absolute;
    overflow: hidden;
    min-width: 80px;
    text-align: center;
    letter-spacing: 0.5px;
    right: 4px;
    bottom: 4px;
}

.menu-item:hover .price::before {
    left: 100%;
}

.menu-item .price-text {
    position: relative;
    z-index: 1;
}

/* Menu Item Layout Improvements */
.menu-item .item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 12px;
}

.menu-item .item-name {
    flex: 1;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.3;
}

.menu-item .item-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 8px;
    font-style: italic;
}

/* Category Badge Styling */
.menu-item .category-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
    display: inline-block;
}

/* Group Section Styling */
.group-section {
    margin-bottom: 3rem;
}

.group-title {
    text-align: center;
    position: relative;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    display: block;
    padding: 8px 16px;
    line-height: 40px;
}

.group-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.group-header {
    text-align: center;
    position: relative;
}

.group-image {
    margin: 0 auto;
    display: block;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Filter Button Improvements */
.filter-btn {
    border-radius: 25px !important;
    padding: 8px 20px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 4px;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.filter-btn.active {
    background: var(--gradient-primary) !important;
    border-color: transparent !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Additional Price Enhancements */
.menu-item .price {
    transition: all 0.3s ease;
}

.menu-item:hover .price {
    transform: scale(1.05);
}

/* Special styling for items without prices */
.menu-item .no-price {
    background: #6c757d;
    color: white;
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Enhanced card shadows and borders */
.menu-item {
    border: 2px solid transparent !important;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #dc3545, #9f2a2d) border-box;
}

.menu-item:hover {
    border: 2px solid var(--primary-color) !important;
}

/* Food Category Cards Enhancement */
.food-category-card {
    transition: all 0.3s ease;
    padding: 2rem 1rem;
    background: white;
}

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

.food-category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.food-category-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.features-card {
    transform: translateX(-50px);
}


/* Order Online Section */
.order-online-section {
    background: var(--primary-color);
    color: white;
}

.order-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.order-description {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-content {
    padding-right: 2rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 30px;
}

.about-image img {
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Food Categories Section */
.food-section {
    padding: 80px 0;
    color: var(--dark-color);
    background: white;
}

.food-category {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.food-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.food-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.food-category:hover .food-icon {
    transform: scale(1.1);
}

.food-icon i {
    font-size: 2rem;
    color: white;
}

.food-category h5 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.food-category p {
    color: var(--dark-color);
}

/* Amenities Section */
.amenities-section {
    padding: 80px 0;
    color: var(--dark-color);
    background: white;
}

.amenity-card {
    text-align: center;
    padding: 2rem;
    background: white;
    /* box-shadow: var(--shadow-light); */
    transition: all 0.3s ease;
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.amenity-icon {
    /* width: 80px;
    height: 80px;
    background: var(--gradient-secondary); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
    font-size: 3rem;
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.1);
}

.amenity-card h5 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.amenity-card p {
    color: var(--dark-color);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    color: var(--dark-color);
    background: white;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* New: inner gallery card wrapper and badge */
.gallery-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
}

.category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 8px;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    z-index: 2;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--light-color);
}

.contact-form {
    background: white;
    padding: 3rem;
    /* box-shadow: var(--shadow-light); */
}

.contact-form:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 0;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.contact-info {
    text-align: center;
    padding: 2rem;
    background: white;
    /* box-shadow: var(--shadow-light); */
    height: 100%;
}

.contact-info:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.booking-links .btn {
    padding: 12px 25px;
    transition: all 0.3s ease;
}

.booking-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background: #ffffff78 !important;
    color: var(--dark-color);
    border-top: 1px solid #eee;
}

.footer h5 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.footer p {
    color: #666;
    margin-bottom: 0.5rem;
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.booking-buttons .btn {
    margin: 0.25rem;
    padding: 8px 20px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
    line-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 24px !important;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Quick Links Section */
.quick-links {
    background: var(--light-color);
    position: relative;
    z-index: 2;
}

.quick-link-card {
    padding: 2rem;
    background: white;
    transition: all 0.3s ease;
    height: 100%;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.quick-link-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-link-card h5 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.quick-link-card p {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Page Header Styles */
.page-header {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); */
    background: var(--primary-color) url(/assets/bg-2.jpg) center center scroll;
    color: white;
    background-blend-mode: multiply;
    background-size: cover;
}

.page-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Filter Section Styles */
.filter-section {
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.filter-btn {
    transition: all 0.3s ease;
    border-radius: 0 !important;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Additional Page Styles */
.value-card,
.service-card,
.team-card,
.category-card, 
.booking-card,
.hours-card,
.common-area-card,
.tour-card {
    padding: 2rem;
    background: white;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover,
.service-card:hover,
.team-card:hover,
.category-card:hover,
.booking-card:hover,
.hours-card:hover,
.common-area-card:hover,
.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon,
.service-icon,
.category-icon,
.booking-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-image img,
.common-area-card img,
.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    overflow: hidden;
}

.location-features,
.dining-features,
.amenity-list,
.hours-list {
    list-style: none;
    padding: 0;
}

.location-features li,
.dining-features li,
.amenity-list li,
.hours-list li {
    padding: 0.5rem 0;
    color: var(--dark-color);
}

.location-image,
.dining-image,
.room-image {
    overflow: hidden;
}

.food-category-card {
    padding: 2rem;
    background: white;
    transition: all 0.3s ease;
    height: 100%;
}

.food-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.food-category-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-container {
    overflow: hidden;
    padding: 2rem;
    box-shadow: var(--shadow-light);
}

/* Gallery Filter Styles */
.gallery-filter {
    background: var(--light-color);
}

.filter-buttons .btn {
    margin: 0.25rem;
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Contact Form Enhancements */
.form-label {
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 0.75rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(159, 42, 45, 0.25);
}

/* Responsive Design */
@media (max-width: 992px) {

    .features-card {
        transform: none;
    }

    .custom-navbar {
        top: 0;
        height: 90px;
    }

    .custom-navbar.scrolled-home .navbar-logo {
        transform: none;
    }

    .custom-navbar.scrolled .navbar-logo {
        transform: none;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .food-category,
    .amenity-card {
        margin-bottom: 2rem;
    }

    /* Mobile Navigation */
    .custom-navbar .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .brand-name {
        display: none;
    }

    .navbar-logo {
        display: block;
        position: static;
        transform: none;
        order: 1;
        margin-top: 8px;
    }

    .navbar-toggler {
        order: 2;
        margin-left: auto;
        border: none;
        padding: 4px 8px;
        filter: invert(1);
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1;
        transition: all 0.3s ease;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
    }

    .navbar-collapse.show {
        transform: translateY(6px);
        opacity: 1;
        visibility: visible;
        height: calc(100vh - 82px);
        background: var(--primary-color);
        overflow-y: auto;
        top: 80px;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }

    .navbar-nav .nav-item {
        width: 100%;
        text-align: left;
        margin-bottom: 0;
        font-size: 1.2rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #ffffff3e;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .navbar-close {
        order: 2;
        margin-left: auto;
        border: none;
        padding: 4px 8px !important;
        color: #fff;
        font-size: 30px;
    }

    .navbar-close:focus {
        box-shadow: none;
    }

    .navbar-close:hover {
        color: var(--primary-color);
    }

    .menu-item .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .menu-item .price {
        align-self: flex-end;
        font-size: 1rem;
        padding: 6px 12px;
        min-width: 70px;
    }
    
    .group-title {
        font-size: 1.8rem;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .food-category-card {
        padding: 1.5rem 1rem;
    }
    
    .food-category-icon {
        font-size: 2rem;
    }

    .menu-item .price {
        font-size: 0.9rem;
        padding: 5px 10px;
        min-width: 60px;
    }
    
    .menu-item .item-name {
        font-size: 1rem;
    }
    
    .group-title {
        font-size: 1.5rem;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    /* Ensure brand name remains hidden but logo stays visible */
    .brand-name {
        display: none !important;
    }

    .navbar-logo {
        display: block !important;
    }

    .navbar-logo img {
        height: 60px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Services Highlight Section */
.services-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-item {
    padding: 1.5rem;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    background: white;
    height: 100%;
    display: flex;
    align-items: flex-start;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.home-service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
    font-size: 3rem;
}

/* Room Tariff Section */
.room-tariff {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.tariff-cards-container {
    position: relative;
}

.tariff-card {
    background: white;
    border: 2px solid #e9ecef;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tariff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.tariff-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    transform: scale(1.05);
}

.tariff-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tariff-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tariff-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.tariff-card:hover .tariff-icon {
    transform: scale(1.1);
}

.tariff-icon i {
    font-size: 2rem;
    color: white;
}

.tariff-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tariff-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

.tariff-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(159, 42, 45, 0.05);
}

.currency {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0.2rem;
}

.gst {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.tariff-features {
    margin-bottom: 2rem;
}

.tariff-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tariff-features li {
    padding: 0.5rem 0;
    color: #333;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.tariff-features li i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.tariff-footer {
    text-align: center;
}

.btn-tariff-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-tariff-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(159, 42, 45, 0.3);
    color: white;
}

.tariff-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.tariff-item {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.tariff-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Custom Animations to replace Animate.css */
.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.section-title,
.food-category,
.amenity-card,
.gallery-item,
.contact-form,
.contact-info {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.pulse-effect {
    animation: pulse 1s ease-in-out;
}

.bounce-effect {
    animation: bounce 0.6s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}