        :root {
            --primary-color: #ff6b35;
            --secondary-color: #1b1b1b;
            --accent-color: #ffd700;
            --dark-color: #030304;
            --light-color: #f8f9fa;
            --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        * {
            box-sizing: border-box;
        }

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

        /* Enhanced Header Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
            padding: 0.5rem 0;
        }

        .navbar.scrolled {
            padding: 0.25rem 0;
            background: rgba(255, 255, 255, 1);
        }

        .navbar-brand img {
            height: 40px;
            width: auto;
        }

        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            color: var(--dark-color) !important;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

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

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .btn-custom {
            background: linear-gradient(45deg, var(--primary-color), #e55a2b);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            position: relative;
            overflow: hidden;
        }

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

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

        .btn-custom:hover {
            transform: translateY(-2px);
            box-shadow: var(--hover-shadow);
            color: white;
        }

        /* Enhanced Hero Carousel - Fixed Centering */
        .hero-carousel {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-carousel .carousel-item {
            height: 100vh;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-carousel .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            text-align: center;
            color: white;
            z-index: 2;
            width: 100%;
            max-width: 800px;
            padding: 0 20px;
            top: auto;
            left: auto;
            transform: none;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }

        .hero-content p {
            font-size: clamp(1rem, 2.5vw, 1.4rem);
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            line-height: 1.4;
        }

        .carousel-indicators {
            bottom: 20px;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
        }

        .carousel-indicators .active {
            background: var(--primary-color);
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
        }

        /* Search Section - Jetpack-like Search Form */
        .search-section {
            background: linear-gradient(135deg, var(--light-color), white);
            padding: 60px 0;
        }

        .search-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .search-form .input-group {
            box-shadow: var(--card-shadow);
            border-radius: 50px;
            overflow: hidden;
        }

        .search-form .form-control {
            border: none;
            padding: 15px 25px;
            font-size: 1.1rem;
            background: white;
        }

        .search-form .btn {
            border: none;
            padding: 15px 30px;
            background: linear-gradient(45deg, var(--primary-color), #e55a2b);
            color: white;
            transition: all 0.3s ease;
        }

        .search-form .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--hover-shadow);
        }

        /* Section Styles */
        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }

        .section-subtitle {
            color: #666;
            font-size: 1.2rem;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Enhanced Tour Cards with Overlay */
        .tour-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.4s ease;
            height: 100%;
            background: white;
            position: relative;
            cursor: pointer;
        }

        .tour-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 300px;
            background: linear-gradient(45deg, var(--gradient-bg), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .tour-card:hover::before {
            opacity: 0.1;
        }

        .tour-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--hover-shadow);
        }

        .tour-image-container {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .tour-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .tour-card:hover .tour-image-container img,
        .tour-card.active .tour-image-container img {
            transform: scale(1.1);
        }

        .tour-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(45deg, var(--primary-color), #e55a2b);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
        }

        /* Tour Overlay */
        .tour-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 100%);
            color: white;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 3;
        }

        .tour-card:hover .tour-overlay,
        .tour-card.active .tour-overlay {
            opacity: 1;
        }

        .tour-overlay .rating {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .tour-overlay .rating i {
            color: #ffd700;
            margin-right: 2px;
            font-size: 0.9rem;
        }

        .tour-overlay .rating span {
            margin-left: 5px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .tour-overlay .itinerary {
            font-size: 0.9rem;
            margin-bottom: 8px;
            color: #a0d2ff;
            font-weight: 500;
        }

        .tour-overlay .highlights {
            font-size: 0.85rem;
            margin-bottom: 0;
            line-height: 1.3;
            max-height: 3.9rem;
            overflow: hidden;
        }

        .tour-price {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tour-price small {
            font-size: 1rem;
            color: #666;
            font-weight: 400;
        }

        .discount-badge {
            background: #ff4d4d;
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 5px;
        }

        /* Enhanced Destination Cards - Made smaller */
        .destination-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            margin-bottom: 20px;
        }

        .destination-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
            z-index: 1;
        }

        .destination-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--hover-shadow);
        }

        .destination-card img {
            width: 100%;
            height: 250px;
            display: block;
            /* Reduced from 300px */
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .destination-card:hover img {
            transform: scale(1.1);
        }

        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: transparent;
            padding: 20px;
            /* Reduced from 30px */
            color: white;
            z-index: 2;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .destination-card:hover .destination-overlay {
            transform: translateY(0);
        }

        .destination-overlay h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            /* Reduced from 1.8rem */
            margin-bottom: 10px;
        }

        .destination-overlay p {
            font-size: 0.9rem;
            /* Reduced font size */
            margin-bottom: 0;
        }

        /* Enhanced About Section */
        .about-section {
            background: var(--gradient-bg);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.05;
        }

        .about-content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 50px;
            border-radius: 25px;
            box-shadow: var(--hover-shadow);
            position: relative;
            z-index: 2;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .about-badge {
            position: absolute;
            top: -25px;
            left: 50px;
            background: linear-gradient(45deg, var(--primary-color), #e55a2b);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: var(--card-shadow);
            transform: translateX(-50%);
            left: 50%;
        }

        .founder-info {
            display: flex;
            align-items: center;
            margin-top: 30px;
            padding: 20px;
            background: linear-gradient(135deg, var(--light-color), white);
            border-radius: 20px;
            box-shadow: var(--card-shadow);
        }

        .founder-info i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-right: 25px;
            background: rgba(255, 107, 53, 0.1);
            padding: 15px;
            border-radius: 50%;
        }

        /* Enhanced Services */
        .service-box {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: var(--card-shadow);
            transition: all 0.4s ease;
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .service-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
        }

        .service-box:hover {
            transform: translateY(-15px);
            box-shadow: var(--hover-shadow);
        }

        .service-icon {
            font-size: 4rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            transition: all 0.4s ease;
            display: block;
        }

        .service-box:hover .service-icon {
            transform: scale(1.2) rotate(10deg);
            color: var(--secondary-color);
        }

        /* Essential for Mobile Grid - Rounded Square Shape */
        #services .service-box,
        #why-choose .feature-box {
            aspect-ratio: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 20px;
            padding: 20px;
        }

        #services .service-box p,
        #why-choose .feature-box p {
            font-size: 0.9rem;
            margin-bottom: 0;
            line-height: 1.2;
        }

        /* Mobile Adjustments for Square Service Boxes */
        @media (max-width: 768px) {

            #services .service-box,
            #why-choose .feature-box {
                padding: 10px;
            }

            #services .service-box .service-icon,
            #why-choose .feature-box i {
                font-size: 2rem;
                margin-bottom: 10px;
            }

            #services .service-box h5,
            #why-choose .feature-box h5 {
                font-size: 0.9rem;
                margin-bottom: 5px !important;
            }

            #services .service-box p,
            #why-choose .feature-box p {
                font-size: 0.7rem;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
        }

        /* Service Image - Rounded Square Card */
        .service-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 15px;
            margin: 0 auto 20px;
            display: block;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .service-box:hover .service-image {
            transform: scale(1.03);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 40px 30px;
            border-radius: 20px;
            transition: all 0.4s ease;
            height: 100%;
            background: white;
            box-shadow: var(--card-shadow);
        }

        .feature-box:hover {
            background: linear-gradient(135deg, var(--light-color), white);
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
        }

        .feature-box i {
            font-size: 4rem;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 25px;
            display: block;
        }

        /* Enhanced Testimonials - Auto sliding */
        .testimonial-carousel {
            position: relative;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: var(--card-shadow);
            position: relative;
            margin: 10px;
            min-width: calc(100% - 20px);
            transition: all 0.4s ease;
            box-sizing: border-box;
        }

        .testimonial-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--hover-shadow);
        }

        .testimonial-card::before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 25px;
            left: 25px;
            font-size: 3rem;
            color: var(--primary-color);
            opacity: 0.1;
            z-index: 0;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            font-size: 1.1rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 20px;
            border: 3px solid var(--primary-color);
        }

        .testimonial-controls {
            text-align: center;
            margin-top: 30px;
        }

        .testimonial-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 107, 53, 0.3);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: var(--primary-color);
        }

        /* Enhanced Footer */
        footer {
            background: linear-gradient(135deg, var(--dark-color), #16213e);
            color: white;
            padding: 40px 0 20px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        }

        .footer-heading {
            font-family: 'Playfair Display', serif;
            text-align: center;
            color: white;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.5rem;
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-section h5 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-color);
        }

        .footer-section p,
        .footer-section a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1rem;
        }

        .footer-section a:hover {
            color: var(--accent-color);
        }

        /* Hand-drawn oval sketch highlight effect - Animated Drawing */
        .hand-drawn-highlight {
            position: relative;
            display: inline-block;
            padding: 6px 16px;
            color: #ffffff;
            font-weight: 600;
        }

        .hand-drawn-highlight svg {
            position: absolute;
            top: 50%;
            left: 50%;
            width: calc(100% + 24px);
            height: calc(100% + 20px);
            transform: translate(-50%, -50%) rotate(-5deg);
            overflow: visible;
            pointer-events: none;
        }

        .hand-drawn-highlight svg ellipse {
            fill: none;
            stroke: #e74c3c;
            stroke-width: 3;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-dasharray: 300;
            stroke-dashoffset: 300;
            animation: drawOval 2s ease-in-out infinite;
        }

        .hand-drawn-highlight svg ellipse.second-stroke {
            stroke: rgba(231, 76, 60, 0.4);
            stroke-width: 2;
            stroke-dasharray: 320;
            stroke-dashoffset: 320;
            animation: drawOval 2s ease-in-out infinite 0.3s;
        }

        @keyframes drawOval {
            0% {
                stroke-dashoffset: 300;
            }

            40% {
                stroke-dashoffset: 0;
            }

            60% {
                stroke-dashoffset: 0;
            }

            100% {
                stroke-dashoffset: -300;
            }
        }

        /* Hover effect - faster drawing */
        .hand-drawn-highlight:hover svg ellipse {
            stroke: #c0392b;
            stroke-width: 4;
            animation-duration: 1s;
        }

        .hand-drawn-highlight:hover svg ellipse.second-stroke {
            stroke: rgba(192, 57, 43, 0.5);
        }

        .social-icons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-icons a:hover {
            background: linear-gradient(45deg, var(--primary-color), #e55a2b);
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin: 15px 0;
            align-items: center;
        }

        .trust-badges img {
            height: auto;
            max-width: 120px;
            max-height: 70px;
            object-fit: contain;
            filter: grayscale(1);
            transition: all 0.3s ease;
        }

        .trust-badges img:hover {
            filter: grayscale(0);
            transform: scale(1.1);
        }

        .footer-links {
            text-align: center;
            margin: 15px 0;
            padding: 10px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-links a {
            color: var(--accent-color);
            text-decoration: none;
            margin: 0 10px;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }

        .popular-destinations {
            text-align: center;
            margin: 15px 0;
        }

        .popular-destinations p {
            color: white;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .popular-destinations .dest-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 5px;
        }

        .popular-destinations span {
            color: #adb5bd;
            font-size: 0.8rem;
            padding: 3px 8px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .popular-destinations span:hover {
            background: var(--primary-color);
            color: white;
        }

        .travel-agencies {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin: 15px 0;
        }

        .travel-agencies div {
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 12px;
            border-radius: 8px;
            text-align: center;
        }

        .travel-agencies p {
            color: #808080;
            font-size: 0.75rem;
            margin-bottom: 0;
            transition: color 0.3s ease;
        }

        .travel-agencies div:hover p {
            color: var(--accent-color);
        }

        .copyright-text {
            color: #ffcccc;
            font-size: 0.7rem;
            text-align: center;
            margin: 10px 0;
            line-height: 1.4;
            background: rgba(255, 0, 0, 0.1);
            padding: 8px;
            border-radius: 8px;
            border-left: 3px solid #ff0000;
        }

        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            margin: 10px 0;
        }

        .copyright {
            text-align: center;
            padding-top: 10px;
            margin-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #adb5bd;
            font-size: 0.8rem;
        }

        /* Responsive Enhancements */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }

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

            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 30px;
            }

            .section-padding {
                padding: 40px 0;
            }

            /* Testimonial mobile fixes */
            .testimonial-card {
                padding: 20px;
                margin: 5px;
                min-width: calc(100% - 10px);
            }

            .testimonial-text {
                font-size: 0.95rem;
                margin-bottom: 15px;
            }

            .testimonial-author img {
                width: 45px;
                height: 45px;
                margin-right: 12px;
            }

            .testimonial-controls {
                margin-top: 15px;
            }

            .testimonial-dot {
                width: 8px;
                height: 8px;
                margin: 0 3px;
            }

            .about-content {
                padding: 30px 20px;
            }

            .about-badge {
                left: 50%;
                transform: translateX(-50%);
                top: -15px;
                padding: 10px 20px;
            }

            .trust-badges {
                gap: 8px;
            }

            .trust-badges img {
                max-width: 60px;
                max-height: 40px;
            }

            .footer-heading {
                font-size: 1.2rem;
            }

            .footer-links a {
                font-size: 0.75rem;
                margin: 0 5px;
            }

            .search-section {
                padding: 40px 0;
            }

            .destination-card img {
                height: 200px;
            }

            .destination-overlay h4 {
                font-size: 1.2rem;
            }

            /* Mobile interaction for tour overlay */
            .tour-overlay {
                opacity: 0;
                pointer-events: none;
            }

            .tour-card.active .tour-overlay {
                opacity: 1;
                pointer-events: auto;
            }
        }

        @media (max-width: 576px) {
            .hero-content {
                padding: 0 15px;
            }

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

            .footer-heading {
                font-size: 1.6rem;
            }

            .social-icons a {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
        }

        /* Accessibility Improvements */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Modal Styles */
        .modal-content {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--hover-shadow);
        }

        .modal-header {
            background: linear-gradient(45deg, var(--primary-color), #e55a2b);
            color: white;
            border: none;
            position: sticky;
            top: 0;
            z-index: 1050;
        }

        .modal-header .btn-close {
            filter: brightness(0) invert(1);
            position: relative;
            z-index: 1060;
        }

        .modal-body {
            padding: 2rem;
            max-height: calc(100vh - 200px);
            overflow-y: auto;
        }

        .modal-body img {
            border-radius: 15px;
            box-shadow: var(--card-shadow);
        }

        .modal-body h4 {
            color: var(--dark-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .modal-body .alert {
            border-radius: 15px;
            border: none;
        }

        .modal-body .form-control {
            border-radius: 10px;
            border: 1px solid #e0e0e0;
            padding: 12px 15px;
            transition: all 0.3s ease;
        }

        .modal-body .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
        }

        .modal-body label {
            font-weight: 500;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }

        /* Mobile modal fixes */
        @media (max-width: 768px) {
            .modal-dialog {
                margin: 0;
                height: 100%;
                max-width: 100%;
            }

            .modal-content {
                height: 100%;
                border-radius: 0;
                border: none;
            }

            .modal-body {
                padding: 1.5rem;
                max-height: calc(100vh - 150px);
            }

            .modal-header {
                border-radius: 0;
                padding: 1rem;
            }

            .modal-header .btn-close {
                padding: 1rem;
                margin: -1rem -1rem -1rem auto;
            }
        }

        /* Toast Styles */
        .toast {
            border-radius: 15px;
            box-shadow: var(--hover-shadow);
        }

        /* Amenities Selector Styles */
        .amenities-selector {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 15px;
            margin-top: 10px;
        }

        .amenities-selector .form-check {
            margin-bottom: 10px;
        }

        .amenities-selector .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .amenities-selector .form-check-label {
            margin-left: 5px;
            cursor: pointer;
        }

        /* View More Button Styles */
        .view-more-btn {
            display: inline-block;
            margin-top: 30px;
            padding: 12px 30px;
            background: linear-gradient(45deg, var(--secondary-color), #003d6b);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
        }

        .view-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--hover-shadow);
            color: white;
        }

        /* Download Itinerary Button */
        .download-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 15px;
            padding: 10px 20px;
            background: linear-gradient(45deg, var(--secondary-color), #003d6b);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
        }

        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--hover-shadow);
            color: white;
        }

        :root {
            --primary-color: #ff6b35;
            --text-primary: #fff;
            --text-secondary: #ccc;
            --bar-bg: rgba(0, 0, 0, 0.25);
            /* Darker transparency - 25% */
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }

        body.vn-overlay-active {
            /* No overflow block - site scrolls freely */
        }

        .vn-chatbot-container {
            position: fixed;
            z-index: 10000;
            font-family: 'Noto Sans JP', 'Poppins', sans-serif;
            /* VN-like font */
            bottom: 20px;
            right: 20px;
        }

        .vn-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow);
            border: 2px solid #fff;
            background: #fff;
            transition: var(--transition);
            display: block;
            /* Ensure it's always visible */
        }

        .vn-avatar.overlay-hidden {
            display: none;
        }

        .vn-avatar:hover {
            transform: scale(1.1);
        }

        .vn-sprite {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .vn-pulse {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(255, 107, 53, 0.4);
            animation: vn-pulse 2s infinite;
        }

        @keyframes vn-pulse {
            0% {
                transform: scale(0.95);
                opacity: 1;
            }

            100% {
                transform: scale(1.05);
                opacity: 0;
            }
        }

        .vn-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.15);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .vn-overlay.active {
            opacity: 1;
            visibility: visible;
            pointer-events: none;
        }

        /* VN Container: Full-Width, Sprite Overlaid Left */
        .vn-dialogue {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100vh;
            /* Full height for sprite */
            background: none;
            /* Transparent for site BG */
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 10001;
            display: flex;
            flex-direction: column;
            /* Stack vertically */
            justify-content: flex-end;
            /* Push to bottom */
            align-items: stretch;
            /* Full width children */
        }

        .vn-dialogue.active {
            opacity: 1;
            pointer-events: all;
        }

        /* Left Sprite: Behind Dialogue Box, Aligned to Bottom */
        .vn-character-panel {
            position: absolute;
            left: -20px;
            bottom: 0;
            width: 540px;
            height: auto;
            max-height: 90vh;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 0;
            z-index: 1;
        }

        .vn-character-sprite {
            width: 100%;
            height: auto;
            max-width: 540px;
            max-height: 90vh;
            object-fit: contain;
            transition: none;
            padding: 0;
            margin: 0;
            animation: vn-breathe 4s infinite ease-in-out;
            filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.5));
        }

        @keyframes vn-breathe {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-5px) scale(1.01);
            }
        }

        /* Bottom Bar: Glassmorphic Design */
        .vn-dialogue-bar {
            width: 100%;
            min-height: 180px;
            max-height: 50vh;
            /* Enhanced Glassmorphism */
            background: linear-gradient(135deg, rgba(20, 20, 40, 0.75), rgba(40, 25, 50, 0.7));
            backdrop-filter: blur(25px) saturate(180%);
            -webkit-backdrop-filter: blur(25px) saturate(180%);
            display: flex;
            flex-direction: column;
            padding: 15px 4%;
            box-sizing: border-box;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 2;
            overflow-y: auto;
            border-radius: 24px 24px 0 0;
            box-shadow:
                0 -10px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 30px rgba(255, 107, 53, 0.1);
        }

        .vn-character-name {
            font-size: 1.1rem;
            color: #ff9a76;
            font-weight: bold;
            margin-bottom: 8px;
            padding-left: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
        }

        .vn-dialogue-text {
            flex: 0 0 auto;
            color: #ffffff;
            font-size: 1.05rem;
            line-height: 1.7;
            text-align: left;
            width: 100%;
            padding: 10px 15px;
            overflow: visible;
            white-space: normal;
            word-wrap: break-word;
            position: relative;
            max-height: none;
            margin-bottom: 12px;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
        }

        /* Typing cursor - inline at end */
        .vn-dialogue-text[aria-busy="true"]::after {
            content: '|';
            color: #ff6b35;
            font-weight: bold;
            animation: vn-cursor 0.8s infinite;
            margin-left: 2px;
        }

        .vn-dialogue-text a {
            color: #ff9a76;
            text-decoration: underline;
            font-weight: bold;
            pointer-events: auto;
        }

        .vn-dialogue-text a:hover {
            color: var(--primary-color);
        }

        /* Remove old cursor animation after text */
        .vn-dialogue-text::after {
            display: none;
        }

        @keyframes vn-cursor {

            0%,
            50% {
                opacity: 1;
            }

            51%,
            100% {
                opacity: 0;
            }
        }

        .vn-choices-bar {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 8px;
            padding: 0 5px;
        }

        .vn-choices {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            /* Center buttons */
            gap: 8px;
            max-height: 180px;
            overflow-y: auto;
            padding: 8px 2px;
        }

        .vn-choice-btn {
            /* Glassmorphic Button */
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.6), rgba(229, 90, 43, 0.5));
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #ffffff;
            padding: 10px 14px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.25s ease;
            font-size: 0.85rem;
            flex: 1 1 auto;
            min-width: 100px;
            max-width: 48%;
            text-align: center;
            font-weight: 600;
            box-shadow:
                0 4px 15px rgba(255, 107, 53, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            opacity: 0;
            animation: vn-btn-fade-in 0.4s ease forwards;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        @keyframes vn-btn-fade-in {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .vn-choice-btn:hover {
            background: linear-gradient(135deg, rgba(255, 140, 90, 0.85), rgba(255, 107, 53, 0.8));
            transform: translateY(-3px) scale(1.02);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow:
                0 8px 25px rgba(255, 107, 53, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 15px rgba(255, 107, 53, 0.3);
        }

        /* Fixed Action Buttons - Top Right Above Dialogue (Like VN Save/Load) */
        /* Fixed Action Buttons - Top Right Above Dialogue (Relative to Container) */
        /* Fixed Action Buttons - Top Right Above Dialogue (Relative to Container) */
        .vn-fixed-actions {
            position: absolute;
            top: -42px;
            /* Adjusted to be closer to dialogue box */
            right: 0;
            display: flex;
            flex-direction: row;
            gap: 8px;
            /* Slightly closer gap */
            z-index: 10005;
            padding-right: 15px;
            pointer-events: auto;
        }

        .vn-fixed-actions.visible {
            opacity: 1;
        }

        .vn-action-btn {
            /* Glassmorphic Action Button - Bigger & Rectangular */
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.7), rgba(229, 90, 43, 0.6));
            /* Slightly more opaque for clarity */
            backdrop-filter: blur(15px) saturate(150%);
            -webkit-backdrop-filter: blur(15px) saturate(150%);
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: #ffffff;
            font-size: 1rem;
            /* Larger text */
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            padding: 10px 20px;
            /* Larger padding */
            border-radius: 10px;
            /* Slightly more rounded */
            min-width: 100px;
            /* Requested width */
            width: auto;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow:
                0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .vn-action-btn:hover {
            background: linear-gradient(135deg, rgba(255, 140, 90, 1), rgba(255, 107, 53, 1));
            border-color: #ffffff;
            transform: scale(1.1) translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
        }

        /* Custom Button Colors */
        #vnWhatsappBtn {
            background: linear-gradient(135deg, #25D366, #128C7E);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

        #vnWhatsappBtn:hover {
            background: linear-gradient(135deg, #2af074, #15a897);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
        }

        #vnAIChatBtn {
            background: linear-gradient(135deg, #EA4335, #B31412);
            box-shadow: 0 4px 15px rgba(234, 67, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

        #vnAIChatBtn:hover {
            background: linear-gradient(135deg, #ff5747, #d91a18);
            box-shadow: 0 6px 20px rgba(234, 67, 53, 0.5);
        }

        .vn-action-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .vn-action-btn.highlight::before {
            opacity: 1;
            animation: vn-shine 0.8s ease-out;
        }

        .vn-action-btn.highlight {
            animation: vn-jump 0.5s ease-out;
        }

        @keyframes vn-jump {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-10px) scale(1.2);
            }
        }

        @keyframes vn-shine {
            0% {
                opacity: 0;
                transform: scale(0.5);
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0;
                transform: scale(1.5);
            }
        }

        .vn-back-btn {
            display: none;
            /* Hidden by default */
        }

        .vn-back-btn.visible {
            display: flex;
        }

        .vn-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(220, 53, 69, 0.9);
            /* Red color for visibility */
            border: 2px solid #fff;
            /* White border to make it pop */
            color: #fff;
            width: 45px;
            height: 45px;
            font-size: 1.5rem;
            /* Larger X icon */
            border-radius: 50%;
            cursor: pointer;
            z-index: 3;
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vn-close:hover {
            background: #ff0000;
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }

        /* AI Chat Container Styles */
        .vn-ai-chat-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 10px 0;
            animation: vn-btn-fade-in 0.4s ease forwards;
        }

        .vn-ai-suggestions {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
        }

        .vn-ai-suggestion-btn {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .vn-ai-suggestion-btn:hover {
            background: rgba(255, 107, 53, 0.8);
            border-color: #ff6b35;
            transform: translateY(-2px);
        }

        .vn-ai-input-wrapper {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .vn-ai-input {
            flex: 1;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 10px 15px;
            color: #fff;
            font-size: 0.9rem;
            outline: none;
            transition: all 0.2s ease;
        }

        .vn-ai-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .vn-ai-input:focus {
            border-color: #ff6b35;
            background: rgba(255, 255, 255, 0.15);
        }

        .vn-ai-send-btn {
            background: linear-gradient(135deg, #ff6b35, #e55a2b);
            border: none;
            color: #fff;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
        }

        .vn-ai-send-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.6);
        }

        .vn-ai-send-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Tablet Devices */
        @media (max-width: 1024px) {
            .vn-character-panel {
                width: 550px;
                left: -15px;
                bottom: 0;
                max-height: 95vh;
                z-index: 1;
            }

            .vn-character-sprite {
                max-width: 550px;
                max-height: 95vh;
            }

            .vn-dialogue-bar {
                padding: 12px 4%;
            }

            .vn-dialogue-text {
                font-size: 0.9rem;
            }

            .vn-choice-btn {
                font-size: 0.85rem;
                padding: 8px 14px;
                min-width: 80px;
            }
        }

        /* Mobile Devices */
        @media (max-width: 768px) {
            .vn-chatbot-container {
                bottom: 15px;
                right: 15px;
            }

            .vn-avatar {
                width: 60px;
                height: 60px;
            }

            .vn-character-panel {
                width: 420px;
                max-width: 420px;
                left: -10px;
                bottom: 40px;
                max-height: 90vh;
                z-index: 1;
            }

            .vn-character-sprite {
                width: 100%;
                max-width: 420px;
                max-height: 90vh;
                height: auto;
                object-fit: contain;
            }

            .vn-dialogue-bar {
                min-height: 190px;
                max-height: 50vh;
                padding: 12px 3%;
                border-radius: 18px 18px 0 0;
            }

            .vn-character-name {
                font-size: 0.9rem;
                margin-bottom: 8px;
                padding-left: 5px;
            }

            .vn-dialogue-text {
                font-size: 0.95rem;
                line-height: 1.5;
                padding: 10px 12px;
                margin-bottom: 12px;
                text-align: left;
                /* Force left alignment */
            }

            .vn-choices-bar {
                gap: 10px;
            }

            .vn-choices {
                gap: 8px;
            }

            .vn-choice-btn {
                padding: 10px 16px;
                font-size: 0.85rem;
                min-width: 90px;
            }

            .vn-fixed-actions {
                bottom: 195px;
                right: 10px;
                gap: 6px;
            }

            .vn-action-btn {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
                padding: 6px;
            }

            .vn-close {
                width: 38px;
                height: 38px;
                font-size: 1.2rem;
                top: 8px;
                right: 8px;
            }
        }

        /* Small Mobile Devices */
        @media (max-width: 480px) {
            .vn-chatbot-container {
                bottom: 10px;
                right: 10px;
            }

            .vn-avatar {
                width: 60px;
                height: 60px;
            }

            .vn-character-panel {
                width: 75vw;
                /* scales with screen */
                max-width: 380px;
                left: -10px;
                bottom: 60px;
                max-height: 85vh;
            }

            .vn-character-sprite {
                width: 100%;
                max-width: 380px;
                max-height: 85vh;
                height: auto;
                object-fit: contain;
            }

            .vn-dialogue-bar {
                min-height: 220px;
                max-height: 60vh;
                padding: 10px 2%;
            }

            .vn-character-name {
                font-size: 0.85rem;
                margin-bottom: 6px;
            }

            .vn-dialogue-text {
                font-size: 0.8rem;
                line-height: 1.2;
                max-height: 90px;
                padding: 0 10px;
                margin-bottom: 8px;
            }

            .vn-choices-bar {
                gap: 10px;
            }

            .vn-choice-btn {
                padding: 8px 12px;
                font-size: 0.75rem;
                min-width: 50px;
                height: auto;
                min-height: 34px;
                border-radius: 16px;
                flex: 0 1 auto;
                white-space: nowrap;
            }

            .vn-action-btn {
                width: 28px;
                height: 28px;
                font-size: 0.9rem;
            }

            .vn-close {
                width: 24px;
                height: 24px;
                top: 6px;
                right: 6px;
            }
        }

        /* Extra Small Mobile Devices */
        @media (max-width: 360px) {
            .vn-dialogue-bar {
                height: 240px;
                padding: 10px 2%;
            }

            .vn-dialogue-text {
                font-size: 0.75rem;
                max-height: 100px;
            }

            .vn-choice-btn {
                font-size: 0.7rem;
                padding: 5px 8px;
                height: 30px;
                min-height: 30px;
                flex: 1 1 100%;
                /* Full width buttons */
                margin-bottom: 5px;
            }

            .vn-choices {
                flex-wrap: wrap;
                gap: 6px;
                justify-content: center;
            }

            .vn-choice-btn:last-child {
                margin-bottom: 0;
            }
        }

        /* Trust Badge Styling */
        .trust-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none !important;
            transition: all 0.3s ease;
            cursor: pointer;
            padding: 10px;
            border-radius: 10px;
        }

        .trust-badge:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .trust-badge img {
            transition: transform 0.3s ease;
        }

        .event-date-badge small {
            display: block;
            font-size: 0.7rem;
            max-height: 90vh;
            height: auto;
            object-fit: contain;
        }

        .vn-dialogue-bar {
            min-height: 190px;
            max-height: 50vh;
            padding: 12px 3%;
            border-radius: 18px 18px 0 0;
        }

        .vn-character-name {
            font-size: 0.9rem;
            margin-bottom: 8px;
            padding-left: 5px;
        }

        .vn-dialogue-text {
            font-size: 0.95rem;
            line-height: 1.5;
            padding: 10px 12px;
            margin-bottom: 12px;
        }

        .vn-choices-bar {
            gap: 10px;
        }

        .vn-choices {
            gap: 8px;
        }

        .vn-choice-btn {
            padding: 10px 16px;
            font-size: 0.85rem;
            min-width: 90px;
        }

        .vn-fixed-actions {
            bottom: 195px;
            right: 10px;
            gap: 6px;
        }

        .vn-action-btn {
            width: 40px;
            height: 40px;
            font-size: 1.1rem;
            padding: 6px;
        }

        .vn-close {
            width: 28px;
            height: 28px;
            top: 8px;
            right: 8px;
        }


        /* Small Mobile Devices */
        @media (max-width: 480px) {
            .vn-chatbot-container {
                bottom: 10px;
                right: 10px;
            }

            .vn-avatar {
                width: 60px;
                height: 60px;
            }

            .vn-character-panel {
                width: 75vw;
                /* scales with screen */
                max-width: 380px;
                left: -10px;
                bottom: 60px;
                max-height: 85vh;
            }

            .vn-character-sprite {
                width: 100%;
                max-width: 380px;
                max-height: 85vh;
                height: auto;
                object-fit: contain;
            }

            .vn-dialogue-bar {
                min-height: 220px;
                max-height: 60vh;
                padding: 10px 2%;
            }

            .vn-character-name {
                font-size: 0.85rem;
                margin-bottom: 6px;
            }

            .vn-dialogue-text {
                font-size: 0.8rem;
                line-height: 1.2;
                max-height: 90px;
                padding: 0 10px;
                margin-bottom: 8px;
            }

            .vn-choices-bar {
                gap: 10px;
            }

            .vn-choice-btn {
                padding: 8px 12px;
                font-size: 0.75rem;
                min-width: 50px;
                height: auto;
                min-height: 34px;
                border-radius: 16px;
                flex: 0 1 auto;
                white-space: nowrap;
            }

            .vn-action-btn {
                width: 28px;
                height: 28px;
                font-size: 0.9rem;
            }

            .vn-close {
                width: 24px;
                height: 24px;
                top: 6px;
                right: 6px;
            }
        }

        /* Extra Small Mobile Devices */
        @media (max-width: 360px) {
            .vn-dialogue-bar {
                height: 240px;
                padding: 10px 2%;
            }

            .vn-dialogue-text {
                font-size: 0.75rem;
                max-height: 100px;
            }

            .vn-choice-btn {
                font-size: 0.7rem;
                padding: 5px 8px;
                height: 30px;
                min-height: 30px;
                flex: 1 1 100%;
                /* Full width buttons */
                margin-bottom: 5px;
            }

            .vn-choices {
                flex-wrap: wrap;
                gap: 6px;
                justify-content: center;
            }

            .vn-choice-btn:last-child {
                margin-bottom: 0;
            }
        }

        /* Trust Badge Styling */
        .trust-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none !important;
            transition: all 0.3s ease;
            cursor: pointer;
            padding: 10px;
            border-radius: 10px;
        }

        .trust-badge:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .trust-badge img {
            transition: transform 0.3s ease;
        }

        .event-date-badge small {
            display: block;
            font-size: 0.7rem;
            font-weight: 700;
            color: #e63946;
            letter-spacing: 1px;
        }

        /* Upcoming Event Horizontal Card - Mobile First Side-by-Side */
        .event-card-horizontal {
            display: flex;
            flex-direction: row;
            /* Force Row on all screens */
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            align-items: stretch;
        }

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

        .event-card-img-wrapper {
            position: relative;
            width: 40%;
            /* Mobile width */
            min-width: 130px;
            /* Prevent being too thin */
            height: auto;
            min-height: 100%;
        }

        @media (min-width: 768px) {
            .event-card-img-wrapper {
                width: 35%;
                /* Desktop width */
                min-width: 220px;
            }
        }

        .event-card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .event-body {
            padding: 0.5rem;
            /* Further Reduced padding for mobile spacing */
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 60%;
            /* Limit text width */
        }

        .event-body .d-flex {
            gap: 10px;
            /* Add gap for button spacing */
            flex-wrap: wrap;
            /* Allow wrapping on very small screens */
        }

        .event-body h3 {
            font-size: 1.1rem;
            /* Smaller title on mobile */
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .event-body p.text-muted {
            font-size: 0.85rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            /* Limit text lines */
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }

        .event-meta {
            color: #6c757d;
            font-size: 0.8rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .event-price-badge {
            background-color: #ff8400;
            color: #fff;
            padding: 4px 10px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-block;
            white-space: nowrap;
        }

        .btn-book-outline {
            border: 1px solid #fc1515;
            color: #ff822e;
            background: transparent;
            padding: 4px 12px;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 0.85rem;
            white-space: nowrap;
        }

        @media (min-width: 768px) {
            .event-body {
                padding: 1.5rem;
            }

            .event-body h3 {
                font-size: 1.5rem;
            }

            .event-body p.text-muted {
                font-size: 1rem;
                -webkit-line-clamp: unset;
            }

            .event-price-badge {
                padding: 6px 16px;
                font-size: 0.95rem;
            }

            .btn-book-outline {
                padding: 6px 20px;
                font-size: 1rem;
            }
        }

        .btn-book-outline:hover {
            background: #000000;
            color: #fff;
        }

        /* Fix for Event Date Badge positioning in horizontal layout */
        .event-card-horizontal .event-date-badge {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(4px);
            padding: 5px 8px;
            /* Smaller badge on mobile */
            top: 10px;
            right: 10px;
        }

        .event-card-horizontal .event-date-badge span {
            font-size: 1rem;
        }

        .event-card-horizontal .event-date-badge small {
            font-size: 0.6rem;
        }
