/* =========================================================
   RESET & BASE
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #FFFDF9;
    font-family: 'Lora', serif;
}

header,
.site-header {
    width: 100%;
    max-width: 1920px;
    margin: auto;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   TOP BAR (HIDDEN IN SINGLE-TIER DESIGN)
========================================================= */
.top-bar {
    display: none !important;
}

.top-bar-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
}

.top-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.top-contact-link:hover {
    opacity: 0.85;
    color: #FFFFFF;
}

.top-bar-icon {
    width: 15px;
    height: 15px;
    object-fit: contain;
    display: inline-block;
}

.top-bar-pipe {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    margin: 0 4px;
    user-select: none;
}

.top-social-wrap {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 2px;
}

.top-follow-text {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin-right: 10px;
}

.top-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.top-social-link img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.top-social-link:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 20px;
    border-radius: 30px !important;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.top-contact-btn {
    background: #404093;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    color: #FFFFFF;
}

.top-contact-btn:hover {
    background: #b08b49 !important;
    border-color: #b08b49 !important;
    box-shadow: 0 4px 15px rgba(203, 170, 106, 0.4);
}

.top-quote-btn {
    background: #FFFFFF;
    border: 1.5px solid #FFFFFF;
    color: #18171C;
}

.top-quote-btn:hover {
    background: #b08b49 !important;
    border-color: #b08b49 !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(203, 170, 106, 0.4);
}

/* =========================================================
   MAIN NAVBAR (ROYAL NAVY SINGLE-TIER HEADER)
========================================================= */
.navbar,
.main-header {
    height: 76px;
    position: relative;
    z-index: 1001;
    background: #3B3D84;
    display: flex;
    align-items: center;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-header-inner {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 0;
    position: relative;
}

/* Tier 1: Brand Logo & Title (Left) */
.header-brand-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    position: relative;
    flex-shrink: 0;
}

.header-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.header-brand-link:hover {
    opacity: 0.9;
}

.header-brand-emblem {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
    color: #F1CC83 !important;
    fill: currentColor !important;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-brand-emblem path {
    fill: currentColor !important;
}

.header-brand-title {
    display: flex;
    flex-direction: column;
    font-family: 'Bricolage Grotesque', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    color: #F1CC83 !important;
    line-height: 1.15 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase;
    text-align: left;
    margin: 0;
    padding: 0;
}

.brand-title-line {
    display: block;
    white-space: nowrap;
}

/* Tier 2: Centered Navigation Menu */
.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.nav-center ul,
.header-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

@media (max-width: 1366px) and (min-width: 1025px) {

    .nav-center ul,
    .header-nav-list {
        gap: 20px;
    }

    .main-header-inner {
        padding: 0 24px;
    }
}

.nav-center>ul>li,
.header-nav-list>li {
    list-style: none;
    position: relative;
}

.nav-center>ul>li.has-header-dropdown,
.header-nav-list>li.has-header-dropdown {
    position: relative;
}

/* Main Top-Level Nav Links */
.nav-center>ul>li>a,
.header-nav-list>li>a {
    text-decoration: none;
    color: #FFFFFF !important;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    align-items: center;
    gap: 6px;
    transition: color 0.25s ease;
    font-family: 'Bricolage Grotesque', sans-serif;
    display: inline-flex;
    position: relative;
    padding: 26px 0;
}

/* Active & Hover Underline Bar Indicator (#F1CC83) - STRICTLY Top-Level Menu Items Only */
.nav-center>ul>li>a::after,
.header-nav-list>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3.5px;
    background: #F1CC83;
    border-radius: 10px 10px 0 0;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-center>ul>li>a:hover,
.header-nav-list>li>a:hover,
.nav-center>ul>li.is-active>a,
.header-nav-list>li.is-active>a,
.nav-center>ul>li.current-menu-item>a,
.header-nav-list>li.current-menu-item>a,
.nav-center>ul>li.current_page_item>a,
.header-nav-list>li.current_page_item>a {
    color: #F1CC83 !important;
}

.nav-center>ul>li>a:hover::after,
.header-nav-list>li>a:hover::after,
.nav-center>ul>li.is-active>a::after,
.header-nav-list>li.is-active>a::after,
.nav-center>ul>li.current-menu-item>a::after,
.header-nav-list>li.current-menu-item>a::after,
.nav-center>ul>li.current_page_item>a::after,
.header-nav-list>li.current_page_item>a::after {
    width: 100%;
}

.nav-center>ul>li>a>i,
.header-nav-list>li>a>i {
    font-size: 10px;
    color: #FFFFFF !important;
    transition: transform 0.3s ease, color 0.25s ease;
}

.nav-center>ul>li>a:hover>i,
.header-nav-list>li>a:hover>i,
.nav-center>ul>li.is-active>a>i,
.header-nav-list>li.is-active>a>i {
    color: #F1CC83 !important;
}

.has-header-dropdown:hover>a>i,
.has-mega-menu:hover>a>i,
.location-menu:hover>a>i,
.accessories-menu:hover>a>i {
    transform: rotate(180deg);
}

/* Guard: STRICTLY remove any underline indicator from mega menus, cards, tabs, and sub-dropdowns */
.mega-menu a::after,
.location-mega-menu a::after,
.accessories-mega-menu a::after,
.events-mega-menu a::after,
.header-dropdown-menu a::after,
.mega-left .menu-item::after,
.tent-card::after,
.location-card::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
}

/* =========================================================
   HEADER ACTIONS (RIGHT: CONTACT & QUOTE PILL BUTTONS)
========================================================= */
.header-actions-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border-radius: 30px !important;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.header-contact-btn {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    color: #FFFFFF !important;
    padding: 0 22px;
}

.header-contact-btn:hover {
    background: #F1CC83 !important;
    border-color: #F1CC83 !important;
    color: #18171C !important;
    box-shadow: 0 4px 15px rgba(241, 204, 131, 0.35);
}

.header-quote-btn {
    background: #F4EFE6;
    border: 1.5px solid #F4EFE6;
    color: #18171C !important;
    padding: 0 24px;
}

.header-quote-btn:hover {
    background: #F1CC83 !important;
    border-color: #F1CC83 !important;
    color: #18171C !important;
    box-shadow: 0 4px 15px rgba(241, 204, 131, 0.35);
}

/* =========================================================
   STICKY HEADER ACTIVE
========================================================= */
header.is-sticky,
.site-header.is-sticky {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
}

header.is-sticky .top-bar,
.site-header.is-sticky .top-bar {
    display: none !important;
}

header.is-sticky .navbar,
.site-header.is-sticky .navbar {
    height: 68px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

header.is-sticky .header-brand-emblem {
    height: 32px;
}

header.is-sticky .header-brand-title {
    font-size: 16px !important;
}

header.is-sticky .nav-center>ul>li>a,
header.is-sticky .header-nav-list>li>a {
    padding: 22px 0;
}

/* Enforce static position on mega menu containers so they span full navbar */
.has-mega-menu,
.location-menu,
.accessories-menu {
    position: static !important;
}

/* =========================================================
   STANDARD HEADER DROPDOWN (RESOURCES & WP MENU)
========================================================= */
.header-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #FFFFFF;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    padding: 6px 0;
    list-style: none !important;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    border: 1px solid #EBE7DE;
    margin: 0 !important;
}

.has-header-dropdown:hover .header-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.header-dropdown-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    width: 100%;
}

.header-dropdown-menu li a {
    display: block !important;
    padding: 10px 20px !important;
    color: #18171C !important;
    font-size: 14px !important;
    font-family: 'Bricolage Grotesque', sans-serif !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    white-space: nowrap !important;
    border-bottom: 1px solid #F5F3EF;
    text-align: left !important;
}

.header-dropdown-menu li:last-child a {
    border-bottom: none;
}

.header-dropdown-menu li a:hover {
    background: #FAF7F2 !important;
    color: #CBAA6A !important;
    padding-left: 24px !important;
}

/* =========================================================
   2ND LEVEL FLYOUT DROPDOWN (EVENTS -> EVENT SUB-PAGES)
========================================================= */
.header-dropdown-menu li.has-sub-dropdown {
    position: relative !important;
}

.has-sub-dropdown ul.header-subdropdown-menu {
    flex-direction: column;
    gap: 0;
}

.header-dropdown-menu li.has-sub-dropdown>a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.header-dropdown-menu li.has-sub-dropdown:hover>.header-subdropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

.header-subdropdown-menu {
    position: absolute !important;
    top: -6px !important;
    left: 100% !important;
    background: #FFFFFF !important;
    min-width: 220px !important;
    border-radius: 8px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12) !important;
    padding: 6px 0 !important;
    list-style: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 1050 !important;
    border: 1px solid #EBE7DE !important;
    margin: 0 !important;
    transform: translateX(10px) !important;
}

.nav-right {
    display: none;
}

/* =========================================================
   MEGA MENU - TENTS
========================================================= */
.has-mega-menu {
    position: static;
}

.mega-menu {
    border: 1px solid #E2E2E2;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(0px);
    width: 1340px;
    max-width: calc(100% - 40px);
    background: #F7F4EF;
    border-radius: 10px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 999;
    max-height: 85vh;
    overflow-y: auto;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(1);
}

.mega-menu::-webkit-scrollbar {
    width: 8px;
}

.mega-menu::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 20px;
}

.mega-menu-container {
    display: grid;
    grid-template-columns: 278px 1fr;
    grid-template-areas: "left right" "bottom bottom";
    padding: 20px 10px 30px 0px;
}

.mega-left {
    padding-top: 10px;
    padding-bottom: 10px;
    border-right: 1px solid #ececec;
    grid-area: left;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.mega-left .menu-item {
    display: block;
    width: 100%;
    text-decoration: none;
    padding: 16px 30px;
    transition: all 0.3s ease;
    background: transparent;
    box-sizing: border-box;
}

.mega-left .menu-item span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #575757;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    font-family: 'Bricolage Grotesque', sans-serif;
    padding: 0;
}

.mega-left .menu-item:hover,
.mega-left .menu-item.active {
    background: #EFE8DC;
}

.mega-left .menu-item:hover span,
.mega-left .menu-item.active span {
    color: #CBAA6A;
    font-weight: 600;
    background: transparent;
}

.mega-right {
    display: flex;
    flex-direction: column;
    grid-area: right;
    gap: 35px;
    min-width: 0;
    padding-left: 20px;
    padding-right: 15px;
}

.mega-right .tab-content {
    display: none;
    width: 100%;
}

.mega-right .tab-content.active {
    display: block;
    width: 100%;
}

.mega-images {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.mega-card {
    flex: 1 1 0px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #222;
    transition: transform .35s ease;
}

.mega-card:hover {
    transform: translateY(-6px);
}

.location-mega-menu a.location-card-title {
    margin-top: 20px !important;
}

.mega-card img {
    width: 100%;
    height: 350px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.mega-card p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.35;
    text-align: left;
    font-weight: 400;
    color: #18171C;
    font-family: 'Bricolage Grotesque', sans-serif;
    transition: color .3s ease;
    word-break: break-word;
}

.mega-card:hover p {
    color: #CBAA6A;
}

#tab1 .mega-images {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
}

#tab1 .mega-images img {
    height: 200px;
}

/* =========================================================
   LOCATION MEGA MENU
========================================================= */
.location-menu {
    position: static;
}

.location-toggle {
    cursor: pointer;
}

.location-toggle i {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.location-menu:hover .location-toggle i,
.location-menu.active .location-toggle i {
    transform: rotate(180deg);
}

.location-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 1320px;
    height: auto;
    transform: translateX(-50%) translateY(0px);
    border: 1px solid #E2E2E2;
    z-index: 9999;
    border-radius: 5px;
    background: #F7F4EF;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.location-menu:hover .location-mega-menu,
.location-menu.active .location-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(1);
}

.events-cards div>a {
    margin-top: 0 !important;
}

.location-mega-inner {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 22px;
    box-sizing: border-box;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    width: 100%;
}

.location-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #111;
    min-width: 0;
    position: relative;
}

.location-image {
    position: relative;
    width: 100%;
    height: 257px;
    overflow: hidden;
    border-radius: 8px;
    background: #ddd;
}

.location-img-wrap {
    display: block;
    width: 100%;
    height: 100%;
}

.location-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.04);
}

.location-card-title,
.location-card>span {
    display: block;
    margin-top: 8px;
    text-align: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #18171C;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.location-card .location-card-title,
.location-card>span {
    color: #18171C;
}

.location-hover-text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 16px 12px 12px 14px;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(24, 28, 38, 0) 0%, rgba(20, 24, 35, 0.72) 30%, rgba(14, 17, 26, 0.94) 100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 7px;
    z-index: 5;
    pointer-events: none;
}

.location-card:hover .location-hover-text {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.location-sub-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #FFFFFF !important;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    transition: transform 0.2s ease, color 0.2s ease;
    padding: 2px 0;
}

.location-sub-item:hover {
    color: #C5A880 !important;
    transform: translateX(3px);
}

.location-sub-bullet {
    font-size: 8px;
    color: #FFFFFF;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.location-sub-item:hover .location-sub-bullet {
    color: #C5A880;
}

.location-sub-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =========================================================
   UNIFIED MEGA MENU BOTTOM CTA (SINGLE SOURCE OF TRUTH)
========================================================= */
.mega-menu-bottom-cta,
.mega-bottom,
.location-bottom {
    width: 100%;
    max-width: 1265px;
    margin: 20px auto 0;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #FFFFFF;
    border-radius: 15px;
    box-sizing: border-box;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    grid-area: bottom;
}

.mega-menu-bottom-cta .mega-bottom-content,
.mega-bottom .bottom-left,
.location-bottom .location-bottom-content {
    flex: 1;
    max-width: 800px;
}

.mega-menu-bottom-cta h3,
.mega-menu-bottom-cta .mega-bottom-title,
.mega-bottom .bottom-title,
.location-bottom h3,
.location-bottom-content h3 {
    margin: 0 0 6px;
    font-family: 'Lora', serif;
    font-size: 27px;
    font-weight: 400;
    color: #18171C;
    line-height: 1.3;
}

.mega-menu-bottom-cta p,
.mega-menu-bottom-cta .mega-bottom-text,
.mega-bottom .bottom-left p,
.location-bottom p,
.location-bottom-content p {
    margin: 0 0 12px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #18171C;
    max-width: 680px;
}

.mega-menu-bottom-cta a,
.mega-menu-bottom-cta .mega-bottom-btn,
.mega-bottom .bottom-left a,
.location-bottom .location-inquiry,
.location-inquiry {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #CBAA6A !important;
    padding: 6px 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mega-menu-bottom-cta a:hover,
.mega-bottom .bottom-left a:hover,
.location-bottom .location-inquiry:hover,
.location-inquiry:hover {
    gap: 16px;
    color: #b08b49 !important;
}

.mega-menu-bottom-cta .inquiry-arrow,
.mega-bottom .inquiry-arrow,
.location-bottom .inquiry-arrow,
.inquiry-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: inherit;
    transition: transform 0.3s ease;
}

.mega-menu-bottom-cta .mega-bottom-logo,
.mega-bottom .bottom-right,
.location-bottom .location-logo,
.location-logo {
    width: 233px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mega-menu-bottom-cta .mega-bottom-logo img,
.mega-bottom .bottom-right img,
.location-bottom .location-logo img,
.location-logo img {
    max-width: 233px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* =========================================================
   ACCESSORIES MEGA MENU (REUSES LOCATION MEGA MENU STYLES)
========================================================= */
.accessories-cards {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px 15px !important;
}

.accessories-cards .location-image {
    height: 260px !important;
    background: #FFFFFF !important;
}

.accessories-cards .location-image img {
    object-fit: cover !important;
}

/* =========================================================
   EVENTS MEGA MENU (REUSES LOCATION MEGA MENU STYLES)
========================================================= */
.events-cards {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 15px !important;
    width: 100% !important;
}

.events-cards .location-card,
.events-cards .event-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
}

.events-cards .location-image {
    width: 100% !important;
    height: 257px !important;
    background: #e8e4dc !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.events-cards .location-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.events-cards .location-card-title,
.events-cards .event-card-title,
.events-cards .location-card-title span,
.events-cards .event-card-title span,
.events-cards .location-card>span,
.events-cards .location-card span,
.events-cards a {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin: 10px auto 0 !important;
    font-family: 'Bricolage Grotesque', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #18171C !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    line-height: 1.35 !important;
}

/* =========================================================
   HAMBURGER
========================================================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 100;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #18171C;
    transition: .3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================================
   MOBILE MENU
========================================================= */
.mobile-menu {
    display: none;
}

/* =========================================================
   DESKTOP - HIDE MOBILE MENU
========================================================= */
@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important;
    }
}

/* =========================================================
   TABLET / MOBILE - 1024px AND BELOW
========================================================= */
@media (max-width: 1024px) {

    .top-bar {
        height: auto;
        padding: 6px 0;
    }

    .top-bar-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 8px;
    }

    .top-bar-left {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 12.5px;
        gap: 8px;
    }

    .top-bar-right {
        display: none !important;
    }

    .navbar,
    .main-header {
        height: 64px;
        padding: 0;
    }

    .main-header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        height: 100%;
    }

    .header-brand-wrap {
        width: auto;
        justify-content: flex-start;
    }

    .header-brand-title {
        font-size: 12px !important;
    }

    .header-brand-emblem {
        height: 28px;
    }

    .nav-center,
    .nav-right {
        display: none !important;
    }

    .header-actions-wrap .header-action-btn {
        display: none !important;
    }

    .hamburger {
        display: flex;
        order: 3;
        position: relative;
        z-index: 11002;
    }

    .hamburger span {
        background: #FFFFFF !important;
    }

    body.mobile-menu-open .header-brand-wrap {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    body.mobile-menu-open .hamburger {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 50vw;
        max-width: 50vw;
        height: 100dvh;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        background: #FFFDF9;
        z-index: 11010;
        padding: 40px 24px 34px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1),
            opacity 0.3s ease,
            visibility 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: -12px 0 35px rgba(0, 0, 0, 0.08);
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .mobile-menu-header {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding-bottom: 48px;
    }

    .mobile-menu-logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-width: 0;
    }

    .mobile-menu-logo a {
        display: inline-flex;
        text-decoration: none;
    }

    .mobile-menu-logo img {
        display: block;
        width: 103px;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .mobile-menu-close {
        width: 44px;
        height: 44px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #F1EFEB;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
        flex: 0 0 44px;
    }

    .mobile-menu-close span {
        position: absolute;
        width: 22px;
        height: 2.5px;
        background: #18171C;
        border-radius: 2px;
    }

    .mobile-menu-close span:first-child {
        transform: rotate(45deg);
    }

    .mobile-menu-close span:last-child {
        transform: rotate(-45deg);
    }

    .mobile-menu-list {
        width: 100%;
    }

    .mobile-menu-item {
        width: 100%;
        border-bottom: 1px solid #E8E4DE;
    }

    .mobile-menu-link {
        width: 100%;
        min-height: 72px;
        padding: 0 8px;
        border: 0;
        outline: 0;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        color: #18171C;
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 1;
        cursor: pointer;
        text-align: left;
    }

    .mobile-menu-link i {
        color: #A8A6A1;
        font-size: 13px;
        transition: transform 0.3s ease;
        flex: 0 0 auto;
    }

    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        padding: 30px 8px 36px;
    }

    .mobile-nav-btn {
        position: relative;
        isolation: isolate;
        overflow: hidden;
        width: 100%;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 16px !important;
        font-weight: 500;
        text-decoration: none;
        border-radius: 30px !important;
        transition: transform 0.4s ease, background 0.4s ease, border-radius 0.4s ease, box-shadow 0.4s ease;
    }

    .mobile-contact-btn {
        color: #EDE9E1;
        background: #404093;
        border: 1px solid #EDE9E1;
    }

    .mobile-quote-btn {
        color: #18171C;
        background: #EDE9E1;
        border: 1px solid #EDE9E1;
    }

    .mobile-nav-btn::before {
        content: '';
        position: absolute;
        z-index: -1;
        bottom: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
        transform: scale(0);
        transition: transform 0.6s ease;
        border-radius: 50%;
        pointer-events: none;
    }

    .mobile-nav-btn:hover::before,
    .mobile-nav-btn:focus-visible::before,
    .mobile-nav-btn.mobile-btn-clicked::before {
        transform: scale(1);
    }

    .mobile-nav-btn:hover,
    .mobile-nav-btn:focus-visible,
    .mobile-nav-btn.mobile-btn-clicked {
        background: #b08b49 !important;
        box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2) !important;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    /* Hide mega menus on mobile */
    .location-mega-menu,
    .accessories-mega-menu,
    .events-mega-menu,
    .mega-menu {
        display: none !important;
    }
}

/* =========================================================
   RESPONSIVE - Mega Menus
========================================================= */
@media (max-width: 1350px) {

    .location-mega-menu,
    .accessories-mega-menu,
    .events-mega-menu {
        width: calc(100vw - 30px);
    }
}

@media (max-width: 1024px) {

    .location-mega-menu,
    .accessories-mega-menu,
    .events-mega-menu {
        display: none !important;
    }
}

/* =========================================================
   SMALLER MOBILE
========================================================= */
@media (max-width: 768px) {

    .navbar,
    .main-header {
        padding: 10px 0;
        height: auto;
    }

    .header-brand-title {
        font-size: 20px !important;
    }

    .header-brand-emblem {
        height: 26px;
    }

    .mobile-menu {
        width: 70vw;
        max-width: 70vw;
        padding: 26px 17px 32px;
    }

    .mobile-menu-header {
        padding-bottom: 44px;
    }

    .mobile-menu-logo img {
        width: 95px;
    }

    .mobile-menu-close {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .mobile-menu-link {
        min-height: 70px;
        font-size: 17px;
        padding: 0 4px;
    }

    .mobile-menu-actions {
        padding-left: 4px;
        padding-right: 4px;
        gap: 10px;
    }

    .mobile-nav-btn {
        height: 43px;
        font-size: 13px;
    }

}

@media (max-width: 576px) {

    .navbar,
    .main-header {
        padding: 12px 0;
        height: auto;
    }

    .header-brand-title {
        font-size: 18px !important;
        letter-spacing: 0.2px !important;
    }

    .header-brand-emblem {
        height: 34px;
    }

    .header-brand-link {
        gap: 8px;
    }

    .top-action-btn {
        height: 28px;
        padding: 0 16px;
        font-size: 12px;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
        background: #FFFFFF !important;
    }

    .mobile-menu {
        width: 70vw;
        max-width: 70vw;
        padding: 20px 14px 0;
    }

    .mobile-menu-header {
        padding-bottom: 28px;
    }

    .mobile-menu-logo img {
        width: 72px;
    }

    .mobile-menu-close {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .mobile-menu-close span {
        width: 18px;
        height: 2px;
    }

    .mobile-menu-link {
        min-height: 56px;
        font-size: 13px;
        padding: 0 2px;
    }

    .mobile-menu-link i {
        font-size: 10px;
    }

    .mobile-menu-actions {
        flex-direction: column;
        gap: 7px;
        padding: 18px 2px 24px;
    }

    .mobile-nav-btn {
        width: 100%;
        height: 38px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 70vw;
        max-width: 70vw;
        padding-left: 12px;
        padding-right: 12px;
        padding-top: 30px;
    }


    .mobile-menu-header {
        padding-bottom: 25px;
    }

    .mobile-menu-logo img {
        width: 68px;
    }

    .mobile-menu-link {
        min-height: 54px;
        font-size: 14px;
    }

    .mobile-menu-actions {
        padding-left: 2px;
        padding-right: 2px;
    }
}

@media (max-width: 375px) {
    .mobile-menu {
        width: 50vw;
        max-width: 50vw;
        padding-left: 10px;
        padding-right: 10px;
    }

    .mobile-menu-logo img {
        width: 62px;
    }

    .mobile-menu-close {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .mobile-menu-close span {
        width: 16px;
    }

    .mobile-menu-link {
        min-height: 51px;
        font-size: 11px;
    }

    .mobile-nav-btn {
        height: 35px;
        font-size: 10px;
    }
}

/* =========================================================
   ANIMATION CLASSES
========================================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}