
        /* Hide old headers */
        header#site-header, #site-header, .elementor-location-header,
        .ekit-template-content-header, #site-navigation-wrap, .oceanwp-mobile-menu-icon {
            display: none !important; 
        }
        
        /* Desktop Header */
        #flown-header-v7 {
            width: 100%;
            height: 90px;
            background: transparent !important;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 999999;
            padding: 0 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-sizing: border-box;
            font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }
        
        .flown-logo-v7 { display: block; width: 250px; margin-right: auto; }
        .flown-logo-v7 img { width: 100%; height: auto; max-height: 70px; display: block; object-fit: contain; }
        
        .flown-nav-v7 { 
            flex-grow: 1; 
            display: flex; 
            justify-content: flex-end; 
            align-items: center;
            /* Glassmorphism effect - Desktop only */
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 8px 20px;
            margin-left: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }
        .flown-links-v7 { display: flex; flex-direction: row; gap: 25px; align-items: center; }
        .flown-links-v7 a { 
            text-decoration: none; color: #fff; font-family: "Poppins", sans-serif;
            font-size: 16px; font-weight: 500; text-transform: capitalize; padding: 8px 0;
            display: inline-block; white-space: nowrap; border-bottom: 2px solid transparent;
        }
        .flown-links-v7 a:hover, .flown-links-v7 a.active { border-bottom-color: #fff; }
        
        /* CTA Button - Professional Design */
        .flown-cta-v7 {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 10px;
            padding: 14px 50px !important;
            margin-left: 30px;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%) !important;
            background-size: 200% 200%;
            animation: goldenShine 3s ease-in-out infinite;
            color: #1a1a1a !important;
            font-family: "Poppins", sans-serif !important;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.2px;
            text-decoration: none !important;
            border-radius: 8px;
            border: 2px solid #DAA520 !important;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            box-sizing: border-box !important;
        }
        .flown-cta-v7 * {
            box-sizing: border-box;
        }
        @keyframes goldenShine {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .flown-cta-v7::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        .flown-cta-v7:hover::before {
            left: 100%;
        }
        .flown-cta-v7:hover {
            background: linear-gradient(135deg, #FFA500 0%, #FFD700 50%, #FFA500 100%);
            background-size: 200% 200%;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
        }
        .flown-cta-v7:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
        }
        
        /* Hamburger Button - Hidden on Desktop */
        .flown-hamburger { display: none; }
        
        /* MOBILE STYLES */
        @media (max-width: 768px) {
            #flown-header-v7 {
                height: 70px;
                background: transparent !important;
                padding: 0 4%;
            }
            
            .flown-logo-v7 { width: 180px; margin-right: 0; }
            
            /* Hide desktop links, show hamburger */
            .flown-links-v7 { display: none !important; }
            .flown-hamburger {
                display: flex !important;
                flex-direction: column;
                justify-content: space-around;
                width: 30px; height: 25px;
                cursor: pointer;
                z-index: 1000001;
                margin-right: 25px;
            }
            .flown-hamburger span {
                display: block; width: 100%; height: 3px;
                background: #fff; border-radius: 2px;
                transition: all 0.3s;
            }
            
            /* Mobile Menu Overlay */
            .flown-mobile-menu {
                position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px;
                height: 100vh; background: linear-gradient(180deg, #3b63e9 0%, #2a4fd9 50%, #1e3fc9 100%);
                z-index: 1000000; padding: 80px 20px 30px;
                transition: right 0.3s ease; box-shadow: -5px 0 20px rgba(0,0,0,0.3);
            }
            .flown-mobile-menu.open { right: 0; }
            .flown-mobile-menu a {
                display: block; color: #fff; font-family: "Poppins", sans-serif; font-size: 18px; padding: 15px 10px;
                text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2);
            }
            .flown-mobile-menu .flown-cta-v7 {
                display: flex; 
                align-items: center;
                justify-content: center;
                text-align: center; 
                margin: 20px 10px; 
                padding: 14px 24px;
                font-size: 15px;
                font-weight: 600;
                border-radius: 8px;
            }
            
            /* Close button */
            .flown-close-menu {
                position: absolute; top: 20px; right: 20px; font-size: 30px;
                color: #fff; cursor: pointer; line-height: 1;
            }
            
            /* Overlay backdrop */
            .flown-overlay { 
                display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
                background: rgba(0,0,0,0.5); z-index: 999999;
            }
            .flown-overlay.open { display: block; }
        }
