.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 15s infinite ease-in;
    opacity: 0.5;
    z-index: 9999;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) translateX(20px) rotate(360deg);
        opacity: 0;
    }
}

.btn-bubble {
    position: relative;
    overflow: hidden;
}

.btn-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
    z-index: 0;
}

.btn-bubble:hover::after {
    width: 300px;
    height: 300px;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #2a6b7a;
            --secondary: #f5e6c8;
            --accent: #e67e22;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --sand: #e6d3a7;
            --ocean: #3498db;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            transition: background-image 2s ease-in-out;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 10px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            z-index: 1001;
        }
        
        .logo-img {
            height: 50px;
            width: auto;
        }
        
        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 1px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1.1rem;
            position: relative;
            padding: 5px 0;
            transition: all 0.3s;
        }
        
        nav a:hover {
            color: var(--accent);
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        nav a:hover::after {
            width: 100%;
        }

        .sidebar-menu {
            position: fixed;
            top: 0;
            left: -250px;
            width: 250px;
            height: 100%;
            background-color: var(--primary);
            box-shadow: 2px 0 10px rgba(0,0,0,0.3);
            transition: left 0.3s ease-in-out;
            z-index: 1000;
            padding-top: 60px;
            color: white;
        }

        .sidebar-menu.open {
            left: 0;
        }

        .sidebar-menu ul {
            list-style: none;
            padding: 0;
            display: block;
            flex-direction: column;
        }

        .sidebar-menu ul li {
            width: 100%;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .sidebar-menu ul li:last-child {
            border-bottom: none;
        }

        .sidebar-menu a {
            display: block;
            padding: 15px 20px;
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: background-color 0.3s, color 0.3s;
        }

        .sidebar-menu a:hover {
            background-color: var(--accent);
            color: var(--dark);
        }

        .sidebar-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .sidebar-close-btn:hover {
            transform: rotate(90deg);
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 999;
        }

        .overlay.active {
            display: block;
        }
        
        .hero {
            background-size: cover;
            background-position: center;
            height: 90vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-bottom: 60px;
            transition: background-image 2s ease-in-out;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            animation: fadeIn 1.5s ease;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            animation: fadeIn 2s ease;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 14px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
            animation: fadeIn 2.5s ease;
        }
        
        .btn:hover {
            background-color: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(230, 126, 34, 0.6);
        }
        
        /* Rooms Section */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            color: var(--primary);
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: var(--accent);
            border-radius: 2px;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 15px auto 0;
            font-size: 1.1rem;
            color: #555;
        }
        
        .rooms {
            padding: 80px 0;
            background-color: white;
        }
        
        .room-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }
        
        .room-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .room-img {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .room-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .room-card:hover .room-img img {
            transform: scale(1.05);
        }
        
        .room-content {
            padding: 25px;
        }
        
        .room-content h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .room-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 0.95rem;
            color: #666;
        }
        
        .room-info i {
            margin-right: 5px;
            color: var(--accent);
        }
        
        .room-price {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .room-price span {
            font-size: 1rem;
            font-weight: normal;
            color: #777;
        }
        
        .room-content p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.7;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 2000;
            overflow-y: auto;
            padding: 30px 0;
        }
        
        .modal-content {
            background-color: white;
            max-width: 900px;
            margin: 30px auto;
            border-radius: 12px;
            overflow: hidden;
            animation: modalOpen 0.6s ease;
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
        }
        
        @keyframes modalOpen {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal-header {
            padding: 25px;
            background-color: var(--primary);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h3 {
            font-size: 2rem;
            letter-spacing: 0.5px;
        }
        
        .close-modal {
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            transition: transform 0.3s;
            padding: 5px;
        }
        
        .close-modal:hover {
            transform: rotate(90deg);
        }
        
        .modal-body {
            padding: 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .image-slider {
            position: relative;
            width: 100%;
            height: 350px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .slider-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            cursor: zoom-in; /* Indicate clickable */
        }

        .slider-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px 15px;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .slider-nav-btn:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .prev-btn {
            left: 10px;
        }

        .next-btn {
            right: 10px;
        }
        
        .modal-details h4 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .modal-details h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent);
        }
        
        .modal-details p {
            margin-bottom: 25px;
            color: #555;
            line-height: 1.8;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 25px 0;
        }
        
        .feature {
            display: flex;
            align-items: center;
        }
        
        .feature i {
            color: var(--accent);
            margin-right: 12px;
            font-size: 1.3rem;
            width: 25px;
            text-align: center;
        }

       .amenities {
           padding: 100px 0;
           background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
                      url('https://images.unsplash.com/photo-1520457159981-d1010f39849b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
           background-size: cover;
           background-position: center;
           background-attachment: fixed;
           color: var(--dark);
       }
        
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            text-align: center;
        }
        
        .amenity-item {
            background-color: var(--light); 
            padding: 40px 25px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.4s;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .amenity-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .amenity-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            transition: all 0.3s;
        }
        
        .amenity-item:hover .amenity-icon {
            transform: scale(1.1);
            color: var(--accent);
        }
        
        .amenity-item h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .amenity-item p {
            color: #666;
            line-height: 1.7;
        }
        
        /* New Contact Section Styles */
        .contact-section {
            padding: 80px 0;
            background-color: var(--light);
        }

        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            align-items: flex-start;
        }

        .contact-form-container {
            flex: 1;
            min-width: 300px;
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .contact-form-container h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 25px;
            text-align: center;
        }

        .contact-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }

        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
        }

        .contact-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        .contact-info-container {
            flex: 1;
            min-width: 300px;
            background-color: var(--primary);
            color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .contact-info-container h3 {
            font-size: 2rem;
            margin-bottom: 25px;
            text-align: center;
            color: var(--sand);
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .contact-info-item i {
            margin-right: 15px;
            color: var(--accent);
            font-size: 1.5rem;
            width: 30px;
            text-align: center;
        }

        .contact-info-item p {
            flex: 1;
            color: rgba(255,255,255,0.9);
        }

        .contact-social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            justify-content: center;
        }

        .contact-social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(255,255,255,0.15);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.4rem;
        }

        .contact-social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-5px) scale(1.1);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 30px 0;
            text-align: center;
            font-size: 0.9rem;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 992px) {
            .modal-body {
                grid-template-columns: 1fr;
            }
            
            .image-slider {
                height: 300px;
            }

            header nav {
                display: none;
            }

            .contact-content {
                flex-direction: column;
                align-items: center;
            }

            .contact-form-container,
            .contact-info-container {
                width: 90%;
                max-width: 500px;
            }
        }
        
        @media (max-width: 768px) {
            .hero h2 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2.4rem;
            }
            
            .header-container {
                flex-direction: column;
                gap: 15px;
                padding: 15px 0;
            }
            
            .logo {
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                height: 80vh;
            }
            
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .room-grid {
                grid-template-columns: 1fr;
            }
            
            .amenities-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-form-container,
            .contact-info-container {
                padding: 30px;
            }

            .contact-info-item {
                font-size: 1rem;
            }
        }

        .image-zoom-modal {
            display: none;
            position: fixed;
            z-index: 3000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            overflow: auto;
            animation: zoom 0.3s;
        }

        .image-zoom-modal-content {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 800px;
            margin-top: 50px;
        }

        .close-image-zoom-modal {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
        }

        .close-image-zoom-modal:hover,
        .close-image-zoom-modal:focus {
            color: #bbb;
            text-decoration: none;
            cursor: pointer;
        }

        .caption-text-zoom {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 800px;
            text-align: center;
            color: #fff;
            padding: 10px 0;
            font-size: 1.2rem;
        }

        @keyframes zoom {
            from {transform: scale(0.1)}
            to {transform: scale(1)}
        }


        .itinerary-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 2500; /* Between room modal and image zoom modal */
            overflow-y: auto;
            padding: 30px 0;
        }

        .itinerary-modal-content {
            background-color: white;
            max-width: 700px;
            margin: 30px auto;
            border-radius: 12px;
            overflow: hidden;
            animation: modalOpen 0.6s ease;
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
            padding: 40px;
        }

        .itinerary-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .itinerary-modal-header h3 {
            font-size: 2rem;
            color: var(--primary);
        }

        .close-itinerary-modal {
            background: none;
            border: none;
            color: var(--dark);
            font-size: 2rem;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .close-itinerary-modal:hover {
            transform: rotate(90deg);
        }

        .itinerary-form label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--dark);
        }

        .itinerary-form textarea {
            width: 100%;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #ccc;
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
            min-height: 100px;
            resize: vertical;
        }

        .itinerary-output {
            margin-top: 30px;
            padding: 20px;
            background-color: var(--light);
            border-radius: 8px;
            border: 1px solid rgba(0,0,0,0.05);
            white-space: pre-wrap; /* Preserve whitespace and line breaks */
            max-height: 400px;
            overflow-y: auto;
            font-size: 1rem;
            color: #333;
        }

        .itinerary-output h4 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        .loading-indicator {
            text-align: center;
            margin-top: 20px;
            font-size: 1.1rem;
            color: var(--primary);
            display: none;
        }

