
/* Social Media Icons */
.tiktok {
    background-color: #010101 !important;
}

.icon-tiktok::before {
    font-family: "Font Awesome 6 Brands" !important;
    content: "\e07b" !important;
}

/* -------------------------------------------------------
   HEADER / NAV OVERRIDES
------------------------------------------------------- */

/* Reduce nav height — less space below the logo */
body > nav .menu-brand,
.menu-icon-top .menu-brand {
    height: 80px;
    padding: 10px 0;
}

/* Ensure mobile sticky header matches the original desktop sticky rules (75px height, 5px padding) so the logo stays exactly 65px tall */
@media (max-width: 991.98px) {
    body > nav.menu-fixed.scroll-menu {
        height: 75px !important;
    }
    body > nav.menu-fixed.scroll-menu .menu-brand {
        height: 75px !important;
        padding: 5px 0 !important;
    }
}

body > nav .menu-cnt > ul > li > a,
body > nav .lan-menu > li > a,
body > nav .menu-right {
    height: 80px;
    line-height: 80px;
    padding-bottom: 0;
}

body > nav .lan-menu > li > a {
    line-height: 110px;
    padding-bottom: 0;
}

/* -------------------------------------------------------
   ALPINS SLIDER — Dark overlay & hover background swap
------------------------------------------------------- */

/* Darken background images with a semi-transparent overlay */
.alpins-slider > .background-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
    z-index: 1;
}

/* Smooth cross-fade between background panels */
.alpins-slider > .background-slider > div {
    transition: opacity 0.6s ease !important;
}

/* -------------------------------------------------------
   PRESS RELEASE GRID / FILTERS OVERRIDES
------------------------------------------------------- */

/* Dual Range Slider Styling */
.dual-slider-container {
    width: 100%;
    margin-bottom: 15px;
}

.slider-track-wrapper {
    position: relative;
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center;
}

.slider-track {
    position: absolute;
    width: 100%;
    height: 6px;
    background: #dde2e6;
    border-radius: 3px;
    z-index: 1;
}

.slider-range {
    position: absolute;
    height: 6px;
    background: #007bff;
    border-radius: 3px;
    z-index: 2;
}

.slider-track-wrapper input[type="range"] {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    z-index: 3;
}

.slider-track-wrapper input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.4);
    border: 2px solid #fff;
    transition: transform 0.1s;
}

.slider-track-wrapper input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.4);
    border: 2px solid #fff;
    transition: transform 0.1s;
}

.slider-track-wrapper input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.slider-track-wrapper input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.15);
}

.slider-values {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    font-weight: 600;
}

/* Enable position: sticky by overriding overflow: hidden on parent section */
main > section:has(#filterSidebar) {
    overflow: visible !important;
}

/* Fixed / Off-Canvas Filter Sidebar Styling for Mobile */
.filter-sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 40px;
    margin-bottom: 30px;
    position: sticky;
    top: 120px;
    z-index: 100;
    align-self: flex-start;
}

/* Fancy Checkbox Styling for Categories */
.fancy-checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #444;
    user-select: none;
    position: relative;
    padding-left: 28px;
    font-weight: 500;
    width: 100%;
}
.fancy-checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.fancy-checkbox-checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: #f0f2f5;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fancy-checkbox-wrapper:hover input ~ .fancy-checkbox-checkmark {
    background-color: #e2e8f0;
    border-color: #94a3b8;
}
.fancy-checkbox-wrapper input:checked ~ .fancy-checkbox-checkmark {
    background-color: #007bff;
    border-color: #007bff;
    box-shadow: 0 2px 6px rgba(0,123,255,0.3);
}
.fancy-checkbox-checkmark::after {
    content: "";
    display: none;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}
.fancy-checkbox-wrapper input:checked ~ .fancy-checkbox-checkmark::after {
    display: block;
}

@media (max-width: 991.98px) {
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: -350px;
        width: 320px;
        height: 100vh;
        z-index: 999999;
        box-shadow: 5px 0 30px rgba(0,0,0,0.25);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        margin-top: 0;
        margin-bottom: 0;
        border-radius: 0;
        align-self: auto;
    }
    .filter-sidebar.open {
        left: 0;
    }
}

/* Force dropdown datepicker to appear correctly above everything */
.datepicker-dropdown {
    z-index: 999999 !important;
}

/* Prerendered Inline Calendar Overrides */
#prerenderedCalendarContainer .datepicker-container,
#prerenderedCalendarContainer .datepicker-panel {
    width: 100% !important;
    background: #fff !important;
    box-sizing: border-box;
    z-index: 1 !important;
}

/* Remove clearfix pseudo-elements that disrupt CSS Grid and Flexbox */
#prerenderedCalendarContainer .datepicker-panel > ul::before,
#prerenderedCalendarContainer .datepicker-panel > ul::after {
    display: none !important;
    content: none !important;
}

/* Header Flexbox Alignment (Centered & Bold Apr 2026 on Same Row) */
#prerenderedCalendarContainer .datepicker-panel > ul:first-child {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-bottom: 10px !important;
    flex-wrap: nowrap !important;
}
#prerenderedCalendarContainer .datepicker-panel > ul:first-child > li {
    float: none !important;
    height: auto !important;
    line-height: 30px !important;
    width: auto !important;
    flex: none !important;
}
/* Navigation arrows pushed to far left and far right */
#prerenderedCalendarContainer .datepicker-panel > ul:first-child > li[data-view="month prev"],
#prerenderedCalendarContainer .datepicker-panel > ul:first-child > li[data-view="year prev"],
#prerenderedCalendarContainer .datepicker-panel > ul:first-child > li[data-view="years prev"] {
    margin-right: auto !important;
    padding-left: 10px !important;
}
#prerenderedCalendarContainer .datepicker-panel > ul:first-child > li[data-view="month next"],
#prerenderedCalendarContainer .datepicker-panel > ul:first-child > li[data-view="year next"],
#prerenderedCalendarContainer .datepicker-panel > ul:first-child > li[data-view="years next"] {
    margin-left: auto !important;
    padding-right: 10px !important;
}
/* Month and Year labels perfectly centered side-by-side */
#prerenderedCalendarContainer .datepicker-panel > ul:first-child > li[data-view="month current"],
#prerenderedCalendarContainer .datepicker-panel > ul:first-child > li[data-view="year current"],
#prerenderedCalendarContainer .datepicker-panel > ul:first-child > li[data-view="years current"] {
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #13304a !important;
    margin: 0 4px !important;
    padding: 0 !important;
}

/* Days Header & Date Grid Constrained to Exactly 7 Columns */
#prerenderedCalendarContainer .datepicker-panel > ul[data-view="week"],
#prerenderedCalendarContainer .datepicker-panel > ul[data-view="days"] {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    width: 100% !important;
    gap: 4px 0 !important;
}
#prerenderedCalendarContainer .datepicker-panel > ul > li {
    background-color: transparent !important;
    color: #333 !important;
    font-size: 13px !important;
    position: relative;
    z-index: 1;
    float: none !important;
    width: 100% !important;
    height: 30px !important;
    line-height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
#prerenderedCalendarContainer .datepicker-panel > ul > li.muted {
    color: #ccc !important;
}

/* Round Blue Spheres for Range & Picked Dates */
#prerenderedCalendarContainer .datepicker-panel > ul > li.range-endpoint::before,
#prerenderedCalendarContainer .datepicker-panel > ul > li.range-in-between::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background-color: #007bff;
    z-index: -1;
    box-shadow: inset -2px -2px 4px rgba(0,0,0,0.2), inset 2px 2px 4px rgba(255,255,255,0.4);
}
#prerenderedCalendarContainer .datepicker-panel > ul > li.range-endpoint {
    color: #fff !important;
    font-weight: bold;
}
#prerenderedCalendarContainer .datepicker-panel > ul > li.range-in-between {
    color: #fff !important;
    font-weight: bold;
}
/* Today / picked if not in range */
#prerenderedCalendarContainer .datepicker-panel > ul > li.picked:not(.range-endpoint):not(.range-in-between)::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background-color: #13304a;
    z-index: -1;
    box-shadow: inset -2px -2px 4px rgba(0,0,0,0.3), inset 2px 2px 4px rgba(255,255,255,0.3);
}
#prerenderedCalendarContainer .datepicker-panel > ul > li.picked:not(.range-endpoint):not(.range-in-between) {
    color: #fff !important;
    font-weight: bold;
}

/* Month and Year selection grids (4 columns) */
#prerenderedCalendarContainer .datepicker-panel > ul[data-view="months"],
#prerenderedCalendarContainer .datepicker-panel > ul[data-view="years"] {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    width: 100% !important;
    gap: 8px 8px !important;
    padding: 10px !important;
    box-sizing: border-box !important;
}
#prerenderedCalendarContainer .datepicker-panel > ul[data-view="months"] > li,
#prerenderedCalendarContainer .datepicker-panel > ul[data-view="years"] > li {
    position: relative !important;
    width: 100% !important;
    height: 40px !important;
    line-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
#prerenderedCalendarContainer .datepicker-panel > ul[data-view="months"] > li::before,
#prerenderedCalendarContainer .datepicker-panel > ul[data-view="years"] > li::before {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: 36px !important;
    height: 36px !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 50% !important;
}
/* Prevent FOUC: Hide uninitialized sliders and fade them in when ready */
.glide:not(.slider-ready) {
    opacity: 0 !important;
    visibility: hidden !important;
}
.glide.slider-ready {
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.35s ease-in-out !important;
}

/* Hover effects for adventure cards */
.cnt-box-info {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.cnt-box-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0,0,0,0.22) !important;
}

/* -------------------------------------------------------
   MOBILE: Center sorting row & press release tiles
------------------------------------------------------- */
@media (max-width: 767.98px) {
    /* Center the sorting controls */
    .main-grid > div:first-child {
        justify-content: center !important;
    }

    /* Center the single-column tile card */
    .maso-list.gap-30 {
        justify-content: center;
    }
    .maso-list.gap-30 .maso-item {
        max-width: 400px;
    }
}

/* -------------------------------------------------------
   HERO: Dark overlay for section-image (better text contrast)
------------------------------------------------------- */
.section-image.light::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    z-index: 1;
    pointer-events: none;
}

.section-image.light > .container {
    position: relative;
    z-index: 2;
}

/* -------------------------------------------------------
   FANCY FORM INPUTS: Checkboxes & Radio Buttons
------------------------------------------------------- */
.form-check {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    position: relative;
    padding-left: 0;
    margin-bottom: 0.75rem;
}

.form-check-input {
    appearance: none;
    -webkit-appearance: none;
    background-color: #f8fafc;
    border: 2px solid #cbd5e1;
    width: 22px !important;
    height: 22px !important;
    margin-right: 12px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease-in-out;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.form-check-input[type="checkbox"] {
    border-radius: 6px;
}

.form-check-input[type="radio"] {
    border-radius: 50%;
}

.form-check-input:hover {
    border-color: #94a3b8;
    background-color: #f1f5f9;
}

.form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.form-check-input[type="checkbox"]:checked::before {
    content: "";
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.form-check-input[type="radio"]:checked::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
}

.form-check-label {
    cursor: pointer;
    font-size: 15px;
    color: #334155;
    line-height: 1.4;
    user-select: none;
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Checkbox labels - a bit bold */
.form-check-input[type="checkbox"] ~ .form-check-label {
    font-weight: 600 !important;
}

/* Radio button labels - not bold */
.form-check-input[type="radio"] ~ .form-check-label {
    font-weight: 500 !important;
}

.form-check-input:focus-visible {
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

/* -------------------------------------------------------
   SPACING: Fix gap between solid nav & main content
------------------------------------------------------- */
body > nav.menu-fixed:not(.menu-transparent) + main {
    margin-top: 80px !important;
}

@media (max-width: 991.98px) {
    body > nav.menu-fixed:not(.menu-transparent) + main {
        margin-top: 75px !important;
    }
}

/* -------------------------------------------------------
   LOGOS: Fix cropping/distortion in side boxes (e.g. Mountain Guide Logo)
------------------------------------------------------- */
.cnt-box-side > .img-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    width: 150px !important;
    height: 150px !important;
    flex-shrink: 0 !important;
    margin-right: 25px !important;
    overflow: hidden !important;
    border-radius: 6px !important;
}

.cnt-box-side > .caption {
    width: auto !important;
    flex-grow: 1 !important;
    padding-left: 0 !important;
}

.cnt-box-side > .img-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* Specific dark overlay override for main hero section on press release details */
.section-image.section-full-width-right.light.ken-burn-center::before {
    background: rgba(0, 0, 0, 0.32) !important;
}

/* Custom enhancements */

/* 1. Round the hover shade and images in the Adventure slider */
.cnt-box-info .img-box,
.cnt-box-info .img-box::before,
.cnt-box-info .img-box img {
    border-radius: 8px !important;
}

/* 2. Mobile: Show content above slider in Adventure Slider */
@media (max-width: 991.98px) {
    .adventure-slider-section .row {
        display: flex;
        flex-direction: column-reverse;
    }
    .adventure-slider-section .col-lg-4 {
        margin-bottom: 10px !important;
    }
    .adventure-slider-section .col-lg-8 {
        margin-bottom: 20px !important;
    }
    .adventure-slider-section .visible-sm {
        display: none !important;
    }
    .adventure-slider-section > .container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

/* 3. Mobile: Reduce gaps between sections on the homepage (40px top / 20px bottom) */
@media (max-width: 991.98px) {
    .template-homepage main > section > .container,
    .template-homepage main > section > [class*="container"] {
        padding-top: 40px !important;
        padding-bottom: 20px !important;
    }
}

/* 4. Round the press release grid tiles (cnt-box boxed) and their images/hover shades */
.cnt-box.boxed {
    border-radius: 10px !important;
    overflow: hidden !important;
}

.cnt-box.boxed .img-box,
.cnt-box.boxed .img-box::before,
.cnt-box.boxed .img-box img {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

/* 5. Fancy hover effects (brand gradient overlay, glassmorphism blur, and smooth cinematic zoom) */
.cnt-box-info .img-box::before,
.cnt-box.boxed .img-box::before {
    background: linear-gradient(135deg, rgba(55, 156, 244, 0.45) 0%, rgba(19, 48, 74, 0.75) 100%) !important;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border-radius: inherit !important;
}

.cnt-box-info:hover .img-box::before,
.cnt-box.boxed:hover .img-box::before,
.cnt-box-info .img-box:hover::before,
.cnt-box.boxed .img-box:hover::before {
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
}

.cnt-box-info .img-box img,
.cnt-box.boxed .img-box img {
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s ease !important;
}

.cnt-box-info:hover .img-box img,
.cnt-box.boxed:hover .img-box img,
.cnt-box-info .img-box:hover img,
.cnt-box.boxed .img-box:hover img {
    transform: scale(1.06) !important;
    opacity: 0.95 !important;
}

/* 6. Padding for Main Hero press release blocks to prevent overlap with header/logo */
.main-hero-press-release > .container {
    padding-top: 180px !important;
    padding-bottom: 150px !important;
}

@media (max-width: 991.98px) {
    /* Push the title column down on mobile to clear the header logo */
    .main-hero-press-release > .container {
        padding-top: 150px !important;
        padding-bottom: 30px !important;
    }
    .main-hero-press-release .col-lg-8 {
        margin-top: 80px !important;
    }
    
    /* Ensure the last attribute column has bottom padding/space from the end of the section on mobile */
    .main-hero-press-release .col-lg-4 {
        padding-bottom: 80px !important;
    }
}

/* Mobile: Show content above slider in Parallax Adventure Slider */
@media (max-width: 991.98px) {
    .parallax-adventure-section .row {
        display: flex;
        flex-direction: column-reverse;
    }
    .parallax-adventure-section .col-lg-6.fade-left {
        margin-bottom: 20px !important;
    }
    .parallax-adventure-section .col-lg-6:first-child {
        margin-bottom: 35px !important;
    }
}

/* 7. Round the tiles (media-box) inside Parallax Adventure Slider */
.parallax-adventure-section .media-box {
    border-radius: 12px !important;
    overflow: hidden !important;
}

.parallax-adventure-section .media-box img,
.parallax-adventure-section .media-box::before {
    border-radius: 12px !important;
}

/* 8. Floating booking button styling */
.floating-booking-btn {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important;
    right: auto !important;
    z-index: 9999 !important;
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.4) !important;
    padding: 14px 32px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.floating-booking-btn:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.6) !important;
}

@media (max-width: 991.98px) {
    .floating-booking-btn {
        left: 20px !important;
        right: auto !important;
        bottom: 20px !important;
        width: auto !important;
        text-align: center !important;
        padding: 10px 20px !important;
        font-size: 12px !important;
        border-radius: 50px !important;
    }

    .floating-booking-btn:hover {
        transform: translateY(-2px) scale(1.02) !important;
    }
}

/* -------------------------------------------------------
   CUSTOM DROPDOWN MENU STYLING (DESKTOP)
------------------------------------------------------- */
@media (min-width: 992px) {
    /* Set white background for all dropdown menus, submenus, and language menus */
    body > nav .menu-cnt .dropdown > ul,
    body > nav .menu-cnt .dropdown-submenu > ul,
    body > nav .lan-menu .dropdown > ul {
        background-color: #FFF !important;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1) !important;
        border-radius: 4px !important;
        padding: 5px 0 !important;
    }

    /* Set dark text and white background for dropdown links in all navbar states */
    body > nav .menu-cnt .dropdown > ul > li > a,
    body > nav .menu-cnt .dropdown-submenu > ul > li > a,
    body > nav .lan-menu .dropdown > ul > li > a {
        background-color: #FFF !important;
        color: #13304a !important;
        transition: background-color 0.2s ease, color 0.2s ease !important;
    }

    /* Submenu indicators (arrows) inside the dropdown should also be dark */
    body > nav .menu-cnt .dropdown-submenu > a:after {
        color: #13304a !important;
    }

    /* Hover states: background becomes theme blue and text becomes white */
    body > nav .menu-cnt .dropdown > ul > li:hover > a,
    body > nav .menu-cnt .dropdown-submenu > ul > li:hover > a,
    body > nav .lan-menu .dropdown > ul > li:hover > a {
        background-color: #379cf4 !important;
        color: #FFF !important;
    }

    /* Submenu indicator on hover should become white */
    body > nav .menu-cnt .dropdown-submenu:hover > a:after {
        color: #FFF !important;
    }
}

/* -------------------------------------------------------
   CUSTOM DROPDOWN MENU STYLING (MOBILE SLIDE-OVER SCREEN)
------------------------------------------------------- */
@media (max-width: 991.98px) {
    /* Hide horizontal overflow to prevent horizontal scrollbars on menu-cnt */
    body > nav .menu-cnt {
        overflow-x: hidden !important;
        position: absolute !important;
    }

    /* Make the dropdown parent li items position static so absolute sub-uls align to menu-cnt */
    body > nav .menu-cnt li.dropdown,
    body > nav .menu-cnt li.dropdown-submenu {
        position: static !important;
    }

    /* Hide standard inline dropdown arrows on mobile to keep it clean */
    body > nav .menu-cnt li.dropdown > a:after,
    body > nav .menu-cnt li.dropdown-submenu > a:after {
        display: none !important;
    }

    /* Position sub-uls off-screen to the right and fill the menu container */
    body > nav .menu-cnt .dropdown > ul,
    body > nav .menu-cnt .dropdown-submenu > ul {
        position: absolute !important;
        top: 0 !important;
        left: 100% !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        background-color: #FFF !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        border: none !important;
        display: block !important; /* Always display block so transition works */
        transition: transform 0.3s ease-in-out !important;
        transform: translateX(0) !important;
        z-index: 10000 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    /* Slide sub-ul in from right when parent is active */
    body > nav .menu-cnt .dropdown.active > ul,
    body > nav .menu-cnt .dropdown-submenu.active > ul {
        transform: translateX(-100%) !important;
    }

    /* Styles for the Back item/button */
    body > nav .menu-cnt li.menu-back-item {
        display: block !important;
        border-bottom: 1px solid #eee !important;
        background-color: #f8f9fa !important;
    }

    body > nav .menu-cnt li.menu-back-item a {
        display: block !important;
        padding: 15px 30px !important;
        font-weight: 700 !important;
        color: #13304a !important;
        background-color: #f8f9fa !important;
        line-height: normal !important;
        height: auto !important;
        text-align: left !important;
    }

    body > nav .menu-cnt li.menu-back-item a i {
        margin-right: 8px !important;
        font-size: 16px !important;
    }

    /* Style the sub-ul links (dropdown items) on mobile */
    body > nav .menu-cnt .dropdown > ul > li > a,
    body > nav .menu-cnt .dropdown-submenu > ul > li > a {
        background-color: #FFF !important;
        color: #13304a !important;
        display: block !important;
        padding: 15px 30px !important;
        border-bottom: 1px solid #f5f5f5 !important;
        line-height: normal !important;
        height: auto !important;
        text-align: left !important;
    }

    /* Hover/Active states on mobile dropdown items */
    body > nav .menu-cnt .dropdown > ul > li > a:hover,
    body > nav .menu-cnt .dropdown-submenu > ul > li > a:hover {
        background-color: #379cf4 !important;
        color: #FFF !important;
    }
}

/* -------------------------------------------------------
   404 ERROR PAGE STYLING
   ------------------------------------------------------- */
.error-404-container {
    padding: 80px 0;
    text-align: center;
}
.error-404-graphic-container {
    max-width: 560px;
    margin: 0 auto 40px auto;
    width: 100%;
}
.error-404-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}
.error-404-text {
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 16px;
    line-height: 1.6;
}
.error-404-text h1, .error-404-text h2, .error-404-text h3 {
    color: #13304a;
    margin-bottom: 15px;
    font-weight: 700;
}

/* -------------------------------------------------------
   MOUNT10 DEVELOPMENT — Footer Production Credit
------------------------------------------------------- */
.mount10-credit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: rgba(238, 243, 247, 0.7) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 6px 0;
}



.mount10-logo-mark {
    width: 44px;
    height: 22px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}



.mount10-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.mount10-label {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.6;
    font-weight: 500;
}

.mount10-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(238, 243, 247, 0.9);
    transition: color 0.3s ease;
}



.mount10-ten {
    color: #379cf4;
    font-weight: 800;
}

/* Center the credit in the footer bar */
.footer-bar > .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 575.98px) {
    .mount10-logo-mark {
        width: 36px;
        height: 18px;
    }
    .mount10-name {
        font-size: 11px;
    }
    .mount10-label {
        font-size: 8px;
    }
    .mount10-credit {
        gap: 8px;
    }
}