 
        :root {
            --primary: #008cff;
            --secondary: #ff664b;
            --dark: #0a223d;
            --bg: #f2f5f7;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg);
            color: var(--dark);
        }

        /* --- Custom Navbar --- */
        .navbar-custom {
            background: #ffffff;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .navbar-brand { font-weight: 800; font-size: 1.5rem; letter-spacing: -1px; color: var(--dark); }
        .nav-link-custom {
            font-weight: 700;
            color: #64748b;
            text-decoration: none;
            margin: 0 15px;
            font-size: 0.9rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .nav-link-custom i { font-size: 1.4rem; margin-bottom: 2px; color: #94a3b8; transition: 0.3s; }
        .nav-link-custom:hover i, .nav-link-custom.active i { color: var(--primary); }
        .nav-link-custom.active { color: var(--primary); }

        /* --- Hero Section --- */
        .hero-wrap {
            background: linear-gradient(rgba(10, 34, 61, 0.5), rgba(10, 34, 61, 0.5)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            height: 450px;
            padding-top: 60px;
            border-radius: 0 0 60px 60px;
        }

        /* --- MMT Style Search Box (Desktop Wide) --- */
        .search-widget {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            margin-top: -150px;
            padding: 0;
            overflow: hidden;
        }
        /* --- Bottom Navigation (Mobile Only) --- */
        .bottom-nav {
            display: none; /* Desktop par hidden rahega */
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #ffffff;
            padding: 10px 0 25px; /* Thoda niche space iPhone users ke liye */
            box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
            z-index: 2000;
            justify-content: space-around;
            border-top: 1px solid #eee;
        }

        .nav-item-mobile {
            text-decoration: none;
            color: #94a3b8;
            text-align: center;
            font-size: 11px;
            font-weight: 700;
            transition: 0.3s;
        }

        .nav-item-mobile i {
            font-size: 24px;
            display: block;
            margin-bottom: 2px;
        }

        .nav-item-mobile.active {
            color: var(--primary);
        }

        /* Mobile view check */
        @media (max-width: 991px) {
            .bottom-nav {
                display: flex; /* Mobile par dikhega */
            }
            body {
                padding-bottom: 80px; /* Taki content nav ke niche na dabe */
            }
            .navbar-custom {
                position: sticky;
                top: 0;
                z-index: 1000;
            }
        }

        .search-tabs {
            display: flex;
            justify-content: center;
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
        }
        .s-tab {
            padding: 15px 25px;
            cursor: pointer;
            font-weight: 700;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }
        .s-tab.active {
            color: var(--primary);
            background: #fff;
            border-bottom: 3px solid var(--primary);
        }

        .search-inputs {
            padding: 30px 40px;
            display: grid;
            grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
            gap: 0;
        }
        
        .input-block {
            padding: 15px 25px;
            border: 1px solid #e2e8f0;
            transition: 0.3s;
            cursor: pointer;
        }
        .input-block:hover { background-color: #f0f7ff; border-color: var(--primary); }
        .input-block label { font-size: 11px; font-weight: 800; color: #94a3b8; text-transform: uppercase; display: block; }
        .input-block span { font-size: 1.2rem; font-weight: 800; color: var(--dark); display: block; }
        .input-block p { margin: 0; font-size: 12px; color: #64748b; }

        .btn-search-main {
            background: linear-gradient(90deg, #008cff, #0056b3);
            color: white;
            border: none;
            padding: 15px 60px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.4rem;
            position: absolute;
            left: 50%;
            bottom: -30px;
            transform: translateX(-50%);
            box-shadow: 0 10px 20px rgba(0,140,255,0.3);
            transition: 0.3s;
        }
        .btn-search-main:hover { transform: translateX(-50%) translateY(-3px); }

        /* --- Offers Section --- */
        .section-padding { padding: 80px 0; }
        .offer-card {
            background: #fff;
            border-radius: 16px;
            padding: 20px;
            display: flex;
            gap: 20px;
            align-items: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            border: 1px solid transparent;
            transition: 0.3s;
        }
        .offer-card:hover { border-color: var(--primary); transform: translateY(-5px); }
        .offer-card img { width: 120px; height: 120px; border-radius: 12px; object-fit: cover; }

        /* --- Destination Grid --- */
        .dest-img-wrap {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 300px;
        }
        .dest-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .dest-img-wrap:hover img { transform: scale(1.1); }
        .dest-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
        }

        /* Mobile Adjustments */
        @media (max-width: 991px) {
            .search-inputs { grid-template-columns: 1fr; }
            .hero-wrap { height: 300px; }
            .btn-search-main { width: 80%; }
        }
    