.elementor-330 .elementor-element.elementor-element-16b0403{--display:grid;--e-con-grid-template-columns:repeat(1, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;--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;}@media(max-width:1024px){.elementor-330 .elementor-element.elementor-element-16b0403{--grid-auto-flow:row;}}@media(max-width:767px){.elementor-330 .elementor-element.elementor-element-16b0403{--e-con-grid-template-columns:repeat(1, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;}}/* Start custom CSS for html, class: .elementor-element-04e7537 *//* --- VARIABLES --- */
:root {
    --als-red: #E51B21; /* Updated Red */
    --als-black: #000000;
    --als-white: #ffffff;
    --als-font: 'Tabular', 'Courier New', monospace; 
}

/* --- BASE STYLES --- */
.als-header {
    background-color: var(--als-black);
    width: 100%;
    position: relative;
    border-bottom: 1px solid #222; 
    font-family: var(--als-font);
    /* 2. ADDED BOX SHADOW */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7); 
    z-index: 999; /* Ensure it floats above content */
}

.als-container {
    max-width: 1600px; 
    margin: 0 auto;
    padding: 0 30px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --- LOGO --- */
.als-logo-img {
    max-height: 75px; 
    width: auto;
    display: block;
    transition: max-height 0.3s ease;
}

/* --- DESKTOP NAV --- */
.als-desktop-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.als-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    align-items: center; /* Ensures text is vertically centered */
}

/* LINK STYLES & DASH ANIMATION */
.als-nav-links a, 
.als-link-calc {
    text-decoration: none;
    color: var(--als-white);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative; 
    /* 3. ALIGNMENT FIX: Removed padding, using margin to reset */
    line-height: 1; 
    transition: color 0.3s;
}

/* The Animated Dash Pseudo-element */
.als-nav-links a::after,
.als-link-calc::after {
    content: '';
    position: absolute;
    /* 3. ALIGNMENT FIX: Positioned outside of flow */
    bottom: -8px; 
    left: 0;
    width: 0%; 
    height: 1px; 
    border-bottom: 1px dashed var(--als-white); 
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.8;
}

/* Hover States */
.als-nav-links a:hover,
.als-link-calc:hover {
    color: var(--als-white); 
}

.als-nav-links a:hover::after,
.als-link-calc:hover::after {
    width: 100%; 
}

/* --- SEPARATORS --- */
.als-separator {
    width: 1px;
    height: 25px;
    background-color: #333;
}

.als-extras {
    display: flex;
    align-items: center; /* Critical for vertical alignment */
    gap: 15px;
}

/* The Pipe | Symbol */
.als-pipe {
    color: var(--als-white); 
    font-weight: 300;
    font-size: 18px; 
    opacity: 0.8;
    /* Micro-adjustment to align with font baseline */
    position: relative;
    top: -1px; 
}

.als-phone {
    color: var(--als-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1; /* Match the links */
}

/* --- THE BIG BUTTON --- */
.als-cta-btn {
    background-color: var(--als-red);
    color: #ffffff !important; 
    text-decoration: none;
    padding: 10px 20px; 
    font-size: 13px; 
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border-radius: 2px; 
    margin-left: 10px;
    border: 1px solid var(--als-red);
}

.als-cta-btn:hover {
    background-color: transparent; 
    color: var(--als-white) !important;
    border: 1px solid var(--als-white); 
}

/* --- MOBILE TOGGLE FIX --- */
.als-mobile-toggle {
    display: none; /* Hidden on desktop */
    
    /* FORCE override theme button styles */
    background-color: transparent !important; 
    border: 1px solid var(--als-red) !important;
    border-radius: 4px !important; /* Fixes the "pill" shape */
    box-shadow: none !important;
    
    /* Reset padding to fix uneven spacing */
    padding: 0 !important; 
    margin: 0 !important;
    
    /* Define exact click area size */
    width: 45px;
    height: 40px;
    
    /* Perfect centering */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px; /* Space between lines */
    
    cursor: pointer;
    z-index: 101;
}

/* The 3 Lines */
.als-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--als-red) !important; /* Your Red #E51B21 */
    border-radius: 0 !important;
    transition: all 0.3s;
    
    /* Ensure no margins mess up alignment */
    margin: 0 !important; 
}

/* Hover Effect (Optional) */
.als-mobile-toggle:hover {
    background-color: rgba(229, 27, 33, 0.1) !important; /* Subtle red tint on hover */
}

/* --- MOBILE MENU DRAWER --- */
.als-mobile-menu {
    display: block;
    position: absolute;
    top: 90px; 
    left: 0;
    width: 100%;
    background-color: var(--als-black);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    border-bottom: 1px solid #333;
    z-index: 100;
}

.als-mobile-menu a {
    display: block;
    padding: 18px 30px;
    color: var(--als-white);
    text-decoration: none;
    border-top: 1px solid #222;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.als-mobile-menu .als-mobile-cta {
    background-color: var(--als-red);
    text-align: center;
    font-weight: 700;
    color: var(--als-white);
    border-top: none;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1150px) {
    /* 1. Hide Desktop Nav */
    .als-desktop-nav {
        display: none; 
    }

    /* 2. Adjust Container for Mobile Alignment */
    .als-container {
        padding: 0 25px; /* Adjust side spacing */
        height: 80px;    /* Slightly tighter header height for mobile */
    }

    /* 3. FIX: Center the Logo Image vertically */
    .als-logo-link {
        display: flex;
        align-items: center;
        height: 100%; /* Ensure link fills container height */
    }

    .als-logo-img {
        /* Reduce size on mobile so it aligns with the button */
        max-height: 55px; 
        width: auto;
    }
    
    /* 4. Show Toggle as Flex */
    .als-mobile-toggle {
        display: flex; 
        /* Ensure no extra margins are throwing off alignment */
        margin-left: auto !important; 
    }
    
    /* Mobile Menu Dropdown Styles */
    .als-mobile-menu.is-open {
        max-height: 500px;
    }
    
    /* Hamburger Animation States */
    .als-mobile-toggle.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .als-mobile-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }
    .als-mobile-toggle.is-active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}/* End custom CSS */