/* CUSTOM RESPONSIVE HEADER                                   */
    /* ========================================================== */
    header.page_header,
    .mkdf-mobile-header,
    header.mkdf-page-header,
    .mkdf-page-header {
        display: none !important;
    }

    .wl-header-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99999;
        background: #ffffff;
        border-bottom: 3px solid #FFEF12;
        transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
        box-shadow: none;
    }
    .wl-header-container.is-sticky {
        position: fixed;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        animation: stickyFadeDown 0.4s ease forwards;
    }
    @keyframes stickyFadeDown {
        from { transform: translateY(-100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    .wl-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 40px;
        height: 80px;
        box-sizing: border-box;
        max-width: 1400px;
        margin: 0 auto;
    }

    .wl-header-logo {
        display: flex;
        align-items: center;
        height: 100%;
        text-decoration: none;
    }
    .wl-header-logo img {
        max-height: 50px;
        width: auto;
    }

    .wl-header-nav {
        display: flex;
        align-items: center;
        height: 100%;
    }
    .wl-header-nav ul {
        list-style: none !important;
        display: flex !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 25px !important;
        flex-direction: row !important;
    }
    .wl-header-nav li {
        margin: 0 !important;
        padding: 0 !important;
    }
    .wl-header-nav a {
        font-family: "Inter", sans-serif !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #1a1e24 !important;
        text-decoration: none !important;
        transition: color 0.3s !important;
        position: relative !important;
        padding: 5px 0 !important;
        text-transform: none !important;
    }
    .wl-header-nav a:hover,
    .wl-header-nav a.active {
        color: #FFEF12 !important;
    }
    .wl-header-nav a.active::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #FFEF12;
    }

    .wl-header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .wl-header-contact-btn {
        background: #FFEF12 !important;
        color: #1a1e24 !important;
        font-family: "Inter", sans-serif !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        padding: 12px 24px !important;
        border-radius: 30px !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        transition: transform 0.3s, box-shadow 0.3s !important;
        border: none !important;
    }
    .wl-header-contact-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 15px rgba(255, 239, 18, 0.4) !important;
    }

    .wl-header-burger {
        background: #1a1e24 !important;
        border: none !important;
        width: 48px !important;
        height: 48px !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        padding: 0 !important;
        transition: background 0.3s !important;
    }
    .wl-header-burger:hover {
        background: #2c333e !important;
    }
    .wl-header-burger .burger-lines {
        width: 20px;
        height: 14px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .wl-header-burger .burger-lines span {
        display: block;
        height: 2px;
        width: 100%;
        background: #ffffff;
        border-radius: 2px;
    }

    @media (max-width: 1100px) {
        .wl-header-nav ul {
            gap: 15px !important;
        }
        .wl-header-nav a {
            font-size: 14px !important;
        }
    }

    @media (max-width: 1024px) {
        .wl-header-contact-btn {
            display: none !important;
        }
        .wl-header-inner {
            height: 70px;
            padding: 10px 15px 10px 20px;
        }
        .wl-header-logo img {
            max-height: 40px;
        }
    }

    @media (max-width: 768px) {
        .wl-header-inner {
            padding: 0 20px;
        }
        .wl-header-nav {
            display: none !important;
        }
        .wl-header-contact-btn {
            display: flex !important;
            padding: 0 !important;
            width: 48px !important;
            height: 48px !important;
            justify-content: center !important;
            border-radius: 12px !important;
        }
        .wl-header-contact-btn .btn-text {
            display: none !important;
        }
        .wl-header-actions {
            gap: 10px;
        }
    }
    /* ========================================================== */
    
/* CUSTOM SIDEBAR MENU                                        */
    /* ========================================================== */
    .wl-sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 999990;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s;
    }
    .wl-sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .wl-custom-sidebar {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: #1a1e24;
        z-index: 999999;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        flex-direction: column;
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }
    .wl-custom-sidebar.active {
        transform: translateX(0);
    }
    
    /* Sidebar Header */
    .wl-sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 40px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .wl-sidebar-logo {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
    }
    .wl-sidebar-logo .yellow { color: #FFEF12; }
    
    .wl-sidebar-close {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
        padding: 0;
        transition: color 0.3s;
    }
    .wl-sidebar-close:hover { color: #FFEF12; }
    
    /* Sidebar Nav */
    .wl-sidebar-nav {
        flex: 1;
        padding: 40px;
        overflow-y: auto;
    }
    .wl-sidebar-nav ul {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .wl-sidebar-nav li { margin: 0 !important; padding: 0 !important; }
    .wl-sidebar-nav a {
        color: #ffffff;
        font-family: "Inter", sans-serif;
        font-size: 22px;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.3s;
        display: inline-block;
    }
    .wl-sidebar-nav a:hover, .wl-sidebar-nav a.active {
        color: #FFEF12;
    }
    
    /* Sidebar Footer */
    .wl-sidebar-footer {
        padding: 30px 40px;
        background: #111419;
    }
    .wl-sidebar-contact {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }
    .wl-sidebar-contact a {
        color: #b0b5bd;
        text-decoration: none;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: color 0.3s;
    }
    .wl-sidebar-contact a:hover { color: #FFEF12; }
    
    .wl-sidebar-socials {
        display: flex;
        gap: 15px;
    }
    .wl-sidebar-socials a {
        color: #1a1e24;
        background: #FFEF12;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: transform 0.3s;
    }
    .wl-sidebar-socials a:hover { transform: scale(1.1); }
    

