.elementor-535 .elementor-element.elementor-element-e88d84f{--display:flex;--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;}/* Start custom CSS for html, class: .elementor-element-9fd2d39 */:root {
    --accent: #66AA33;
    --muted: #5a6c7d;
    --dark: #2c3e50;
    --header-max: 1200px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    color: var(--dark);
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header */
.header {
    background-color: #fff;
    position: relative;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* Header container */
.header-container {
    max-width: var(--header-max);
    margin: 0 auto;
    padding: 0 20px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

/* Navigation Sections */
.nav-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.nav-section.left {
    justify-content: flex-start;
}

.nav-section.center {
    justify-content: center;
    flex: 0 1 auto;
}

.nav-section.right {
    justify-content: flex-end;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    display: block;
    width: 10rem;
    height: auto;
    object-fit: contain;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* Logo hover */
.logo:hover .logo-img {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Nav Links */
.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

/* Enhanced Hover Effects */
.nav-link:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

/* Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

/* Arrow */
.arrow {
    display: inline-block;
    margin-left: 6px;
    font-size: 12px;
    transition: color 0.3s ease;
}

/* Arrow hover */
.nav-item:hover .arrow {
    color: #99D533;
}

/* Mobile Menu Toggle - Hidden by default */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 6px 8px;
    color: var(--dark);
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 1500;
}

/* Mega Menu Wrapper - Desktop Only */
.mega-menu-wrapper {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: #fff;
    overflow: hidden;
    max-height: 0;
    transition: all 0.5s ease;
    border-bottom-left-radius: 45px;
    border-bottom-right-radius: 45px;
    z-index: 2000;
}

/* Show Mega Menu on Desktop Hover */
@media (hover: hover) and (pointer: fine) {
    .nav-item:hover .mega-menu-wrapper {
        max-height: 550px;
        background-color: #fff;
    }
}

/* Mega Menu */
.mega-menu {
    padding: 30px 0;
}

/* New Mega Menu Layout */
.mega-menu-container {
    max-width: var(--header-max);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 30% 25% 45%;
    gap: 30px;
    align-items: start;
}

/* Section 1: Brand Section */
.mega-menu-brand {
    display: flex;
    flex-direction: column;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.brand-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.brand-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.brand-description {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.brand-separator {
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border: none;
}

/* Section 2: Category Links */
.mega-menu-categories {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--dark);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.category-link:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
    color: var(--accent);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    flex-shrink: 0;
}

.category-text {
    flex: 1;
    font-weight: 600;
}

.category-arrow {
    color: var(--accent);
    transition: all 0.3s ease;
    font-weight: bold;
}

.category-link:hover .category-arrow {
    transform: translateX(3px);
}

.category-link.active {
    background-color: #f5f7fa;
}

/* Section 3: Sub Links */
.mega-menu-sublinks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.mega-menu-sublinks.active {
    opacity: 1;
    transform: translateY(0);
}

.sublink-group h4 {
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eaeaea;
}

.sublink-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sublink-item {
    margin-bottom: 8px;
}

.sublink {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: var(--muted);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sublink:hover {
    color: var(--accent);
    background-color: #f5f7fa;
    padding-left: 15px;
}

/* Empty title styling for second column */
.sublink-group h4:empty {
    display: none;
}

.sublink-group h4:not(:empty) {
    min-height: 30px;
}

/* Default hidden state for sublinks */
#environmental-sublinks,
#asbestos-sublinks {
    display: none;
}

#environmental-sublinks.active,
#asbestos-sublinks.active {
    display: grid;
}

/* MOBILE SIDEBAR - Hidden on Desktop */
.mobile-sidebar {
    display: none;
}

.mobile-overlay {
    display: none;
}

/* Demo Content */
.page-content {
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablet and Desktop Adjustments */
@media (max-width: 1100px) {
    .mega-menu-container {
        grid-template-columns: 28% 25% 47%;
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .mega-menu-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mega-menu-sublinks {
        grid-template-columns: 1fr;
    }
}

/* Mobile Breakpoint (992px and below) */
@media (max-width: 992px) {
    .header-top {
        flex-direction: column;
        padding: 15px 0;
        gap: 12px;
    }
    
    /* Show mobile menu button */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hide desktop navigation sections */
    .nav-section.left,
    .nav-section.right {
        display: none;
    }
    
    /* Center logo */
    .nav-section.center {
        order: -1;
        justify-content: center;
        width: 100%;
    }
    
    /* Hide mega menu wrapper on mobile (we use sidebar instead) */
    .mega-menu-wrapper {
        display: none;
    }
    
    /* MOBILE SIDEBAR STYLES */
    .mobile-sidebar {
        display: block;
        position: fixed;
        top: 0;
        left: -320px;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: #fff;
        box-shadow: 3px 0 20px rgba(0, 0, 0, 0.15);
        padding: 20px;
        transition: left 0.35s ease;
        overflow-y: auto;
        z-index: 1600;
    }
    
    .mobile-sidebar.open {
        left: 0;
    }
    
    .close-sidebar {
        font-size: 22px;
        background: none;
        border: 0;
        float: right;
        cursor: pointer;
        margin-bottom: 8px;
        color: var(--dark);
    }
    
    .mobile-nav-menu {
        list-style: none;
        padding: 10px 0;
        margin: 0;
    }
    
    .mobile-nav-menu li {
        margin-bottom: 6px;
    }
    
    .mobile-nav-menu a,
    .mobile-nav-menu .dropdown-toggle {
        display: block;
        padding: 12px 8px;
        font-size: 15px;
        font-weight: 600;
        color: var(--dark);
        text-decoration: none;
        border-radius: 6px;
    }
    
    .mobile-nav-menu a:hover,
    .mobile-nav-menu .dropdown-toggle:hover {
        color: var(--accent);
    }
    
    .mobile-dropdown .dropdown-content {
        display: none;
        padding-left: 6px;
        margin-top: 8px;
        border-left: 2px solid #f2f2f2;
        padding-bottom: 6px;
    }
    
    .mobile-dropdown.active .dropdown-content {
        display: block;
    }
    
    .mobile-dropdown h4 {
        margin: 12px 0 6px;
        font-size: 14px;
        border-bottom: 1px solid #eee;
        padding-bottom: 4px;
        color: var(--dark);
    }
    
    .mobile-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1550;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
    
    .logo-img {
        width: 9rem;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    /* Mobile dropdown scroll for long lists */
    .mobile-dropdown .dropdown-content {
        max-height: 400px;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 8rem;
    }
    
    .nav-link {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .mega-menu {
        padding: 15px 10px;
    }
    
    .mobile-menu-toggle {
        left: 12px;
        top: 14px;
    }
}/* End custom CSS */