.elementor-1373 .elementor-element.elementor-element-015a64e{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS *//* --- WRAPPER & VARIABLES --- */
.natpack-header-modern-wrapper {
    --primary: #003B6F;        /* Deep Navy */
    --gold: #C5A059;           /* Standard Gold */
    --gold-hover: #B08D4A;     /* Darker Gold for hover */
    --dark: #111827;
    --light-gray: #F8FAFC;
    --border: #E2E8F0;
    --shadow: 0 10px 30px -5px rgba(0, 59, 111, 0.1);
    
    font-family: 'Almarai', sans-serif;
    color: var(--dark);
    /* Reset margins/padding */
    margin: 0;
    padding: 0;
    width: 100%;
}

.natpack-header-modern-wrapper * {
    margin: 0; padding: 0; box-sizing: border-box;
}

.natpack-header-modern-wrapper a {
    text-decoration: none; color: inherit; transition: 0.2s;
}

/* --- SITE HEADER --- */
.natpack-header-modern-wrapper .site-header {
    position: fixed;
    /* Default: Top of screen for visitors */
    top: 0; 
    left: 0; 
    width: 100%;
    
    height: 80px; 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    
    /* Z-Index High enough to float over content, but CSS top offset will handle Admin Bar */
    z-index: 9999; 
    transition: top 0.3s ease, height 0.3s ease, background 0.3s ease;
}

/* Scrolled State */
.natpack-header-modern-wrapper .site-header.scrolled {
    height: 70px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.natpack-header-modern-wrapper .header-container {
    max-width: 1440px; 
    width: 95%;        
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.natpack-header-modern-wrapper .header-logo img {
    height: 48px;
    transition: 0.3s;
    display: block; 
}
.natpack-header-modern-wrapper .site-header.scrolled .header-logo img {
    height: 40px;
}

/* --- DESKTOP NAVIGATION --- */
.natpack-header-modern-wrapper .desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.natpack-header-modern-wrapper .nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.natpack-header-modern-wrapper .nav-link {
    font-weight: 700;
    font-size: 15px;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
}

.natpack-header-modern-wrapper .nav-link i {
    font-size: 11px;
    color: #94a3b8;
    transition: 0.3s;
}

.natpack-header-modern-wrapper .nav-item:hover .nav-link { color: var(--gold); }
.natpack-header-modern-wrapper .nav-item:hover .nav-link i { transform: rotate(180deg); color: var(--gold); }

/* --- BUTTON --- */
.natpack-header-modern-wrapper .header-btn {
    background-color: var(--gold);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 22px;
    border-radius: 4px;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
    line-height: 1;
    white-space: nowrap;
}

.natpack-header-modern-wrapper .header-btn:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.2);
}

/* --- DROPDOWNS --- */
.natpack-header-modern-wrapper .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow);
    border-radius: 0 0 6px 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    padding: 20px;
}

.natpack-header-modern-wrapper .nav-item:hover .dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.natpack-header-modern-wrapper .nav-item::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 20px;
}

/* Wide Menu */
.natpack-header-modern-wrapper .wide-menu {
    width: 480px;
}
.natpack-header-modern-wrapper .dropdown-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}

/* Simple Menu */
.natpack-header-modern-wrapper .simple-menu {
    width: 240px;
    display: flex; flex-direction: column; gap: 5px;
}

/* Dropdown Items */
.natpack-header-modern-wrapper .dd-label {
    display: block; font-size: 11px; text-transform: uppercase; color: #94a3b8; font-weight: 700; margin-bottom: 12px; letter-spacing: 1px;
}

.natpack-header-modern-wrapper .dd-item {
    display: flex; 
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    transition: 0.2s;
    color: var(--dark);
}

.natpack-header-modern-wrapper .dd-item:hover {
    background: var(--light-gray);
    color: var(--primary);
}

.natpack-header-modern-wrapper .dd-icon-box {
    width: 24px; 
    display: flex; 
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 18px; 
    color: var(--gold);
}

.natpack-header-modern-wrapper .dd-text strong {
    display: block; font-size: 14px; margin-bottom: 3px; line-height: 1.2;
}

.natpack-header-modern-wrapper .dd-text small {
    display: block; font-size: 12px; color: #64748b; font-weight: 400; line-height: 1.3;
}

/* --- MOBILE STYLES --- */
.natpack-header-modern-wrapper .mobile-toggle {
    display: none;
    background: none; border: none; font-size: 24px; color: var(--primary); cursor: pointer;
    z-index: 100000;
}

.natpack-header-modern-wrapper .mobile-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0,0,0,0.5); z-index: 100000;
    opacity: 0; visibility: hidden; transition: 0.3s;
}

.natpack-header-modern-wrapper .mobile-drawer {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
    background: white; z-index: 100001; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
}

.natpack-header-modern-wrapper .mobile-drawer.active { right: 0; }
.natpack-header-modern-wrapper .mobile-overlay.active { opacity: 1; visibility: visible; }

.natpack-header-modern-wrapper .drawer-header {
    padding: 20px; display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--border);
}
.natpack-header-modern-wrapper .drawer-header img { height: 35px; }
.natpack-header-modern-wrapper .drawer-header button { background: none; border: none; font-size: 20px; color: var(--primary); cursor: pointer; }

.natpack-header-modern-wrapper .drawer-content {
    padding: 20px; overflow-y: auto;
}

.natpack-header-modern-wrapper .m-link {
    display: block; padding: 15px 0; font-weight: 700; color: var(--primary); border-bottom: 1px solid var(--border);
}

.natpack-header-modern-wrapper .m-accordion { border-bottom: 1px solid var(--border); }
.natpack-header-modern-wrapper .m-trigger {
    padding: 15px 0; font-weight: 700; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between;
}
.natpack-header-modern-wrapper .m-panel {
    max-height: 0; overflow: hidden; transition: 0.3s; padding-left: 15px;
}
.natpack-header-modern-wrapper .m-accordion.open .m-panel { max-height: 500px; padding-bottom: 15px; }
.natpack-header-modern-wrapper .m-accordion.open .m-trigger i { transform: rotate(180deg); }

.natpack-header-modern-wrapper .m-panel a {
    display: block; padding: 8px 0; font-size: 14px; color: #475569;
}

.natpack-header-modern-wrapper .m-btn {
    display: block; margin-top: 30px; text-align: center;
    background: var(--gold); color: white; padding: 15px; font-weight: 700; border-radius: 4px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .natpack-header-modern-wrapper .desktop-nav { display: none; }
    .natpack-header-modern-wrapper .mobile-toggle { display: block; }
}


/* -----------------------------------------------------------------
   WORDPRESS ADMIN BAR FIX
   This ensures the header respects the admin bar height
----------------------------------------------------------------- */

/* Desktop (Admin Bar is 32px) */
body.admin-bar .natpack-header-modern-wrapper .site-header {
    top: 32px;
}

/* Mobile (Admin Bar is usually 46px on screens < 782px) */
@media screen and (max-width: 782px) {
    body.admin-bar .natpack-header-modern-wrapper .site-header {
        top: 46px;
    }
}




/* ============================================================
   NATPACK LANGUAGE SWITCHER CSS
   Add to ALL THREE header Elementor template CSS fields
   ============================================================ */

/* DESKTOP SWITCHER */
.natpack-lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.natpack-lang-switcher .lang-flag {
    font-size: 22px;
    line-height: 1;
    opacity: 0.4;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.natpack-lang-switcher .lang-flag:hover {
    opacity: 1;
    transform: scale(1.15);
}

.natpack-lang-switcher .lang-flag.active {
    opacity: 1;
    cursor: default;
    pointer-events: none;
}

/* Force hide desktop switcher on mobile — belt AND suspenders */
@media (max-width: 1024px) {
    .natpack-lang-switcher {
        display: none !important;
    }
}

/* MOBILE DRAWER SWITCHER */
.natpack-lang-switcher-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 0;
    margin-bottom: 8px;
    border-bottom: 1px solid #E2E8F0;
}

.natpack-lang-switcher-mobile .lang-flag {
    font-size: 30px;
    line-height: 1;
    opacity: 0.4;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.natpack-lang-switcher-mobile .lang-flag:hover {
    opacity: 1;
    transform: scale(1.1);
}

.natpack-lang-switcher-mobile .lang-flag.active {
    opacity: 1;
    cursor: default;
    pointer-events: none;
}

/* Hide mobile switcher on desktop */
@media (min-width: 1025px) {
    .natpack-lang-switcher-mobile {
        display: none !important;
    }
}/* End custom CSS */