/* =========================================
   FOOTER
========================================= */

.site-footer {

    color: rgba(255, 255, 255, .72);

}


/* =========================================
   CTA
========================================= */

.footer-cta {

    position: relative;

    overflow: hidden;

    background: var(--cc-navy);

}


.footer-cta::before {

    position: absolute;

    top: -100px;

    right: -100px;

    width: 300px;

    height: 300px;

    border: 1px solid rgba(185, 151, 91, .2);

    border-radius: 50%;

    content: "";

}


.footer-cta-inner {

    min-height: 260px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.footer-eyebrow {

    display: block;

    margin-bottom: 12px;

    color: var(--cc-gold-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.footer-cta h2 {

    max-width: 650px;

    margin: 0;

    color: var(--cc-white);

    font-size: clamp(30px, 4vw, 48px);

}


.footer-cta-button {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    flex-shrink: 0;

    padding: 15px 24px;

    color: var(--cc-navy);

    background: var(--cc-gold-light);

    font-size: 13px;

    font-weight: 700;

}


.footer-cta-button:hover {

    color: var(--cc-white);

    background: var(--cc-gold);

}


.footer-cta-button i {

    transition: transform .3s ease;

}


.footer-cta-button:hover i {

    transform: translateX(5px);

}


/* =========================================
   MAIN
========================================= */

.footer-main {

    padding: 75px 0;

    background: var(--cc-navy-dark);

}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 12px;

}


.footer-brand .brand-name {

    color: var(--cc-white);

}


.footer-description {

    max-width: 390px;

    margin: 25px 0;

    color: rgba(255, 255, 255, .6);

    font-size: 14px;

}


/* =========================================
   FOOTER HEADINGS
========================================= */

.footer-main h3 {

    margin-bottom: 22px;

    color: var(--cc-white);

    font-family: var(--cc-font-body);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}


/* =========================================
   LINKS
========================================= */

.footer-links {

    margin: 0;

    padding: 0;

    list-style: none;

}


.footer-links li {

    margin-bottom: 10px;

}


.footer-links a {

    color: rgba(255, 255, 255, .62);

    font-size: 13px;

}


.footer-links a:hover {

    color: var(--cc-gold-light);

    padding-left: 4px;

}


/* =========================================
   SOCIAL
========================================= */

.footer-social {

    display: flex;

    gap: 8px;

}


.footer-social a {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--cc-white);

    border: 1px solid rgba(255, 255, 255, .15);

}


.footer-social a:hover {

    color: var(--cc-navy);

    background: var(--cc-gold-light);

    border-color: var(--cc-gold-light);

}


/* =========================================
   CONTACT
========================================= */

.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 20px;

}


.footer-contact-item>i {

    margin-top: 3px;

    color: var(--cc-gold-light);

}


.footer-contact-item div {

    display: flex;

    flex-direction: column;

}


.footer-contact-item strong {

    margin-bottom: 3px;

    color: var(--cc-white);

    font-size: 12px;

}


.footer-contact-item span,
.footer-contact-item a {

    color: rgba(255, 255, 255, .6);

    font-size: 13px;

}


.footer-contact-item a:hover {

    color: var(--cc-gold-light);

}


/* =========================================
   BOTTOM
========================================= */

.footer-bottom {

    background: #061522;

    border-top: 1px solid rgba(255, 255, 255, .08);

}


.footer-bottom-inner {

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: rgba(255, 255, 255, .45);

    font-size: 11px;

}


.footer-legal-links {

    display: flex;

    gap: 20px;

}


.footer-legal-links a:hover {

    color: var(--cc-gold-light);

}


/* =========================================
   BACK TO TOP
========================================= */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 900;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--cc-white);

    background: var(--cc-navy);

    border: 0;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition: var(--cc-transition);

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.back-to-top:hover {

    background: var(--cc-gold);

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767.98px) {

    .footer-cta-inner {

        min-height: auto;

        padding: 60px 0;

        align-items: flex-start;

        flex-direction: column;

    }


    .footer-cta-button {

        width: 100%;

        justify-content: center;

    }


    .footer-main {

        padding: 55px 0;

    }


    .footer-bottom-inner {

        padding: 20px 0;

        align-items: flex-start;

        flex-direction: column;

    }


    .footer-legal-links {

        flex-wrap: wrap;

        gap: 10px 15px;

    }

}