/* =========================================================
   ZAN PEARL GLOBAL FOOTER
========================================================= */

.site-footer.zp-footer{
    position:relative !important;
    display:block !important;
    width:100% !important;
    clear:both !important;
    visibility:visible !important;
    opacity:1 !important;
    overflow:hidden;
    margin:0 !important;

    background:
        linear-gradient(
            135deg,
            #041824 0%,
            #044C48 58%,
            #073B66 100%
        ) !important;

    color:#fff !important;
    font-family:"Manrope",sans-serif;
}

.zpf-container{
    width:min(1180px,calc(100% - 48px));
    margin:0 auto;
}


/* ================= TOP CONTACT ================= */

.zpf-top{
    padding:42px 0 36px;
    border-bottom:1px solid rgba(255,255,255,.13);
}

.zpf-top-grid{
    display:grid;
    grid-template-columns:1.25fr 1fr 1fr 1.15fr;
    gap:34px;
    align-items:center;
}

.zpf-brand img{
    display:block;
    width:230px;
    max-width:100%;
    height:85px;
    object-fit:contain;
    object-position:left center;
}

.zpf-contact-item{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none !important;
    color:#fff !important;
}

.zpf-contact-icon{
    width:52px;
    height:52px;
    flex:0 0 52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#fff;
    color:#00A6D6;

    font-size:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.zpf-contact-item small{
    display:block;
    margin-bottom:5px;

    color:rgba(255,255,255,.62) !important;
    font-size:12px;
    font-weight:600;
}

.zpf-contact-item strong{
    display:block;
    color:#fff !important;
    font-size:14px;
    font-weight:700;
    line-height:1.45;
}


/* ================= MAIN FOOTER ================= */

.zpf-main{
    position:relative;
    padding:65px 0 58px;
}

.zpf-main-grid{
    display:grid;
    grid-template-columns:1.25fr .8fr .8fr 1.25fr;
    gap:60px;
}

.zpf-column h4{
    margin:0 0 22px;

    color:#fff !important;

    font-size:18px;
    line-height:1.3;
    font-weight:800;
}

.zpf-column p{
    margin:0 0 24px;

    color:rgba(255,255,255,.67) !important;

    font-size:14px;
    line-height:1.9;
}

.zpf-column a{
    display:block;
    width:max-content;
    max-width:100%;

    margin:0 0 13px;

    color:rgba(255,255,255,.72) !important;

    text-decoration:none !important;

    font-size:14px;
    line-height:1.5;

    transition:.25s ease;
}

.zpf-column a:hover{
    color:#F5B81B !important;
    transform:translateX(4px);
}


/* ================= SOCIAL ================= */

.zpf-social{
    display:flex;
    align-items:center;
    gap:9px;
    margin-top:24px;
}

.zpf-social a{
    width:40px;
    height:40px;
    margin:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.18);
    border-radius:50%;

    color:#fff !important;

    transition:.25s ease;
}

.zpf-social a:hover{
    transform:translateY(-3px);

    background:linear-gradient(
        135deg,
        #008FD5,
        #00B8C8
    );

    border-color:transparent;

    color:#fff !important;
}


/* ================= NEWSLETTER ================= */

.zpf-newsletter p{
    max-width:390px;
}

.zpf-newsletter-form{
    display:flex;

    padding:6px;

    border-radius:10px;

    background:#fff;

    box-shadow:0 12px 35px rgba(0,0,0,.18);
}

.zpf-newsletter-form input{
    flex:1;
    min-width:0;

    height:52px;

    padding:0 15px;

    border:0;
    outline:0;

    background:transparent;

    color:#044C48;

    font-family:inherit;
    font-size:13px;
}

.zpf-newsletter-form button{
    width:54px;
    height:52px;

    border:0;
    border-radius:8px;

    background:linear-gradient(
        135deg,
        #F5B81B,
        #D99B00
    );

    color:#044C48;

    cursor:pointer;

    font-size:17px;

    transition:.25s ease;
}

.zpf-newsletter-form button:hover{
    transform:translateX(2px);
}


/* ================= BOTTOM ================= */

.zpf-bottom{
    border-top:1px solid rgba(255,255,255,.11);

    background:linear-gradient(
        90deg,
        #008FD5,
        #00B8C8
    );
}

.zpf-bottom .zpf-container{
    min-height:66px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;
}

.zpf-bottom p,
.zpf-bottom span{
    margin:0;

    color:#fff !important;

    font-size:13px;
}

.zpf-bottom a{
    color:#fff !important;
    text-decoration:none;
}


/* ================= DECORATION ================= */

.zpf-main::before{
    content:"";
    position:absolute;

    width:330px;
    height:330px;

    left:-140px;
    bottom:-160px;

    border-radius:50%;

    border:1px solid rgba(0,184,200,.12);

    pointer-events:none;
}

.zpf-main::after{
    content:"";
    position:absolute;

    width:360px;
    height:360px;

    right:-170px;
    top:-120px;

    border-radius:50%;

    border:1px solid rgba(245,184,27,.10);

    pointer-events:none;
}


/* ================= TABLET ================= */

@media(max-width:1050px){

    .zpf-top-grid{
        grid-template-columns:1fr 1fr;
    }

    .zpf-main-grid{
        grid-template-columns:1fr 1fr;
        gap:45px;
    }
}


/* ================= MOBILE ================= */

@media(max-width:700px){

    .zpf-container{
        width:min(100% - 30px,1180px);
    }

    .zpf-top{
        padding:32px 0;
    }

    .zpf-top-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .zpf-brand img{
        width:210px;
        height:auto;
    }

    .zpf-main{
        padding:45px 0 40px;
    }

    .zpf-main-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .zpf-bottom .zpf-container{
        min-height:auto;

        padding-top:18px;
        padding-bottom:18px;

        flex-direction:column;
        align-items:flex-start;
    }
}

/* ==========================================================
   GO ZANZIBAR FINAL FOOTER OVERRIDE
========================================================== */

.site-footer.zp-footer{
    background:#033D3A !important;
}

.site-footer.zp-footer .zpf-top,
.site-footer.zp-footer .zpf-main{
    background:#033D3A !important;
}

.site-footer.zp-footer .zpf-bottom{
    background:#044C48 !important;
    border-top:3px solid #E60311 !important;
}

.site-footer.zp-footer .zpf-contact-icon{
    color:#E60311 !important;
}

.site-footer.zp-footer a:hover{
    color:#FDA008 !important;
}
