/* =========================================================
   READY2FLY GLOBAL SITE SHELL
   Header + Navigation + Mega Menu + Mobile Bar + Footer
========================================================= */


/* =========================================================
   TOP BAR
========================================================= */

.r2f-topbar {
    color: #d8e2f1;
    background: var(--r2f-navy-950);

    font-size: .82rem;
}

.r2f-topbar__inner {
    min-height: 39px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;
}

.r2f-topbar__group {
    display: flex;
    align-items: center;

    gap: 18px;

    min-width: 0;
}

.r2f-topbar a {
    color: #e8eff8;

    text-decoration: none;

    transition: color var(--r2f-transition);
}

.r2f-topbar a:hover {
    color: var(--r2f-gold-400);
}

.r2f-topbar__trust {
    display: flex;
    align-items: center;

    gap: 8px;

    white-space: nowrap;
}

.r2f-topbar__trust i {
    color: var(--r2f-gold-400);
}

.r2f-topbar__social {
    display: flex;
    align-items: center;

    gap: 11px;
}

.r2f-topbar__social a {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .07);
}


/* =========================================================
   HEADER
========================================================= */

.r2f-header {
    position: sticky;
    top: 0;

    z-index: 1040;

    border-bottom:
        1px solid rgba(12, 36, 68, .08);

    background:
        rgba(255, 255, 255, .92);

    backdrop-filter:
        blur(18px) saturate(140%);

    -webkit-backdrop-filter:
        blur(18px) saturate(140%);

    transition:
        box-shadow var(--r2f-transition),
        background var(--r2f-transition);
}

.r2f-header.is-scrolled {
    background:
        rgba(255, 255, 255, .97);

    box-shadow:
        0 14px 45px rgba(7, 26, 52, .09);
}

.r2f-nav {
    min-height: 84px;

    padding: 10px 0;
}

@media (min-width: 1200px) {

    .r2f-navbar .navbar-nav {
        gap: 2px;
    }

    .r2f-navbar__actions {
        margin-left: 18px;
    }

}


/* =========================================================
   BRAND / LOGO
========================================================= */

.r2f-brand {
    display: inline-flex;
    align-items: center;

    gap: 3px;

    flex: 0 0 auto;

    color: inherit;

    text-decoration: none;
}


/* Logo symbol */

.r2f-brand__mark {
    width: 48px;
    height: 48px;

    display: block;

    flex: 0 0 48px;

    object-fit: contain;

    /* Visually pull the R mark closer to wordmark */
    margin-right: -5px;
}


/* Wordmark wrapper */

.r2f-brand__identity {
    display: flex;
    flex-direction: column;

    justify-content: center;

    min-width: 0;

    line-height: 1;
}


/* READY2FLYX */

.r2f-brand__text {
    display: flex;
    align-items: baseline;

    color:
        var(--r2f-navy-900);

    font-family:
        var(--r2f-font-display);

    font-size: 1.37rem;

    font-weight: 850;

    line-height: .95;

    letter-spacing: -.055em;

    white-space: nowrap;
}


.r2f-brand__two,
.r2f-brand__fly {
    color:
        var(--r2f-blue-600);
}


.r2f-brand__x {
    color:
        var(--r2f-gold-500);

    margin-left: 1px;
}


/* CONSULTANTS */

.r2f-brand__sub {
    display: block;

    margin-top: 5px;
    margin-left: 1px;

    color: #748297;

    font-family:
        var(--r2f-font-primary);

    font-size: .45rem;

    font-weight: 750;

    line-height: 1;

    letter-spacing: .27em;

    text-transform: uppercase;

    white-space: nowrap;
}


/* Interaction */

.r2f-brand:hover {
    text-decoration: none;
}


.r2f-brand:hover .r2f-brand__text {
    color:
        var(--r2f-navy-950);
}


/* =========================================================
   BRAND — MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .r2f-brand {
        gap: 1px;
    }


    .r2f-brand__mark {
        width: 43px;
        height: 43px;

        flex-basis: 43px;

        margin-right: -5px;
    }


    .r2f-brand__text {
        font-size: 1.22rem;
    }


    .r2f-brand__sub {
        margin-top: 4px;

        font-size: .45rem;

        letter-spacing: .27em;
        color: #748297;
    }

}


/* =========================================================
   NAVIGATION
========================================================= */

.r2f-navbar .nav-link {
    position: relative;

    padding: 12px 13px !important;

    color: #263b59 !important;

    border-radius: 11px;

    font-size: .92rem;
    font-weight: 720;

    transition:
        color var(--r2f-transition),
        background var(--r2f-transition);
}

.r2f-navbar .nav-link:hover,
.r2f-navbar .nav-link.active {
    color: var(--r2f-blue-700) !important;

    background: #f3f7fc;
}

.r2f-navbar .dropdown-toggle::after {
    margin-left: 7px;

    vertical-align: .14em;
}


/* =========================================================
   NAV CTA
========================================================= */

.r2f-navbar__actions {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-left: 16px;

    flex: 0 0 auto;
}


/* ---------------------------------------------------------
   CALL CHIP
--------------------------------------------------------- */

.r2f-call-chip {
    min-height: 52px;

    display: inline-flex;
    align-items: center;

    gap: 11px;

    padding: 6px 10px 6px 6px;

    border-radius: 16px;

    color: var(--r2f-navy-950);

    background: transparent;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background var(--r2f-transition),
        transform var(--r2f-transition);
}


.r2f-call-chip:hover {
    color: var(--r2f-navy-950);

    background: #f6f9fd;

    transform: translateY(-1px);
}


/* Icon circle */

.r2f-call-chip__icon {
    width: 42px;
    height: 42px;

    display: inline-grid;
    place-items: center;

    flex: 0 0 42px;

    margin: 0;

    border-radius: 14px;

    color: var(--r2f-blue-700);

    background: #edf5ff;

    line-height: 1;

    transition:
        color var(--r2f-transition),
        background var(--r2f-transition),
        transform var(--r2f-transition);
}


.r2f-call-chip__icon i {
    display: block;

    margin: 0;
    padding: 0;

    font-size: .9rem;
    line-height: 1;

    transform: none;
}


.r2f-call-chip:hover .r2f-call-chip__icon {
    color: #fff;

    background: var(--r2f-blue-600);
}


/* Text wrapper */

.r2f-call-chip>span:not(.r2f-call-chip__icon) {
    display: flex;

    flex-direction: column;

    justify-content: center;

    min-width: 0;

    margin: 0;
}


/* Small label */

.r2f-call-chip small {
    display: block;

    margin: 0 0 3px;

    color: #78869a;

    font-size: .67rem;

    font-weight: 700;

    line-height: 1.05;
}


/* Phone number */

.r2f-call-chip>span:not(.r2f-call-chip__icon)>span {
    display: block;

    margin: 0;

    color: var(--r2f-navy-950);

    font-size: .86rem;

    font-weight: 800;

    line-height: 1.15;

    white-space: nowrap;
}


/* =========================================================
   MEGA MENU
========================================================= */

.r2f-mega {
    min-width: 660px;

    padding: 14px !important;

    border:
        1px solid #e3eaf3 !important;

    border-radius: 22px !important;

    background:
        rgba(255, 255, 255, .99) !important;

    box-shadow:
        var(--r2f-shadow-lg) !important;
}

.r2f-mega__grid {
    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    gap: 10px;
}

.r2f-mega__links {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 6px;

    padding: 6px;
}

.r2f-mega__link {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 11px;

    border-radius: 13px;

    color: var(--r2f-ink);

    text-decoration: none;

    transition:
        background var(--r2f-transition),
        transform var(--r2f-transition);
}

.r2f-mega__link:hover {
    color: var(--r2f-navy-950);

    background: #f4f8fd;

    transform: translateX(2px);
}

.r2f-mega__icon {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 11px;

    color: var(--r2f-blue-700);

    background: #eaf3ff;
}

.r2f-mega__link strong {
    display: block;

    font-size: .88rem;
}

.r2f-mega__link small {
    display: block;

    margin-top: 2px;

    color: #78869a;

    font-size: .71rem;
}

.r2f-mega__feature {
    position: relative;

    overflow: hidden;

    padding: 20px;

    border-radius: 17px;

    color: #fff;

    background:
        linear-gradient(145deg,
            var(--r2f-navy-900),
            #123a6d);
}

.r2f-mega__feature::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -70px;
    bottom: -90px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .08);
}

.r2f-mega__feature span {
    color: var(--r2f-gold-400);

    font-size: .72rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .1em;
}

.r2f-mega__feature h3 {
    margin: 7px 0 8px;

    color: #fff;

    font-family: var(--r2f-font-display);
    font-size: 1.25rem;

    line-height: 1.2;
}

.r2f-mega__feature p {
    color: #cfd9e8;

    font-size: .82rem;
    line-height: 1.55;
}

.r2f-mega__feature a {
    position: relative;

    z-index: 1;

    color: #fff;

    font-size: .83rem;
    font-weight: 800;

    text-decoration: none;
}


/* =========================================================
   MOBILE ACTION BAR
========================================================= */

.r2f-mobile-bar {
    display: none;
}


/* =========================================================
   FOOTER
========================================================= */

.r2f-footer {
    margin-top: 0;

    color: #cbd6e6;

    background: var(--r2f-navy-950);
}

.r2f-footer__cta {
    transform: translateY(-46px);
}

.r2f-footer__cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    padding: 29px 34px;

    border:
        1px solid rgba(255, 255, 255, .1);

    border-radius:
        var(--r2f-radius-lg);

    background:
        linear-gradient(135deg,
            #123865,
            #0c2445);

    box-shadow:
        0 22px 60px rgba(0, 0, 0, .24);
}

.r2f-footer__cta-card h2 {
    margin: 0 0 5px;

    color: #fff;

    font-family: var(--r2f-font-display);
    font-size: clamp(1.45rem, 2.6vw, 2.15rem);
    font-weight: 800;

    letter-spacing: -.035em;
}

.r2f-footer__cta-card p {
    margin: 0;

    color: #bfd0e5;
}

.r2f-footer__cta-actions {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;
    flex: 0 0 auto;
}

.r2f-footer__main {
    padding: 12px 0 48px;
}

.r2f-footer__grid {
    display: grid;

    grid-template-columns:
        1.3fr .85fr .85fr 1.05fr;

    gap: 45px;
}

.r2f-footer__brand {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 15px;

    color: #fff;

    text-decoration: none;
}

.r2f-footer__brand img {
    width: 54px;
    height: 54px;
}

.r2f-footer__brand span {
    font-family: var(--r2f-font-display);
    font-size: 1.3rem;
    font-weight: 850;
}

.r2f-footer__about {
    max-width: 360px;

    color: #aebdd0;

    font-size: .92rem;
    line-height: 1.75;
}

.r2f-footer h3 {
    margin: 4px 0 17px;

    color: #fff;

    font-size: .89rem;
    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.r2f-footer__links {
    display: grid;

    gap: 11px;
}

.r2f-footer__links a {
    width: max-content;
    max-width: 100%;

    color: #b8c5d6;

    font-size: .89rem;

    text-decoration: none;

    transition:
        color var(--r2f-transition),
        transform var(--r2f-transition);
}

.r2f-footer__links a:hover {
    color: #fff;

    transform: translateX(3px);
}

.r2f-footer__contact {
    display: grid;

    gap: 12px;
}

.r2f-footer__contact a,
.r2f-footer__contact div {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    color: #b8c5d6;

    font-size: .88rem;
    line-height: 1.55;

    text-decoration: none;
}

.r2f-footer__contact i {
    width: 16px;

    margin-top: 4px;

    color: var(--r2f-gold-400);
}

.r2f-footer__social {
    display: flex;

    gap: 8px;

    margin-top: 18px;

    flex-wrap: wrap;
}

.r2f-footer__social a {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255, 255, 255, .12);

    border-radius: 50%;

    color: #fff;

    background:
        rgba(255, 255, 255, .04);

    text-decoration: none;

    transition:
        background var(--r2f-transition),
        transform var(--r2f-transition);
}

.r2f-footer__social a:hover {
    color: #fff;

    background: var(--r2f-blue-600);

    transform: translateY(-2px);
}

.r2f-footer__bottom {
    border-top:
        1px solid rgba(255, 255, 255, .09);
}

.r2f-footer__bottom-inner {
    min-height: 66px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    color: #8899af;

    font-size: .81rem;
}


/* =========================================================
   DESKTOP HOVER MENU
========================================================= */

@media (min-width: 992px) {
    .r2f-navbar .dropdown:hover>.dropdown-menu {
        display: block;

        margin-top: 0;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {

    .r2f-call-chip {
        display: none;
    }

    .r2f-navbar__actions {
        margin-left: 8px;
    }

    .r2f-navbar .nav-link {
        padding-inline: 9px !important;

        font-size: .87rem;
    }
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 991.98px) {

    .r2f-topbar {
        display: none;
    }

    .r2f-header {
        top: 0;
    }

    .r2f-nav {
        min-height: 70px;

        padding: 8px 0;
    }

    .r2f-brand img {
        width: 45px;
        height: 45px;
    }

    .r2f-brand__text {
        font-size: 1.2rem;
    }

    .r2f-navbar-toggler {
        width: 45px;
        height: 45px;

        display: grid;
        place-items: center;

        border:
            1px solid var(--r2f-line) !important;

        border-radius:
            13px !important;

        color:
            var(--r2f-navy-900);

        background:
            #fff !important;

        box-shadow:
            none !important;
    }

    .r2f-navbar .navbar-collapse {
        max-height:
            calc(100vh - 100px);

        overflow-y: auto;

        margin-top: 10px;

        padding: 10px;

        border:
            1px solid var(--r2f-line);

        border-radius:
            18px;

        background:
            #fff;

        box-shadow:
            var(--r2f-shadow-md);
    }

    .r2f-navbar .nav-link {
        padding:
            12px !important;

        font-size:
            .95rem;
    }

    .r2f-navbar .dropdown-menu {
        margin:
            3px 0 6px !important;

        padding:
            6px !important;

        border:
            0 !important;

        border-radius:
            14px !important;

        background:
            #f6f9fd !important;

        box-shadow:
            none !important;
    }

    .r2f-mega {
        min-width:
            0 !important;
    }

    .r2f-mega__grid {
        grid-template-columns:
            1fr;
    }

    .r2f-mega__links {
        grid-template-columns:
            1fr;
    }

    .r2f-mega__feature {
        display:
            none;
    }

    .r2f-navbar__actions {
        margin:
            8px 0 2px;
    }

    .r2f-navbar__actions .r2f-btn {
        width:
            100%;
    }

    body {
        padding-bottom:
            70px;
    }

    .r2f-mobile-bar {
        position:
            fixed;

        left:
            10px;

        right:
            10px;

        bottom:
            10px;

        z-index:
            1045;

        display:
            grid;

        grid-template-columns:
            1fr 1fr;

        gap:
            7px;

        padding:
            7px;

        border:
            1px solid rgba(16, 40, 72, .12);

        border-radius:
            18px;

        background:
            rgba(255, 255, 255, .94);

        backdrop-filter:
            blur(15px);

        box-shadow:
            0 15px 50px rgba(6, 17, 36, .2);
    }

    .r2f-mobile-bar a {
        min-height:
            48px;

        display:
            flex;

        align-items:
            center;

        justify-content:
            center;

        gap:
            8px;

        border-radius:
            13px;

        font-size:
            .86rem;

        font-weight:
            800;

        text-decoration:
            none;
    }

    .r2f-mobile-bar__call {
        color:
            var(--r2f-navy-900);

        background:
            #eef4fb;
    }

    .r2f-mobile-bar__wa {
        color:
            #fff;

        background:
            #119b69;
    }

    .r2f-footer__grid {
        grid-template-columns:
            1fr 1fr;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .r2f-footer__cta {
        transform:
            translateY(-32px);
    }

    .r2f-footer__cta-card {
        align-items:
            flex-start;

        flex-direction:
            column;

        padding:
            24px;

        border-radius:
            22px;
    }

    .r2f-footer__cta-actions {
        width:
            100%;
    }

    .r2f-footer__cta-actions .r2f-btn {
        flex:
            1;

        min-width:
            145px;
    }

    .r2f-footer__main {
        padding-top:
            5px;
    }

    .r2f-footer__grid {
        grid-template-columns:
            1fr;

        gap:
            32px;
    }

    .r2f-footer__bottom-inner {
        min-height:
            90px;

        flex-direction:
            column;

        justify-content:
            center;

        text-align:
            center;
    }
}