/* ============================================================
   STICK NOTE — UNIVERSAL NAVBAR

   File: css/navbar.css

   Use this same file on every page.
   The HTML classes below match this CSS exactly.

============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition:
        background 0.35s ease,
        padding 0.35s ease,
        box-shadow 0.35s ease,
        backdrop-filter 0.35s ease;
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(0, 61, 130, 0.90);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.site-header .navbar {
    width: min(1400px, calc(100% - 60px));
    min-height: 72px;
    margin: 0 auto;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
}

/* ============================================================
   LOGO — ONLY SIZE CHANGED
============================================================ */

.site-header .nav-logo {
    width: 85px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.site-header .nav-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.site-header .nav-logo:hover {
    transform: translateY(-2px) scale(1.04);
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.18));
}

/* ============================================================
   NAV MENU
============================================================ */

.site-header .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    margin-left: auto;
    margin-right: 35px;
}

.site-header .nav-link {
    position: relative;
    display: inline-block;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.site-header .nav-link:hover {
    color: #ffd400;
    transform: translateY(-2px);
}

.site-header .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: #ffd400;
    transition: width 0.3s ease;
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
    width: 100%;
}

.site-header .nav-link.active {
    color: #ffd400;
}

/* ============================================================
   LET'S TALK
============================================================ */

.site-header .nav-talk {
    min-width: 145px;
    min-height: 48px;
    padding: 0 7px 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 999px;
    background: #ffd400;
    color: #062a50;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.site-header .nav-talk-arrow {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(6, 42, 80, 0.12);
    font-size: 16px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.site-header .nav-talk:hover {
    background: #58e79a;
    color: #062a50;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(88, 231, 154, 0.30);
}

.site-header .nav-talk:hover .nav-talk-arrow {
    background: #062a50;
    color: #58e79a;
    transform: rotate(45deg);
}

/* ============================================================
   MOBILE BUTTON
============================================================ */

.site-header .menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ffd400;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.site-header .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 10px;
    background: #062a50;
}

/* ============================================================
   MOBILE MENU
============================================================ */

.site-header .mobile-menu {
    display: none;
}

@media (max-width: 1000px) {

    .site-header .navbar {
        width: calc(100% - 40px);
    }

    .site-header .nav-menu {
        gap: 24px;
        margin-right: 20px;
    }

    .site-header .nav-talk {
        min-width: 130px;
    }
}

@media (max-width: 768px) {

    .site-header {
        padding: 12px 0;
    }

    .site-header.scrolled {
        padding: 8px 0;
    }

    .site-header .navbar {
        width: calc(100% - 32px);
        min-height: 62px;
        padding: 0;
    }

    /* LOGO SIZE INCREASED */
    .site-header .nav-logo {
        width: 75px;
    }

    .site-header .nav-menu,
    .site-header .nav-talk {
        display: none;
    }

    .site-header .menu-toggle {
        display: flex;
    }

    .site-header .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        border-radius: 0 0 18px 18px;
        background: rgba(0, 45, 97, 0.97);
        backdrop-filter: blur(18px);
        opacity: 0;
        transition:
            max-height 0.4s ease,
            padding 0.4s ease,
            opacity 0.3s ease;
    }

    .site-header .mobile-menu.open {
        max-height: 500px;
        padding: 12px 20px 20px;
        opacity: 1;
    }

    .site-header .mobile-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
        color: rgba(255, 255, 255, 0.85);
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        transition: color 0.25s ease, padding-left 0.25s ease;
    }

    .site-header .mobile-link:hover {
        padding-left: 6px;
        color: #ffd400;
    }

    .site-header .mobile-talk {
        margin-top: 8px;
        border-bottom: 0;
        color: #ffd400;
    }
}

@media (max-width: 430px) {

    .site-header .navbar {
        width: calc(100% - 24px);
    }

    /* LOGO SIZE INCREASED */
    .site-header .nav-logo {
        width: 68px;
    }

    .site-header .menu-toggle {
        width: 43px;
        height: 43px;
    }
}