html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

:root{
    --ink-blue: #0409c0;
    --glass-strong: rgba(255,255,255,0.78);
    --line: rgba(0,0,0,0.18);
}

.page {
    position: relative;
    min-height: 100vh;
    isolation: isolate;
}

.page::before{
    content: "";
    position: fixed;
    inset: 0;
    background: url("../images/bg.webp") center center / cover no-repeat;
    opacity: 0.62;
    filter: contrast(1.08) saturate(0.92);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: -2;
}

.page::after{
    content: "";
    position: fixed;
    inset: 0;
    background:
            linear-gradient(
                    to bottom,
                    rgba(234,240,250,0.42) 0%,
                    rgba(234,240,250,0.14) 18%,
                    rgba(234,240,250,0.04) 42%,
                    rgba(234,240,250,0.12) 100%
            );
    pointer-events: none;
    z-index: -1;
}

/* =========================
   SHARED HEADER / NAV
   ========================= */

.header{
    position: sticky;
    top: 0;
    z-index: 50;
    background:
            linear-gradient(to bottom, rgba(255,255,255,0.78), rgba(255,255,255,0.46));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.28);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.nav{
    position: relative;
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 10px clamp(14px, 2.2vw, 22px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-sizing: border-box;
}

.nav__brand{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink-blue);
}

.nav__brandMark{
    margin-top: 7px;
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.nav__brandText{
    font-family: "Open Sans", sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    letter-spacing: 0.4px;
    font-weight: 700;
}

.nav__list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 14px);
}

.nav__link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 999px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2px;
    color: rgba(2,3,40,0.88);
    text-decoration: none;
    border: 1px solid transparent;
    transition:
            transform 160ms ease,
            background 160ms ease,
            border-color 160ms ease,
            color 160ms ease,
            box-shadow 160ms ease;
}

.nav__link:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,0.62);
    border-color: rgba(4,9,192,0.22);
    box-shadow: 0 10px 22px rgba(0,0,42,0.12);
    color: var(--ink-blue);
}

.nav__link--active{
    background: rgba(4,9,192,0.10);
    border-color: rgba(4,9,192,0.35);
    color: var(--ink-blue);
    box-shadow: inset 0 0 0 1px rgba(4,9,192,0.10);
}

.nav__toggle{
    display: none;
    border: 1px solid rgba(255,255,255,0.72);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.nav__toggle:hover{
    transform: translateY(-1px);
    border-color: rgba(4,9,192,0.25);
    box-shadow: 0 10px 22px rgba(0,0,42,0.12);
}

.nav__toggleIcon{
    width: 20px;
    height: 2px;
    background: rgba(2,3,40,0.85);
    display: block;
    position: relative;
}

.nav__toggleIcon::before,
.nav__toggleIcon::after{
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: rgba(2,3,40,0.85);
}

.nav__toggleIcon::before { top: -6px; }
.nav__toggleIcon::after { top: 6px; }

.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* =========================
   SHARED FOOTER
   ========================= */

.site-footer{
    margin-top: 60px;
    padding: 28px 20px 18px;
    border-top: 1px solid rgba(4,9,192,0.18);
    background:
            linear-gradient(
                    to bottom,
                    rgba(255,255,255,0.55),
                    rgba(255,255,255,0.75)
            );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.footer-inner{
    width: min(1100px, 100%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-label{
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: rgba(2,3,40,0.6);
}

.footer-link{
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgb(4,9,192);
    text-decoration: none;
}

.footer-link:hover{
    text-decoration: underline;
}

.footer-service{
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(2,3,40,0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-pin svg{
    fill: rgb(4,9,192);
    opacity: .85;
}

.footer-copy{
    text-align: center;
    font-size: 12px;
    color: rgba(0,0,0,.6);
    margin-top: 16px;
    font-family: "Open Sans", sans-serif;
}

.footer-credit{
    text-align: center;
    font-size: 11px;
    color: rgba(0,0,0,.5);
    margin-top: 4px;
    font-family: "Open Sans", sans-serif;
}

.footer-credit a{
    color: rgb(4,9,192);
    text-decoration: none;
    font-weight: 700;
}

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

/* =========================
   SHARED MOBILE NAV
   ========================= */

@media (max-width: 820px){
    .nav__toggle{
        display: inline-flex;
        align-items: center;
    }

    .nav__list{
        position: absolute;
        left: 12px;
        right: 12px;
        top: calc(100% + 10px);
        display: grid;
        gap: 10px;
        padding: 12px;
        background: rgba(255,255,255,0.78);
        border: 1px solid rgba(0,0,0,0.14);
        border-radius: 14px;
        box-shadow: 0 18px 36px rgba(0,0,42,0.14);
        transform: translateY(-6px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
        z-index: 100;
    }

    .nav.is-open .nav__list{
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav__link{
        width: 100%;
        justify-content: flex-start;
        padding: 12px;
    }

    .nav__brandMark{
        width: 34px;
        height: 34px;
        margin-top: 0;
    }

    .nav__brandText{
        font-size: 15px;
    }
}

/* =========================
   SHARED FOOTER MOBILE
   ========================= */

@media (max-width: 640px){
    .footer-inner{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }
}
.footer-service{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    text-align: right;
}

.footer-service-line{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(2,3,40,0.8);
}

.footer-address{
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(2,3,40,0.72);
    text-decoration: none;
    max-width: 350px;
}

.footer-address:hover{
    color: rgb(4,9,192);
    text-decoration: underline;
}

@media (max-width: 640px){
    .footer-service{
        align-items: center;
        text-align: center;
    }

    .footer-service-line{
        justify-content: center;
    }

    .footer-address{
        max-width: 100%;
    }
}