/* HEADER */
.header {
    background-color: #fff;
    padding: 0;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    min-height: 78px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    gap: 12px;
    text-decoration: none;
    color: #111;
}

.logo small {
    font-weight: normal;
    font-size: 12px;
    opacity: 0.7;
}

.logo img {
    height: 100px;
    width: auto;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    position: relative;
    margin: 0 16px;
    text-decoration: none;
    font-weight: 500;
    color: #222;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #000;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: #f7d34f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #000;
    font-weight: 600;
}

.nav-link.active::after {
    transform: scaleX(1);
}

/* ---------- Burger button ---------- */
.burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.burger span {
    display: block;
    height: 2px;
    width: 22px;
    background: #111;
    border-radius: 2px;
    margin: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Mobile menu overlay ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    z-index: 2000;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(88vw, 360px);
    height: 100%;
    background: #fff;
    border-left: 1px solid #eee;
    padding: 18px 16px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.mobile-menu__title {
    font-weight: 700;
    font-size: 16px;
    color: #111;
}

.mobile-menu__close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-link {
    display: block;
    padding: 12px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    border: 1px solid #eee;
}

.mobile-link:hover {
    background: #f6f6f6;
}

.mobile-cta {
    margin-top: 6px;
    text-align: center;
    border-radius: 10px;
}

.btn-yellow {
    background-color: #f7d34f;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: 0.2s;
}

.btn-yellow:hover {
    background-color: #e6c845;
}

@media (max-width: 900px) {

    /* Header */
    .nav {
        display: none;
    }

    .burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-contact {
        gap: 12px;
    }

    .nav-contact .btn-yellow {
        display: none;
    }
}

@media (max-width: 767px) {

    /* Header */
    body.no-scroll {
        overflow: hidden;
    }
}