:root {
            --gold: #C19F49;
            --dark: #1B1B1B;
            --soft-light: #F7F5F0;
            --accent-gold: #8A6E2F;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }
        
        .bg-soft-light {
            background-color: var(--soft-light);
        }
        
        .bg-dark-custom {
            background-color: var(--dark);
        }
        
        .text-gold {
            color: var(--gold);
        }
        
        .btn-gold {
            background-color: var(--gold);
            border-color: var(--gold);
            color: white;
            padding: 12px 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-gold:hover {
            background-color: var(--accent-gold);
            border-color: var(--accent-gold);
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-outline-gold {
            border: 2px solid var(--gold);
            color: var(--gold);
            background-color: transparent;
            padding: 12px 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-outline-gold:hover {
            background-color: var(--gold);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Offcanvas Sidebar */
        .offcanvas {
            background-color: var(--dark);
        }
        
        .offcanvas-header {
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding: 1.5rem 1.5rem 1rem;
        }
        
        .offcanvas-body {
            padding: 1.5rem;
        }
        
        .offcanvas-footer {
            padding: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .nav-link {
            color: white;
            font-size: 1.1rem;
            padding: 0.75rem 0;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--gold)!important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after, .nav-link.active::after {
            width: 40px;
        }
        
        .sidebar-contact-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(193, 159, 73, 0.1);
            color: var(--gold);
            transition: all 0.3s ease;
            margin-right: 10px;
        }
        
        .sidebar-contact-btn:hover {
            background-color: var(--gold);
            color: white;
        }
        
        /* Hero Carousel */
        .hero-carousel {
            height: 100vh;
        }
        
        .carousel-item {
            height: 100vh;
            background-size: cover;
            background-position: center;
        }
        
        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.45);
        }
        
        .carousel-caption {
            bottom: 50%;
            transform: translateY(50%);
            z-index: 2;
        }
        
        .hero-headline {
            font-size: 4rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .underline-gold {
            display: inline-block;
            position: relative;
        }
        
        .underline-gold::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: var(--gold);
        }
        
        .booking-bar {
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 1.5rem;
            margin-top: 3rem;
        }
        
        .booking-input {
            border: none;
            border-bottom: 1px solid #ddd;
            border-radius: 0;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        
        .booking-input:focus {
            box-shadow: none;
            border-bottom: 1px solid var(--gold);
        }
        
        /* About Section */
        .section-title {
            position: relative;
            margin-bottom: 2.5rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--gold);
        }
        
        .overlapping-images {
            position: relative;
            height: 500px;
        }
        
        .img-1 {
            position: absolute;
            top: 0;
            right: 0;
            width: 70%;
            height: 70%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            z-index: 2;
            background-image: url('images/1.jpg');
            background-size: cover;
            background-position: center;
            transform: rotate(3deg);
            transition: all 0.5s ease;
        }
        
        .img-2 {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70%;
            height: 70%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            z-index: 1;
            background-image: url('images/2.jpg');
            background-size: cover;
            background-position: center;
            transform: rotate(-2deg);
            transition: all 0.5s ease;
        }
        
        .overlapping-images:hover .img-1 {
            transform: rotate(0deg);
        }
        
        .overlapping-images:hover .img-2 {
            transform: rotate(0deg);
        }
        
        .gold-shadow {
            box-shadow: 0 0 30px rgba(193, 159, 73, 0.3);
        }
        
        /* Rooms Slider */
        .rooms-section {
            background-color: var(--soft-light);
            padding: 5rem 0;
        }
        
        .room-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }
        
        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border: 1px solid var(--gold);
        }
        
        .room-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }
        
        .room-card:hover .room-image {
            transform: scale(1.05);
        }
        
        .room-price {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--gold);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 600;
        }
        
        .amenity-icon {
            color: var(--gold);
            margin-right: 5px;
        }
        
        /* Amenities Grid */
        .amenities-section {
            padding: 5rem 0;
        }
        
        .amenity-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            padding: 2rem 1.5rem;
            text-align: center;
        }
        
        .amenity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .amenity-icon-large {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }
        
        /* Experiences Section */
        .experiences-section {
            background-color: var(--soft-light);
            padding: 5rem 0;
        }
        
        .experience-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }
        
        .experience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .experience-image {
            height: 250px;
            background-size: cover;
            background-position: center;
        }
        
        .experience-content {
            padding: 1.5rem;
            position: relative;
            margin-top: -30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .experience-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--gold);
        }
        
        /* Testimonials */
        .testimonial-section {
            padding: 5rem 0;
        }
        
        .testimonial-carousel .carousel-item {
            height: auto;
            background: transparent;
        }
        
        .testimonial-carousel .carousel-item::before {
            display: none;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin: 1rem;
            text-align: center;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--gold);
        }
        
        .stars {
            color: var(--gold);
            margin-bottom: 1rem;
        }
        
        /* Map Section */
        .map-section {
            padding: 5rem 0;
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid var(--gold);
        }
        
        .contact-icon {
            color: var(--gold);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* CTA Section */
        .cta-section {
            background-image: url('images/gallery.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            padding: 6rem 0;
        }
        
        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-heading {
            position: relative;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            color: var(--gold);
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--gold);
        }
        
        .footer-link {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .footer-link:hover {
            color: var(--gold);
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            color: white;
            transition: all 0.3s ease;
            margin-right: 10px;
        }
        
        .social-icon:hover {
            background-color: var(--gold);
            transform: translateY(-3px);
        }
        
        @media (max-width: 768px) {
            .hero-headline {
                font-size: 2.5rem;
            }
            
            .overlapping-images {
                height: 400px;
                margin-top: 2rem;
            }
        }



        /* About Page Style */

        /* Hero Section */
        .hero-section {
            height: 70vh;
            background-image: url('images/gallery.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.45);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-headline {
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .underline-gold {
            display: inline-block;
            position: relative;
        }
        
        .underline-gold::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: var(--gold);
        }
        
        /* Our Story Section */
        .section-title {
            position: relative;
            margin-bottom: 2.5rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--gold);
        }
        
        .overlapping-images {
            position: relative;
            height: 500px;
        }
        
        .img-1 {
            position: absolute;
            top: 0;
            right: 0;
            width: 70%;
            height: 70%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            z-index: 2;
             background-image: url('images/1.jpg');
            background-size: cover;
            background-position: center;
            transform: rotate(3deg);
            transition: all 0.5s ease;
        }
        
        .img-2 {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70%;
            height: 70%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            z-index: 1;
             background-image: url('images/2.jpg');
            background-size: cover;
            background-position: center;
            transform: rotate(-2deg);
            transition: all 0.5s ease;
        }
        
        .overlapping-images:hover .img-1 {
            transform: rotate(0deg);
        }
        
        .overlapping-images:hover .img-2 {
            transform: rotate(0deg);
        }
        
        .gold-shadow {
            box-shadow: 0 0 30px rgba(193, 159, 73, 0.3);
        }
        
        .story-highlight {
            border-left: 3px solid var(--gold);
            padding-left: 20px;
            margin: 30px 0;
        }
        
        /* Vision, Mission & Values */
        .values-section {
            padding: 5rem 0;
        }
        
        .value-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            padding: 2.5rem 1.5rem;
            text-align: center;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }
        
        /* Team Section */
        .team-section {
            background-color: var(--soft-light);
            padding: 5rem 0;
        }
        
        .team-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            height: 100%;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border: 1px solid var(--gold);
        }
        
        .team-image {
            height: 300px;
            background-size: cover;
            background-position: center;
        }
        
        /* Timeline Section */
        .timeline-section {
            padding: 5rem 0;
        }
        
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--soft-light);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -13px;
            background-color: white;
            border: 4px solid var(--gold);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .left {
            left: 0;
        }
        
        .right {
            left: 50%;
        }
        
        .left::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            right: 30px;
            border: medium solid white;
            border-width: 10px 0 10px 10px;
            border-color: transparent transparent transparent white;
        }
        
        .right::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            left: 30px;
            border: medium solid white;
            border-width: 10px 10px 10px 0;
            border-color: transparent white transparent transparent;
        }
        
        .right::after {
            left: -13px;
        }
        
        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .timeline-year {
            color: var(--gold);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        /* Testimonials Section */
        .testimonial-section {
            background-color: var(--soft-light);
            padding: 5rem 0;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin: 1rem;
            text-align: center;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--gold);
        }
        
        .stars {
            color: var(--gold);
            margin-bottom: 1rem;
        }


        /* Rooms PAge Style */

        /* Rooms Slider */
        .rooms-section {
            padding: 5rem 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 2.5rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--gold);
        }
        
        .room-slider-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            margin: 0 10px;
            height: 100%;
        }
        
        .room-slider-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .room-slider-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }
        
        .room-slider-card:hover .room-slider-image {
            transform: scale(1.05);
        }
        
        .room-price {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--gold);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 600;
        }
        
        .amenity-icon {
            color: var(--gold);
            margin-right: 5px;
        }
        
        /* Room Categories Grid */
        .categories-section {
            background-color: var(--soft-light);
            padding: 5rem 0;
        }
        
        .category-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .category-image {
            height: 400px;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }
        
        .category-card:hover .category-image {
            transform: scale(1.03);
        }
        
        .category-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 2rem;
        }
        
        .category-badge {
            background-color: var(--gold);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            position: absolute;
            top: 20px;
            left: 20px;
        }
        
        /* Amenities Section */
        .amenities-section {
            padding: 5rem 0;
        }
        
        .amenity-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            padding: 2rem 1.5rem;
            text-align: center;
        }
        
        .amenity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .amenity-icon-large {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }
        
        /* Offers Section */
        .offers-section {
            background-color: var(--soft-light);
            padding: 5rem 0;
        }
        
        .offer-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            height: 100%;
        }
        
        .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .offer-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .offer-price {
            color: var(--gold);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .offer-old-price {
            text-decoration: line-through;
            color: #999;
            font-size: 1rem;
            margin-left: 10px;
        }
        
        /* CTA Section */
        .cta-section {
            background-image: url('images/gallery.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            padding: 6rem 0;
        }
        
        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        /* Carousel Customization */
        .carousel-control-prev, .carousel-control-next {
            width: 5%;
            opacity: 0.7;
        }
        
        .carousel-control-prev-icon, .carousel-control-next-icon {
            background-color: var(--gold);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            background-size: 60%;
        }
        
        /* Modal Styling */
        .modal-content {
            border-radius: 10px;
            border: none;
        }
        
        .modal-header {
            border-bottom: 1px solid #eee;
            

        }
        
        .modal-close {
            position: absolute;
            right: 20px;
            top: 20px;
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }
        
        .room-gallery {
            height: 400px;
            background-size: cover;
            background-position: center;
            border-radius: 10px 10px 0 0;
        }
        
        .modal-amenity {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .modal-amenity i {
            color: var(--gold);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        @media (max-width: 768px) {
            .hero-headline {
                font-size: 2.5rem;
            }
            
            .category-content {
                position: relative;
                background: white;
                color: var(--dark);
                padding: 1.5rem;
            }
            
            .room-gallery {
                height: 250px;
            }
        }

        /* Faciliries Style */

         /* Hero Section */
        .hero-section {
            height: 60vh;
            background-image: url('images/gallery.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.45);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-headline {
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .underline-gold {
            display: inline-block;
            position: relative;
        }
        
        .underline-gold::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: var(--gold);
        }
        
        /* Facilities Cards */
        .facilities-section {
            padding: 5rem 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 2.5rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--gold);
        }
        
        .facility-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            height: 100%;
        }
        
        .facility-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border: 1px solid var(--gold);
        }
        
        .facility-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }
        
        .facility-card:hover .facility-image {
            transform: scale(1.05);
        }
        
        .facility-icon {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }
        
        /* Gallery Slider */
        .gallery-section {
            background-color: var(--soft-light);
            padding: 5rem 0;
        }
        
        .gallery-carousel {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .carousel-item {
            height: 500px;
            background-size: cover;
            background-position: center;
        }
        
        /* Featured Experiences */
        .experiences-section {
            padding: 5rem 0;
        }
        
        .experience-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .experience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .experience-image {
            height: 400px;
            background-size: cover;
            background-position: center;
        }
        
        .experience-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 2rem;
        }
        
        .experience-badge {
            background-color: var(--gold);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            position: absolute;
            top: 20px;
            left: 20px;
        }
        
        /* Amenities Icons */
        .amenities-section {
            background-color: var(--soft-light);
            padding: 5rem 0;
        }
        
        .amenity-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            padding: 2rem 1.5rem;
            text-align: center;
        }
        
        .amenity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .amenity-icon-large {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        /* Gallery */


                /* Hero Section */
        .hero-section {
            height: 60vh;
            background-image: url('images/gallery.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.45);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-headline {
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .underline-gold {
            display: inline-block;
            position: relative;
        }
        
        .underline-gold::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: var(--gold);
        }
        
        /* Gallery Section */
        .gallery-section {
            padding: 5rem 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 2.5rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--gold);
        }
        
        /* Filter Buttons */
        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        .filter-btn {
            background: transparent;
            border: 2px solid var(--dark);
            color: var(--dark);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background-color: var(--gold);
            border-color: var(--gold);
            color: white;
        }
        
        /* Masonry Gallery */
        .masonry-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            grid-auto-rows: 10px;
            gap: 20px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border: 1px solid var(--gold);
        }
        
        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-image {
            transform: scale(1.05);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 1.5rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        .gallery-caption h5 {
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }
        
        .gallery-caption h5::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 30px;
            height: 2px;
            background-color: var(--gold);
        }
        
        /* Masonry Item Sizes */
        .masonry-item-small {
            grid-row-end: span 20;
        }
        
        .masonry-item-medium {
            grid-row-end: span 26;
        }
        
        .masonry-item-large {
            grid-row-end: span 32;
        }
        
        /* Featured Gallery Slider */
        .slider-section {
            background-color: var(--soft-light);
            padding: 5rem 0;
        }
        
        .slider-carousel {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .carousel-item {
            height: 500px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .carousel-caption {
            /* bottom: 50px; */
            left: 50px;
            right: auto;
            text-align: left;
            max-width: 500px;
        }
        
        .carousel-caption h3 {
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .carousel-caption h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--gold);
        }
        
        /* Lightbox Modal */
        .modal-content {
            border: none;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .modal-header {
            border-bottom: none;
            border-radius: 0px;
            position: inherit;
            top: 20px;
            right: 20px;
            z-index: 10;
        }
        
        .modal-close {
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox-image {
            width: 100%;
            height: 70vh;
            object-fit: cover;
        }
        
        .lightbox-caption {
            padding: 1.5rem;
        }

        /* Contact Us Page */

        /* Contact Information Section */
        .contact-info-section {
            padding: 5rem 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 2.5rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--gold);
        }
        
        .contact-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            padding: 2.5rem 1.5rem;
            text-align: center;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }
        
        /* Contact Form Section */
        .contact-form-section {
            background-color: var(--soft-light);
            padding: 5rem 0;
        }
        
        .form-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            padding: 3rem;
        }
        
        .form-control {
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 12px 15px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            box-shadow: none;
            border-color: var(--gold);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Map Section */
        .map-section {
            padding: 5rem 0;
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid var(--gold);
        }
        
        .contact-icon-small {
            color: var(--gold);
            margin-right: 10px;
            font-size: 1.2rem;
        }


        /* Modal Look */
.custom-modal .modal-content {
    background: var(--soft-light);
    border-radius: 18px;
    border: 2px solid var(--gold);
    overflow: hidden;
}

/* Left Section */
.room-left {
    background: var(--dark);
    color: white;
    padding: 0;
}

.room-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.room-info {
    padding: 15px 20px;
}

.room-title {
    color: var(--gold);
    margin-bottom: 5px;
}

.room-desc {
    font-size: 14px;
    color: #ccc;
}

.room-list {
    padding-left: 18px;
    font-size: 13px;
    color: white;
}

.room-list li {
    margin-bottom: 4px;
}

/* Form Section */
.modal-header {
    background: var(--soft-light);
    color: var(--gold);
    /* border-bottom: 2px solid var(--gold); */
}

.form-control {
    border: 1px solid var(--accent-gold);
    background: #fff;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(193,159,73,0.4);
}

/* Button */
.btn-submit {
    background: var(--gold);
    border: none;
    color: var(--dark);
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
}

.btn-submit:hover {
    background: var(--accent-gold);
    color: white;
}