
/* ======================================================
   Site Footer (redesign)
====================================================== */
.site-footer{
    position: relative;
    background: #14100b;
    color: #c9c0ab;
    font-family: 'Poppins', 'Jost', sans-serif;
    overflow: hidden;
}

/* -- Top bar -- */
.site-footer__topbar{
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topbar-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding: 22px 0;
}
.topbar-info{
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.topbar-item{
    display: flex;
    align-items: center;
    gap: 14px;
}
.topbar-icon{
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242,193,78,0.14);
    color: #f2c14e;
    font-size: 16px;
}
.topbar-text{
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}
.topbar-text strong{
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.topbar-text a{
    color: #b8b0a0;
    font-size: 14px;
    text-decoration: none;
    transition: color .3s ease;
}
.topbar-text a:hover{
    color: #f2c14e;
}
.topbar-cta{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f2c14e, #c98f1f);
    box-shadow: 0 12px 30px rgba(201,143,31,0.45);
    color: #fff !important;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
    white-space: nowrap;
}
.topbar-cta:hover{
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(201,143,31,0.6);
    color: #fff;
}
.topbar-cta-icon{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* -- Main footer -- */
.site-footer__main{
    position: relative;
    z-index: 2;
    padding: 70px 0 40px;
}
.footer-glow{
    position: absolute;
    top: -180px;
    left: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(242,193,78,0.30) 0%, rgba(242,193,78,0) 70%);
    filter: blur(10px);
    z-index: 1;
    pointer-events: none;
}
.footer-grid{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.1fr;
    gap: 50px;
}
.footer-brand-logo{
    display: inline-block;
    margin-bottom: 18px;
}
.footer-brand-logo img{
    max-width: 190px;
    height: auto;
}
.footer-tagline{
    color: #f2c14e;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.footer-desc{
    color: #b8b0a0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 340px;
}
.footer-subscribe{
    display: flex;
    max-width: 360px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}
.footer-subscribe input{
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 13px 16px;
    color: #fff;
    font-size: 14px;
}
.footer-subscribe input::placeholder{
    color: #948c7c;
}
.footer-subscribe button{
    border: none;
    padding: 0 22px;
    background: linear-gradient(135deg, #f2c14e, #c98f1f);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: opacity .3s ease;
}
.footer-subscribe button:hover{
    opacity: .9;
}
.footer-subscribe-msg{
    margin-top: 10px;
    font-size: 13px;
    color: #f2c14e;
    min-height: 18px;
}

.footer-col h3{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}
.footer-col ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-col ul li{
    margin-bottom: 14px;
}
.footer-col ul li a{
    color: #b8b0a0;
    font-size: 15px;
    text-decoration: none;
    transition: color .3s ease, padding-left .3s ease;
}
.footer-col ul li a:hover{
    color: #f2c14e;
    padding-left: 4px;
}
.footer-contact-list li{
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.footer-contact-list .icon{
    flex: none;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(242,193,78,0.14);
    color: #f2c14e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.footer-contact-list a,
.footer-contact-list p{
    color: #b8b0a0;
    font-size: 15px;
    text-decoration: none;
    margin: 0;
    line-height: 1.5;
}
.footer-contact-list a:hover{
    color: #f2c14e;
}

/* -- Bottom bar -- */
.site-footer__bottom{
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 22px 0;
}
.footer-bottom-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom-inner p{
    margin: 0;
    color: #948c7c;
    font-size: 14px;
}
.footer-bottom-inner p a{
    color: #b8b0a0;
    text-decoration: none;
}
.footer-socials{
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-socials a{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    color: #c9c0ab;
    font-size: 14px;
    text-decoration: none;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}
.footer-socials a:hover{
    background: linear-gradient(135deg, #f2c14e, #c98f1f);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 991px){
    .footer-grid{
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
    .footer-brand{
        grid-column: 1 / -1;
    }
    .footer-desc,
    .footer-subscribe{
        max-width: 480px;
    }
}

@media (max-width: 767px){
    .topbar-inner{
        flex-direction: column;
        align-items: flex-start;
    }
    .topbar-cta{
        width: 100%;
        justify-content: center;
    }
    .footer-grid{
        grid-template-columns: 1fr;
    }
    .footer-bottom-inner{
        flex-direction: column;
        text-align: center;
    }
}
