/* ==========================================
   HAMSA FOOTER
   LIGHTWEIGHT FRAMEWORK VERSION
========================================== */

/* ==========================================
   FOOTER ROOT
========================================== */

.site-footer {
    position: relative;

    background: #ffffff;

    overflow: hidden;
}

/* ==========================================
   MAIN FOOTER
========================================== */

.hamsa-footer-main {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fbff 100%
        );

    padding-top: 80px;
}

/* ==========================================
   WATERCOLOUR GRAPHIC
========================================== */

.hamsa-footer-main::before {
    content: '';

    position: absolute;

    inset: 0;

    background:
        url('../images/water-spill.svg')
        no-repeat
        right top;

    background-size:
        min(950px, 72vw)
        auto;

    opacity: .52;

    pointer-events: none;

    z-index: 1;
}

/* ==========================================
   WATERMARK LOGO
========================================== */

.hamsa-footer-watermark {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 140px;
    height: 140px;

    background:
        url('../images/fevicon.svg')
        no-repeat center;

    background-size: contain;

    opacity: .04;

    pointer-events: none;

    z-index: 1;
}

/* ==========================================
   FOOTER GRID
========================================== */

.hamsa-footer-grid {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        1.35fr
        .85fr
        1fr
        .9fr;

    gap: 48px;

    padding-bottom: 72px;
}

/* ==========================================
   BRANDING
========================================== */

.footer-brand img,
.footer-brand .custom-logo {
    display: block;

    width: auto;
    max-width: 240px;
    height: auto;
}

.hamsa-footer-description {
    margin-top: 28px;

    max-width: 340px;

    color: #4c5d79;

    font-size: 16px;
    line-height: 2;
}

/* ==========================================
   HEADINGS
========================================== */

.footer-heading {
    position: relative;

    margin: 0 0 34px;

    color: #031d59;

    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-heading::after {
    content: '';

    position: absolute;

    left: 0;
    bottom: -12px;

    width: 44px;
    height: 3px;

    background: #ff8a00;

    border-radius: 999px;
}

/* ==========================================
   FOOTER MENUS
========================================== */

.hamsa-footer-menu,
.hamsa-footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}

.hamsa-footer-menu li,
.hamsa-footer-links li {
    margin-bottom: 12px;
}

.hamsa-footer-menu a,
.hamsa-footer-links li,
.footer-contact-item {
    color: #304263;

    font-size: 16px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color .2s ease;
}

.hamsa-footer-menu a:hover {
    color: #ff8200;
}

/* ==========================================
   CONTACT
========================================== */

.footer-contact-item {
    margin-bottom: 16px;
}

/* ==========================================
   CTA BUTTON
========================================== */

.footer-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 30px;

    margin-top: 12px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #ff9800,
            #ff6d00
        );

    color: #ffffff !important;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 20px
        rgba(255,125,0,.15);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.footer-cta:hover {
    transform: translateY(-2px);
}

/* ==========================================
   SOCIAL LINKS
========================================== */

.footer-socials {
    display: flex;

    gap: 18px;

    margin-top: 40px;
}

.footer-socials a {
    color: #122b58;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;
}

/* ==========================================
   FOOTER BOTTOM
========================================== */

.hamsa-footer-bottom {
    background:
        linear-gradient(
            135deg,
            #00143b,
            #011e58
        );

    padding: 28px 0;
}

.footer-bottom-wrap {
    width: 100%;
    max-width: 1280px;

    margin-left: auto;
    margin-right: auto;

    padding-left: 24px;
    padding-right: 24px;

    display: flex;

    align-items: center;
    justify-content: space-between;
}

.footer-bottom-wrap p {
    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            .92
        );

    font-size: 15px;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .hamsa-footer-main {
        padding-top: 60px;
    }

    .hamsa-footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;

        padding-bottom: 60px;
    }

    .footer-heading {
        font-size: 21px;
    }

    .footer-bottom-wrap {
    flex-direction: column;

    gap: 12px;

    text-align: center;

    padding-left: 20px;
    padding-right: 20px;
}

    .hamsa-footer-watermark {
        width: 380px;
        height: 380px;

        top: 160px;
        right: -120px;
    }

    .hamsa-footer-main::before {
        background-size: cover;

        opacity: .18;
    }
}