
        /* ==========================================================================
           1. LIGHT THEME SYSTEM ARCHITECTURE
           ========================================================================== */
        :root {
            --teal-bright: #00B4D8;
            --teal-dark: #0077B6;
            --blue-royal: #03045E;
            --slate-silver: #4A4E69;
            --gold-accent: #D4AF37;
            --gold-glow: #B8860B;
            
            --bg-light: #F8FAFC;
            --bg-card: #FFFFFF;
            --bg-subtle: #EDF2F7;
            
            --text-dark: #0F172A;
            --text-muted: #64748B;
            --text-light: #FFFFFF;
            
            --border-light: #E2E8F0;
            --border-accent: rgba(0, 180, 216, 0.3);
            
            --font-heading: 'DM Serif Display', serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
            --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
            --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
            --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            font-family: var(--font-body);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        ul { list-style: none; }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 90%;
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-padding {
            padding: 90px 0;
        }

        .text-gradient-teal {
            background: linear-gradient(135deg, var(--teal-dark), var(--teal-bright));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .text-gradient-gold {
            background: linear-gradient(135deg, var(--gold-accent), var(--gold-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(2.2rem, 4.5vw, 3.2rem);
            line-height: 1.2;
            margin-bottom: 18px;
            color: var(--blue-royal);
        }

        .section-subtitle {
            color: var(--teal-dark);
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2.5px;
            font-size: 0.85rem;
            margin-bottom: 12px;
            display: block;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            border: 1px solid transparent;
        }

        .btn-teal {
            background: linear-gradient(135deg, var(--teal-bright), var(--teal-dark));
            color: #FFF;
            box-shadow: 0 4px 18px rgba(0, 180, 216, 0.3);
        }

        .btn-teal:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 180, 216, 0.45);
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold-accent), var(--gold-glow));
            color: #FFF;
            font-weight: 700;
            box-shadow: 0 4px 18px rgba(212, 175, 55, 0.3);
        }

        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
        }

        .btn-outline {
            border-color: var(--blue-royal);
            background: transparent;
            color: var(--blue-royal);
        }

        .btn-outline:hover {
            background: var(--blue-royal);
            color: #FFF;
            transform: translateY(-3px);
        }

        /* ==========================================================================
           2. UTILITY TOPBAR
           ========================================================================== */
        .topbar {
            background: var(--blue-royal);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 8px 0;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .topbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .topbar-left, .topbar-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .currency-selector {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #FFF;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 0.78rem;
            outline: none;
            cursor: pointer;
        }

        .currency-selector option {
            background: var(--blue-royal);
            color: #FFF;
        }

        /* ==========================================================================
           3. BRAND LOGO COMPONENT
           ========================================================================== */
        .rb-logo-wrapper {
            display: flex;
            align-items: center;
            gap: 0px;
            text-decoration: none;
        }

        .rb-logo-svg {
            width: 70px;
            height: 70px;
            flex-shrink: 0;
        }

        .rb-logo-text {
            display: flex;
            flex-direction: column;
        }

        .rb-brand-title {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 800;
            line-height: 1;
            color: var(--blue-royal);
            letter-spacing: 0.5px;
        }

        .rb-brand-sub {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--teal-dark);
            text-transform: uppercase;
            margin-top: 2px;
        }

        /* ==========================================================================
           4. NAVIGATION BAR
           ========================================================================== */
        .navbar {
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 16px 0;
            transition: var(--transition-smooth);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav-item { position: relative; }

        .nav-link {
            font-weight: 600;
            font-size: 0.92rem;
            color: var(--text-dark);
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-link:hover, .nav-item.active .nav-link {
            color: var(--teal-dark);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(15px);
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 12px;
            min-width: 230px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-lg);
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-item {
            padding: 10px 16px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-dark);
            font-size: 0.88rem;
            font-weight: 500;
        }

        .dropdown-item:hover {
            background: rgba(0, 180, 216, 0.1);
            color: var(--teal-dark);
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        /* ==========================================================================
           5. HERO SECTION WITH SLIDER
           ========================================================================== */
        .hero {
            position: relative;
            min-height: calc(88vh - 80px);
            display: flex;
            align-items: center;
            padding: 80px 0;
            overflow: hidden;
        }

        .hero-slider-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background-size: cover;
            background-position: center;
            transition: background-image 1.2s ease-in-out;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 20%, rgba(248, 250, 252, 0.75) 100%);
        }

        .hero-content {
            max-width: 760px;
            z-index: 1;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(2.8rem, 5vw, 4.5rem);
            line-height: 1.15;
            margin-bottom: 20px;
            color: var(--blue-royal);
            font-weight: 800;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 1.8vw, 1.2rem);
            color: var(--text-muted);
            margin-bottom: 35px;
            max-width: 620px;
        }

        .hero-btns {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .hero-slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(15, 23, 42, 0.2);
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .dot.active {
            background: var(--teal-dark);
            width: 32px;
            border-radius: 20px;
        }

        /* ==========================================================================
           6. TRAVEL COST CALCULATOR
           ========================================================================== */
        .calculator-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: var(--shadow-lg);
            margin-top: -50px;
            position: relative;
            z-index: 30;
        }

        .calc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            align-items: center;
        }

        .calc-field label {
            display: block;
            font-size: 0.8rem;
            color: var(--teal-dark);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .calc-field select, .calc-field input {
            width: 100%;
            background: var(--bg-light);
            border: 1px solid var(--border-light);
            color: var(--text-dark);
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            outline: none;
            font-size: 0.95rem;
            font-family: inherit;
        }

        .calc-output {
            background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(3, 4, 94, 0.05));
            border: 1px solid var(--teal-bright);
            border-radius: var(--radius-md);
            padding: 16px;
            text-align: center;
        }

        .calc-output span {
            display: block;
            font-size: 0.78rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        .calc-output h3 {
            font-size: 1.6rem;
            color: var(--blue-royal);
            font-family: var(--font-heading);
        }

        /* ==========================================================================
           7. DESTINATION SHOWCASE
           ========================================================================== */
        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 35px;
            flex-wrap: wrap;
        }

        .tab-btn {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            color: var(--text-muted);
            padding: 10px 22px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.88rem;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-sm);
        }

        .tab-btn.active, .tab-btn:hover {
            background: var(--teal-dark);
            color: #FFF;
            border-color: var(--teal-dark);
        }

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .dest-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-sm);
        }

        .dest-card:hover {
            transform: translateY(-8px);
            border-color: var(--teal-bright);
            box-shadow: var(--shadow-lg);
        }

        .dest-img-wrapper {
            position: relative;
            height: 240px;
            overflow: hidden;
            background: #E2E8F0;
        }

        .dest-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .dest-card:hover .dest-img-wrapper img {
            transform: scale(1.08);
        }

        .dest-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(8px);
            border: 1px solid var(--border-light);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            color: var(--gold-glow);
            font-weight: 800;
        }

        .dest-content { padding: 26px; }
        .dest-content h3 { font-size: 1.4rem; margin-bottom: 8px; font-family: var(--font-heading); color: var(--blue-royal); }
        .dest-content p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

        .dest-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border-light);
            padding-top: 18px;
        }

        .dest-price { font-size: 0.85rem; color: var(--text-muted); }
        .dest-price span { display: block; font-size: 1.3rem; font-weight: 800; color: var(--teal-dark); }

        /* ==========================================================================
           8. INTERACTIVE TRIP BUILDER
           ========================================================================== */
        .builder-box {
            background: var(--bg-card);
            border: 1px solid var(--border-accent);
            border-radius: var(--radius-lg);
            padding: 45px;
            margin-top: 50px;
            box-shadow: var(--shadow-md);
        }

        .option-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 15px;
            margin: 24px 0 32px;
        }

        .option-card {
            background: var(--bg-light);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 20px 15px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .option-card i {
            font-size: 1.8rem;
            color: var(--teal-dark);
            margin-bottom: 10px;
            display: block;
        }

        .option-card.selected, .option-card:hover {
            border-color: var(--teal-dark);
            background: rgba(0, 180, 216, 0.08);
        }

        /* ==========================================================================
           9. THE COMPANY & CEO MESSAGE
           ========================================================================== */
        .company-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .company-img-wrapper {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .company-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--radius-lg);
        }

        .ceo-quote {
            background: var(--bg-card);
            border-left: 4px solid var(--teal-dark);
            padding: 28px;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            margin-top: 25px;
            font-style: italic;
            box-shadow: var(--shadow-sm);
            border-top: 1px solid var(--border-light);
            border-right: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .ceo-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 18px;
            font-style: normal;
        }

        .ceo-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--teal-dark);
        }

        /* ==========================================================================
           10. TRAVEL SERVICES
           ========================================================================== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
            margin-top: 40px;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 32px 24px;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-sm);
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: var(--teal-dark);
        }

        .service-icon {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-sm);
            background: rgba(0, 180, 216, 0.1);
            color: var(--teal-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        /* ==========================================================================
           11. VISA PORTAL
           ========================================================================== */
        .visa-form-wrapper {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 40px;
            max-width: 900px;
            margin: 40px auto 0;
            box-shadow: var(--shadow-lg);
        }

        .form-steps-indicator {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
            position: relative;
        }

        .form-steps-indicator::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--border-light);
            z-index: 1;
            transform: translateY(-50%);
        }

        .step-pill {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 2px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            position: relative;
            z-index: 2;
            transition: var(--transition-smooth);
            color: var(--text-muted);
        }

        .step-pill.active {
            border-color: var(--teal-dark);
            background: var(--teal-dark);
            color: #FFF;
        }

        .form-step { display: none; }
        .form-step.active { display: block; }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 18px;
        }

        .form-group.full-width { grid-column: span 2; }

        .form-group label {
            font-size: 0.88rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        .form-control {
            background: var(--bg-light);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            padding: 12px 16px;
            color: var(--text-dark);
            font-family: inherit;
            outline: none;
            transition: var(--transition-smooth);
            font-size: 0.92rem;
        }

        .form-control:focus {
            border-color: var(--teal-dark);
            background: #FFF;
        }

        .form-nav-btns {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }

        /* ==========================================================================
           12. LOCATIONS
           ========================================================================== */
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
            margin-top: 40px;
        }

        .location-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-sm);
        }

        .location-card:hover {
            border-color: var(--teal-dark);
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .location-img-wrapper {
            height: 160px;
            width: 100%;
            overflow: hidden;
            background: #CBD5E1;
        }

        .location-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .location-card:hover .location-img-wrapper img {
            transform: scale(1.08);
        }

        .location-content { padding: 20px; }
        .location-card h4 { color: var(--blue-royal); margin-bottom: 12px; font-size: 1.1rem; font-weight: 700; }
        .location-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
        .location-card p i { color: var(--teal-dark); width: 16px; }

        /* ==========================================================================
           13. FLOATING INTERACTION & AI CHAT
           ========================================================================== */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 56px;
            height: 56px;
            background: #25D366;
            color: #FFF;
            border-radius: 20%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .whatsapp-btn:hover { transform: scale(1.1); }

        .ai-trigger {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--teal-bright), var(--blue-royal));
            padding: 12px 22px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            z-index: 999;
            transition: var(--transition-smooth);
            color: #FFF;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .ai-trigger:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

        .ai-chat-window {
            position: fixed;
            bottom: 95px;
            right: 30px;
            width: 360px;
            max-width: calc(100vw - 40px);
            height: 500px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            display: flex;
            flex-direction: column;
            z-index: 1000;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            pointer-events: none;
            transform: translateY(20px);
            transition: var(--transition-smooth);
            overflow: hidden;
        }

        .ai-chat-window.active {
            opacity: 1;
            pointer-events: all;
            transform: translateY(0);
        }

        .chat-header {
            background: var(--blue-royal);
            color: #FFF;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .chat-body {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: var(--bg-light);
        }

        .chat-msg {
            max-width: 82%;
            padding: 10px 14px;
            border-radius: 14px;
            font-size: 0.88rem;
        }

        .chat-msg.ai {
            background: var(--bg-card);
            color: var(--text-dark);
            align-self: flex-start;
            border: 1px solid var(--border-light);
        }

        .chat-msg.user {
            background: var(--teal-dark);
            color: #FFF;
            align-self: flex-end;
        }

        .chat-input-area {
            padding: 14px;
            background: var(--bg-card);
            border-top: 1px solid var(--border-light);
            display: flex;
            gap: 10px;
        }

        .chat-input-area input {
            flex: 1;
            background: var(--bg-light);
            border: 1px solid var(--border-light);
            border-radius: 50px;
            padding: 10px 16px;
            color: var(--text-dark);
            outline: none;
            font-size: 0.88rem;
        }

        /* ==========================================================================
           14. FOOTER
           ========================================================================== */
        .footer {
            background: var(--blue-royal);
            color: #FFF;
            padding-top: 70px;
            padding-bottom: 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            font-size: 1.05rem;
            margin-bottom: 20px;
            color: var(--teal-bright);
            font-weight: 700;
        }

        /* ==========================================================================
           15. RESPONSIVE MEDIA QUERIES
           ========================================================================== */
        @media screen and (max-width: 1024px) {
            .company-split {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media screen and (max-width: 768px) {
			
			.whatsapp-btn {
        bottom: 20px;  /* Brings button closer to screen edge */
        left: 20px;
        width: 50px;   /* Shrinks button slightly so it doesn't block mobile content */
        height: 50px;
    }
			
			
            .section-padding {
                padding: 60px 0;
            }

            .topbar-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .topbar-left, .topbar-right {
                gap: 12px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .mobile-toggle {
                display: block;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--bg-card);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                box-shadow: var(--shadow-lg);
                display: none;
                border-bottom: 1px solid var(--border-light);
            }

            .nav-links.active {
                display: flex;
            }

            .dropdown-menu {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                border: none;
                padding-left: 15px;
                display: none;
            }

            .nav-item.open .dropdown-menu {
                display: block;
            }

            .calculator-card {
                margin-top: 0;
                padding: 20px;
            }

            .builder-box {
                padding: 24px;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .form-group.full-width {
                grid-column: span 1;
            }

            .visa-form-wrapper {
                padding: 20px;
            }

            .destinations-grid,
            .services-grid,
            .locations-grid {
                grid-template-columns: 1fr;
            }

            .whatsapp-btn {
                bottom: 20px;
                left: 20px;
                width: 48px;
                height: 48px;
                font-size: 1.5rem;
            }

            .ai-trigger {
                bottom: 20px;
                right: 20px;
                padding: 10px 16px;
                font-size: 0.82rem;
            }

            .ai-chat-window {
                right: 20px;
                bottom: 80px;
                width: calc(100vw - 40px);
            }
        }

        @media screen and (max-width: 480px) {
		
		
		
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .hero-btns {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
            }

            .calc-grid {
                grid-template-columns: 1fr;
            }

            .option-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    
   