/* ========================================
   AL HOMES - NAVIGATION CSS v6.0
   ========================================
   MERGED: navigation.css + complete-fix + patch
   ONE FILE - No more conflicts!
   
   FIGMA SPECS:
   - Find Your Home: 720px × auto (H Hug)
   - Services:       840px × auto (H Hug)
   - Resources:      1030px × auto
   - All: padding 30px 60px, bg #FAF9F7, border 1px solid #E8E5DF
   
   - Font: Afacad Flux
   - Nav font size: 18px, weight 400
   - Nav gap: 50px
   - Header height: 93px
   - Logo: 168.88px × 35px
   - Content max-width: 1200px
======================================== */

/* ========================================
   CSS VARIABLES
======================================== */
:root {
    --al-font-body: 'Afacad Flux', -apple-system, sans-serif;
    --al-nav-font-size: 18px;
    --al-contact-font-size: 16px;
    --al-color-dark: #2A2A2A;
    --al-color-white: #FFFFFF;
    --al-color-brown: #5A4F42;
    --al-color-brown-light: #766C61;
    --al-color-light-text: #666666;
    --al-header-height: 93px;
    --al-content-max-width: 1200px;
    --al-container-padding: 75px;
    --al-nav-gap: 50px;
    --al-logo-width: 168.88px;
    --al-logo-height: 35px;
    --al-logo-nav-gap: 80px;
}

/* ========================================
   WORDPRESS ADMIN BAR FIX
======================================== */
#wpadminbar {
    position: fixed !important;
    z-index: 99999 !important;
}

body.admin-bar .al-header {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar .al-header {
        top: 46px !important;
    }
}

body.admin-bar {
    padding-top: calc(var(--al-header-height) + 32px) !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar {
        padding-top: calc(100px + 46px) !important;
    }
}

/* ========================================
   BODY SPACING
======================================== */
body:not(.home):not(.al-transparent-header) {
    padding-top: var(--al-header-height) !important;
}

body.home,
body.al-transparent-header {
    padding-top: 0 !important;
}

@media (max-width: 767px) {
    body:not(.home):not(.al-transparent-header) {
        padding-top: 100px !important;
    }
    body.home,
    body.al-transparent-header {
        padding-top: 0 !important;
    }
}

html {
    scroll-padding-top: var(--al-header-height);
}

/* ========================================
   HEADER BASE - 93px height
======================================== */
.al-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--al-header-height);
    z-index: 99998;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--al-color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.home .al-header:not(.al-scrolled):not(.al-menu-open),
body.al-transparent-header .al-header:not(.al-scrolled):not(.al-menu-open) {
    background-color: transparent;
    box-shadow: none;
}

.al-header.al-scrolled {
    background-color: var(--al-color-white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.al-header.al-menu-open {
    background-color: #E8E5DF !important;
}

/* ========================================
   HEADER CONTAINER
======================================== */
.al-header-container {
    position: relative;
    width: 100%;
    max-width: var(--al-content-max-width);
    height: 100%;
    padding: 30px 0;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.al-header-inner {
    width: 100%;
    max-width: var(--al-content-max-width);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 1201px) {
    .al-header-container {
        max-width: calc(var(--al-content-max-width) + 150px);
        padding: 30px 75px;
    }
}

/* ========================================
   LOGO - 168.88px × 35px
======================================== */
.al-logo {
    display: block;
    position: relative;
    z-index: 1001;
    width: var(--al-logo-width);
    height: var(--al-logo-height);
    flex-shrink: 0;
    overflow: hidden;
    margin-right: auto;
}

.al-logo img,
.al-logo svg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: var(--al-logo-width) !important;
    height: var(--al-logo-height) !important;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.al-logo-dark {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
}

.al-logo-white {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    pointer-events: none;
}

body.home .al-header:not(.al-scrolled):not(.al-menu-open) .al-logo-white,
body.al-transparent-header .al-header:not(.al-scrolled):not(.al-menu-open) .al-logo-white {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
}

body.home .al-header:not(.al-scrolled):not(.al-menu-open) .al-logo-dark,
body.al-transparent-header .al-header:not(.al-scrolled):not(.al-menu-open) .al-logo-dark {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    pointer-events: none;
}

.al-header.al-menu-open .al-logo-white {
    opacity: 0 !important;
    visibility: hidden !important;
}

.al-header.al-menu-open .al-logo-dark {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ========================================
   DESKTOP NAVIGATION
======================================== */
.al-nav {
    display: flex;
    align-items: center;
}

.al-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--al-nav-gap);
}

.al-nav-item {
    position: relative;
}

.al-nav-item.al-has-dropdown {
    position: static !important;
}

/* ========================================
   NAV LINKS - AFACAD FLUX 18px
======================================== */
.al-nav-link {
    font-family: var(--al-font-body);
    font-size: var(--al-nav-font-size);
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
    line-height: normal;
    color: var(--al-color-dark) !important;
}

.al-nav-text {
    color: var(--al-color-dark) !important;
}

body.home .al-header:not(.al-scrolled):not(.al-menu-open) .al-nav-link,
body.al-transparent-header .al-header:not(.al-scrolled):not(.al-menu-open) .al-nav-link,
body.home .al-header:not(.al-scrolled):not(.al-menu-open) .al-nav-text,
body.al-transparent-header .al-header:not(.al-scrolled):not(.al-menu-open) .al-nav-text {
    color: var(--al-color-white) !important;
}

.al-header.al-scrolled .al-nav-link,
.al-header.al-menu-open .al-nav-link,
.al-header.al-scrolled .al-nav-text,
.al-header.al-menu-open .al-nav-text {
    color: var(--al-color-dark) !important;
}

/* Hover underline */
.al-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 0.5px;
    background-color: var(--al-color-dark);
    transition: width 0.3s ease;
}

.al-nav-link:hover::after {
    width: 100%;
}

body.home .al-header:not(.al-scrolled):not(.al-menu-open) .al-nav-link::after,
body.al-transparent-header .al-header:not(.al-scrolled):not(.al-menu-open) .al-nav-link::after {
    background-color: var(--al-color-white);
}

/* ========================================
   CONTACT BUTTON - 25px padding, 16px font
======================================== */
.al-contact-desktop-btn {
    padding: 10px 25px !important;
    background: var(--al-color-white) !important;
    border: 1px solid var(--al-color-dark) !important;
    border-radius: 50px !important;
    color: var(--al-color-dark) !important;
    font-family: var(--al-font-body) !important;
    font-size: var(--al-contact-font-size) !important;
    font-weight: 400 !important;
    text-transform: capitalize !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
}

.al-contact-desktop-btn .al-nav-text {
    color: var(--al-color-dark) !important;
}

.al-contact-desktop-btn:hover {
    background: #5A4F42 !important;
    color: var(--al-color-white) !important;
}

.al-contact-desktop-btn:hover .al-nav-text {
    color: var(--al-color-white) !important;
}

.al-contact-desktop-btn::after {
    display: none !important;
}

.al-contact-arrow-desktop {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 13.33px !important;
    height: 10px !important;
    flex-shrink: 0;
}

.al-contact-arrow-desktop svg {
    width: 13.33px !important;
    height: 10px !important;
}

.al-contact-arrow-desktop svg path {
    fill: var(--al-color-dark) !important;
    transition: fill 0.3s ease;
}

.al-contact-desktop-btn:hover .al-contact-arrow-desktop svg path {
    fill: var(--al-color-white) !important;
}

/* Transparent header - tertiary button */
body.home .al-header:not(.al-scrolled):not(.al-menu-open) .al-contact-desktop-btn,
body.al-transparent-header .al-header:not(.al-scrolled):not(.al-menu-open) .al-contact-desktop-btn {
    background: transparent !important;
    border: 1px solid var(--al-color-white) !important;
    color: var(--al-color-white) !important;
}

body.home .al-header:not(.al-scrolled):not(.al-menu-open) .al-contact-desktop-btn .al-nav-text,
body.al-transparent-header .al-header:not(.al-scrolled):not(.al-menu-open) .al-contact-desktop-btn .al-nav-text {
    color: var(--al-color-white) !important;
}

body.home .al-header:not(.al-scrolled):not(.al-menu-open) .al-contact-arrow-desktop svg path,
body.al-transparent-header .al-header:not(.al-scrolled):not(.al-menu-open) .al-contact-arrow-desktop svg path {
    fill: var(--al-color-white) !important;
}

body.home .al-header:not(.al-scrolled):not(.al-menu-open) .al-contact-desktop-btn:hover,
body.al-transparent-header .al-header:not(.al-scrolled):not(.al-menu-open) .al-contact-desktop-btn:hover {
    background: var(--al-color-white) !important;
    color: var(--al-color-dark) !important;
}

body.home .al-header:not(.al-scrolled):not(.al-menu-open) .al-contact-desktop-btn:hover .al-nav-text,
body.al-transparent-header .al-header:not(.al-scrolled):not(.al-menu-open) .al-contact-desktop-btn:hover .al-nav-text {
    color: var(--al-color-dark) !important;
}

body.home .al-header:not(.al-scrolled):not(.al-menu-open) .al-contact-desktop-btn:hover .al-contact-arrow-desktop svg path,
body.al-transparent-header .al-header:not(.al-scrolled):not(.al-menu-open) .al-contact-desktop-btn:hover .al-contact-arrow-desktop svg path {
    fill: var(--al-color-dark) !important;
}

/* ========================================
   DESKTOP ONLY CLASS
======================================== */
.al-desktop-only {
    display: block !important;
}

/* ========================================
   ARROW ICONS - 16px × 16px
======================================== */
.al-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.al-arrow svg {
    width: 16px !important;
    height: 16px !important;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.al-arrow svg path,
.al-arrow-down svg path {
    fill: var(--al-color-dark) !important;
    transition: fill 0.3s ease;
}

body.home .al-header:not(.al-scrolled):not(.al-menu-open) .al-arrow svg path,
body.home .al-header:not(.al-scrolled):not(.al-menu-open) .al-arrow-down svg path,
body.al-transparent-header .al-header:not(.al-scrolled):not(.al-menu-open) .al-arrow svg path,
body.al-transparent-header .al-header:not(.al-scrolled):not(.al-menu-open) .al-arrow-down svg path {
    fill: var(--al-color-white) !important;
}

.al-header.al-scrolled .al-arrow svg path,
.al-header.al-menu-open .al-arrow svg path {
    fill: var(--al-color-dark) !important;
}

.al-arrow-down {
    display: block;
}

.al-arrow-plus,
.al-arrow-minus,
.al-arrow-single {
    display: none;
}

@media (min-width: 768px) {
    .al-nav-item.al-has-dropdown:hover .al-arrow svg {
        transform: rotate(180deg);
    }
}

/* ========================================
   MEGA MENU BASE
   Default: 1030px (Resources)
======================================== */
.al-mega-menu {
    position: absolute;
    top: 100%;
    right: 0 !important;
    left: auto !important;
    width: 1030px;
    max-width: calc(100vw - 40px);
    padding: 30px 60px;
    background: #FAF9F7;
    border: 1px solid #E8E5DF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 99999;
    margin-top: 10px;
    box-sizing: border-box;
}

/* ========================================
   FIND YOUR HOME - EXACT 720px (FIGMA)
   Shifted left a bit to center under nav item
======================================== */
.al-mega-menu.al-find-home {
    width: 720px;
    min-width: 720px;
    max-width: 720px;
    right: auto !important;
    left: 50% !important;
    transform: translateX(-30%);
}

/* Show state needs to preserve transform */
.al-nav-item.al-has-dropdown:hover .al-mega-menu.al-find-home,
.al-nav-item.al-dropdown-open .al-mega-menu.al-find-home {
    transform: translateX(-30%);
}

/* ========================================
   SERVICES - EXACT 840px (FIGMA)
======================================== */
.al-mega-menu.al-services {
    width: 840px;
    min-width: 840px;
    max-width: 840px;
}

/* ========================================
   RESOURCES - 1030px (existing)
   4 items must fit in ONE row
======================================== */
.al-mega-menu.al-resources {
    width: 1030px;
    min-width: 1030px;
    max-width: 1030px;
}

/* Resources links: auto-width so 4 items fit in one line */
.al-mega-menu.al-resources .al-mega-links {
    flex-wrap: nowrap;
    gap: 20px 30px;
}

.al-mega-menu.al-resources .al-mega-link {
    width: auto;
    min-width: 0;
    flex: 1 1 0%;
}

.al-mega-menu.al-resources .al-mega-link-content {
    width: auto;
}

/* Show on hover / open */
.al-nav-item.al-has-dropdown:hover .al-mega-menu,
.al-nav-item.al-dropdown-open .al-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ========================================
   INNER CONTENT WIDTH
   720 - 120 = 600px | 840 - 120 = 720px | 1030 - 120 = 910px
======================================== */
.al-mega-menu.al-find-home .al-mega-content {
    width: 600px;
    max-width: 600px;
}

.al-mega-menu.al-services .al-mega-content {
    width: 720px;
    max-width: 720px;
}

.al-mega-menu.al-resources .al-mega-content {
    width: 910px;
    max-width: 910px;
}

/* ========================================
   MEGA MENU CONTENT
======================================== */
.al-mega-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.al-mega-top {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    width: 100%;
}

.al-mega-featured {
    width: 256px;
    flex-shrink: 0;
}

.al-mega-featured-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.al-mega-featured-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.al-mega-section-title {
    font-family: var(--al-font-body);
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    color: var(--al-color-dark);
    margin: 0;
    text-transform: capitalize;
}

.al-mega-description {
    font-family: var(--al-font-body);
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: normal;
    color: var(--al-color-light-text);
    margin: 0;
}

/* ========================================
   MEGA MENU LINKS - Figma specs
   gap-14 (56px) between items, w-48 (192px) each
======================================== */
.al-mega-links {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 56px;
    align-items: flex-start;
}

.al-mega-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: 192px;
    transition: opacity 0.2s ease;
}

.al-mega-link:hover {
    opacity: 0.7;
}

/* Line indicator: w-3.5 (14px) */
.al-mega-link::before {
    content: '';
    width: 14px;
    height: 0;
    border-top: 0.5px solid var(--al-color-dark);
    flex-shrink: 0;
}

/* Link text: w-36 (144px) */
.al-mega-link-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 144px;
}

.al-mega-link-title {
    font-family: var(--al-font-body);
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    color: var(--al-color-dark);
    margin: 0;
    text-transform: capitalize;
}

.al-mega-link-desc {
    font-family: var(--al-font-body);
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: normal;
    color: var(--al-color-light-text);
    margin: 0;
}

.al-mega-link-arrow {
    display: none;
}

/* ========================================
   MEGA MENU BOTTOM
======================================== */
.al-mega-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    width: 100%;
}

.al-mega-separator {
    width: 100%;
    height: 0;
    border-top: 1px solid #CCC8C0;
}

.al-mega-social {
    display: flex;
    gap: 14px;
}

.al-social-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #483F35;
    transition: opacity 0.3s ease;
}

.al-social-icon:hover {
    opacity: 0.7;
}

.al-social-icon svg {
    width: 14px;
    height: 14px;
    fill: #483F35;
}

/* ========================================
   HAMBURGER
======================================== */
.al-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
}

.al-hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--al-color-dark);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    transform-origin: center;
}

body.home .al-header:not(.al-scrolled):not(.al-menu-open) .al-hamburger-line,
body.al-transparent-header .al-header:not(.al-scrolled):not(.al-menu-open) .al-hamburger-line {
    background-color: var(--al-color-white);
}

.al-hamburger:hover,
.al-hamburger:focus,
.al-hamburger:active {
    background: none !important;
    border: none !important;
    outline: none !important;
}

/* X BUTTON - ALWAYS BROWN WHEN ACTIVE */
.al-hamburger.al-active .al-hamburger-line,
.al-header.al-menu-open .al-hamburger .al-hamburger-line,
body.al-menu-open .al-hamburger .al-hamburger-line {
    background-color: #5A4F42 !important;
}

body.home .al-hamburger.al-active .al-hamburger-line,
body.home .al-header.al-menu-open .al-hamburger .al-hamburger-line,
body.home .al-header:not(.al-scrolled) .al-hamburger.al-active .al-hamburger-line,
body.al-transparent-header .al-hamburger.al-active .al-hamburger-line,
body.al-transparent-header .al-header.al-menu-open .al-hamburger .al-hamburger-line,
body.al-transparent-header .al-header:not(.al-scrolled) .al-hamburger.al-active .al-hamburger-line {
    background-color: #5A4F42 !important;
}

/* Hero/transparent: WHITE only when CLOSED */
body.home .al-header:not(.al-scrolled):not(.al-menu-open) .al-hamburger:not(.al-active) .al-hamburger-line,
body.al-transparent-header .al-header:not(.al-scrolled):not(.al-menu-open) .al-hamburger:not(.al-active) .al-hamburger-line {
    background-color: #FFFFFF !important;
}

.al-hamburger.al-active .al-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.al-hamburger.al-active .al-hamburger-line:nth-child(2) {
    opacity: 0;
}

.al-hamburger.al-active .al-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ========================================
   MOBILE OVERLAY
======================================== */
.al-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99997;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.al-mobile-overlay.al-active {
    display: block;
    opacity: 1;
}

/* ========================================
   MOBILE-ONLY ELEMENTS - HIDDEN ON DESKTOP
======================================== */
.al-mobile-contact-wrapper,
.al-mobile-social-wrapper {
    display: none !important;
    visibility: hidden !important;
}

/* ========================================
   RESPONSIVE - TABLET (768px - 1400px)
======================================== */
@media (min-width: 768px) and (max-width: 1400px) {
    :root {
        --al-container-padding: 40px;
        --al-nav-gap: 40px;
    }
    
    .al-header-container {
        max-width: 100%;
        padding: 30px 40px;
    }
    
    /* Let menus shrink if viewport is smaller than their width */
    .al-mega-menu.al-services {
        max-width: calc(100vw - 80px);
    }
    
    .al-mega-menu.al-resources {
        max-width: calc(100vw - 80px);
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    :root {
        --al-container-padding: 30px;
        --al-nav-gap: 30px;
        --al-nav-font-size: 16px;
    }
    
    .al-header-container {
        padding: 30px 30px;
    }
    
    /* Shrink Find Your Home if needed */
    .al-mega-menu.al-find-home {
        max-width: calc(100vw - 60px);
        /* Reset centering on smaller screens */
        left: auto !important;
        right: 0 !important;
        transform: none;
    }
    
    .al-mega-menu.al-services {
        max-width: calc(100vw - 60px);
    }
    
    .al-mega-menu.al-resources {
        max-width: calc(100vw - 60px);
    }
}

/* ========================================
   MOBILE NAVIGATION (≤767px)
======================================== */
@media (max-width: 767px) {
    body {
        padding-top: 100px !important;
    }
    
    body.admin-bar {
        padding-top: calc(100px + 46px) !important;
    }
    
    html {
        scroll-padding-top: 100px;
    }
    
    .al-header {
        height: 100px;
    }
    
    .al-header-container {
        height: 100px;
        padding: 37px 30px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .al-logo {
        width: 100px;
        height: 16px;
        margin-right: auto;
        flex-shrink: 0;
    }
    
    .al-logo img,
    .al-logo svg {
        width: 100px !important;
        height: 16px !important;
    }
    
    .al-hamburger {
        display: flex;
        width: 24px;
        height: 24px;
        padding: 0;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .al-hamburger:not(.al-active) .al-hamburger-line {
        width: 24px;
        height: 2px;
        position: absolute;
    }
    
    .al-hamburger:not(.al-active) .al-hamburger-line:nth-child(1) {
        top: 6px;
        transform: none;
    }
    
    .al-hamburger:not(.al-active) .al-hamburger-line:nth-child(2) {
        top: 11px;
        opacity: 1;
    }
    
    .al-hamburger:not(.al-active) .al-hamburger-line:nth-child(3) {
        top: 16px;
        transform: none;
    }
    
    .al-hamburger.al-active .al-hamburger-line {
        width: 14px;
        height: 2px;
        position: absolute;
        top: 50%;
        left: 50%;
        background-color: var(--al-color-dark) !important;
    }
    
    .al-hamburger.al-active .al-hamburger-line:nth-child(1) {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    
    .al-hamburger.al-active .al-hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .al-hamburger.al-active .al-hamburger-line:nth-child(3) {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    
    /* SLIDE-IN NAV */
    .al-nav {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        height: calc(100vh - 100px);
        background: #E8E5DF;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        padding-bottom: 30px; /* Was 180px - now smaller since social is static */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 99999;
    }
    
    body.admin-bar .al-nav {
        top: calc(100px + 46px);
        height: calc(100vh - 100px - 46px);
    }
    
    body.al-menu-open .al-nav {
        transform: translateX(0);
    }
    
    .al-nav-item,
    .al-nav-item.al-has-dropdown {
        position: relative !important;
    }
    
    /* ====================================
       HIDE DESKTOP CONTACT ON MOBILE
       (Merged from navigation-complete-fix.css)
    ==================================== */
    .al-desktop-only,
    .al-nav-item.al-desktop-only,
    .al-contact-desktop-item,
    .al-contact-desktop-btn,
    .al-nav-link.al-contact-desktop-btn,
    a.al-contact-desktop-btn {
        display: none !important;
        visibility: hidden !important;
    }
    
    .al-nav-item:has(.al-contact-desktop-btn) {
        display: none !important;
    }
    
    .al-nav-item:has(> .al-contact-desktop-btn) {
        display: none !important;
    }
    
    .al-nav-list > li:nth-child(5) {
        display: none !important;
    }
    
    .al-nav-list > .al-nav-item:nth-child(5) {
        display: none !important;
    }
    
    .al-nav-list > .al-nav-item:last-child.al-desktop-only {
        display: none !important;
    }
    
    /* Resources (4th item) = last visible = no border */
    .al-nav-list > .al-nav-item:nth-child(4) {
        border-bottom: none !important;
    }
    
    /* NAV LIST */
    .al-nav-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        gap: 0 !important;
        padding: 0 !important;
    }
    
    .al-nav-item {
        display: block !important;
        width: 100% !important;
        max-width: 320px !important;
        border-bottom: 0.5px solid var(--al-color-brown) !important;
        padding: 0 !important;
    }
    
    .al-nav-item.al-nav-item-last-mobile {
        border-bottom: none !important;
    }
    
    .al-nav-link {
        width: 100%;
        justify-content: space-between;
        font-size: 16px;
        padding: 20px 0;
        color: var(--al-color-brown) !important;
    }
    
    .al-nav-link::after {
        display: none;
    }
    
    /* +/- icons mobile */
    .al-arrow-down {
        display: none !important;
    }
    
    .al-arrow-plus {
        display: flex !important;
        width: 18px !important;
        height: 18px !important;
    }
    
    .al-arrow-minus {
        display: none !important;
    }
    
    .al-nav-item.al-mobile-open .al-arrow-plus {
        display: none !important;
    }
    
    .al-nav-item.al-mobile-open .al-arrow-minus {
        display: flex !important;
        width: 18px !important;
        height: 18px !important;
    }
    
    .al-arrow-plus svg,
    .al-arrow-minus svg {
        width: 12px !important;
        height: 12px !important;
    }
    
    .al-arrow-plus svg path,
    .al-arrow-minus svg path {
        stroke: var(--al-color-brown) !important;
        stroke-width: 1.5px !important;
        fill: none !important;
    }
    
    .al-nav-item:not(.al-has-dropdown) .al-arrow-single {
        display: flex !important;
        width: 18px !important;
        height: 18px !important;
    }
    
    .al-arrow-single svg {
        width: 5.89px !important;
        height: 10px !important;
    }
    
    .al-arrow-single svg path {
        fill: var(--al-color-brown) !important;
    }
    
    /* ====================================
       MOBILE MEGA MENU
       Kill ALL fixed widths
    ==================================== */
    .al-mega-menu,
    .al-mega-menu.al-find-home,
    .al-mega-menu.al-services,
    .al-mega-menu.al-resources {
        position: static !important;
        width: 100% !important;
        min-width: unset !important;
        max-width: 320px !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin: 0 !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
    
    .al-nav-item.al-mobile-open .al-mega-menu {
        max-height: 2000px !important;
        overflow: visible !important;
        padding-top: 5px !important;
        padding-bottom: 10px !important;
    }
    
    /* Content width reset */
    .al-mega-menu.al-find-home .al-mega-content,
    .al-mega-menu.al-services .al-mega-content,
    .al-mega-menu.al-resources .al-mega-content {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .al-mega-content {
        padding: 0;
        gap: 0;
    }
    
    .al-mega-top {
        flex-direction: column;
        gap: 0;
    }
    
    .al-mega-featured {
        display: none !important;
    }
    
    /* Find Your Home mobile: show description only */
    .al-find-home .al-mega-featured {
        display: block !important;
        width: 100% !important;
        max-width: 320px !important;
        margin-bottom: 5px !important;
    }
    
    .al-find-home .al-mega-featured-content {
        gap: 0 !important;
    }
    
    .al-find-home .al-mega-section-title {
        display: none !important;
    }
    
    .al-find-home .al-mega-description {
        font-size: 12px !important;
        color: #666 !important;
        padding-bottom: 5px !important;
    }
    
    .al-mega-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
        max-width: 320px !important;
    }
    
    .al-mega-link {
        display: flex !important;
        width: 100% !important;
        padding: 15px 0 !important;
    }
    
    .al-mega-link::before {
        display: none !important;
    }
    
    .al-mega-link-content {
        width: auto !important;
        flex: 1 !important;
    }
    
    .al-mega-link-title {
        font-size: 14px;
    }
    
    .al-mega-link-desc {
        font-size: 10px;
    }
    
    .al-mega-link-arrow {
        display: flex !important;
        width: 18px !important;
        height: 18px !important;
    }
    
    .al-mega-link-arrow svg {
        width: 5.89px !important;
        height: 10px !important;
    }
    
    .al-mega-link-arrow svg path {
        fill: var(--al-color-brown) !important;
    }
    
    .al-mega-bottom,
    .al-mega-separator,
    .al-mega-social {
        display: none !important;
    }
    
    /* ====================================
       MOBILE CONTACT BUTTON
    ==================================== */
    .al-mobile-contact-wrapper {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 40px auto 30px !important;
        padding-top: 30px !important;
    }
    
    .al-mobile-contact-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 10px 25px;
        background: var(--al-color-white);
        border: 1px solid var(--al-color-brown);
        border-radius: 50px;
        color: var(--al-color-brown);
        font-family: var(--al-font-body);
        font-size: 16px;
        font-weight: 400;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .al-mobile-contact-btn:hover {
        background: var(--al-color-brown);
        color: var(--al-color-white);
    }
    
    .al-mobile-contact-text {
        flex: 1;
        text-align: center;
    }
    
    .al-mobile-contact-arrow {
        display: flex !important;
    }
    
    .al-mobile-contact-arrow svg {
        width: 13.33px !important;
        height: 10px !important;
    }
    
    .al-mobile-contact-arrow svg path {
        fill: var(--al-color-brown) !important;
        transition: fill 0.3s ease;
    }
    
    .al-mobile-contact-btn:hover .al-mobile-contact-arrow svg path {
        fill: var(--al-color-white) !important;
    }
    
    /* ====================================
       MOBILE SOCIAL ICONS
       STATIC FLOW - not fixed at bottom
       (Merged from patch - fixes overlap)
    ==================================== */
    .al-mobile-social-wrapper {
        position: static !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 30px !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 30px auto 40px !important;
        padding: 0 !important;
        pointer-events: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        z-index: auto !important;
    }
    
    body.al-menu-open .al-mobile-social-wrapper {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .al-mobile-social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #483F35;
    }
    
    .al-mobile-social-icon:hover {
        color: var(--al-color-brown);
    }
}

/* ========================================
   SMALL MOBILE (≤374px)
======================================== */
@media (max-width: 374px) {
    .al-header-container {
        padding: 30px 20px;
    }
    
    .al-logo {
        width: 90px;
        height: 14px;
    }
    
    .al-logo img {
        height: 14px !important;
        width: 90px !important;
    }
    
    .al-nav {
        padding: 20px;
        padding-bottom: 30px;
    }
    
    .al-nav-list {
        max-width: 280px !important;
    }
    
    .al-nav-item {
        max-width: 280px !important;
    }
}

/* ========================================
   MOBILE MENU - GOOGLE MAPS FIX
======================================== */
@media (max-width: 767px) {
    body.al-menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99990;
        pointer-events: none;
    }
    
    body.al-menu-open .al-header {
        z-index: 99999 !important;
    }
    
    body.al-menu-open .al-nav {
        z-index: 999999 !important;
    }
    
    body.al-menu-open .al-mobile-contact-wrapper {
        z-index: 999999 !important;
    }
    
    body.al-menu-open .al-mobile-social-wrapper {
        z-index: 999999 !important;
    }
    
    body.al-menu-open .gm-style,
    body.al-menu-open .gmnoprint,
    body.al-menu-open [class*="google-map"],
    body.al-menu-open .leaflet-container {
        z-index: 1 !important;
    }
}

/* ========================================
   END - NAVIGATION CSS v6.0
======================================== */