.elementor-4922 .elementor-element.elementor-element-311866d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4922 .elementor-element.elementor-element-311866d:not(.elementor-motion-effects-element-type-background), .elementor-4922 .elementor-element.elementor-element-311866d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-f23b4a6 );}/* Start custom CSS for html, class: .elementor-element-d99e3dd *//* --- VARIABLES --- */
:root {
    --primary-bg: #070707;
    --accent-color: #E65D0A;   /* Brand Orange */
    --text-color: #fefefe;
    --top-bar-bg: #04aff5;     /* Dark Blue for Top Bar */
    --font-main: 'Teko', sans-serif;
}

/* --- GLOBAL RESET --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'kanit', sans-serif; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- HEADER CONTAINER --- */
.premium-header {
    width: 100%;
    position: fixed;
    top: 0; left: 0;
    z-index: 1000;
    background: #070707;
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- TOP BAR --- */
.header-top-bar {
    background: var(--top-bar-bg);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 15px;
    color: #fefefe;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact a { margin-right: 20px; display: inline-flex; align-items: center; gap: 8px; }
.top-contact a:hover { color: var(--accent-color); }

.top-socials a { margin-left: 15px; font-size: 18px; }
.top-socials a:hover { color: var(--accent-color); transform: translateY(-2px); display: inline-block; }


/* --- MAIN HEADER --- */
.header-main { padding: 0; }

.main-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Added fixed height to ensure alignment */
    height: 100px; 
}

/* LOGO IMAGE STYLING */
.brand-logo { display: flex; align-items: center; }
.brand-logo img {
    height: 100px; 
    width: 200px;
    object-fit: contain;
}

/* DESKTOP MENU */
.desktop-nav .nav-list { display: flex; gap: 30px; }

.desktop-nav a {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-color);
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.desktop-nav .nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%; height: 2px;
    background: var(--accent-color);
    transition: 0.3s;
}
.desktop-nav .nav-list > li > a:hover::after { width: 100%; }

/* Dropdown (Desktop) */
.dropdown-item { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%; left: -30px;
    background: #111;
    min-width: 300px;
    padding: 15px 0;
    border-top: 3px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
}
.dropdown-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-menu li a { display: block; padding: 8px 20px; font-size: 20px; color: #bbb; }
.dropdown-menu li a:hover { color: #fff; padding-left: 25px; background: rgba(255,255,255,0.05); }
.dropdown-menu li a::after { display: none; }


/* --- CTA BUTTON --- */
.cta-btn {
    font-family: var(--font-main);
    background: var(--accent-color);
    color: #fff;
    padding: 5px 25px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 4px;
    line-height: 1;
    box-shadow: 0 0 5px rgba(37, 117, 252, 0.4);
}
.cta-btn:hover { background: #fff; color: var(--accent-color); }

/* --- MOBILE TOGGLE --- */
.mobile-toggle { display: none; font-size: 24px; color: #fff; cursor: pointer; }

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu-overlay {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: rgba(0,0,0,0.8); z-index: 2000; transition: 0.4s ease;
    display: flex; justify-content: flex-end;
}
.mobile-menu-overlay.active { right: 0; }

.mobile-menu-content {
    width: 85%; max-width: 320px; background: #0a0a0a; height: 100%;
    padding: 30px; display: flex; flex-direction: column;
    border-left: 1px solid #333; box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}

.mobile-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.close-btn { font-size: 26px; color: #fff; cursor: pointer; }

.mobile-nav-list > li { border-bottom: 1px solid #222; }
.mobile-nav-list > li > a {
    display: flex; justify-content: space-between; padding: 15px 0;
    font-family: var(--font-main); font-size: 24px; color: #fff; text-transform: uppercase;
}

.mobile-sub-menu { display: none; background: #151515; padding-left: 15px; margin-bottom: 10px; border-radius: 5px; }
.mobile-dropdown.open .mobile-sub-menu { display: block; }
.mobile-dropdown.open > a { color: var(--accent-color); }
.mobile-dropdown.open > a i { transform: rotate(180deg); }

.mobile-socials { margin-top: auto; display: flex; gap: 20px; justify-content: center; }
.mobile-socials i { font-size: 22px; color: #666; }


/* ================================================= */
/* --- UPDATED RESPONSIVE & MOBILE CUSTOMIZATION --- */
/* ================================================= */

@media (max-width: 950px) {
    /* Hide Desktop Elements */
    .desktop-nav, .cta-btn { display: none; }
    /* Show Hamburger */
    .mobile-toggle { display: block; }
    
    /* Adjust Header Height */
    .main-nav-inner { height: 70px; }
    
    /* Adjust Logo for Tablet */
    .brand-logo img { height: 60px; width: auto; }
}

@media (max-width: 480px) {
    /* --- 1. TOP BAR CUSTOMIZATION (Stacked) --- */
    .header-top-bar {
        padding: 8px 0;
    }
    
    .top-bar-inner {
        flex-direction: column; /* Stack vertically */
        gap: 5px;
        text-align: center;
    }

    /* Contact Info: Show both, centered */
    .top-contact {
        display: flex;
        justify-content: center;
        gap: 15px;
        width: 100%;
    }
    .top-contact a {
        margin-right: 0;
        font-size: 15px; /* Fit perfectly on one line */
        display: inline-flex; /* Ensure it is visible */
    }

    /* Socials: Centered below */
    .top-socials {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .top-socials a {
        margin: 0 10px;
        font-size: 15px;
    }
    
    /* --- 2. MAIN HEADER CUSTOMIZATION --- */
    .main-nav-inner {
        height: 70px; /* Slimmer header for phones */
    }
    
    .brand-logo img {
        height: 65px; /* Perfect size for mobile */
        width: auto;
    }
}/* End custom CSS */