:root {
    --color-primary: #028696;
    --color-primary-dark: #026873;
    --color-primary-light: #7DC0C4;
    --color-accent: #B6D488;
    --color-accent-light: #D4E8B8;
    --header-height: 64px;
}

html {
    scroll-behavior: smooth;
}

.global-menu {
    position: sticky;
    top: 0;
    z-index: 110;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.global-submenu-panel {
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    padding: 0.5rem 0;
}

.global-submenu-panel.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.submenu-inner {
    padding: 0.5rem 0;
}

.global-mobile-menu {
    transform: translateY(-100%);
    transition: transform 0.35s ease, visibility 0.35s ease;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: white;
    z-index: 120;
    visibility: hidden;
    overflow-y: auto;
}

.global-mobile-menu.active {
    transform: translateY(0);
    visibility: visible;
}

.global-mobile-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-height));
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 110;
}

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

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
}

.mobile-nav-section {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
}

.mobile-nav-items.open {
    max-height: 320px;
    padding-top: 0.25rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-radius: 0.5rem;
}

.mobile-nav-link:hover {
    color: var(--color-primary);
    background: rgba(2, 134, 150, 0.05);
    padding-left: 0.5rem;
}

.scroll-offset {
    scroll-margin-top: calc(var(--header-height) + 16px);
}

.global-logo {
    height: 3.4rem;
    width: auto;
}
