/**
 * Unified Layout CSS
 * Header, Footer, Mobile Nav, and FAB styles
 * Based on about-us.blade.php (best looking design)
 * 
 * Usage: Include in your blade file via:
 * <link rel="stylesheet" href="{{ asset('css/unified-layout.css') }}">
 * or via Vite: @vite('resources/css/unified-layout.css')
 */

/* =========================================================
   CSS VARIABLES / TOKENS
========================================================= */
:root {
    /* Brand Colors */
    --brand-brown: #b2997d;
    --brand-gold: #7A6549;
    --pill-gold-start: #c9b095;
    --pill-gold-end: #8f7d62;
    --muted: #8b8b8b;
    
    /* Footer Colors */
    --footer-blue: #465266;
    --footer-brown: #EBE4DD;
    
    /* Card & Border */
    --card-border: #e8e8e8;
    --card-shadow: 0 8px 20px rgba(0,0,0,.08);
    
    /* Glow backgrounds */
    --glow: rgba(201,176,149,.22);
    --c1: #faf6f1;
    --c2: #ffffff;
    
    /* Header Height */
    --headerH: 86px;
    
    /* FAB */
    --fab-item-width: 180px;
    --fab-item-height: 44px;
    
    /* Reveal Animation */
    --reveal-dur: .68s;
    --reveal-ease: cubic-bezier(.2,.65,.2,1);
    --reveal-distance: 24px;
}

/* =========================================================
   BASE RESETS
========================================================= */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', Arial, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    line-height: 1.4;
    color: #333;
    background: #fff;
    padding-top: var(--headerH);
}

/* =========================================================
   HEADER - DESKTOP
========================================================= */
.unified-header,
header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 48px;
    background: radial-gradient(520px 200px at 15% -8%, var(--glow), transparent 60%),
                radial-gradient(420px 180px at 110% 0%, rgba(201,176,149,.10), transparent 62%),
                linear-gradient(180deg, #FFF7F0 0%, #FFFFFF 100%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    gap: 20px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    width: 100%;
}

.unified-header .logo img,
header .logo img {
    height: 70px;
}

.unified-header nav,
header nav {
    margin-left: auto;
    margin-right: 28px;
}

/* Navbar */
.navbar {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0px 40px 0px;
}

.navbar > li {
    position: relative;
}

.navbar > li > a {
    text-decoration: none;
    color: #333;
    font-weight: 300;
    display: inline-block;
    padding: 6px 0;
    transition: color .2s ease;
}

.navbar > li:hover > a {
    color: #c9b095;
}

/* Dropdown Caret */
.navbar > li.has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    padding: 8px 6px;
    font-weight: 600;
    color: #7b644a;
}

.navbar > li.has-dropdown > a::after {
    content: "";
    width: 22px;
    height: 12px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpolyline points='2,4 12,12 22,4' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpolyline points='2,4 12,12 22,4' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.navbar > li.has-dropdown:hover > a::after,
.navbar > li.has-dropdown[aria-expanded="true"] > a::after {
    -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpolyline points='2,12 12,4 22,12' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpolyline points='2,12 12,4 22,12' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.navbar > li.has-dropdown:hover > a {
    color: #c9b095;
}

/* Dropdown Panel */
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 120px;
    background: #fff;
    width: max-content;
    max-width: 80vw;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 999;
}

.has-dropdown:hover > .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel a {
    display: block;
    padding: 6px 12px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease, text-decoration .2s ease, background .2s ease;
    border-radius: 8px;
    margin: 0 4px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-panel a:hover {
    color: #c9b095;
    text-decoration: underline;
    background: rgba(201,176,149,0.08);
}

/* Submenu Panel */
.has-submenu {
    position: relative;
}

.has-submenu .submenu-panel {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 100px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity .2s ease, transform .2s ease;
}

.has-submenu:hover > .submenu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile-only toggles (hidden on desktop) */
.menu-toggle {
    display: none;
}

.nav-mobile {
    display: none;
}

.nav-mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Desktop Navbar - Montserrat SemiBold */
@media (min-width: 769px) {
    .unified-header,
    .unified-header a,
    .unified-header button,
    header,
    header a,
    header button,
    .nav-desktop,
    .nav-desktop * {
        font-family: 'Montserrat', Arial, "Helvetica Neue", Helvetica, sans-serif !important;
        font-weight: 600 !important;
    }

    .navbar {
        padding: 0px 80px 0px;
    }
}

/* Hide dropdown on desktop for specific items */
@media (min-width: 769px) {
    .hide-dropdown-desktop > .dropdown-panel {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        pointer-events: none !important;
    }

    .hide-dropdown-desktop > a {
        cursor: pointer;
    }

    .navbar > li.hide-dropdown-desktop > a::after {
        display: none !important;
    }
}

/* =========================================================
   FOOTER - DESKTOP & MOBILE
========================================================= */
.footer-info {
    background: var(--footer-blue);
    color: #fff;
}

.footer-info.footer-desktop {
    padding: 40px 48px 32px;
}

.footer-info.footer-mobile {
    display: none;
    padding: 32px 20px 24px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-img {
    width: 140px;
    height: 60px;
    background: url('/images/Logo Benih IVF 2.svg') no-repeat center / contain;
    filter: brightness(0) invert(1);
}

.footer-address {
    font-size: 14px;
    line-height: 1.6;
}

.footer-address a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-address a:hover {
    text-decoration: underline;
}

.footer-address-text {
    flex: 1;
}

.footer-right h4 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 600;
}

.social-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity .2s;
}

.contact-item:hover {
    opacity: 0.8;
}

/* Footer Icons */
.ico {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.ico-map {
    background-image: url('/images/location.svg');
    filter: brightness(0) invert(1);
}

.ico-wa {
    background-image: url('/images/WhatsApp.svg');
}

.ico-ig {
    background-image: url('/images/Instagram.svg');
}

.ico-tt {
    background-image: url('/images/TikTok.svg');
}

/* Footer Bottom */
.footer-bottom {
    background: var(--footer-blue);
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 16px;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom.footer-mobile {
    display: none;
}

/* =========================================================
   FLOATING ACTION BUTTON (FAB)
========================================================= */
.fab {
    position: fixed;
    right: max(16px, env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 2147483000;
    display: grid;
    gap: 10px;
    align-items: end;
    justify-items: end;
}

.fab-main {
    border: 0;
    border-radius: 9px;
    background: linear-gradient(180deg, #38404E, #65738D);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 14px;
    width: var(--fab-item-width);
    min-height: var(--fab-item-height);
    line-height: 1;
    font-family: 'Montserrat', Arial, sans-serif;
}

.fab-main:hover {
    box-shadow: 0 16px 32px rgba(0,0,0,.26);
}

.fab-list {
    display: grid;
    gap: 10px;
    justify-items: end;
    transform: translateY(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s, transform .18s;
}

.fab.open .fab-list {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (hover:hover) and (pointer:fine) {
    .fab:hover .fab-list {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.fab-item {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: var(--fab-item-width);
    min-height: var(--fab-item-height);
    padding: 10px 12px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 9px;
    box-shadow: 0 10px 24px rgba(0,0,0,.14), 0 0 0 1px rgba(178,153,125,.18);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: box-shadow .15s, transform .15s, color .15s, background .15s;
    font-family: 'Montserrat', Arial, sans-serif;
}

.fab-item:hover {
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
    transform: translateY(-1px);
    background: linear-gradient(180deg, #38404E, #65738D);
    color: #fff;
}

.fab-item:focus-visible,
.fab-main:focus-visible {
    outline: 2px solid #c7a775;
    outline-offset: 2px;
}

.fab .ico {
    width: 22px;
    height: 22px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
    flex: 0 0 22px;
}

.fab-main .ico {
    background-image: url('/images/Hubungi Kami.svg');
}

.fab-appt .ico {
    background: none !important;
}

.fab-wa .ico {
    width: 20px;
    height: 20px;
    background: url('/images/whatsapp%20(1).png') center/contain no-repeat;
}

.fab-item:hover.fab-wa .ico {
    filter: brightness(0) invert(1);
}

.fab-item:hover .ico {
    filter: unset;
}

.fab-item:hover.fab-appt .ico {
    filter: brightness(0) invert(1);
}

/* =========================================================
   MOBILE STYLES (≤768px)
========================================================= */
@media (max-width: 768px) {
    :root {
        --headerH: 95px;
    }

    body {
        padding-top: var(--headerH);
    }

    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Header Mobile */
    .unified-header,
    header {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 15px 16px;
        background: linear-gradient(#f8faff, #EBE4DD);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 0;
        background: transparent;
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
        color: #b2997d;
        position: absolute;
        left: 14px;
    }

    .unified-header .logo img,
    header .logo img {
        height: 65px;
        display: block;
    }

    /* Hide Desktop Nav */
    .nav-desktop {
        display: none !important;
    }

    /* Mobile Nav Drawer */
    .nav-mobile {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 82%;
        max-width: 300px;
        height: 100svh;
        padding-top: calc(var(--headerH) + env(safe-area-inset-top));
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
        padding-left: 8px;
        padding-right: 8px;
        background: #fff;
        box-shadow: 2px 0 16px rgba(0,0,0,.18);
        transform: translateX(-100%);
        transition: transform .28s ease;
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        pointer-events: none;
    }

    .nav-mobile.open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .nav-mobile li {
        border-bottom: 1px solid #eee;
    }

    .nav-mobile a {
        display: block;
        padding: 14px;
        text-decoration: none;
        color: #b2997d;
        font-weight: 600;
    }

    .nav-mobile a:hover {
        background: rgba(0,0,0,.04);
        color: #b2997d;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.35);
        z-index: 1000;
    }

    .nav-overlay[hidden] {
        display: none;
        pointer-events: none;
    }

    #mobileNav.nav-mobile {
        pointer-events: none;
    }

    #mobileNav.nav-mobile.open {
        pointer-events: auto;
        z-index: 1002;
    }

    /* Mobile Nav Structure */
    #mobileNav .mnav {
        margin: 0;
        padding: 8px 12px;
        list-style: none;
    }

    #mobileNav .mnav a,
    #mobileNav .mnav-btn,
    #mobileNav .mnav-subbtn {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 12px 6px;
        font-size: 14px;
        line-height: 1.45;
        text-decoration: none;
        cursor: pointer;
        pointer-events: auto;
        position: relative;
    }

    #mobileNav .mnav a,
    #mobileNav .mnav-btn,
    #mobileNav .mnav-subbtn {
        align-items: flex-start;
        line-height: 2.2;
        padding: 8px 6px 6px;
    }

    #mobileNav .mnav-btn {
        color: var(--brand-brown, #b2997d);
        font-weight: 600;
    }

    #mobileNav a.mnav-btn {
        color: var(--brand-brown, #b2997d) !important;
        font-weight: 600;
        text-decoration: none;
    }

    #mobileNav .mnav-subbtn,
    #mobileNav .mnav a {
        color: #b2997d;
        font-weight: 600;
    }

    #mobileNav .mnav a:hover,
    #mobileNav .mnav a:focus,
    #mobileNav .mnav a:active,
    #mobileNav .mnav-subbtn:hover,
    #mobileNav .mnav-subbtn:focus {
        color: var(--brand-brown, #b2997d);
    }

    /* Mobile Nav Caret */
    #mobileNav .has-caret > .mnav-btn::after,
    #mobileNav .has-caret > .mnav-subbtn::after {
        content: "";
        width: 15px;
        height: 10px;
        flex: 0 0 20px;
        background: currentColor;
        -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpolyline points='2,4 12,12 22,4' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
        mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpolyline points='2,4 12,12 22,4' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
        pointer-events: none;
        margin-top: 8px;
    }

    #mobileNav .has-caret > .mnav-btn[aria-expanded="true"]::after,
    #mobileNav .has-caret > .mnav-subbtn[aria-expanded="true"]::after {
        -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpolyline points='2,12 12,4 22,12' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
        mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpolyline points='2,12 12,4 22,12' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
    }

    /* Mobile Nav Row */
    #mobileNav .mrow {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 0;
    }

    #mobileNav .mrow .mnav-link {
        display: block;
        flex: 1 1 auto;
        padding: 8px 9px 6px;
        text-decoration: none;
        color: var(--brand-brown, #b2997d);
        font-weight: 550;
    }

    #mobileNav .mrow .mnav-link:hover {
        color: var(--brand-brown, #b2997d);
    }

    #mobileNav .mrow .mnav-toggle {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        border: 0;
        background: transparent;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-brown, #b2997d);
    }

    #mobileNav .mrow .mnav-toggle::before {
        content: "";
        width: 15px;
        height: 10px;
        background: currentColor;
        -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpolyline points='2,4 12,12 22,4' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
        mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpolyline points='2,4 12,12 22,4' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
    }

    #mobileNav .mrow .mnav-toggle[aria-expanded="true"]::before {
        -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpolyline points='2,12 12,4 22,12' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
        mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpolyline points='2,12 12,4 22,12' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
    }

    /* Sub menus */
    #mobileNav .mnav-sub,
    #mobileNav .mnav-sub2 {
        list-style: none;
        margin: 0;
        padding: 0 0 0 16px;
    }

    #mobileNav .mnav-sub a,
    #mobileNav .mnav-sub2 a {
        padding: 10px 6px;
        font-size: 13px;
    }

    /* Remove list markers */
    nav ul,
    .nav-desktop .navbar,
    .nav-desktop .navbar ul,
    .nav-mobile ul,
    #mobileNav .mnav,
    #mobileNav .mnav-sub,
    #mobileNav .mnav-sub2,
    #mobileNav .mnav > li,
    #mobileNav .mnav-sub > li,
    #mobileNav .mnav-sub2 > li {
        list-style: none !important;
        margin: 0 !important;
        padding-left: 0 !important;
    }

    #mobileNav li::marker,
    .nav-desktop .navbar li::marker {
        content: "" !important;
    }

    /* Footer Mobile */
    .footer-info.footer-desktop,
    .footer-bottom.footer-desktop {
        display: none;
    }

    .footer-info.footer-mobile,
    .footer-bottom.footer-mobile {
        display: block;
    }

    .footer-info.footer-mobile .footer-container {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .footer-info.footer-mobile .footer-top {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }

    .footer-info.footer-mobile .footer-logo-img {
        width: 120px;
        height: 50px;
    }

    .footer-info.footer-mobile .footer-address {
        font-size: 13px;
    }

    .footer-info.footer-mobile .footer-social {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .footer-info.footer-mobile .contact-item {
        font-size: 13px;
    }

    /* FAB Mobile */
    .fab {
        right: max(12px, env(safe-area-inset-right));
        bottom: calc(12px + env(safe-area-inset-bottom));
    }

    .fab-main,
    .fab-item {
        width: 160px;
        font-size: 13px;
        padding: 10px 14px;
    }
}

/* =========================================================
   TABLET STYLES (769px - 1024px)
========================================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .unified-header,
    header {
        padding: 12px 24px;
    }

    .navbar {
        padding: 0 20px;
        gap: 8px;
    }

    .navbar > li > a {
        font-size: 14px;
    }

    .footer-container {
        gap: 24px;
    }

    .social-inline {
        gap: 16px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
    .navbar > li.has-dropdown > a {
        transition: none !important;
    }

    .fab-list {
        transition: none;
    }

    .fab-item:hover {
        transform: none;
    }

    .nav-mobile {
        transition: none;
    }

    .dropdown-panel,
    .submenu-panel {
        transition: none;
    }
}
