* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    } 
    
    :root {
        --primary-color: #644222;
        --secondary-color: #be9874;
        --input-border-color: #d7cfc8;
        --primary-color-hover: #2e1913;
        --btn-text-color-hover: #101010;
        --heading-font: 'Jost', sans-serif;
        --primary-font: 'Roboto', sans-serif;
        --text-light: #ffffff;
        --text-dark: #333333;
        --text-muted: #666666;
        --bg-light: #f9f5f0;
        --bg-lighter: #ffffff;
        --shadow-color: rgba(100, 66, 34, 0.1);
        --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    body {
        font-family: var(--primary-font);
        margin: 0;
        padding: 0;
        color: var(--text-dark);
        background-color: var(--bg-light);
        line-height: 1.6;
        overflow-x: hidden !important;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: var(--heading-font);
        font-weight: 600;
    }

    a {
        text-decoration: none;
        transition: var(--transition);
    }
    
    /* Navbar Styles */
    .navbar {
        transition: all 0.5s ease;
        padding: 15px 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 99999;
        background-color: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    }
    
    .navbar.scrolled {
        background-color: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }
    
    .logo img {
       border-radius: 50%;
    transition: transform 0.3s ease;
    width: 60px;
    height: 60px;
    max-height: 80px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    max-width: 80px;

    }
    
    .logo img:hover {
        transform: scale(1.1);
    }
    
    .book_btn-wrapper {
        position: relative;
        display: inline-block;
    }
    
    .book_btn {
        position: relative;
        border-radius: 30px;
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 10px 25px;
        font-weight: 600;
        overflow: hidden;
        z-index: 1;
        transition: var(--transition);
        box-shadow: 0 4px 15px var(--shadow-color);
        font-family: var(--heading-font);
    }
    
    .book_btn:hover {
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(100, 66, 34, 0.3);
    }
    
    .book_btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background-color: var(--primary-color-hover);
        transition: all 0.4s cubic-bezier(0.65, 0, 0.076, 1);
        z-index: -1;
    }
    
    .book_btn:hover::before {
        width: 100%;
    }
    
    .book_btn span {
        display: inline-block;
        transition: transform 0.4s cubic-bezier(0.65, 0, 0.076, 1);
    }
    
    .book_btn:hover span {
        transform: translateX(5px);
    }
    
    .btn-gif {
        position: absolute;
        top: 50%;
        right: -40px;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .book_btn:hover + .btn-gif {
        opacity: 1;
        right: -50px;
    }
    
    .nav-item {
        position: relative;
        margin: 0 10px;
    }
    
    .nav-link {
        color: var(--text-dark) !important;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 8px 12px !important;
        font-family: var(--heading-font);
    }
    
    .nav-link:hover {
        color: var(--primary-color) !important;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 5px;
        left: 12px;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: calc(100% - 24px);
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.2s ease;
    }
    
    .dropdown-menu {
        border: none;
        border-radius: 10px;
        box-shadow: 0 5px 15px var(--shadow-color);
        padding: 10px 0;
        margin-top: 10px;
        display: none;
        background-color: var(--bg-lighter);
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(5px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .dropdown-item {
        padding: 8px 20px;
        transition: all 0.2s ease;
        position: relative;
        color: var(--text-dark);
    }
    
    .dropdown-item:hover {
        background-color: rgba(190, 152, 116, 0.1);
        color: var(--primary-color);
    }
    .dropdown-item::before {
        content: '→';
        margin-right: 10px;
        opacity: 0;
        transition: all 0.3s ease;
        color: var(--primary-color);
    }
    .dropdown-item:hover::before {
        opacity: 1;
        margin-right: 15px;
    }
    .dropdown-toggle::after {
        display: none !important;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        outline: none !important;
        box-shadow: none !important;
        position: relative;
        width: 40px;
        height: 40px;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler-icon, 
    .navbar-toggler-close {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 2px;
        background-color: var(--primary-color);
        display: block;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after,
    .navbar-toggler-close::before,
    .navbar-toggler-close::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background-color: inherit;
        left: 0;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler-icon::before {
        top: -8px;
    }
    
    .navbar-toggler-icon::after {
        top: 8px;
    }
    
    .navbar-toggler-close::before {
        transform: rotate(45deg);
    }
    
    .navbar-toggler-close::after {
        transform: rotate(-45deg);
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        opacity: 0;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-close {
        opacity: 1;
    }
    
    .navbar-toggler[aria-expanded="false"] .navbar-toggler-close {
        opacity: 0;
    }
    
    @media (max-width: 991.98px) {
        .dropdown:hover .dropdown-menu {
            display: none;
        }
        
        .dropdown-menu.show {
            display: block !important;
            animation: fadeIn 0.2s ease;
        }
        
        .navbar-collapse {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--bg-lighter);
            padding: 80px 30px 30px;
            box-shadow: none;
            margin-top: 0;
            transform: translateX(-100%);
            transition: transform 0.25s ease-out;
            z-index: 999;
            overflow-y: auto;
            will-change: transform;
        }
        
        .navbar-collapse.show {
            transform: translateX(0);
        }
        
        .nav-link {
            color: var(--text-dark) !important;
            text-align: center;
            padding: 15px 0 !important;
            font-size: 1.2rem;
        }
        
        .nav-link::after {
            left: 50%;
            transform: translateX(-50%);
            bottom: 10px;
        }
        
        .nav-link:hover::after {
            width: 40%;
        }
        
        .nav-item {
            margin: 10px 0;
        }
        
        .dropdown-menu {
            background: transparent;
            box-shadow: none;
            text-align: center;
            position: static !important;
            transform: none !important;
            float: none;
            width: 100%;
            border: none;
            margin-top: 0;
        }
        
        .dropdown-item {
            padding: 10px 0;
            font-size: 1.1rem;
        }
        
        .dropdown-item::before {
            display: none;
        }
        
        .book_btn {
            margin: 30px auto 0;
            display: block;
            max-width: 200px;
        }
        
        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            color: var(--primary-color);
            background: none;
            border: none;
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        
        .mobile-menu-close:hover {
            transform: rotate(90deg);
        }
        
        .btn-gif {
            display: none;
        }
        
        .dropdown-toggle {
            transition: all 0.2s ease;
        }
        
        .dropdown-toggle[aria-expanded="true"] {
            color: var(--primary-color) !important;
        }
    }

    /* SLIDER SECTION */
    .resort-slider-container {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        background-color: var(--bg-light);
    }

    /* Gradient overlay for better text visibility */
    .resort-slider-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(           
             to bottom,            
              rgba(0,0,0,0.6) 0%,            
               rgba(0,0,0,0.3) 20%,           
                rgba(0,0,0,0.1) 50%,          
                  rgba(0,0,0,0.3) 80%,          
                    rgba(0,0,0,0.6) 100%);
        pointer-events: none;
        z-index: 2;
    }

    /* Additional outer shadow for depth */
    .resort-slider-container::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 0;
        right: 0;
        height: 20px;
        background: radial-gradient(ellipse at center, 
            rgba(0,16,42,0.2) 0%, 
            rgba(0,16,42,0) 80%);
        z-index: 1;
    }

    /* Ensure proper z-index hierarchy */
    .resort-slider {
        position: relative;
        z-index: 1;
    }

    .slide-content {
        z-index: 3;
    }

    .slider-nav {
        z-index: 4;
    }

    /* Rest of your existing slider styles */
    .resort-slider {
        list-style-type: none;
        padding: 0;
        margin: 0;
        width: 100%;
        height: 100%;
    }
    
    .resort-slide {
        width: 300px;
        height: 400px;
        position: absolute;
        top: 52%;
        transform: translateY(-50%);
        z-index: 39;
        background-position: center;
        background-size: cover;
        border-radius: 20px;
        box-shadow: 0 20px 30px rgba(255,255,255,0.3) inset;
        transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
    }
    .resort-slide:nth-child(1), 
    .resort-slide:nth-child(2) {
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: none;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
    }
    
    .resort-slide:nth-child(3) { left: 50%; }
    .resort-slide:nth-child(4) { left: calc(50% + 220px); }
    .resort-slide:nth-child(5) { left: calc(50% + 440px); }
    .resort-slide:nth-child(6) { left: calc(50% + 660px); opacity: 0; }
    
    .slide-content {
        width: min(30vw,400px);
        position: absolute;
        top: 46%;
        left: 5rem;
        transform: translateY(-50%);
        color: white;
        text-shadow: 0 3px 8px rgba(0,0,0,0.5);
        opacity: 0;
        display: none;
    }
    
    .slide-content .title {
        text-transform: uppercase;
        font-size: 3.4rem;
        font-weight: 700;
        font-family: var(--heading-font);
        letter-spacing: 1px;
    }
    
    .slide-content .description {
        line-height: 1.7;
        margin: 1rem 0 1.5rem;
        font-size: 1rem;
        font-weight: 400;
        font-family: var(--primary-font);
    }
    
    .amenities-link {
        width: fit-content;
        background-color: var(--primary-color);
        color: white;
        border: none;
        border-radius: 30px;
        padding: 12px 25px;
        cursor: pointer;
        font-weight: 500;
        transition: var(--transition);
        font-family: var(--heading-font);
        display: inline-block;
        box-shadow: 0 4px 15px rgba(100, 66, 34, 0.3);
    }
    
    .amenities-link:hover {
        background-color: var(--primary-color-hover);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(100, 66, 34, 0.4);
        color: white;
    }
     
    .resort-slide:nth-of-type(2) .slide-content {
        display: block;
        animation: slideShow 0.75s ease-in-out 0.3s forwards;
    }
    
    @keyframes slideShow {
        0% {
            filter: blur(5px);
            transform: translateY(calc(-50% + 75px));
        }
        100% {
            opacity: 1;
            filter: blur(0);
        }
    }
    
    .slider-nav {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
        user-select: none;
    }
    
    .slider-nav .nav-btn {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        margin: 0 0.25rem;
        padding: 0.75rem;
        border-radius: 50%;
        cursor: pointer;
        width: 30px;
        height: 30px;
        cursor: pointer;
        transition: var(--transition);
        font-size: 1.2rem;
        backdrop-filter: blur(5px);
    }

    .slider-nav .nav-btn:hover {
        background: var(--primary-color);
        color: white;
        transform: scale(1.1);
    }
    
    @media (width > 650px) and (width < 900px) {
        .slide-content {
            width: min(30vw,400px);
        }
        .slide-content .title { font-size: 1rem; }
        .slide-content .description { font-size: 0.7rem; }
        .slide-content button { font-size: 0.7rem; }
        
        .resort-slide {
            width: 160px;
            height: 270px;
        }
        
        .resort-slide:nth-child(3) { left: 50%; }
        .resort-slide:nth-child(4) { left: calc(50% + 170px); }
        .resort-slide:nth-child(5) { left: calc(50% + 340px); }
        .resort-slide:nth-child(6) { left: calc(50% + 510px); opacity: 0; }
    }
    
    @media (width < 650px) {
        .slide-content {
            width: min(40vw,400px);
            left: 2rem;
        }
        .slide-content .title { font-size: 1.5rem; }
        .slide-content .description { font-size: 0.8rem; }
        .slide-content button { font-size: 0.7rem; }
        
        .resort-slide {
            width: 130px;
            height: 220px;
        }
        
        .resort-slide:nth-child(3) { left: 50%; }
        .resort-slide:nth-child(4) { left: calc(50% + 140px); }
        .resort-slide:nth-child(5) { left: calc(50% + 280px); }
        .resort-slide:nth-child(6) { left: calc(50% + 420px); opacity: 0; }
    }

    /* ABOUT SECTION */
    .container11 {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    .row11 {
        display: flex;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

    .align-items-center {
        align-items: center;
    }

    /* About Section - Main Container */
    .about-section {
        position: relative;
        overflow: hidden;
        padding: 80px 0;
        background-color: var(--bg-lighter);
    }

    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('assets/img/c.avif') center/cover;
        opacity: 0.03;
        z-index: 0;
    }

    /* Image Composition */
    .about-images {
        position: relative;
        height: auto;
        min-height: 350px;
        margin-bottom: 40px;
    }

    .about-main-img {
        position: relative;
        width: 100%;
        height: 300px;
        border: 10px solid rgba(190, 152, 116, 0.1);
        box-shadow: 0 15px 30px var(--shadow-color);
        overflow: hidden;
        margin-bottom: 20px;
        border-radius: 10px;
        transition: var(--transition);
    }

    .about-main-img:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(100, 66, 34, 0.2);
    }

    .about-secondary-img {
        position: relative;
        width: 100%;
        height: 250px;
        border: 8px solid var(--bg-lighter);
        box-shadow: 0 10px 20px var(--shadow-color);
        overflow: hidden;
        margin-left: auto;
        border-radius: 10px;
        transition: var(--transition);
    }

    .about-secondary-img:hover {
        transform: translateY(-5px);
    }

    .about-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .about-main-img:hover .about-img,
    .about-secondary-img:hover .about-img {
        transform: scale(1.05);
    }

    /* Content Area */
    .about-content {
        position: relative;
        z-index: 2;
        padding: 0 20px;
    }

    .about-header {
        position: relative;
        margin-bottom: 30px;
        text-align: left;
    }

    .about-title {
        font-size: 2.5rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 15px;
        color: var(--primary-color);
        font-family: var(--heading-font);
    }

    .about-title span {
        color: var(--secondary-color);
    }

    .about-divider {
        width: 100px;
        height: 3px;
        background: linear-gradient(to right, transparent, var(--primary-color), transparent);
        margin: 0 0 15px 0;
    }

    .about-subtitle {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--secondary-color);
        font-family: var(--heading-font);
    }

    .about-text {
        font-size: 1rem;
        color: var(--text-dark);
        line-height: 1.8;
        margin-bottom: 30px;
        text-align: left;
        font-family: var(--primary-font);
    }

    .about-features {
        margin-bottom: 30px;
    }

    .about-feature {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        transition: var(--transition);
        padding: 15px;
        border-radius: 8px;
    }

    .about-feature:hover {
        background-color: rgba(190, 152, 116, 0.05);
        transform: translateX(5px);
    }

    .about-feature-icon {
        width: 50px;
        height: 50px;
        background-color: rgba(190, 152, 116, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        color: var(--primary-color);
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .about-feature-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--primary-color);
        font-family: var(--heading-font);
    }

    .about-feature-desc {
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.6;
        font-family: var(--primary-font);
    }

    .about-actions {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .amenities-link2 {
        width: fit-content;
        background-color: transparent;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        border-radius: 30px;
        padding: 10px 25px;
        cursor: pointer;
        font-weight: 500;
        transition: var(--transition);
        font-family: var(--heading-font);
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .amenities-link2:hover {
        background-color: var(--primary-color);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px var(--shadow-color);
    }

    /* FOOTER SECTION */
    .footer-section {
        background-color: var(--primary-color);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .footer-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('assets/img/c.avif') center/cover;
        opacity: 0.05;
        z-index: 0;
    }

    .footer-top {
        padding: 60px 0 30px;
        position: relative;
        z-index: 1;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .footer-column {
        padding: 0 15px;
    }

    .footer-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
        font-family: var(--heading-font);
    }

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: var(--secondary-color);
    }

    .footer-about {
        margin-bottom: 20px;
        line-height: 1.6;
        font-family: var(--primary-font);
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: var(--transition);
    }

    .social-links a:hover {
        background-color: var(--secondary-color);
        transform: translateY(-3px);
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        transition: var(--transition);
        display: inline-block;
        font-family: var(--primary-font);
    }

    .footer-links a:hover {
        color: white;
        transform: translateX(5px);
    }

    .footer-contact {
        list-style: none;
    }

    .footer-contact li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-family: var(--primary-font);
    }

    .footer-contact i {
        color: var(--secondary-color);
        margin-top: 3px;
    }

    .footer-bottom {
        background-color: rgba(0, 0, 0, 0.2);
        padding: 20px 0;
        position: relative;
        z-index: 1;
    }

    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    @media (min-width: 768px) {
        .footer-bottom-content {
            flex-direction: row;
            justify-content: space-between;
        }
    }

    .copyright {
        margin-bottom: 10px;
        font-family: var(--primary-font);
    }

    @media (min-width: 768px) {
        .copyright {
            margin-bottom: 0;
        }
    }

    .footer-legal {
        display: flex;
        gap: 15px;
    }

    .footer-legal a {
        color: rgba(255, 255, 255, 0.7);
        transition: var(--transition);
        font-family: var(--primary-font);
    }

    .footer-legal a:hover {
        color: white;
    }

    /* Animation for about section images */
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    .about-main-img {
        animation: float 6s ease-in-out infinite;
    }

    .about-secondary-img {
        animation: float 6s ease-in-out infinite 1.5s;
    }

    /* Responsive adjustments */
    @media (max-width: 991.98px) {
        .about-section {
            padding: 60px 0;
        }
        
        .about-title {
            font-size: 2rem;
        }
        
        .about-text, .about-feature-desc {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 767.98px) {
        .about-header, .about-text {
            text-align: center;
        }
        
        .about-divider {
            margin: 0 auto 15px auto;
        }
        
        .about-actions {
            justify-content: center;
        }
        
        .about-feature {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .about-feature-icon {
            margin-right: 0;
            margin-bottom: 15px;
        }
    }


/* About Section Styles */
.about-section {
    padding: 100px 0;
    background-color: #f9f5f0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/10.jpg') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color-hover);
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.divider .line {
    width: 40px;
    height: 1px;
    background-color: var(--secondary-color);
}

.divider .square {
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    transform: rotate(45deg);
    margin: 0 15px;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Image Gallery */
.about-gallery {
    position: relative;
    padding-right: 30px;
}

.main-image {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(100, 66, 34, 0.1);
    transition: all 0.5s ease;
}

.main-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(100, 66, 34, 0.2);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 0px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(100, 66, 34, 0.3);
    z-index: 2;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    font-family: 'Jost', sans-serif;
}

.experience-badge .text {
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

.thumbnail-group {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.thumbnail {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(100, 66, 34, 0.1);
    transition: all 0.5s ease;
}

.thumbnail:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(100, 66, 34, 0.2);
}

.thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

/* Content Area */
.about-content {
    padding-left: 30px;
    position: relative;
    z-index: 1;
}

.content-title {
    font-size: 2rem;
    color: var(--primary-color-hover);
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
}

.content-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(100, 66, 34, 0.05);
    transition: all 0.5s ease;
    border: 1px solid rgba(190, 152, 116, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(100, 66, 34, 0.1);
    border-color: rgba(190, 152, 116, 0.4);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(190, 152, 116, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color-hover);
    margin-bottom: 8px;
    font-family: 'Jost', sans-serif;
}

.feature-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.signature-block {
    display: flex;
    align-items: center;
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px dashed rgba(100, 66, 34, 0.3);
}

.signature-img {
    width: 150px;
    margin-right: 20px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.manager-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color-hover);
    margin-bottom: 5px;
    font-family: 'Jost', sans-serif;
}

.manager-title {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(100, 66, 34, 0.3);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    border:none;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(100, 66, 34, 0.3);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-right {
    animation: slideRight 1s ease forwards;
    animation-delay: 0.3s;
}

.animate-slide-up {
    animation: slideUp 1s ease forwards;
    animation-delay: 0.6s;
}

.animate-slide-left {
    animation: slideLeft 1s ease forwards;
    animation-delay: 0.9s;
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .main-image img {
        height: 350px;
    }
    
    .thumbnail img {
        height: 120px;
    }
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-gallery {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .main-image img {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .thumbnail-group {
        flex-wrap: wrap;
    }
    
    .thumbnail {
        flex: 0 0 calc(50% - 10px);
    }
    
    .thumbnail img {
        height: 100px;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .main-image img {
        height: 250px;
    }
    
    .experience-badge {
        padding: 10px 15px;
        bottom: -15px;
        right: -15px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
    
    .thumbnail {
        flex: 0 0 100%;
    }
    
    .thumbnail img {
        height: 120px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}



/* AMENITIES SECTION STARTS */
.amenities1 {
            padding: 100px 0;
            background-color: var(--bg-lighter);
            position: relative;
            overflow: hidden;
        }

        .amenities1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/16.jpg') center/cover no-repeat;
            opacity: 0.05;
            z-index: 0;
        }

        .amenities2 {
            font-family: var(--heading-font);
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            font-size: 2.5rem;
            z-index: 1;
        }

        .amenities2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            margin: 20px auto 0;
            border-radius: 2px;
        }

        .amenities3 {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: var(--bg-lighter);
            border: 2px solid var(--secondary-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 20px auto;
            padding: 20px;
            box-shadow: 0 10px 20px var(--shadow-color);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .amenities3:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 15px 30px rgba(100, 66, 34, 0.2);
            border-color: var(--primary-color);
            background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
        }

        .amenities3::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(190, 152, 116, 0.1) 0%, rgba(100, 66, 34, 0.05) 100%);
            border-radius: 50%;
            z-index: -1;
        }

        .amenities4 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            z-index: 2;
            transition: var(--transition);
        }

        .amenities3:hover .amenities4 {
            transform: scale(1.2);
            color: var(--primary-color-hover);
            text-shadow: 0 5px 15px var(--shadow-color);
        }

        .amenities5 {
            font-family: var(--heading-font);
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1rem;
            text-align: center;
            margin: 0;
            z-index: 2;
            transition: var(--transition);
            position: relative;
        }

        .amenities5::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: var(--transition);
        }

        .amenities3:hover .amenities5::after {
            width: 50%;
        }

        .amenities6 {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .amenities7 {
            padding: 0 15px;
            margin-bottom: 30px;
        }

        /* Pulse animation */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .amenities3:hover {
            animation: pulse 1.5s infinite;
        }

        @media (max-width: 1199px) {
            .amenities3 {
                width: 160px;
                height: 160px;
            }
            
            .amenities4 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 991px) {
            .amenities3 {
                width: 140px;
                height: 140px;
            }
            
            .amenities4 {
                font-size: 2rem;
            }
            
            .amenities5 {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 767px) {
            .amenities1 {
                padding: 60px 0;
            }
            
            .amenities2 {
                font-size: 2rem;
                margin-bottom: 40px;
            }
            
            .amenities3 {
                width: 120px;
                height: 120px;
            }
            
            .amenities4 {
                font-size: 1.8rem;
                margin-bottom: 10px;
            }
            
            .amenities5 {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 575px) {
            .amenities3 {
                width: 100px;
                height: 100px;
            }
            
            .amenities4 {
                font-size: 1.5rem;
            }
            
            .amenities5 {
                font-size: 0.7rem;
            }
        }

/* AMENITIES SECTION ENDS */

/* ROOMS SECTION STARTS */
        .room-section{
            padding: 100px 0;
        }
        .room1-header {
            font-family: var(--heading-font);
            color: var(--primary-color);
            text-align: center;
            margin: 3rem 0;
            position: relative;
        }

        .room1-header h1 {
            font-weight: 700;
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .room1-header::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--secondary-color);
            margin: 1rem auto;
            border-radius: 2px;
        }

        .room1-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            padding: 2rem;
        }

        .room1, .room2, .room3, .room4 {
            width: 300px;
            background: var(--bg-lighter);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-color);
            transition: var(--transition);
        }

        .room1-img-box, .room2-img-box, .room3-img-box, .room4-img-box {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .room1-img, .room2-img, .room3-img, .room4-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .room1-tag, .room2-tag, .room3-tag, .room4-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-color);
            color: var(--text-light);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }

        .room1-content, .room2-content, .room3-content, .room4-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            height: calc(100% - 220px);
        }

        .room1-title, .room2-title, .room3-title, .room4-title {
            font-family: var(--heading-font);
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .room1-text, .room2-text, .room3-text, .room4-text {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .room1-features, .room2-features, .room3-features, .room4-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 1.5rem;
        }

        .room1-feature, .room2-feature, .room3-feature, .room4-feature {
            display: flex;
            align-items: center;
            font-size: 12px;
            background: var(--bg-light);
            padding: 5px 10px;
            border-radius: 20px;
        }

        .room1-feature i, .room2-feature i, .room3-feature i, .room4-feature i {
            margin-right: 5px;
            color: var(--secondary-color);
        }

        .room1-price-box, .room2-price-box, .room3-price-box, .room4-price-box {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            border-top: 1px dashed var(--input-border-color);
            padding-top: 1rem;
            margin-top: auto;
        }

        .room1-price, .room2-price, .room3-price, .room4-price {
            display: flex;
            flex-direction: column;
        }

        .room1-old-price, .room2-old-price, .room3-old-price, .room4-old-price {
            font-size: 14px;
            color: #999;
            text-decoration: line-through;
        }

        .room1-new-price, .room2-new-price, .room3-new-price, .room4-new-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1.2;
        }

        .room1-per-night, .room2-per-night, .room3-per-night, .room4-per-night {
            font-size: 12px;
            color: var(--text-muted);
        }

        .room1-btn, .room2-btn, .room3-btn, .room4-btn {
            background: var(--primary-color);
            color: var(--text-light);
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }

        .room1-btn:hover, .room2-btn:hover, .room3-btn:hover, .room4-btn:hover {
            background: var(--primary-color-hover);
        }

        /* Animations */
        .room1 {
            animation: fadeIn 0.8s ease-out;
        }

        .room2 {
            animation: fadeIn 0.8s ease-out 0.2s;
            animation-fill-mode: backwards;
        }

        .room3 {
            animation: fadeIn 0.8s ease-out 0.4s;
            animation-fill-mode: backwards;
        }

        .room4 {
            animation: fadeIn 0.8s ease-out 0.6s;
            animation-fill-mode: backwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .room1-header h1 {
                font-size: 2rem;
            }
            
            .room1-container {
                flex-direction: column;
                align-items: center;
            }
            
            .room1, .room2, .room3, .room4 {
                width: 100%;
                max-width: 350px;
            }
            
            .room1-price-box, .room2-price-box, .room3-price-box, .room4-price-box {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .room1-btn, .room2-btn, .room3-btn, .room4-btn {
                width: 100%;
                text-align: center;
            }
        }

    /* ROOMS SECTION ENDS */

  /* Gallery Section */
        .gallery-section {
            padding: 5rem 0;
                background-color: var(--bg-lighter);
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px var(--shadow-color);
            transition: var(--transition);
            height: 300px;
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px var(--shadow-color);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Lightbox Styles */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-color);
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid var(--text-light);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 10000;
        }

        .lightbox-close:hover {
            background: var(--primary-color-hover);
            transform: rotate(90deg);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        /* GALLERY SECTION ENDS */

        /* CONTACT SECTION STARTS */
          /* Contact Section Styles */
        .contact-section1 {
            padding: 80px 0;
            background: linear-gradient(135deg, #f9f5f0 0%, #e8e0d5 100%);
        }
        
        .contact-header1 {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .contact-title1 {
            font-family: 'Jost', sans-serif;
            color: #644222;
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .contact-subtitle1 {
            color: #666;
            font-size: 1.25rem;
            margin-bottom: 16px;
        }
        
        .contact-divider1 {
            width: 100px;
            height: 4px;
            background: #be9874;
            margin: 1rem auto;
            border-radius: 2px;
        }
        
        .contact-form1 {
            background: white;
            box-shadow: 0 10px 30px rgba(100, 66, 34, 0.1);
            padding: 40px;
            border-radius: 8px;
        }
        
        .contact-form1 .form-control1 {
            border: 2px solid #be9874;
            height: 50px;
            background: #f9f5f0;
            transition: all 0.3s;
        }
        
        .contact-form1 .form-control1:focus {
            border-color: #644222;
            box-shadow: 0 0 0 0.25rem rgba(100, 66, 34, 0.25);
            background: white;
        }
        
        .contact-form1 .input-group-text1 {
            background: #f9f5f0;
            border: 2px solid #be9874;
            color: #644222;
            transition: all 0.3s;
        }
        
        .contact-form1 .message-input1 {
            height: 150px;
        }
        
        .contact-form1 .message-icon1 {
            padding-top: 14px;
            align-items: flex-start;
        }
        
        .contact-btn1 {
            background: #644222;
            color: white;
            font-weight: 500;
            border-radius: 30px;
            transition: all 0.3s;
            padding: 12px 0;
            width: 100%;
        }
        
        .contact-btn1:hover {
            /* background: #2e1913; */
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(100, 66, 34, 0.3);
        }
        
        /* Ripple effect for submit button */
        .ripple-effect1 {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transform: scale(0);
            animation: ripple1 0.6s linear;
            pointer-events: none;
        }
        
        @keyframes ripple1 {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }
        
        @media (max-width: 768px) {
            .contact-form1 {
                padding: 32px !important;
            }
            
            .contact1, .contact2, .contact3, 
            .contact4, .contact5 {
                animation: none !important;
                opacity: 1 !important;
                transform: none !important;
            }
        }
        /* CONTACT SECTION ENDS */
        /* BREADCRUMB SECTION STYLES */
  .breadcrumb-section {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .breadcrumb-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: zoomInOut 15s infinite alternate;
  }
  
  .breadcrumb-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 66, 34, 0.85) 0%, rgba(190, 152, 116, 0.85) 100%);
    z-index: 2;
  }
  
  .breadcrumb-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    width: 100%;
  }
  
  .breadcrumb-title {
        font-family: 'Jost', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 100px 10px 10px 15px;
    text-transform: capitalize;
    animation: fadeInDown 0.8s ease;
  }
  
  .breadcrumb-nav {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    animation: fadeInUp 0.8s ease;
  }
  
  .breadcrumb-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .breadcrumb-item {
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(253, 241, 241, 0.94);
  }
  
  .breadcrumb-item a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 10px;
  }
  
  .breadcrumb-item a:hover {
    color: var(--secondary-color);
  }
  
  .breadcrumb-item i {
    margin-right: 8px;
    font-size: 0.9rem;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.5);
  }
  
  .breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
  }
  
  /* Animations */
  @keyframes zoomInOut {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
    }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .breadcrumb-section {
      height: 250px;
    }
    
    .breadcrumb-title {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .breadcrumb-section {
      height: 200px;
    }
    
    .breadcrumb-title {
      font-size: 2rem;
      margin-bottom: 15px;
    }
    
    .breadcrumb-nav {
      padding: 6px 15px;
    }
    
    .breadcrumb-item {
      font-size: 0.9rem;
    }
    
    .breadcrumb-item i {
      margin-right: 5px;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
      padding: 0 8px;
    }
  }
  
  @media (max-width: 576px) {
    .breadcrumb-section {
      height: 300px;
    }
    
    .breadcrumb-title {
      font-size: 1.8rem;
    }
    
    .breadcrumb-list {
        flex-direction: row;
        align-items: center;
    }
    
    /* .breadcrumb-item + .breadcrumb-item::before {
      content: none;
      padding: 0;
    } */
    
    .breadcrumb-item {
      margin: 3px 0;
    }
  }

  /* PAYMENT PAGE STARTS */
  .book1 {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
            color: var(--text-light);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px var(--shadow-color);
            position: relative;
        }
        
        .book1::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: book_rotate 15s linear infinite;
        }
        
        @keyframes book_rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .book2 {
            font-family: var(--heading-font);
            color: var(--text-light);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        
        .book2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
            border-radius: 3px;
        }
        
        .book3 {
            background: var(--bg-lighter);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 5px 15px var(--shadow-color);
            transition: var(--transition);
        }
        
        .book3:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(100, 66, 34, 0.15);
        }
        
        .book4 {
            border: none;
            border-bottom: 2px solid var(--input-border-color);
            border-radius: 0;
            padding-left: 0;
            padding-right: 0;
            transition: var(--transition);
            background: transparent;
        }
        
        .book4:focus {
            box-shadow: none;
            border-bottom-color: var(--secondary-color);
        }
        
        .book5 {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: var(--text-light);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(190, 152, 116, 0.3);
        }
        
        .book5:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(190, 152, 116, 0.4);
            letter-spacing: 1.5px;
            color: var(--btn-text-color-hover);
        }
        
        .book5::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s ease;
        }
        
        .book5:hover::before {
            left: 100%;
        }
        
        .book6 {
            background: var(--bg-lighter);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px var(--shadow-color);
        }
        
        .book7 {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed var(--input-border-color);
        }
        
        .book8 {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .book9 {
            color: var(--primary-color-hover);
            font-weight: 500;
        }
        
        .book10 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .book11 {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px var(--shadow-color);
        }
        
        .book11 img {
            transition: var(--transition);
        }
        
        .book11:hover img {
            transform: scale(1.05);
        }
        
        .book12 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(46,25,19,0.8) 0%, transparent 100%);
            padding: 1rem;
            color: var(--text-light);
        }
        
        /* Custom styles for form labels */
        .form-label {
            color: var(--primary-color);
            font-weight: 500;
        }
        
        /* Alert customization */
        .alert-success {
            background-color: rgba(25, 135, 84, 0.1);
            border-color: rgba(25, 135, 84, 0.2);
            color: var(--primary-color-hover);
        }
        
        @media (max-width: 768px) {
            .book3 {
                padding: 1.5rem;
            }
            
            .book6 {
                padding: 1.5rem;
            }
        }
        /* PAYMENT PAGE ENDS */
         .fab-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  z-index: 1000;
}

.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background-color: #25d366;
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}
.fab-btn1{
    background-color: #2585d3;
}
.main-btn {
  background-color: #075e54;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  transition: transform 0.3s ease;
}

/* Rotate main button on active */
.fab-container.active .main-btn {
  transform: rotate(45deg);
}

/* Show buttons smoothly */
.fab-container.active .call-btn {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  transition-delay: 0.1s;
}

.fab-container.active .whatsapp-btn {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  transition-delay: 0.2s;
}
/* CTA */

    .cta1 {
        padding: 100px 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .cta1::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../img/48 Superior.jpg') center/cover no-repeat;
        opacity: 0.1;
        z-index: 0;
    }

    .cta2 {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .cta3 {
        font-family: var(--heading-font);
        color: var(--text-light);
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.3;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .cta4 {
        font-family: var(--primary-font);
        color: var(--text-light);
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.9;
    }

    .cta5 {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .cta6 {
        display: inline-block;
        padding: 15px 35px;
        background-color: var(--bg-lighter);
        color: var(--primary-color);
        font-family: var(--heading-font);
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: var(--transition);
        border: 2px solid var(--bg-lighter);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .cta6:hover {
        background-color: transparent;
        color: var(--text-light);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    .cta7 {
        display: inline-block;
        padding: 15px 35px;
        background-color: transparent;
        color: var(--text-light);
        font-family: var(--heading-font);
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: var(--transition);
        border: 2px solid var(--secondary-color);
    }

    .cta7:hover {
        background-color: var(--secondary-color);
        color: var(--text-dark);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    @media (max-width: 768px) {
        .cta3 {
            font-size: 2.2rem;
        }
        
        .cta4 {
            font-size: 1rem;
        }
        
        .cta6, .cta7 {
            padding: 12px 25px;
        }
    }

    @media (max-width: 576px) {
        .cta3 {
            font-size: 1.8rem;
        }
        
        .cta5 {
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }
        
        .cta6, .cta7 {
            width: 100%;
            max-width: 250px;
            text-align: center;
        }
    }

    /* ROOM DETAILS SECTION STARTS */
    .room_d1 {
            height: 80vh;
            position: relative;
            overflow: hidden;
        }
        
        .room_d2 {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: var(--transition);
        }
        
        .room_d2.active {
            opacity: 1;
        }
        
        .room_d3 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(46,25,19,0.8) 0%, transparent 100%);
            padding: 5rem 0 3rem;
        }
        
        .room_d4 {
            font-family: var(--heading-font);
            color: var(--text-light);
            font-size: 3rem;
            font-weight: 700;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        
        .room_d5 {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 1rem 2rem;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            box-shadow: 0 10px 30px var(--shadow-color);
            transform: translateY(50%);
            z-index: 10;
            position: relative;
        }
        
        .room_d6 {
            text-decoration: line-through;
            font-size: 1.2rem;
            color: rgba(255,255,255,0.7);
            margin-right: 1rem;
        }
        
        .room_d7 {
            font-size: 2rem;
            font-weight: 700;
            /* color: var(--text-light); */
            margin-right: 0.5rem;
        }
        
        .room_d8 {
            font-size: 1rem;
            color: rgba(255,255,255,0.8);
        }
        
        .room_d9 {
            background: var(--bg-lighter);
            border-radius: 15px;
            padding: 2rem;
            height: 100%;
            transition: var(--transition);
            box-shadow: 0 5px 15px var(--shadow-color);
            border: 1px solid rgba(190, 152, 116, 0.2);
        }
        
        .room_d9:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(100, 66, 34, 0.15);
        }
        
        .room_d10 {
            width: 70px;
            height: 70px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .room_d9:hover .room_d10 {
            background: var(--primary-color);
            color: var(--text-light);
            transform: rotateY(180deg);
        }
        
        .room_d11 {
            background: var(--bg-lighter);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 5px 15px var(--shadow-color);
            border: 1px solid rgba(190, 152, 116, 0.2);
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .room_d11::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--secondary-color);
        }
        
        .room_d12 {
            font-family: var(--heading-font);
            color: var(--primary-color);
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }
        
        .room_d12::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary-color);
            border-radius: 3px;
        }
        
        .room_d13 li {
            margin-bottom: 1rem;
            list-style-type: none;
            position: relative;
            padding-left: 2rem;
            transition: var(--transition);
        }
        
        .room_d13 li:hover {
            transform: translateX(5px);
        }
        
        .room_d13 li:before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--secondary-color);
            position: absolute;
            left: 0;
            font-size: 1.1rem;
        }
        
        .room_d14 {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            box-shadow: 0 5px 15px var(--shadow-color);
        }
        
        .room_d14::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(100, 66, 34, 0.2);
            opacity: 0;
            transition: var(--transition);
        }
        
        .room_d14:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(100, 66, 34, 0.2);
        }
        
        .room_d14:hover::after {
            opacity: 1;
        }
        
        .room_d14 img {
            transition: var(--transition);
        }
        
        .room_d14:hover img {
            transform: scale(1.1);
        }
        
        .room_d15 {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
            color: var(--text-light);
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 1px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            box-shadow: 0 10px 20px rgba(100, 66, 34, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .room_d15:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(100, 66, 34, 0.4);
            letter-spacing: 1.5px;
            /* color: var(--btn-text-color-hover); */
        }
        
        .room_d15::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s ease;
        }
        
        .room_d15:hover::before {
            left: 100%;
        }
        
        .room_d16 {
           position: absolute;
            top: 10px;
            right: 5px;
            background: var(--secondary-color);
            color: var(--text-light);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            /* transform: rotate(5deg); */
            box-shadow: 0 5px 15px rgba(190, 152, 116, 0.4);
        }
        
        .room_d17 {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(190, 152, 116, 0.5);
            display: inline-block;
            margin: 0 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .room_d17.active {
            background: var(--secondary-color);
            transform: scale(1.3);
        }
        
        /* Form styles */
        .form-control, .form-select {
            border-color: var(--input-border-color);
            transition: var(--transition);
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(190, 152, 116, 0.25);
        }
        
        /* Text colors */
        .text-muted {
            color: var(--text-muted) !important;
        }
        
        .text-danger {
            color: var(--secondary-color) !important;
        }
        
        @media (max-width: 992px) {
            .room_d1 {
                height: 60vh;
            }
            
            .room_d4 {
                font-size: 2.5rem;
            }
            
            .room_d7 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .room_d1 {
                height: 50vh;
            }
            
            .room_d5 {
                padding: 0.8rem 1.5rem;
                transform: translateY(30%);
            }
            
            .room_d7 {
                font-size: 1.8rem;
            }
            
            .room_d9 {
                padding: 1.5rem;
            }
            
            .room_d11 {
                padding: 1.5rem;
            }
        }

        .form-check-input:checked {
        background-color: var(--primary-color-hover);
        border-color: var(--input-border-color);
    }
    .form-check-label {
        cursor: pointer;
    }
    .form-check {
        padding-left: 1.5em;
    }
   
    
    .card {
        border-radius: 8px;
    }