/* ==========================================
   HAMSA PREMIUM FOOTER
========================================== */

.site-footer {
    overflow: hidden;
    background: transparent;
}

/* ==========================
   MAIN FOOTER
========================== */

.hamsa-footer-main {
    position: relative;
    overflow: hidden;

    padding: 90px 90px 0;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fbff 45%,
            #eef5ff 100%
        );
}

/* ==========================
   WATERMARK
========================== */

.hamsa-footer-watermark {
    position: absolute;

    top: 0;
    right: -120px;

    width: 780px;
    height: 780px;

    background:
            url('/wp-content/themes/hamsa/assets/images/fevicon.svg')
        no-repeat center;

    background-size: contain;

    opacity: .06;

    z-index: 1;
    pointer-events: none;
}

/* watercolor graphics */

.hamsa-footer-watermark::before {
    content: '';

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 80%,
            rgba(67,138,255,.18),
            transparent 30%
        ),

        radial-gradient(
            circle at 82% 12%,
            rgba(255,128,0,.10),
            transparent 22%
        ),

        radial-gradient(
            circle at 55% 35%,
            rgba(92,145,255,.10),
            transparent 18%
        );

    filter: blur(10px);
}

/* ==========================
   GRID
========================== */

.hamsa-footer-grid {
    position: relative;
    z-index: 2;

    max-width: 1500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        1.35fr
        .9fr
        1fr
        1fr;

    gap: 80px;

    padding-bottom: 70px;
}

/* ==========================
   LOGO
========================== */

.footer-brand .custom-logo-link {
    display: inline-block;
}

.footer-brand img {
    max-width: 320px;
    width: auto;
    height: auto;

    background: transparent !important;
    mix-blend-mode: multiply;

    display: block;
}

/* remove white patch feeling */

.custom-logo {
    filter:
        contrast(1.04)
        saturate(1.03);
}

/* ==========================
   TYPOGRAPHY
========================== */

.footer-heading {
    position: relative;

    color: #071b4d;

    font-size: 26px;
    font-weight: 700;

    margin-bottom: 55px;
}

.footer-heading::after {
    content: '';

    position: absolute;
    left: 0;
    bottom: -18px;

    width: 58px;
    height: 3px;

    background: #ff7a00;
    border-radius: 999px;
}

.hamsa-footer-description {
    max-width: 390px;

    margin-top: 30px;

    color: #425272;

    font-size: 20px;
    line-height: 2;
}

/* ==========================
   MENUS
========================== */

.hamsa-footer-menu,
.hamsa-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hamsa-footer-menu li,
.hamsa-footer-links li {
    margin-bottom: 24px;
}

.hamsa-footer-menu a,
.hamsa-footer-links li,
.footer-contact-item {
    text-decoration: none;

    color: #2f4160;

    font-size: 19px;
    line-height: 1.9;

    transition: .3s ease;
}

.hamsa-footer-menu a:hover {
    color: #ff7a00;
}

/* ==========================
   CONTACT
========================== */

.footer-contact-item {
    margin-bottom: 28px;
}

/* ==========================
   CTA
========================== */

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 14px;

    padding: 20px 42px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #ff9300,
            #ff6900
        );

    color: #fff;
    text-decoration: none;

    font-size: 20px;
    font-weight: 700;

    box-shadow:
        0 18px 35px
        rgba(255,120,0,.25);

    transition: .35s ease;
}

.footer-cta:hover {
    transform:
        translateY(-3px);
}

/* ==========================
   SOCIAL
========================== */

.footer-socials {
    margin-top: 35px;

    display: flex;
    gap: 18px;
}

.footer-socials a {
    text-decoration: none;
    color: #071b4d;
    font-size: 15px;
}

/* ==========================
   BOTTOM STRIP
========================== */

.hamsa-footer-bottom {
    background:
        linear-gradient(
            135deg,
            #00143d,
            #001b57
        );

    padding: 36px 90px;

    position: relative;
}

.hamsa-footer-bottom::before {
    content: '';

    position: absolute;
    inset: 0;

    opacity: .06;

    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 14px,
            rgba(255,255,255,.2) 15px
        );
}

.footer-bottom-wrap {
    position: relative;
    z-index: 2;

    max-width: 1500px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-wrap p {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 991px) {

    .hamsa-footer-main {
        padding: 70px 35px 0;
    }

    .hamsa-footer-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .footer-heading {
        font-size: 22px;
    }

    .hamsa-footer-description,
    .hamsa-footer-menu a,
    .hamsa-footer-links li,
    .footer-contact-item {
        font-size: 18px;
    }

    .footer-bottom-wrap {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hamsa-footer-watermark {
        width: 400px;
        height: 400px;
        right: -140px;
        top: 120px;
    }
}

/* ==================================
   FOOTER FORCE OVERRIDES
================================== */

.hamsa-footer-main * {
    box-sizing: border-box;
}

.hamsa-footer-main .footer-heading {
    font-size: 46px !important;
    line-height: 1.15 !important;
}

.hamsa-footer-main
.hamsa-footer-description {
    font-size: 20px !important;
    line-height: 2 !important;
}

.hamsa-footer-main
.hamsa-footer-menu a,

.hamsa-footer-main
.hamsa-footer-links li,

.hamsa-footer-main
.footer-contact-item {
    font-size: 20px !important;
    line-height: 2 !important;
}

.hamsa-footer-main
.footer-cta {
    font-size: 24px !important;
    padding: 24px 48px !important;
}

.hamsa-footer-main
.footer-brand img {
    max-width: 360px !important;
}

.hamsa-footer-grid {
    align-items: start;
}

.hamsa-footer-column {
    min-width: 0;
}