/* ---GLOBAL STYLES--- */

* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    /* Core brand colors */
    --white: #ffffff;
    --blue: #00698a;
    --yellow: #fdc70e;
    --light-blue: #46acdb;
    --green: #a1c74d;
    --cream: #f5f9fc;

    /* Typography scale */
    --h1: clamp(2.5rem, 4.5vw, 4.8rem);
    --h2: clamp(1.8rem, 3vw, 3.2rem);
    --h3: clamp(1.2rem, 1.8vw, 1.7rem);
    --text-base: clamp(1rem, 1.1vw, 1.125rem);
    --text-sm: clamp(0.875rem, 0.95vw, 1rem);
    --text-xs: clamp(0.75rem, 0.8vw, 0.8125rem);

    /* Motion */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

::-webkit-scrollbar { 
    width: 0; height: 0; 
}

html { 
    scrollbar-width: none; 
}
body {
    -ms-overflow-style: none;
    background: var(--cream);
}

body.noscroll { 
    overflow: hidden; 
}

img, svg {
    width: 100%;
    max-width: 100%;
    display: block;
}

a {
    cursor: pointer;
    width: fit-content;
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition);
}

h1, h2, h3, h4 {
    font-family: "Montserrat", sans-serif;
    color: var(--yellow);
    text-wrap: balance;
}

h1 { 
    font-size: var(--h1); 
}
h2 { 
    font-size: var(--h2); 
}

h3 { 
    font-size: var(--h3); 
}

p, li {
    font-size: var(--text-base);
    text-wrap: balance;
    font-weight: 300;
}

p b, li b { 
    font-weight: 600; 
}

ul {
    list-style-position: inside;
}


/* ============================================================
   Navigation
   ============================================================ */

.site_nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: clamp(1rem, 2vw, 1.5rem) 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site_nav--scrolled {
    background: rgba(7, 30, 46, 0.97);
    box-shadow: 0 2px 32px rgba(0, 0, 0, 0.35);
    padding: clamp(0.6rem, 1.2vw, 0.9rem) 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav_inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site_nav .nav_logo img {
    width: clamp(130px, 14vw, 190px);
    height: auto;
}

.nav_menu {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 2rem);
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav_link {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.8rem, 0.9vw, 0.95rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.3rem 0;
    position: relative;
}

.nav_link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width var(--transition);
}

.nav_link:hover,
.nav_link--active {
    color: var(--yellow);
}

.nav_link:hover::after,
.nav_link--active::after {
    width: 100%;
}

.nav_cta {
    background: var(--yellow);
    color: #07121c;
    font-size: clamp(0.78rem, 0.88vw, 0.9rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.65rem 1.4rem;
    border-radius: 4px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav_cta:hover {
    background: #e6b30d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 199, 14, 0.4);
}

.nav_toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1100;
}

.nav_toggle_bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav_toggle.is_active .nav_toggle_bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav_toggle.is_active .nav_toggle_bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav_toggle.is_active .nav_toggle_bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .nav_toggle {
        display: flex;
    }

    .nav_menu {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.8rem;
        background: rgba(7, 30, 46, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        transform: translateX(100%);
        transition: transform var(--transition-slow);
        padding: 2rem;
    }

    .nav_menu.is_open {
        transform: translateX(0);
    }

    .nav_link {
        font-size: 1.2rem;
    }

    .nav_cta {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}


/* ============================================================
   Shared Button Styles
   ============================================================ */

.absolute_media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.82rem, 0.95vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: clamp(0.75rem, 1.2vw, 1rem) clamp(1.4rem, 2.5vw, 2.2rem);
    border-radius: 4px;
    border: 2px solid transparent;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), transform var(--transition),
                box-shadow var(--transition);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn--primary {
    background: var(--yellow);
    color: #07121c;
    border-color: var(--yellow);
}

.btn--primary:hover {
    background: #e6b30d;
    border-color: #e6b30d;
    box-shadow: 0 8px 28px rgba(253, 199, 14, 0.45);
}

.btn--yellow {
    background: var(--yellow);
    color: #07121c;
    border-color: var(--yellow);
}

.btn--yellow:hover {
    background: #e6b30d;
    border-color: #e6b30d;
    box-shadow: 0 8px 28px rgba(253, 199, 14, 0.5);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.1);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

@media (max-width: 580px) {
    .btn--block-mobile {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }
}


/* ============================================================
   Shared Section Utilities
   ============================================================ */

.section_header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
}

.section_eyebrow {
    display: inline-block;
    font-size: clamp(0.7rem, 0.8vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.section_eyebrow--light {
    color: var(--light-blue);
}

.section_title {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--yellow);
    margin-bottom: 1rem;
    text-wrap: balance;
}

.section_title--dark {
    color: #0d2235;
}

.section_body {
    font-size: clamp(0.95rem, 1.05vw, 1.1rem);
    color: #4a6070;
    line-height: 1.75;
    font-weight: 400;
}

.section_body--light {
    color: rgba(255, 255, 255, 0.72);
}


/* ============================================================
   Footer
   ============================================================ */

.footer_section {
    background: linear-gradient(160deg, #061828 0%, #071e2e 100%);
    padding-top: clamp(3.5rem, 6vw, 6rem);
}

.footer_inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(3rem, 5vw, 5rem);
    display: grid;
    grid-template-columns: 1.6fr 1.4fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.footer_col--brand {
    padding-right: clamp(0rem, 2vw, 2rem);
}

.footer_logo_link {
    display: block;
    width: fit-content;
    margin-bottom: 1.2rem;
    transition: opacity var(--transition);
}

.footer_logo_link:hover {
    opacity: 0.85;
}

.footer_logo {
    width: clamp(130px, 14vw, 175px);
    height: auto;
}

.footer_tagline {
    font-size: clamp(0.88rem, 0.95vw, 0.95rem);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-weight: 300;
    max-width: 280px;
}

.footer_heading {
    font-size: clamp(0.78rem, 0.88vw, 0.9rem);
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.footer_address {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-style: normal;
}

.footer_contact_link {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.84rem, 0.92vw, 0.92rem);
    font-weight: 400;
    line-height: 1.5;
    transition: color var(--transition);
}

.footer_contact_link:hover {
    color: var(--light-blue);
}

.footer_contact_link i {
    font-size: 0.85rem;
    color: var(--blue);
    margin-top: 0.2rem;
    flex-shrink: 0;
    transition: color var(--transition);
}

.footer_contact_link:hover i {
    color: var(--light-blue);
}

.footer_nav_list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_nav_link {
    font-size: clamp(0.84rem, 0.92vw, 0.92rem);
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    transition: color var(--transition), padding-left var(--transition);
    display: block;
}

.footer_nav_link:hover {
    color: var(--light-blue);
    padding-left: 4px;
}

.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.4rem clamp(1.25rem, 4vw, 3rem);
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_copy {
    font-size: clamp(0.75rem, 0.82vw, 0.82rem);
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
    letter-spacing: 0.03em;
}

@media (max-width: 1100px) {
    .footer_inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer_col--brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .footer_tagline {
        max-width: 480px;
    }
}

@media (max-width: 580px) {
    .footer_inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer_col--brand {
        grid-column: auto;
    }
}