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

        body {
            font-family: 'Poppins', sans-serif;
            color: #1a1a1a;
            overflow-x: hidden;
            line-height: 1.6;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Animated Background Particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.3;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #007bff;
            border-radius: 50%;
            animation: float 15s infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
        }

        /* Navbar Enhanced */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(15px);
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.95);
            padding: 15px 5%;
            box-shadow: 0 5px 30px rgba(0, 123, 255, 0.3);
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 3px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .logo::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #007bff, transparent);
            animation: logoGlow 3s infinite;
        }

        @keyframes logoGlow {
            0%, 100% { left: -100%; }
            50% { left: 100%; }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 15px;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #007bff;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .login-btn {
            padding: 10px 25px;
            background: linear-gradient(135deg, #007bff, #0056b3);
            border: none;
            border-radius: 25px;
            color: white;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }

        .login-btn::before {
            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, height 0.6s;
        }

        .login-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Hero Section Enhanced */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920') center/cover no-repeat;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(0, 123, 255, 0.1), transparent 70%);
            animation: pulse 8s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1); }
        }

        .hero-content {
            animation: fadeInUp 1.2s ease;
            z-index: 1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 300;
            margin-bottom: 10px;
            letter-spacing: 3px;
            text-transform: capitalize;
            animation: glowText 2s ease-in-out infinite;
        }

        @keyframes glowText {
            0%, 100% { text-shadow: 0 0 20px rgba(0, 123, 255, 0.5); }
            50% { text-shadow: 0 0 40px rgba(0, 123, 255, 0.8), 0 0 60px rgba(0, 123, 255, 0.6); }
        }

        .hero-content h2 {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 8px;
            margin-bottom: 40px;
            animation: slideIn 1.5s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .explore-btn {
            padding: 15px 45px;
            background: linear-gradient(135deg, #007bff, #00d4ff);
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 123, 255, 0.4);
        }

        .explore-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .explore-btn:hover::before {
            left: 100%;
        }

        .explore-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 123, 255, 0.6);
        }

        .hero-footer {
            position: absolute;
            bottom: 30px;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* About Section Enhanced */
        .about {
            padding: 100px 5%;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
        }

        .about-image {
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            border-radius: 20px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease;
        }

        .about-image:hover {
            transform: scale(1.02) rotateY(5deg);
        }

        .about-image h3 {
            font-size: 3rem;
            color: #007bff;
            letter-spacing: 3px;
            position: relative;
            z-index: 2;
            animation: fadeInScale 1s ease;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.5);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .travel-animation {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .plane {
            position: absolute;
            top: 20%;
            right: 10%;
            font-size: 40px;
            color: #00d4ff;
            animation: fly 8s infinite linear;
            filter: drop-shadow(0 0 10px #00d4ff);
        }

        .location-pin {
            position: absolute;
            bottom: 20%;
            left: 20%;
            font-size: 50px;
            color: #007bff;
            animation: pinPulse 2s infinite;
            filter: drop-shadow(0 0 10px #007bff);
        }

        @keyframes fly {
            0%, 100% { transform: translate(0, 0) rotate(-45deg); opacity: 1; }
            25% { transform: translate(-100px, 50px) rotate(-45deg); opacity: 0.8; }
            50% { transform: translate(-200px, 100px) rotate(-45deg); opacity: 1; }
            75% { transform: translate(-100px, 150px) rotate(-45deg); opacity: 0.8; }
        }

        @keyframes pinPulse {
            0%, 100% { transform: scale(1) translateY(0); }
            50% { transform: scale(1.2) translateY(-10px); }
        }

        .path {
            position: absolute;
            top: 30%;
            left: 25%;
            width: 60%;
            height: 2px;
            border-top: 3px dashed #666;
            animation: dash 3s infinite;
        }

        @keyframes dash {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #1a1a1a;
            position: relative;
            display: inline-block;
        }

        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #007bff, #00d4ff);
            border-radius: 2px;
        }

        .about-content p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            animation: fadeIn 1.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Plans Section Enhanced */
        .plans {
            padding: 100px 5%;
            background: white;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #1a1a1a;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #007bff, #00d4ff);
            border-radius: 2px;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .plan-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
            transition: left 0.6s;
        }

        .plan-card:hover::before {
            left: 100%;
        }

        .plan-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 123, 255, 0.3);
        }

        .plan-card:nth-child(2) {
            border: 2px solid #007bff;
            transform: scale(1.05);
        }

        .plan-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #007bff;
            font-weight: 700;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1a1a1a;
            background: linear-gradient(135deg, #007bff, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .plan-price span {
            font-size: 1rem;
            color: #666;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }

        .plan-features li {
            padding: 12px 0;
            color: #555;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }

        .plan-features li:hover {
            padding-left: 10px;
            color: #007bff;
        }

        .plan-features li i {
            color: #007bff;
            margin-right: 10px;
            transition: transform 0.3s ease;
        }

        .plan-features li:hover i {
            transform: scale(1.2) rotate(360deg);
        }

        .plan-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .plan-btn::before {
            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, height 0.6s;
        }

        .plan-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .plan-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
        }

        /* Things to Do Enhanced */
        .things-to-do {
            padding: 100px 5%;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .activities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .activity-card {
            position: relative;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .activity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
            z-index: 1;
            transition: background 0.5s ease;
        }

        .activity-card:hover::before {
            background: linear-gradient(to bottom, rgba(0, 123, 255, 0.4), rgba(0, 0, 0, 0.9));
        }

        .activity-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .activity-card:hover img {
            transform: scale(1.15) rotate(2deg);
        }

        .activity-info {
            position: absolute;
            bottom: 20px;
            left: 20px;
            z-index: 2;
            color: white;
            transition: all 0.4s ease;
        }

        .activity-card:hover .activity-info {
            transform: translateY(-10px);
        }

        .activity-info h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .activity-info p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Attractions Enhanced */
        .attractions {
            padding: 100px 5%;
            background: white;
        }

        .attractions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .attraction-card {
            position: relative;
            height: 350px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .attraction-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
            z-index: 1;
            transition: background 0.5s ease;
        }

        .attraction-card:hover::before {
            background: linear-gradient(to bottom, rgba(0, 123, 255, 0.3), rgba(0, 0, 0, 0.8));
        }

        .attraction-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .attraction-card:hover img {
            transform: scale(1.2) rotate(-2deg);
        }

        .attraction-info {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            z-index: 2;
            color: white;
            transition: all 0.4s ease;
        }

        .attraction-card:hover .attraction-info {
            transform: translateY(-15px);
        }

        .attraction-info h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
        }

        .attraction-btn {
            padding: 10px 25px;
            background: linear-gradient(135deg, #007bff, #00d4ff);
            color: white;
            border: none;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0, 123, 255, 0.4);
        }

        .attraction-card:hover .attraction-btn {
            opacity: 1;
            transform: translateY(0);
        }

        .attraction-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.6);
        }

        /* Contact Section Enhanced */
        .contact {
            padding: 100px 5%;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .contact-form:hover {
            transform: translateY(-5px);
        }

        .contact-form h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: #1a1a1a;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #1a1a1a;
            transition: color 0.3s ease;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #eee;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
            transform: translateY(-2px);
        }

        .form-group input:focus + label,
        .form-group textarea:focus + label {
            color: #007bff;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            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, height 0.6s;
        }

        .submit-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
        }

        .contact-map {
            border-radius: 20px;
            overflow: hidden;
            height: 100%;
            min-height: 400px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-align: center;
            padding: 20px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .contact-map:hover {
            transform: scale(1.02);
        }

        .contact-map i {
            animation: mapPulse 2s infinite;
        }

        @keyframes mapPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Modal Enhanced */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(10px);
        }

        .modal.active {
            display: flex;
            animation: fadeInModal 0.3s ease;
        }

        @keyframes fadeInModal {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: white;
            padding: 50px;
            border-radius: 20px;
            width: 90%;
            max-width: 450px;
            position: relative;
            animation: slideDownModal 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 20px 60px rgba(0, 123, 255, 0.3);
        }

        @keyframes slideDownModal {
            from {
                opacity: 0;
                transform: translateY(-100px) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            cursor: pointer;
            color: #666;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            color: #007bff;
            transform: rotate(90deg);
        }

        .modal-content h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #1a1a1a;
        }

        /* Footer Enhanced */
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 60px 5% 20px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #007bff, transparent);
            animation: footerGlow 3s infinite;
        }

        @keyframes footerGlow {
            0%, 100% { left: -100%; }
            50% { left: 100%; }
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #007bff;
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background: #007bff;
        }

        .footer-column p,
        .footer-column a {
            color: #bbb;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .footer-column a:hover {
            color: #007bff;
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .social-icons a:hover {
            background: #007bff;
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 5px 20px rgba(0, 123, 255, 0.5);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #888;
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #007bff, #00d4ff);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.4s ease;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(0, 123, 255, 0.4);
        }

        .scroll-top.active {
            display: flex;
            animation: bounceIn 0.5s ease;
        }

        @keyframes bounceIn {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .scroll-top:hover {
            transform: translateY(-10px) rotate(360deg);
            box-shadow: 0 10px 30px rgba(0, 123, 255, 0.6);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content h1 {
                font-size: 3rem;
            }

            .hero-content h2 {
                font-size: 1.2rem;
                letter-spacing: 6px;
            }

            .about-content h2 {
                font-size: 2rem;
            }

            .about-content p {
                font-size: 1rem;
            }

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

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                justify-content: center;
                gap: 25px;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                backdrop-filter: blur(20px);
            }

            .nav-menu.active {
                right: 0;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content h2 {
                font-size: 1rem;
                letter-spacing: 4px;
            }

            .explore-btn {
                padding: 12px 35px;
                font-size: 14px;
            }

            .hero-footer {
                font-size: 10px;
                bottom: 20px;
            }

            .about,
            .contact {
                grid-template-columns: 1fr;
                padding: 60px 5%;
            }

            .about-image {
                height: 300px;
            }

            .about-image h3 {
                font-size: 2rem;
            }

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

            .plans {
                padding: 60px 5%;
            }

            .plans-grid,
            .activities-grid,
            .attractions-grid {
                grid-template-columns: 1fr;
            }

            .plan-card {
                padding: 30px;
            }

            .plan-card:nth-child(2) {
                transform: scale(1);
            }

            .things-to-do,
            .attractions {
                padding: 60px 5%;
            }

            .activity-card {
                height: 250px;
            }

            .attraction-card {
                height: 300px;
            }

            .contact-form {
                padding: 30px;
            }

            .modal-content {
                padding: 30px;
                width: 90%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .scroll-top {
                width: 45px;
                height: 45px;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 22px;
            }

            .navbar {
                padding: 15px 5%;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content h2 {
                font-size: 0.8rem;
                letter-spacing: 2px;
            }

            .explore-btn {
                padding: 10px 25px;
                font-size: 13px;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 40px;
            }

            .about-content h2 {
                font-size: 1.8rem;
            }

            .about-content p {
                font-size: 0.95rem;
            }

            .plan-price {
                font-size: 2rem;
            }

            .activity-info h3,
            .attraction-info h3 {
                font-size: 1.3rem;
            }

            .contact-form h2 {
                font-size: 1.5rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 12px;
            }

            .footer {
                padding: 40px 5% 20px;
            }

            .footer-column h3 {
                font-size: 1.1rem;
            }

            .scroll-top {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        /* Loading Animation */
        .loading-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #1a1a1a;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeOutLoading 1s ease 2s forwards;
        }

        @keyframes fadeOutLoading {
            to {
                opacity: 0;
                visibility: hidden;
            }
        }

        .loading-text {
            font-size: 3rem;
            color: #007bff;
            font-weight: 700;
            letter-spacing: 5px;
            animation: pulse 1.5s infinite;
        }
        /* ==== VLOG SECTION ==== */
.vlogs-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.vlogs-section h2 {
  font-size: 2rem;
  color: #2c3e50;
  font-weight: 700;
}

.vlogs-subtitle {
  color: #555;
  margin-bottom: 25px;
  font-size: 1rem;
}

/* ==== FORM ==== */
.vlog-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 50px;
  text-align: left;
}

.vlog-form input,
.vlog-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #ddd;
  font-size: 1rem;
  transition: 0.3s;
}

.vlog-form input:focus,
.vlog-form textarea:focus {
  border-color: #ff416c;
  box-shadow: 0 0 8px rgba(255, 65, 108, 0.3);
  outline: none;
}

.vlog-form button {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  align-self: center;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.vlog-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(255, 75, 43, 0.4);
}

/* ==== VLOG CARDS ==== */
.vlog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.vlog-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

/* ==== Header ==== */
.vlog-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.vlog-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.vlog-user {
  font-weight: 600;
  color: #2c3e50;
  font-size: 1rem;
}

.vlog-time {
  font-size: 0.8rem;
  color: #888;
}

/* ==== Content ==== */
.vlog-content {
  color: #333;
  margin: 10px 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ==== Footer ==== */
.vlog-signature {
  text-align: right;
  font-style: italic;
  color: #666;
  margin-top: 10px;
}

/* ==== Buttons ==== */
.vlog-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.vlog-actions button {
  background: none;
  border: none;
  cursor: pointer;
  color: #ff416c;
  font-size: 1.1rem;
  transition: 0.3s;
}

.vlog-actions button:hover {
  transform: scale(1.2);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Search Bar */
.search-bar {
    position: relative;
    max-width: 400px;
    margin: 20px auto;
    display: flex;
}

#country-search {
    width: 100%;
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid #ccc;
    outline: none;
}

#search-btn {
    background-color: #ff6b6b;
    border: none;
    padding: 0 15px;
    margin-left: -50px;
    border-radius: 50%;
    cursor: pointer;
}

#search-btn img {
    width: 20px;
    height: 20px;
}

#suggestions {
    position: absolute;
    top: 45px;
    width: 100%;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-height: 150px;
    overflow-y: auto;
    display: none;
    z-index: 100;
}

#suggestions li {
    padding: 10px;
    cursor: pointer;
}

#suggestions li:hover {
    background-color: #f1f1f1;
}
        .list-hotel-btn {
            padding: 0.6rem 1.5rem;
            border: 2px solid #3182ce;
            background: white;
            color: #3182ce;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .list-hotel-btn:hover {
            background: #3182ce;
            color: white;
        }

        .search-icon, .profile-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .search-icon {
            background: #f7fafc;
        }

        .profile-icon {
            background: #3182ce;
            color: white;
            font-weight: bold;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }

        .main-content {
            order: 1;
        }

        .header-section h1 {
            font-size: 2.5rem;
            color: #2d3748;
            margin-bottom: 1rem;
        }

        .header-section p {
            color: #718096;
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .hotel-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 2rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: 320px 1fr;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .hotel-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }

        .hotel-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hotel-details {
            padding: 2rem;
        }

        .location {
            color: #718096;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .hotel-name {
            font-size: 1.8rem;
            color: #2d3748;
            margin-bottom: 0.8rem;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .stars {
            color: #f6ad55;
            font-size: 1.1rem;
        }

        .reviews {
            color: #718096;
            font-size: 0.9rem;
        }

        .address {
            color: #4a5568;
            font-size: 0.95rem;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .amenities {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .amenity {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #4a5568;
            font-size: 0.9rem;
        }

        .amenity::before {
            content: "✓";
            color: #48bb78;
            font-weight: bold;
        }

        .price {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2d3748;
        }

        .price span {
            font-size: 1rem;
            color: #718096;
            font-weight: normal;
        }

        .filters {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            position: sticky;
            top: 100px;
            height: fit-content;
            order: 2;
        }

        .filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .filter-header h3 {
            font-size: 1.3rem;
            color: #2d3748;
        }

        .clear-btn {
            color: #3182ce;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .filter-section {
            margin-bottom: 2rem;
        }

        .filter-section h4 {
            color: #2d3748;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .filter-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.8rem;
        }

        .filter-option input[type="checkbox"],
        .filter-option input[type="radio"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .filter-option label {
            color: #4a5568;
            cursor: pointer;
            font-size: 0.95rem;
        }

        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }

            .filters {
                order: 0;
                position: static;
            }

            .main-content {
                order: 1;
            }

            .hotel-card {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .header-section h1 {
                font-size: 2rem;
            }

            .amenities {
                grid-template-columns: 1fr;
            }
        }
/*AI Destination recommender-css*/
        h2 {
     
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
    

    p {
      color: #555;
      margin-bottom: 25px;
      position: relative;
      display: inline-block;
      width: 100%;
    }

    /* ======== RECOMMENDER CONTAINER ======== */
    .recommender-container {
      background: white;
      width: 90%;
      max-width: 700px;
      margin: 0 auto;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    label {
      text-align: left;
      font-weight: 600;
      color: #333;
    }

    select, input {
      padding: 10px 15px;
      border: 1px solid #ccc;
      border-radius: 10px;
      outline: none;
      transition: 0.3s;
    }

    select:focus, input:focus {
      border-color: #004aad;
      box-shadow: 0 0 5px rgba(0, 74, 173, 0.3);
    }

    button {
      background: #004aad;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      font-size: 1rem;
      transition: 0.3s;
    }

    button:hover {
      background: #003080;
    }

    /* ======== RESULT SECTION ======== */
    .result {
      margin-top: 30px;
      display: none;
      animation: fadeIn 1s ease-in;
    }

    .destination-card {
      background: #f0f5ff;
      padding: 20px;
      margin-top: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }

    .destination-card:hover {
      transform: translateY(-5px);
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 600px) {
      h2 { font-size: 1.6rem; }
      .recommender-container { width: 100%; padding: 20px; }
    }

.vlogs-section {
  background: linear-gradient(135deg, #f9f9f9, #e7f0fa);
  padding: 60px 20px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.vlogs-section h2 {
  text-align: center;
  color: #1a237e;
  margin-bottom: 10px;
}

.vlogs-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.vlog-form {
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.vlog-form input,
.vlog-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.vlog-form input:focus,
.vlog-form textarea:focus {
  border-color: #1a73e8;
}

.upload-label {
  display: inline-block;
  background: #1a73e8;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: 0.3s;
}

.upload-label:hover {
  background: #1558b0;
}

.star-rating {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
  margin-bottom: 15px;
}

.star-rating .active {
  color: gold;
}

#postVlogBtn {
  display: block;
  width: 100%;
  background: #1a73e8;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

#postVlogBtn:hover {
  background: #1558b0;
}

.vlog-posts {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.vlog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  padding: 15px;
  transition: 0.3s;
  text-align: center;
}

.vlog-card:hover {
  transform: scale(1.03);
}

.vlog-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  height: 180px;
  object-fit: cover;
}
.vlog-card h4 {
  color: #1a237e;
  margin-bottom: 8px;
}
.vlog-card p {
  color: #555;
  font-size: 0.95rem;
}
.vlog-card .stars {
  color: gold;
  font-size: 1.2rem;
}
/* ---------------------------------------
   PREMIUM FLOATING CHATBOT – LEFT SIDE
----------------------------------------*/
.chatbot-wrapper {
  z-index: 99999;
}

/* Floating Button */
.chatbot-toggle {
  position: fixed;
  bottom: 30px;
  left: 30px; /* LEFT SIDE */
  background: #1a73e8;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 18px 22px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  background: #0f5ec9;
}

/* Main Chat Window */
.chatbot {
  position: fixed;
  bottom: 90px;
  left: 30px; /* LEFT SIDE */
  width: 350px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: slideUp 0.35s ease-out;
  box-shadow: 0 10px 35px rgba(0,0,0,0.28);
}

@keyframes slideUp {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* HEADER */
.chatbot-header {
  background: linear-gradient(135deg, #1a73e8, #4da5ff);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  color: white;
  align-items: center;
}

.status-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bot-title {
  font-weight: bold;
  font-size: 15px;
}

.online-dot {
  width: 10px;
  height: 10px;
  background: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 6px #2ecc71;
  display: inline-block;
}

.online-text {
  font-size: 12px;
  opacity: 0.9;
}

/* HEADER BUTTONS */
.header-buttons {
  display: flex;
  gap: 12px;
}

.refresh-btn,
.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
}

.refresh-btn:hover,
.close-btn:hover {
  opacity: 0.7;
}

/* CHAT BODY */
.chatbot-body {
  max-height: 330px;
  overflow-y: auto;
  padding: 14px;
  background: #f6f8fc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* MESSAGE BUBBLES */
.bot-message,
.user-message {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.35;
}

.bot-message {
  background: #e7f0ff;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.user-message {
  background: #d8ffe1;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

/* FOOTER */
.chatbot-footer {
  padding: 12px;
  border-top: 1px solid #ddd;
  display: flex;
  gap: 8px;
  background: #fff;
}

.chatbot-footer input {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

.chatbot-footer button {
  background: #1a73e8;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.chatbot-footer button:hover {
  background: #1258b1;
}

/* Typing Animation */
.typing {
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2px;
}
