    <style>
/* ============================================================
   CONTRACT RATES INC — MOBILE STYLES
   Loaded after crincstyle.css — overrides apply at 768px 
   and below unless otherwise noted.
   ============================================================ */

/* -- Hamburger button — flex hidden by default ------------- */
.nav-hamburger {
    display: none !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer;
    padding: 10px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}

/* -- SVG icon visibility ----------------------------------- */
.hamburger-icon { display: block; }
.close-icon     { display: none;  }

.nav-hamburger[aria-expanded="true"] .hamburger-icon {
    display: none;
}
.nav-hamburger[aria-expanded="true"] .close-icon {
    display: block;
}

/* -- Full screen overlay ----------------------------------- */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg,
        var(--crinc-navy-deep) 0%,
        var(--crinc-navy) 100%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* -- Nav links list ---------------------------------------- */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Stagger animation on each link */
.mobile-nav-overlay.open .mobile-nav-links li:nth-child(1) {
    opacity: 1; transform: translateY(0);
    transition-delay: 0.05s;
}
.mobile-nav-overlay.open .mobile-nav-links li:nth-child(2) {
    opacity: 1; transform: translateY(0);
    transition-delay: 0.1s;
}
.mobile-nav-overlay.open .mobile-nav-links li:nth-child(3) {
    opacity: 1; transform: translateY(0);
    transition-delay: 0.15s;
}
.mobile-nav-overlay.open .mobile-nav-links li:nth-child(4) {
    opacity: 1; transform: translateY(0);
    transition-delay: 0.2s;
}
.mobile-nav-overlay.open .mobile-nav-links li:nth-child(5) {
    opacity: 1; transform: translateY(0);
    transition-delay: 0.25s;
}
.mobile-nav-overlay.open .mobile-nav-links li:nth-child(6) {
    opacity: 1; transform: translateY(0);
    transition-delay: 0.3s;
}
.mobile-nav-overlay.open .mobile-nav-links li:nth-child(7) {
    opacity: 1; transform: translateY(0);
    transition-delay: 0.35s;
}

/* -- Individual link styling ------------------------------- */
.mobile-nav-link {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 0.4rem 2rem;
    letter-spacing: 0.04em;
    transition: color 0.2s ease, transform 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: var(--crinc-gold);
    transform: scale(1.05);
}

/* -- Footer branding inside overlay ----------------------- */
.mobile-nav-footer {
    position: absolute;
    bottom: 2rem;
    text-align: center;
}

.mobile-nav-footer p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.2rem;
    letter-spacing: 0.06em;
}

/* -- Mobile only breakpoint rules ------------------------- */
@media (max-width: 768px) {

    /* Show hamburger */
    .nav-hamburger {
        display: flex !important;
    }

    /* Hide desktop nav links */
    .nav-links {
        display: none;
    }

    /* Nav container layout on mobile */
    .nav-container {
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
    }

    /* Lock body scroll when overlay open */
    body.nav-open {
        overflow: hidden;
    }

}
    </style>

