.alc-header,
.alc-header * {
    box-sizing: border-box;
}
.alc-header {
    position: relative;
    width: 100%;
    font-family: Montserrat, Arial, sans-serif;
}
.alc-header a { text-decoration: none; }
.alc-header button { font: inherit; }
.alc-header__inner {
    width: 100%;
    margin: 0 auto;
}
.alc-header__topbar {
    width: 100%;
    background: #001638;
    color: #fff;
}
.alc-header__topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}
.alc-header__topbar-left,
.alc-header__topbar-right {
    display: flex;
    align-items: center;
}
.alc-header__topbar-left { gap: 24px; }
.alc-header__topbar-right { gap: 20px; }
.alc-header__contact,
.alc-header__social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    line-height: 1;
}
.alc-header__contact { position: relative; }
.alc-header__contact + .alc-header__contact::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    width: 1px;
    height: 18px;
    transform: translateY(-50%);
    background: rgba(255,255,255,.24);
}
.alc-header__social { justify-content: center; min-width: 18px; }
.alc-icon,
.alc-btn__icon,
.alc-header__mobile-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.alc-icon svg,
.alc-btn__icon svg,
.alc-header__mobile-arrow svg,
.alc-header__toggle svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}
.alc-header__main {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.alc-header__main-inner {
    display: flex;
    align-items: center;
    gap: 26px;
}
.alc-header__logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}
.alc-header__logo img {
    display: block;
    height: auto;
    max-width: 100%;
}
.alc-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
}
.alc-header__nav ul,
.alc-header__mobile-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.alc-header__nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 26px;
}
.alc-header__nav > ul > li {
    position: relative;
    flex: 0 0 auto;
}
.alc-header__nav > ul > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    transition: color .2s ease;
    white-space: nowrap;
}
.alc-header__nav > ul > li.is-active > a::after,
.alc-header__nav > ul > li.current-menu-item > a::after,
.alc-header__nav > ul > li.current_page_item > a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: #001638;
}
.alc-header__nav .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% - 2px);
    min-width: 220px;
    padding: 10px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s ease;
    z-index: 30;
}
.alc-header__nav li:hover > .sub-menu,
.alc-header__nav li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.alc-header__nav .sub-menu a {
    display: block;
    padding: 10px 16px;
    white-space: nowrap;
}
.alc-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}
.alc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    line-height: 1;
    transition: opacity .2s ease, transform .2s ease;
    white-space: nowrap;
}
.alc-btn--whatsapp { background: #001638; color: #fff; }
.alc-btn--call { background: #c58e45; color: #fff; }
.alc-btn:hover { transform: translateY(-1px); }
.alc-header__mobile-shell { display: none; }
.alc-header__main-inner--mobile {
    justify-content: space-between;
}
.alc-header__toggle {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 8px;
    color: #c58e45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
}
.alc-header__toggle-close { display: none; }
.alc-header.is-mobile-open .alc-header__toggle-open { display: none; }
.alc-header.is-mobile-open .alc-header__toggle-close { display: inline-flex; }
.alc-header__mobile-panel-wrap {
    position: relative;
    z-index: 20;
    background: transparent;
}
.alc-header__mobile-panel {
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
    transform-origin: top center;
}
.alc-header__mobile-panel[hidden] { display: none !important; }
.alc-header__mobile-panel.is-opening.alc-header__mobile-panel--slide { animation: alcSlideDown .28s ease both; }
.alc-header__mobile-panel.is-closing.alc-header__mobile-panel--slide { animation: alcSlideUp .22s ease both; }
.alc-header__mobile-panel.is-opening.alc-header__mobile-panel--fade { animation: alcFadeIn .2s ease both; }
.alc-header__mobile-panel.is-closing.alc-header__mobile-panel--fade { animation: alcFadeOut .18s ease both; }
.alc-header__mobile-nav > ul > li {
    position: relative;
    border-bottom: 1px solid #e6e6e6;
}
.alc-header__mobile-nav > ul > li:last-child { border-bottom: 0; }
.alc-header__mobile-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    line-height: 1.25;
}
.alc-header__mobile-nav .is-active,
.alc-header__mobile-nav .current-menu-item,
.alc-header__mobile-nav .current_page_item {
    background: #fafafa;
}
.alc-header__mobile-nav .is-active::before,
.alc-header__mobile-nav .current-menu-item::before,
.alc-header__mobile-nav .current_page_item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 50px;
    transform: translateY(-50%);
    background: #c58e45;
}
.alc-header__mobile-nav .is-active .alc-header__mobile-arrow,
.alc-header__mobile-nav .current-menu-item > a > .alc-header__mobile-arrow,
.alc-header__mobile-nav .current_page_item > a > .alc-header__mobile-arrow {
    visibility: hidden;
}
.alc-header__mobile-nav .sub-menu {
    padding: 0 0 8px 18px;
}
.alc-header__mobile-nav .sub-menu li { border: 0; }
.alc-header__mobile-nav .sub-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: .9em;
}
.alc-header__mobile-nav .sub-menu .alc-header__mobile-arrow { display: none; }
.alc-header__mobile-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 20px;
}
.alc-btn--mobile {
    width: 100%;
    min-height: 58px;
    font-size: 18px;
}
.alc-header--sticky {
    position: sticky;
    top: var(--alc-sticky-offset, 0px);
}
.alc-header--sticky.is-scrolled .alc-header__main {
    box-shadow: 0 5px 24px rgba(0,0,0,.12);
}
.alc-header--compact-on-scroll.is-scrolled .alc-header__main-inner {
    min-height: 62px !important;
    transition: min-height .2s ease;
}
.alc-header--compact-on-scroll.is-scrolled .alc-header__logo--desktop img {
    transform: scale(.88);
    transform-origin: left center;
    transition: transform .2s ease;
}
.alc-header__topbar-inner--mobile {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    overflow: hidden;
}
.alc-header__topbar-inner--mobile .alc-header__topbar-left {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
}
.alc-header__topbar-inner--mobile .alc-header__contact {
    font-size: 13px;
}
.alc-header__topbar-inner--mobile .alc-header__address {
    white-space: normal;
    line-height: 1.35;
    max-width: 34%;
}
.alc-header__topbar-inner--mobile .alc-header__contact + .alc-header__contact::before {
    display: block;
    left: -6px;
    height: 28px;
}
.alc-header__mobile-panel-wrap {
    padding: 0 0 20px;
}
.alc-header__mobile-panel {
    margin-top: 0;
}
@media (max-width: 640px) {
    .alc-header__topbar-inner--mobile { padding-left: 12px; padding-right: 12px; }
    .alc-header__topbar-inner--mobile .alc-header__contact { gap: 5px; font-size: 10px; }
    .alc-header__topbar-inner--mobile .alc-header__address { max-width: 40%; font-size: 10px; }
    .alc-header__topbar-inner--mobile .alc-header__topbar-left { gap: 7px; }
    .alc-header__topbar-inner--mobile .alc-header__contact + .alc-header__contact::before { left: -4px; }
    .alc-header__main-inner--mobile { gap: 18px; }
    .alc-header__logo--mobile { min-width: 0; }
    .alc-header__logo--mobile img { max-width: 100%; }
    .alc-header__mobile-panel-wrap { padding-bottom: 14px; }
}
@keyframes alcSlideDown { from { opacity:0; transform: translateY(-14px) scaleY(.98); } to { opacity:1; transform: translateY(0) scaleY(1); } }
@keyframes alcSlideUp { from { opacity:1; transform: translateY(0); } to { opacity:0; transform: translateY(-12px); } }
@keyframes alcFadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes alcFadeOut { from { opacity:1; } to { opacity:0; } }
@media (prefers-reduced-motion: reduce) {
    .alc-header *, .alc-header *::before, .alc-header *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
