@import url('https://fonts.googleapis.com/css2?family=Caveat:ital,wght@0,700;1,700&display=swap');

        :root {
            --primary: #6366f1;
            --primary-hover: #4f46e5;
            --accent: #f97316;
            --bg-light: #FBE001;
            --text-dark: #0f172a;
            --text-muted: #64748b;
            --white: #ffffff;
            --glass: rgba(255, 255, 255, 0.85);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden !important;
            width: 100%;
            max-width: 100%;
            margin: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        h1,
        h2,
        h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        /* RESPONSIVE & BACKGROUNDS */
        .responsive-bg {
            background-image: url('../background-image-mob.webp');
            background-size: cover;
            background-position: top center;
            background-repeat: no-repeat;
            background-attachment: local;
            min-height: 110vh;
        }

        @media (min-width: 481px) {
            .responsive-bg {
                background-image: url('../background-image-tab.webp');
                background-size: 100% 100%;
                background-position: center;
                background-attachment: scroll;
            }
        }

        @media (min-width: 1280px) {
            .responsive-bg {
                background-image: url('../background-image-pc.png');
                background-size: 100% 100%;
                background-position: center;
                background-attachment: scroll;
                min-height: 110vh;
            }
        }

        .container {
            width: 95%;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* HEADER */
        header {
            background: transparent;
            box-shadow: none;
            padding: 0;
            position: relative;
            width: 100%;
            z-index: 1000;

            /* Premium reveal transition */
            transform: translateY(-100%);
            transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
            will-change: transform;
        }

        .nav {
            background: #38bdf8;
            /* Hanging Sky Blue Banner */
            border-radius: 0 0 10px 10px;
            /* Square on Top, Rounded only on the Bottom */
            box-shadow: 0 8px 20px -4px rgba(56, 189, 248, 0.35);
            /* Focused bottom shadow */
            display: flex;
            justify-content: center;
            align-items: center;
            width: max-content;
            margin: 0 auto;
            padding: 8px 45px 10px 45px;
            /* Balanced visual weight extending from the top */
        }

        .logo {
            font-size: 1.5rem;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            margin: 0 auto;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #ffffff;
            font-weight: 600;
            transition: all 0.3s;
        }

        .nav-links a:hover {
            color: #f1f5f9;
            transform: translateY(-2px);
        }

        .book-now-btn {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0.75rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .book-now-btn:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
        }

        /* HERO SECTION - Updated to match int.html container */
        .hero {
            flex: 1;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            overflow: hidden;
            padding: 0;
        }

        /* Premium Overlay for Video Background */
        .hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* FORM CONTAINER - Glassmorphism Style */
        .search-box {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 20px;
            width: 320px;
            padding: 15px 18px;
            display: flex;
            flex-direction: column;
            margin-top: 10px;

            /* Adjusted to clear the banner */

            /* 2D Reveal State */
            opacity: 0;
            transform: translateY(30px);
            transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.0s ease;
            will-change: transform, opacity;
        }

        /* Labeled Headings optimized for transparency */
        .search-box h3 {
            font-family: 'Montserrat Regular';
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #000000;
            margin: 6px 0 2px 20px;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
        }

        .input-wrapper i.fas {
            position: absolute;
            left: 12px;
            color: #0148BE;
            font-size: 14px;
            z-index: 1;
            pointer-events: none;
        }

        .search-box input {
            padding-left: 36px !important;
            padding-right: 36px !important;
            text-align: left !important;
        }

        /* Translucent UI Inputs */
        .search-box input,
        .search-box select {
            width: 100%;
            box-sizing: border-box;
            margin-bottom: 4px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.92);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            outline: none;
            font-family: 'Bahnschrift SemiCondensed', 'Bahnschrift', sans-serif;
            font-size: 13px;
            color: #1e293b;
            transition: all 0.2s ease;

            /* Vertical Alignment */
            height: 38px;
            line-height: 38px;
            padding-top: 0;
            padding-bottom: 0;

            /* Remove iOS default styles */
            -webkit-appearance: none;
            appearance: none;
        }



        .search-box input:focus {
            background: #ffffff;
            border-color: #0148BE;
            box-shadow: 0 0 0 3px rgba(1, 72, 190, 0.2);
        }

        input[type="date"],
        .flatpickr-input {
            height: 38px;
            line-height: 38px;
            box-sizing: border-box;
        }

        .search-box input::placeholder,
        .search-box select::placeholder,
        .autocomplete input::placeholder {
            font-family: 'Bahnschrift SemiCondensed', 'Bahnschrift', sans-serif !important;
            color: #999 !important;
            opacity: 1 !important;
            font-size: 13px !important;
            font-weight: normal !important;
            text-align: left !important;
        }

        /* Button - Responsive */
        .search-box button {
            width: 100%;
            padding: 10px;
            margin-top: 2px;
            border: none;
            border-radius: 8px;
            background: #0148BE;
            color: white;
            font-size: 14px;
            cursor: pointer;
            transition: 0.3s;
            font-weight: 600;
        }

        .search-box button:hover {
            transform: scale(1.05);
        }

        .search-box input[type="checkbox"] {
            width: 16px !important;
            height: 16px !important;
            margin: 0 !important;
            padding: 0 !important;
            border: 1px solid #cbd5e1 !important;
            background: #ffffff !important;
            border-radius: 4px !important;
            -webkit-appearance: checkbox !important;
            appearance: checkbox !important;
            cursor: pointer !important;
            display: inline-block !important;
            box-shadow: none !important;
        }



        @media (max-width: 768px) {
            .search-box {
                width: 90% !important;
                max-width: 280px !important;
                padding: 10px 15px !important;
                border-radius: 12px !important;
                backdrop-filter: blur(4px) !important;
                -webkit-backdrop-filter: blur(4px) !important;
                box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.1) !important; 
                height: auto !important;
                min-height: auto !important;
            }

            .search-box h3 {
                margin: 2px 0 2px 18px !important;
                font-size: 9px !important;
            }

            .input-wrapper i.fas {
                left: 10px !important;
                font-size: 12px !important;
            }

            .search-box input {
                height: 32px !important;
                line-height: 32px !important;
                font-size: 12px !important;
                margin-bottom: 4px !important;
                padding-left: 30px !important;
                padding-right: 30px !important;
                text-align: left !important;
            }

            input[type="date"],
            .flatpickr-input {
                height: 32px !important;
                line-height: 32px !important;
            }

            .search-box button {
                padding: 8px !important;
                font-size: 13px !important;
                margin-top: 6px !important;
            }

            .success-modal {
                padding: 30px 20px !important;
                width: 90% !important;
                max-width: 340px !important;
            }

            .hero {
                padding-bottom: 15px;
            }
        }

        /* Desktop: Move form down slightly */
        @media (min-width: 1024px) {
            .search-box {
                margin-top: 60px;
                /* Base is 10px, adding 50px */
            }
        }

        /* SUCCESS MODAL */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 9999;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .success-modal {
            background: white;
            padding: 40px;
            border-radius: 25px;
            width: 380px;
            max-width: 90%;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform: translateY(-30px) scale(0.98);
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            will-change: transform;
        }

        .modal-overlay.active .success-modal {
            transform: translateY(0) scale(1);
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: #4ade80;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            margin: 0 auto 20px;
            box-shadow: 0 10px 20px rgba(74, 222, 128, 0.3);
        }

        .success-modal h2 {
            margin: 0 0 10px;
            color: #1e293b;
        }

        .success-modal p {
            color: #64748b;
            margin-bottom: 25px;
            font-size: 1rem;
        }

        .booking-id-tag {
            background: #f1f5f9;
            padding: 10px 15px;
            border-radius: 10px;
            font-family: monospace;
            font-weight: 700;
            color: #4f46e5;
            display: inline-block;
            margin-bottom: 25px;
        }

        .modal-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(45deg, #5f5cff, #7a7aff);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        .modal-btn:hover {
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(95, 92, 255, 0.4);
        }

        /* Premium Page Transition Reveals */
        .play header {
            transform: translateY(0);
            transition-delay: 0.2s;
        }

        .play .search-box {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        footer {
            transform: translateY(100%);
            transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
            will-change: transform;
        }

        .play footer {
            transform: translateY(0);
            transition-delay: 0.8s;
        }

        /* Background popping animations */
        .video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            overflow: hidden;
            z-index: 0;
        }

        .column {
            flex: 1;
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .scroll-track {
            display: flex;
            flex-direction: column;
            margin-top: 100px;
            /* Adjusted to clear the banner */
            gap: 40px;
            width: 100%;
            align-items: center;
            padding: 20px 0;
            will-change: transform;
        }

        .scroll-track.up {
            animation: scroll-up 35s linear infinite;
        }

        .scroll-track.down {
            animation: scroll-down 35s linear infinite;
        }

        /* Pauses scroll on hover for readability/interaction */
        .scroll-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll-up {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-50%);
            }
        }

        @keyframes scroll-down {
            0% {
                transform: translateY(-50%);
            }

            100% {
                transform: translateY(0);
            }
        }

        .image-card {
            width: 95%;
            height: auto;
            max-height: 400px;
            display: flex;
            flex-direction: column;
            margin-top: 100px;
            /* Adjusted to clear the banner */
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .video-container img {
            max-width: 100%;
            max-height: 380px;
            object-fit: contain;
            transition: transform 0.3s ease;
            mix-blend-mode: multiply;
            /* GPU-accelerated magenta removal — instant, no canvas needed */
        }

        .image-card:hover img {
            cursor: pointer;
            transform: scale(1.04);
        }

        .floor-shadow {
            display: none;
        }


        /* Mobile-only Marquees */
        .mobile-marquee {
            display: none;
        }

        @media (max-width: 768px) {
            .mobile-marquee {
                display: block;
                width: 100%;
                overflow: hidden;
                position: relative;
                margin-top: 15px;
                padding-top: 8px;
            }

            /* Both marquee rows: full viewport width, breaking out of any parent container */
            .logo-marquee,
            .book-marquee {
                width: 100vw;
                position: relative;
                left: 50%;
                transform: translateX(-50%);
                overflow: hidden;
                border-top: none;
            }

            .marquee-track-horizontal {
                display: flex;
                width: max-content;
                align-items: center;
                will-change: transform;
            }

            .marquee-item {
                flex-shrink: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-right: 20px;
            }

            /* Unified image size for BOTH marquee rows */
            .logo-marquee .marquee-item img,
            .book-marquee .marquee-item img {
                height: 80px;
                width: auto;
                object-fit: contain;
                border-radius: 10px;
            }

            .scroll-left-to-right {
                animation: marquee-ltr 25s linear infinite;
            }

            .scroll-right-to-left {
                animation: marquee-rtl 25s linear infinite;
            }

            @keyframes marquee-ltr {
                0% {
                    transform: translateX(-50%);
                }

                100% {
                    transform: translateX(0);
                }
            }

            @keyframes marquee-rtl {
                0% {
                    transform: translateX(0);
                }

                100% {
                    transform: translateX(-50%);
                }
            }
        }

        /* Beautiful Cloud background animations for Logo Section */
        .logo-cloud {
            position: absolute;
            height: auto;
            z-index: 1;
            pointer-events: none;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
            --cloud-move-x: 35px;
        }

        .logo-cloud.left {
            right: 55%;
            margin-right: 130px;
            top: 5px;
            width: 200px;
            animation: float-left-to-right 15s ease-in-out infinite alternate;
        }

        .logo-cloud.right {
            left: 51%;
            margin-left: 130px;
            top: 5px;
            width: 200px;
            animation: float-right-to-left 15s ease-in-out infinite alternate;
        }

        @keyframes float-left-to-right {
            0% {
                transform: translate(calc(-1 * var(--cloud-move-x)), 0) scale(0.95);
            }

            100% {
                transform: translate(var(--cloud-move-x), -8px) scale(1.35);
            }
        }

        @keyframes float-right-to-left {
            0% {
                transform: translate(var(--cloud-move-x), 0) scale(1.35);
            }

            100% {
                transform: translate(calc(-1 * var(--cloud-move-x)), -8px) scale(0.95);
            }
        }

        @media (max-width: 768px) {
            .logo-cloud.left {
                right: auto;
                left: 0;
                margin: 0;
                top: 0px;
                width: 110px;
                z-index: 3;
            }
            .logo-cloud.right {
                left: auto;
                right: 0;
                margin: 0;
                top: 0px;
                width: 110px;
                z-index: 3;
            }
        }

        /* Mobile Form Clouds */
        .mobile-form-clouds {
            display: none;
        }

        @keyframes float-mobile-cloud-left {
            0% {
                transform: translateY(0) scale(0.85);
            }

            100% {
                transform: translateY(-6px) scale(1.15);
            }
        }

        @keyframes float-mobile-cloud-right {
            0% {
                transform: translateY(-6px) scale(1.15);
            }

            100% {
                transform: translateY(0) scale(0.85);
            }
        }

        @media (max-width: 768px) {
            .mobile-form-clouds {
                display: none !important;
            }

            .mobile-cloud-img {
                width: 80px;
                height: auto;
                filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
                will-change: transform;
            }

            .mobile-cloud-img.left {
                position: relative;
                top: 0px;
                animation: float-mobile-cloud-left 4s ease-in-out infinite alternate;
            }

            .mobile-cloud-img.right {
                position: relative;
                top: -5px;
                animation: float-mobile-cloud-right 4s ease-in-out infinite alternate;
            }
        }

        /* Premium Hot Air Balloon Styles */
        .hero-balloon {
            position: absolute;
            height: auto;
            z-index: 2;
            pointer-events: none;
            filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
            --balloon-drift: 45px;
            will-change: transform, opacity;
        }

        .balloon-left-1 {
            left: 8%;
            top: 68vh;
            width: 130px;
            animation: fly-left-1 20s linear infinite;
            animation-delay: 0s;
        }

        .balloon-left-2 {
            left: 20%;
            top: 78vh;
            width: 80px;
            animation: fly-left-2 20s linear infinite;
            animation-delay: 8s;
        }

        .balloon-right {
            right: 10%;
            top: 72vh;
            width: 120px;
            animation: fly-right 20s linear infinite;
            animation-delay: 4s;
        }

        @keyframes fly-left-1 {
            0% {
                transform: translate(0, 0) scale(0.9) rotate(0deg);
                opacity: 0;
            }

            12% {
                opacity: 0.95;
            }

            45% {
                transform: translate(calc(var(--balloon-drift) * 0.7), -30vh) scale(0.8) rotate(2deg);
            }

            75% {
                transform: translate(calc(var(--balloon-drift) * 0.2), -55vh) scale(0.7) rotate(-1.5deg);
            }

            90% {
                opacity: 0.95;
            }

            100% {
                transform: translate(var(--balloon-drift), -80vh) scale(0.6) rotate(1deg);
                opacity: 0;
            }
        }

        @keyframes fly-left-2 {
            0% {
                transform: translate(0, 0) scale(0.8) rotate(0deg);
                opacity: 0;
            }

            12% {
                opacity: 0.85;
            }

            45% {
                transform: translate(calc(var(--balloon-drift) * -0.5), -35vh) scale(0.7) rotate(-2deg);
            }

            75% {
                transform: translate(calc(var(--balloon-drift) * 0.1), -60vh) scale(0.62) rotate(1.5deg);
            }

            90% {
                opacity: 0.85;
            }

            100% {
                transform: translate(calc(var(--balloon-drift) * -0.3), -88vh) scale(0.55) rotate(-1deg);
                opacity: 0;
            }
        }

        @keyframes fly-right {
            0% {
                transform: translate(0, 0) scale(0.85) rotate(0deg);
                opacity: 0;
            }

            12% {
                opacity: 0.95;
            }

            45% {
                transform: translate(calc(var(--balloon-drift) * -0.8), -32vh) scale(0.78) rotate(2.5deg);
            }

            75% {
                transform: translate(calc(var(--balloon-drift) * -0.3), -58vh) scale(0.7) rotate(-2deg);
            }

            90% {
                opacity: 0.95;
            }

            100% {
                transform: translate(calc(var(--balloon-drift) * -1.2), -82vh) scale(0.62) rotate(1deg);
                opacity: 0;
            }
        }

        @media (max-width: 1024px) {
            .hero-balloon {
                --balloon-drift: 25px;
            }

            .balloon-left-1 {
                left: 3%;
                width: 90px;
            }

            .balloon-left-2 {
                left: 12%;
                width: 60px;
            }

            .balloon-right {
                right: 3%;
                width: 85px;
            }
        }

        @media (max-width: 768px) {
            .hero-balloon {
                --balloon-drift: 15px;
            }

            .balloon-left-1 {
                left: 4%;
                width: 95px;
                top: 70vh;
            }

            .balloon-left-2 {
                left: 10%;
                width: 75px;
                top: 80vh;
            }

            .balloon-right {
                right: 4%;
                width: 90px;
                top: 72vh;
            }
        }

        /* Animated Airplane Styles */
        .hero-airplane {
            position: absolute;
            height: auto;
            z-index: 3;
            pointer-events: none;
            width: 180px;
            height: auto;
            filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
            animation: fly-airplane 24s linear infinite;
            will-change: transform, opacity;
        }

        @keyframes fly-airplane {
            0% {
                left: -180px;
                top: 48vh;
                transform: scale(0.45) rotate(4deg);
            }

            30% {
                transform: scale(0.68) rotate(2deg) translateY(10px);
            }

            60% {
                transform: scale(0.95) rotate(5deg) translateY(-15px);
            }

            100% {
                left: 100%;
                top: 22vh;
                transform: scale(1.35) rotate(3deg);
            }
        }

        @keyframes fly-airplane-mobile {
            0% {
                left: -145px;
                top: 38vh;
                transform: scale(0.5) rotate(4deg);
            }

            50% {
                transform: scale(0.85) rotate(2deg) translateY(5px);
            }

            100% {
                left: 100%;
                top: 15vh;
                transform: scale(1.2) rotate(3deg);
            }
        }

        @media (max-width: 1024px) {
            .hero-airplane {
                width: 130px;
                animation-duration: 20s;
            }
        }

        @media (max-width: 768px) {
            .hero-airplane {
                width: 145px;
                animation: fly-airplane-mobile 18s linear infinite;
            }
        }

        /* Autocomplete Styles */
        .autocomplete {
            position: relative;
            display: block;
            width: 100%;
        }

        .autocomplete input {
            width: 100%;
            box-sizing: border-box;
            /* Inherit placeholder fonts explicitly to be safe */
            font-family: 'Bahnschrift SemiCondensed', 'Bahnschrift', sans-serif;
        }

        .autocomplete-items {
            position: absolute;
            border: 1px solid #e2e8f0;
            z-index: 999;
            top: 0;
            left: 100%;
            margin-left: 15px;
            width: 250px;
            max-height: 250px;
            overflow-y: auto;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.15);
        }

        .autocomplete-items div {
            padding: 12px;
            cursor: pointer;
            background-color: #fff;
            border-bottom: 1px solid #e2e8f0;
            color: #334155;
            font-size: 14px;
            font-family: 'Bahnschrift', sans-serif;
            text-align: left;
        }

        .autocomplete-items div:hover {
            background-color: #f8fafc;
        }

        .autocomplete-active {
            background-color: #e2e8f0 !important;
            color: #0f172a;
        }

        @media (max-width: 768px) {
            .autocomplete-items {
                top: 100%;
                left: 0;
                margin-left: 0;
                margin-top: 5px;
                width: 100%;
            }
        }
    
/* Benefits Bar Styles */
.benefits-bar {
    width: 100%;
    background-color: #ffffff;
    padding: 30px 20px;
    border-top: 1px solid #e2e8f0;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px;
}

.benefit-icon {
    font-size: 2rem;
    color: #0148BE;
}

.benefit-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .benefit-item {
        justify-content: flex-start;
        padding: 12px 10px;
        gap: 10px;
    }
    .benefit-icon {
        font-size: 1.5rem;
    }
    .benefit-text {
        font-size: 0.8rem;
    }
}

/* =========================================
   HERO 3-COLUMN ENHANCEMENTS
   ========================================= */

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 350px minmax(320px, auto) 350px;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 10;
    margin-top: 40px;
    margin-bottom: 80px;
}

/* Override existing search-box positioning for the grid */
.hero-content-wrapper .search-box {
    margin: 0 auto;
    position: relative;
    transform: translateY(0); /* Remove the float effect in grid */
    opacity: 1; /* Ensure visible */
}

/* --- LEFT SIDE: SLIDER --- */
.hero-left-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.slider-header {
    font-family: 'Caveat', cursive, 'Brush Script MT';
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.paper-plane-icon {
    display: inline-block;
    animation: floatPlane 3s ease-in-out infinite;
    color: #ffffff;
}

.decorative-doodles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    color: #ffd700;
}

@keyframes floatPlane {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.slider-container {
    position: relative;
    width: 280px;
    height: 380px;
    perspective: 1000px;
}

.slider-card {
    position: absolute;
    width: 220px;
    height: 320px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    top: 30px;
    left: 30px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
}

.slider-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 15px;
    color: white;
    width: 100%;
}

.card-content h4 {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.card-content p {
    margin: 0 0 8px 0;
    font-size: 13px;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.card-location {
    font-size: 11px;
    color: #ffd700;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card States */
.slider-card.active {
    transform: translateZ(50px) scale(1.1);
    z-index: 3;
    opacity: 1;
}

.slider-card.prev {
    transform: translateX(-120px) translateZ(-50px) rotateY(15deg);
    z-index: 2;
    opacity: 0.6;
    filter: brightness(0.6);
}

.slider-card.next {
    transform: translateX(120px) translateZ(-50px) rotateY(-15deg);
    z-index: 2;
    opacity: 0.6;
    filter: brightness(0.6);
}

.slider-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.slider-controls {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.3);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: #0148BE;
    border-color: #0148BE;
    transform: scale(1.1);
}


/* --- RIGHT SIDE: HERO TEXT --- */
.hero-right-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.hero-headline {
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(255,255,255,0.8);
}

.headline-black {
    font-size: 56px;
    font-weight: 800;
    color: #1e293b;
    display: block;
}

.headline-blue {
    font-size: 72px;
    font-weight: 900;
    color: #0148BE;
    display: inline-block;
    position: relative;
}

.curved-underline {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 20px;
    overflow: visible;
}

/* Animations for text */
.hero-headline {
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1199px) {
    .hero-content-wrapper {
        grid-template-columns: 300px minmax(300px, auto) 300px;
        gap: 20px;
    }
    
    .slider-card {
        width: 180px;
        height: 260px;
        top: 20px;
        left: 50px;
    }
    
    .slider-card.prev { transform: translateX(-90px) translateZ(-50px) rotateY(15deg); }
    .slider-card.next { transform: translateX(90px) translateZ(-50px) rotateY(-15deg); }
    
    .headline-black { font-size: 42px; }
    .headline-blue { font-size: 54px; }
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 40px;
        margin-top: 20px;
    }
    
    .hero-right-text {
        order: -1; /* Put text on top for mobile/tablet */
        text-align: center;
        padding-left: 0;
    }
    
    .hero-left-slider {
        order: 2; /* Put slider at bottom */
    }
    
    .headline-black { font-size: 36px; }
    .headline-blue { font-size: 48px; }
    
    .slider-card { left: 40px; }
}

@media (max-width: 480px) {
    .slider-card {
        width: 160px;
        height: 240px;
        left: 50px;
    }
    .slider-card.prev { transform: translateX(-60px) translateZ(-50px) rotateY(15deg); }
    .slider-card.next { transform: translateX(60px) translateZ(-50px) rotateY(-15deg); }
    
    .slider-container { width: 260px; height: 300px; }
}


/* DESTINATION SHOWCASE SLIDER SECTION */
.dest-showcase-section {
    background: linear-gradient(135deg, #fffbea 0%, #fff7cc 60%, #fff3a8 100%);
    padding: 60px 20px 70px;
    position: relative;
    overflow: hidden;
}
.dest-showcase-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1,72,190,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.dest-showcase-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: center;
}
.dest-tagline-col { display: flex; flex-direction: column; gap: 16px; }
.dest-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700;
    color: #0148BE; letter-spacing: 0.06em; text-transform: uppercase;
    background: rgba(1,72,190,0.08); padding: 6px 14px; border-radius: 50px; width: fit-content;
}
.dest-headline {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
    color: #0f172a; line-height: 1.15; margin: 0;
}
.dest-headline-accent {
    color: #0148BE; position: relative; display: inline-block;
}
.dest-headline-accent::after {
    content: ''; position: absolute; left: 0; bottom: -4px;
    width: 100%; height: 4px; background: #FBE001; border-radius: 2px;
}
.dest-subtext {
    font-family: 'Inter', sans-serif; font-size: 1rem;
    color: #475569; line-height: 1.7; max-width: 380px;
}
.dest-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #0148BE; color: #ffffff;
    font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 600;
    padding: 14px 28px; border-radius: 50px; text-decoration: none;
    box-shadow: 0 6px 24px rgba(1,72,190,0.3);
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    width: fit-content; margin-top: 8px;
}
.dest-cta-btn:hover {
    background: #023a99; transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(1,72,190,0.4);
}
.dest-slider-col { position: relative; }
.dest-swiper { padding: 12px 6px 50px !important; }
.dest-card {
    background: #ffffff; border-radius: 18px; overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer; height: auto !important;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(0,0,0,0.15); }
.dest-card-img-wrap { position: relative; overflow: hidden; }
.dest-card-img {
    width: 100%; height: 190px; object-fit: cover;
    display: block; transition: transform 0.5s ease;
}
.dest-card:hover .dest-card-img { transform: scale(1.06); }
.dest-card-badge {
    position: absolute; top: 12px; left: 12px;
    background: #0148BE; color: #ffffff;
    font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700;
    padding: 4px 12px; border-radius: 50px; letter-spacing: 0.04em; text-transform: uppercase;
}
.dest-card-body { padding: 16px 18px 18px; }
.dest-card-title {
    font-family: 'Poppins', sans-serif; font-size: 1rem;
    font-weight: 700; color: #0f172a; margin: 0 0 4px;
}
.dest-card-sub {
    font-family: 'Inter', sans-serif; font-size: 0.8rem; color: #64748b;
    margin: 0 0 12px; display: flex; align-items: center; gap: 5px;
}
.dest-card-sub i { color: #0148BE; }
.dest-card-footer {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid #f1f5f9; padding-top: 10px;
}
.dest-card-price { font-family: 'Inter', sans-serif; font-size: 0.85rem; color: #475569; }
.dest-card-price b { font-size: 1rem; color: #0148BE; font-weight: 700; }
.dest-card-nights {
    font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600;
    background: #FBE001; color: #1e293b; padding: 3px 10px; border-radius: 50px;
}
.dest-prev, .dest-next {
    color: #0148BE !important; background: #ffffff;
    width: 40px !important; height: 40px !important;
    border-radius: 50%; box-shadow: 0 4px 16px rgba(0,0,0,0.12); top: 38% !important;
}
.dest-prev::after, .dest-next::after { font-size: 14px !important; font-weight: 800; }
.dest-prev { left: -4px !important; }
.dest-next { right: -4px !important; }
.dest-pagination .swiper-pagination-bullet {
    background: #cbd5e1; opacity: 1; width: 8px; height: 8px; transition: all 0.3s;
}
.dest-pagination .swiper-pagination-bullet-active {
    background: #0148BE; width: 22px; border-radius: 4px;
}
@media (max-width: 900px) {
    .dest-showcase-inner { grid-template-columns: 1fr; gap: 32px; }
    .dest-tagline-col { align-items: center; text-align: center; }
    .dest-subtext { max-width: 100%; }
    .dest-eyebrow { margin: 0 auto; }
}
@media (max-width: 576px) {
    .dest-showcase-section { padding: 40px 16px 60px; }
    .dest-card-img { height: 160px; }
}

/* ================================================
   HERO CONTENT ROW — Form centred, cards are absolute
   ================================================ */
.hero-content-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    z-index: 10;
}
@media (max-width: 768px) {
    .hero-content-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}
/* ================================================
   DESTINATION CARDS — absolutely positioned in hero
   at the blue-square area (right of form, upper half)
   ================================================ */



/* Fanned cards stack */
.play

/* ================================================
   LEFT TEXT (STOP CHASING, TOUR OPERATORS)
   ================================================ */
.left-text-wrapper {
    position: absolute;
    top: 22%;
    left: 10%;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
    animation: floatAnimation 4s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.play .left-text-wrapper {
    opacity: 1;
    transform: translateY(0);
}
.left-text-wrapper .promo-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin: 0;
    position: relative;
    z-index: 2;
}
.left-text-wrapper .text-black {
    color: #ffffff;
}
.left-text-wrapper .text-blue {
    color: #0148BE;
    font-size: 2.8rem;
}
.curved-underline {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 165px;
    height: 16px;
    z-index: -1;
}

/* Decorative SVGs */
.decor-sparkle {
    position: absolute;
    width: 24px;
    height: 24px;
    animation: pulse 2s infinite ease-in-out;
}
.sparkle-1 { top: -20px; left: -20px; }
.sparkle-2 { top: 40px; right: -30px; animation-delay: 1s; }
.decor-airplane {
    position: absolute;
    width: 32px;
    height: 32px;
    top: -30px;
    right: 20px;
    transform: rotate(15deg);
    opacity: 0.6;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}



/* ================================================
   RIGHT TEXT BLOCK — Typing Animation
   ================================================ */
.right-text-wrapper {
    position: absolute;
    top: 20%;
    left: 65%;
    width: 340px;
    z-index: 30;
    pointer-events: none;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s ease 0.8s, transform 1s ease 0.8s;
}
.play .right-text-wrapper {
    opacity: 1;
    transform: translateY(0);
}
.typing-wrapper { position: relative; }
.typing-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.25;
    margin: 0;
    min-height: 2.8em;
    letter-spacing: -0.01em;
}
/* Line 1: white with black stroke outline */
.th-white {
    color: #ffffff;
    display: inline-block;
}
/* Line 2: brand blue */
.th-blue {
    color: #0148BE;
    display: inline-block;
}
.rt-underline {
    display: block;
    width: 30%;
    height: 14px;
    margin-top: 4px;
}
.rt-sparkle {
    position: absolute;
    animation: pulse 2.2s ease-in-out infinite;
}
.rt-sparkle-1 { width: 20px; height: 20px; top: -18px; left: -18px; }
.rt-sparkle-2 { width: 16px; height: 16px; top: 5px; right: -20px; animation-delay: 1.1s; }

/* ================================================
   RESPONSIVE STACKING (Tablet & Mobile)
   ================================================ */

/* ---- Tablet: 901px – 1100px ---- */
@media (max-width: 1100px) and (min-width: 901px) {
    .left-text-wrapper .promo-heading { font-size: 2rem; }
    .left-text-wrapper .text-blue { font-size: 2.2rem; }
    .typing-heading { font-size: 1.4rem; }
    .right-text-wrapper { width: 280px; left: 66%; }
}

/* ---- Tablet + Mobile: ≤ 900px ---- */
@media (max-width: 900px) {
    .responsive-bg {
        display: flex;
        flex-direction: column;
    }

    header { order: 0; }

    /* LEFT promo text — centred below header */
    .left-text-wrapper {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        order: 1;
        display: flex;
        justify-content: center;
        text-align: center;
        padding: 24px 20px 8px;
        width: 100%;
        transform: none !important;
        animation: none !important;
    }

    .left-text-wrapper .promo-heading { font-size: 1.8rem; }
    .left-text-wrapper .text-blue { font-size: 2rem; }

    .sparkle-1 { left: 15px; top: -12px; }
    .sparkle-2 { right: 15px; top: 20px; }

    .curved-underline {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Booking form */
    main.hero {
        order: 2;
        overflow: visible !important;
        margin-top: 16px;
        flex: none !important;
    }

    /* RIGHT promo text — below form, above bottom monuments */
    .right-text-wrapper {
        position: relative !important;
        top: 2%;
        left: 5%;
        order: 3;
        width: 100%;
        max-width: 420px;
        margin: 5px auto 0; /* Reduced margin to bring it directly below the form */
        text-align: center;
        transform: none !important;
        opacity: 1 !important;
        padding: 0 16px;
        box-sizing: border-box;
        z-index: 10;
    }

    .play .right-text-wrapper {
        opacity: 1 !important;
        transform: none !important;
    }

    .typing-heading { font-size: 1.5rem; min-height: auto; }

    .typing-subtext {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        max-width: 100%;
    }

    .rt-underline { width: 40%; margin: 3px auto 0; }
    .rt-arrow { margin: 8px auto 0; }
    .rt-sparkle { display: none; }
}

/* ---- Mobile only: ≤ 600px ---- */
@media (max-width: 600px) {
    .left-text-wrapper .promo-heading { font-size: 1.5rem; }
    .left-text-wrapper .text-blue { font-size: 1.7rem; }

    .typing-heading { font-size: 1.25rem; }
    .typing-subtext { font-size: 12px; }

    .rt-underline { width: 35%; }

    /* Benefits bar padding */
    .benefits-bar { padding: 20px 12px; }
}

/* ---- Small Mobile: ≤ 400px ---- */
@media (max-width: 400px) {
    .left-text-wrapper .promo-heading { font-size: 1.3rem; }
    .left-text-wrapper .text-blue { font-size: 1.5rem; }
    .typing-heading { font-size: 1.1rem; }
}

/* ---- Animated Destination Highlights ---- */
#animated-destinations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
    overflow: hidden;
}

/* Glassmorphism pill badge */
.dest-highlight {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.4);
    color: #0148BE;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 1.5vw, 22px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 600ms ease-in-out;
    animation: destFloat 3.5s ease-in-out infinite;
    min-width: 90px;
    text-align: center;
}

/* Sparkles decorations around the badges */
.dest-highlight::before {
    content: '✦';
    position: absolute;
    top: -12px;
    left: -10px;
    color: #ffffff;
    font-size: 14px;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
    pointer-events: none;
}

.dest-highlight::after {
    content: '✦';
    position: absolute;
    bottom: -8px;
    right: -12px;
    color: #ffffff;
    font-size: 9px;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.9);
    pointer-events: none;
}

.dest-highlight.visible {
    opacity: 1;
}

@keyframes destFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-7px); }
}

/* ---- Desktop Positions — matched to reference image ---- */
/* Far left "Manali" */
.pos-top-far-left   { top: 7%;  left: 3%; }
/* Second from left "Goa" */
.pos-top-left       { top: 12%;  left: 15%; }
/* Left of form "Kashmir" */
.pos-top-center-left{ top: 36%; left: 22%; }
/* Far top-right "Alleppey" */
.pos-top-far-right  { top: 5%;  right: 6%; }
/* Mid-right upper "Darjeeling" */
.pos-top-right      { top: 12%; right: 12%; }
/* Left mid "Kerala" */
.pos-mid-left       { top: 46%; left: 19%; }
/* Right of form "Rameswaram" */
.pos-mid-form-right { top: 47%; right: 22%; }

.pos-center-right   { top: 37%; right: 15%; }
.pos-right-statue   { top: 22%; right: 3%; }
.pos-top-center-right { top: 10%; right: 25%; }
.pos-lower-mid-left { top: 38%; left: 16%; }

/* ---- Tablet: 901–1279px — hide 3 positions ---- */
@media (max-width: 1100px) {
    .pos-top-left, .pos-top-center-left, .pos-top-right, .pos-mid-form-right { display: none !important; }

    .pos-top-far-left      { display: inline-flex !important; top: 15%; left: 4%; }
    .pos-top-far-right     { display: inline-flex !important; top: 17%; right: 4%; }
    .pos-mid-left          { display: inline-flex !important; top: 46%; left: 12%; }
    .pos-top-center-right  { display: inline-flex !important; top: 12%; right: 18%; }
    .pos-center-left       { display: inline-flex !important; top: 26%; left: 2%; }
    .pos-lower-mid-left    { display: inline-flex !important; top: 36%; left: 13%; }
    .pos-center-right      { display: inline-flex !important; top: 32%; right: 18%; }
    .pos-right-statue      { display: inline-flex !important; top: 48%; right: 14%; }
}

/* ---- Mobile: ≤ 768px — only 3 safe slots ---- */
@media (max-width: 768px) {
    #animated-destinations .dest-highlight { display: none !important; }

    #animated-destinations .pos-top-far-left,
    #animated-destinations .pos-top-far-right,
    #animated-destinations .pos-mid-left,
    #animated-destinations .pos-mid-form-right {
        display: inline-flex !important;
    }

    .pos-top-far-left   { top: 16%; left: 3%;  font-size: 13px; padding: 6px 14px; }
    .pos-top-far-right  { top: 16%; right: 3%; font-size: 13px; padding: 6px 14px; }
    .pos-mid-left       { top: 77%; left: 15%;  font-size: 13px; padding: 6px 14px; }
    .pos-mid-form-right { top: 77%; right: 17%; font-size: 13px; padding: 6px 14px; }
}
