/* ==========================================
HIDE HELLO THEME DEFAULT FOOTER
========================================== */

.site-footer{

    display:none !important;

}


/*==========================================================
HIDE DEFAULT HELLO FOOTER
==========================================================*/

.site-footer{
    display:none !important;
}


/*==========================================================
FOOTER
==========================================================*/

.gf-footer{

    position:relative;

    overflow:hidden;

    background:#FCFBF7;

    padding:100px 0 0;

    border-top:1px solid rgba(212,175,55,.15);

}


/*==========================================================
CONTAINER
==========================================================*/

.gf-footer-top{

    width:min(1400px,92%);

    margin:auto;

    display:grid;

    grid-template-columns:

    2fr

    1fr

    1fr

    1.3fr;

    gap:70px;

}


/*==========================================================
LOGO
==========================================================*/

.gf-footer-logo{

    width:115px;

    margin-bottom:22px;

}

.gf-footer-badge{

    display:inline-block;

    padding:8px 18px;

    margin-bottom:22px;

    border-radius:40px;

    background:#FFF4D8;

    color:#C99812;

    font-size:11px;

    letter-spacing:2px;

    font-weight:700;

}

.gf-footer-brand p{

    color:#666;

    line-height:1.9;

    font-size:16px;

}


/*==========================================================
HEADINGS
==========================================================*/

.gf-footer h3{

    position:relative;

    display:inline-block;

    font-size:24px;

    color:#111;

    margin-bottom:32px;

    font-weight:700;

}

.gf-footer h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:45px;

    height:3px;

    border-radius:20px;

    background:

    linear-gradient(

    90deg,

    #C99812,

    #FFD66B);

}


/*==========================================================
LIST
==========================================================*/

.gf-footer ul{

    list-style:none;

    margin:0;

    padding:0;

}

.gf-footer li{

    margin-bottom:16px;

}

.gf-footer a{

    position:relative;

    color:#666;

    text-decoration:none;

    transition:.35s;

}

.gf-footer a::before{

    content:"→";

    position:absolute;

    left:-18px;

    opacity:0;

    color:#D4AF37;

    transition:.35s;

}

.gf-footer a:hover{

    color:#C99812;

    padding-left:14px;

}

.gf-footer a:hover::before{

    opacity:1;

    left:-2px;

}


/*==========================================================
BOTTOM
==========================================================*/

.gf-footer-bottom{

    width:min(1400px,92%);

    margin:80px auto 0;

    padding:28px 0;

    border-top:1px solid rgba(212,175,55,.15);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.gf-footer-bottom p{

    color:#777;

    font-size:15px;

}

.gf-footer-bottom-links{

    display:flex;

    gap:30px;

}

.gf-footer-bottom p{

    color:#777;

}

.gf-footer-bottom-links{

    display:flex;

    gap:25px;

}

.gf-footer-bottom-links a{

    color:#777;

}


/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:991px){

.gf-footer-top{

grid-template-columns:1fr 1fr;

gap:50px;

}

.gf-footer-bottom{

flex-direction:column;

gap:20px;

}

}


@media(max-width:767px){

.gf-footer{

padding:70px 0 0;

}

.gf-footer-top{

grid-template-columns:1fr;

gap:45px;

}

.gf-footer-bottom-links{

flex-direction:column;

gap:12px;

text-align:center;

}

}


/*==========================================================
PREMIUM TOP WAVE
==========================================================*/

.gf-footer::before{

    content:"";

    position:absolute;

    top:0;

    left:-50%;

    width:200%;

    height:140px;

    background:
    radial-gradient(circle at 50% 120%,
    rgba(212,175,55,.22) 0%,
    rgba(212,175,55,.10) 30%,
    transparent 65%);

    animation:gfFooterWave 12s linear infinite;

    pointer-events:none;

}

@keyframes gfFooterWave{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-25%);

    }

}


/*==========================================================
BACKGROUND GLOW
==========================================================*/

.gf-footer::after{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-220px;

    bottom:-250px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(212,175,55,.09),

    transparent 70%);

    animation:footerGlow 8s ease-in-out infinite;

    pointer-events:none;

}

@keyframes footerGlow{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.15);

    }

    100%{

        transform:scale(1);

    }

}


.gf-footer-logo{

    width:125px;

    transition:.45s;

    filter:drop-shadow(0 8px 20px rgba(212,175,55,.15));

}

.gf-footer-brand:hover .gf-footer-logo{

    transform:

    translateY(-8px)

    rotate(-2deg)

    scale(1.05);

    filter:

    drop-shadow(0 18px 35px rgba(212,175,55,.28));

}


.gf-footer-badge{

    display:inline-block;

    padding:9px 20px;

    margin-bottom:22px;

    border-radius:40px;

    background:#FFF4DA;

    color:#C99812;

    font-size:11px;

    letter-spacing:2px;

    font-weight:700;

    animation:badgeFloat 4s ease-in-out infinite;

}

@keyframes badgeFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-3px);

    }

    100%{

        transform:translateY(0);

    }

}


/*==========================================================
CONTACT CARDS
==========================================================*/

.gf-contact-card{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:18px;

    padding:18px;

    background:#fff;

    border-radius:18px;

    border:1px solid rgba(212,175,55,.15);

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.04);

}

.gf-contact-card:hover{

    transform:translateY(-5px);

    border-color:#D4AF37;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.gf-contact-card span{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#FFF5D8;

    font-size:20px;

    flex-shrink:0;

}

.gf-contact-card strong{

    display:block;

    color:#111;

    margin-bottom:4px;

}

.gf-contact-card p{

    margin:0;

    color:#666;

    line-height:1.6;

}


/*==========================================================
SOCIAL
==========================================================*/

.gf-footer-social{

    display:flex;

    gap:14px;

    margin-top:30px;

}

.gf-footer-social a{

    width:46px;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#fff;

    border:1px solid rgba(212,175,55,.15);

    color:#C99812;

    transition:.35s;

    box-shadow:0 8px 18px rgba(0,0,0,.05);

}

.gf-footer-social a:hover{

    transform:translateY(-5px);

    background:#D4AF37;

    color:#111;

}