
        /* 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;
        }
        
        .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: "Helvetica Neue", 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 - Shiny Golden with Extra Padding */
        .flown-cta-v7 {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 40px;
            margin-left: 25px;
            background: linear-gradient(135deg, #FFD700 0%, #FFC107 40%, #FFE066 60%, #FFC107 80%, #FFD700 100%);
            background-size: 200% 200%;
            animation: shinyGold 3s ease-in-out infinite;
            color: #1a1a1a !important;
            font-size: 15px;
            font-weight: 800;
            letter-spacing: 0.3px;
            text-decoration: none;
            border-radius: 50px;
            border: 2px solid #DAA520;
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
            transition: all 0.3s ease;
        }
        .flown-cta-v7:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
        }
        
        /* Hamburger Button - Hidden on Desktop */
        .flown-hamburger { display: none; }
        
        @keyframes shinyGold {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* 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-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: block; text-align: center; margin: 20px 10px; padding: 15px;
            }
            
            /* 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; }
        }
