/* ==========================================
   HAMSA FOOTER
   DEEP NAVY VERSION
========================================== */

/* ==========================================
   FOOTER ROOT
========================================== */

.site-footer {
    position: relative;

    background:
        linear-gradient(
            180deg,
            #082654 0%,
            #061d42 100%
        );

    overflow: hidden;
}

/* ==========================================
   MAIN FOOTER
========================================== */

.hamsa-footer-main {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #0B2E63 0%,
            #082654 100%
        );

    margin: 40px auto 0;

    max-width: 1320px;

    border-radius: 28px 28px 0 0;

    box-shadow:
        0 10px 40px rgba(0,0,0,.18);

    padding-top: 80px;
}

/* ==========================================
   WATERCOLOUR GRAPHIC
========================================== */

.hamsa-footer-main::before {
    content: '';

    position: absolute;
    inset: 0;

    background:
        url('../images/drawing.svg')
        no-repeat
        center center;

    background-size: cover;

    opacity: .08;

    pointer-events: none;

    z-index: 1;

    -webkit-mask-image:
        linear-gradient(
            to left,
            rgba(0,0,0,1) 0%,
            rgba(0,0,0,.9) 20%,
            rgba(0,0,0,.55) 45%,
            rgba(0,0,0,.15) 70%,
            rgba(0,0,0,0) 100%
        );

    mask-image:
        linear-gradient(
            to left,
            rgba(0,0,0,1) 0%,
            rgba(0,0,0,.9) 20%,
            rgba(0,0,0,.55) 45%,
            rgba(0,0,0,.15) 70%,
            rgba(0,0,0,0) 100%
        );
}

/* ==========================================
   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: rgba(255,255,255,.75);

    font-size: 16px;
    line-height: 2;
}

/* ==========================================
   HEADINGS
========================================== */

.footer-heading {
    position: relative;

    margin: 0 0 34px;

    color: #ffffff;

    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: rgba(255,255,255,.82);

    font-size: 16px;
    line-height: 1.6;

    text-decoration: none;

    transition: color .2s ease;
}

.hamsa-footer-menu a:hover {
    color: #ff8a00;
}

/* ==========================================
   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,.18);

    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: rgba(255,255,255,.82);

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;
}

/* ==========================================
   FOOTER BOTTOM
========================================== */

.hamsa-footer-bottom {
    background:
        linear-gradient(
            135deg,
            #041634,
            #021127
        );

    border-top:
        1px solid rgba(255,255,255,.08);

    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,.88);

    font-size: 15px;
}