/* ============================================
   NAVIGATION
   ============================================ */

.we-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #303231;
    box-shadow: 0 2px 16px rgba(0,0,0,0.35);
    border-bottom: 2px solid #e8a020;
}

.we-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 104px;
}

.we-header__logo img { display: block; height: 96px; width: auto; }

/* Desktop nav */
.we-nav { display: none; }

.we-nav__list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.we-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 11px 20px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.01em;
    position: relative;
}

.we-nav__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #e8a020;
    transform: scaleX(0);
    transition: transform 0.25s ease;
    border-radius: 1px;
}

.we-nav__link:hover { color: #fff; background: none; }
.we-nav__link:hover::after { transform: scaleX(1); }

/* Active page indicator - desktop/tablet only */
.we-nav__link--active { color: #fff; }
.we-nav__link--active::after { transform: scaleX(1); }

/* Dropdown doesn't get underline, uses subtle bg instead */
.we-nav__link--dropdown::after { display: none; }
.we-nav__link--dropdown:hover { background: rgba(255,255,255,0.08); }
.we-nav__link--dropdown.we-nav__link--active { background: rgba(255,255,255,0.06); }

.we-nav__chevron { transition: transform 0.25s ease; }
.we-nav__item--mega { position: relative; }
.we-nav__item--mega:hover .we-nav__chevron { transform: rotate(180deg); }

/* Mega menu */
.we-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 540px;
    background: #303231;
    border-top: 3px solid #e8a020;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 48px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    padding: 32px 36px;
}

.we-nav__item--mega:hover .we-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.we-mega__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.we-mega__heading {
    display: block;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e8a020;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.we-mega__link {
    display: block;
    padding: 10px 0;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.9rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.we-mega__link:hover { color: #e8a020; padding-left: 8px; }

/* Desktop action buttons */
.we-header__actions { display: none; }

.we-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.we-header__phone:hover { color: #e8a020; }

.we-header__quote {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #e8a020;
    color: #303231;
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.we-header__quote:hover { background: #d4911a; }

.we-header__book {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #e8a020;
    color: #303231;
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.we-header__book:hover { background: #d4911a; }

/* Mobile right */
.we-header__mobile-right { display: flex; align-items: center; }

.we-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.we-hamburger__line {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: opacity 0.3s ease;
}

.we-hamburger--hidden { opacity: 0; pointer-events: none; }

/* Mobile menu - full screen */
.we-mobile-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #303231;
    z-index: 1100;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
}

.we-mobile-menu--open { transform: translateX(0); }

.we-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 16px 24px;
    border-bottom: 2px solid #e8a020;
}

.we-mobile-menu__close { background: none; border: none; cursor: pointer; padding: 4px; }

/* Scroll wrapper - everything below the close button scrolls as one */
.we-mobile-menu__scroll {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Branding block - centered logo + contact */
.we-mobile-menu__branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.we-mobile-menu__logo {
    height: 108px;
    width: auto;
    display: block;
}

.we-mobile-menu__contact-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.we-mobile-menu__nav { padding: 16px 0; display: flex; flex-direction: column; flex: 1; }

.we-mobile-menu__list { list-style: none; margin: 0; padding: 0; }
.we-mobile-menu__list li { border-bottom: 1px solid rgba(255,255,255,0.06); }

.we-mobile-menu__list > li > a,
.we-mobile-menu__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 24px;
    color: #fff;
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
    gap: 6px;
}

.we-mobile-menu__list > li > a:hover,
.we-mobile-menu__toggle:hover { color: #e8a020; }

.we-mobile-menu__chevron { transition: transform 0.25s ease; }
.we-mobile-menu__toggle[aria-expanded="true"] .we-mobile-menu__chevron { transform: rotate(180deg); }

.we-mobile-menu__sub {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: rgba(0,0,0,0.15);
}

.we-mobile-menu__sub--open { max-height: 500px; }

.we-mobile-menu__sub a {
    display: block;
    padding: 14px 24px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.95rem;
    text-align: center;
    transition: color 0.2s ease;
}

.we-mobile-menu__sub a:hover { color: #e8a020; }

.we-mobile-menu__cta-group {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.we-mobile-menu__cta {
    display: block;
    width: 100%;
    padding: 16px 24px;
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    text-align: center;
    transition: background 0.2s ease;
}

.we-mobile-menu__cta--quote { background: #e8a020; color: #303231; }
.we-mobile-menu__cta--quote:hover { background: #d4911a; }
.we-mobile-menu__cta--book { background: #e8a020; color: #303231; }
.we-mobile-menu__cta--book:hover { background: #d4911a; }

.we-mobile-menu__pill { text-align: center; padding-top: 8px; }

.we-mobile-menu__contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

.we-mobile-menu__contact:hover { color: #e8a020; }

/* Overlay */
.we-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.we-mobile-overlay--visible { opacity: 1; visibility: visible; }

/* Desktop/Tablet */
@media (min-width: 992px) {
    .we-header { position: relative; }
    .we-nav { display: block; }
    .we-header__actions {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .we-header__mobile-right { display: none; }
    .we-mobile-menu, .we-mobile-overlay { display: none; }
}
