/*=========================================
            FOOTER
=========================================*/

.footer{
    position: relative;
    background: #001028;
    color: #fff;
    padding: 90px 0 0;
    overflow: hidden;
}

.footer::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,#D4AF37,#FFD700,#D4AF37);
    z-index: 2;
}

/*=========================================
        FOOTER CONTAINER
=========================================*/

.footer-top{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

/*=========================================
        LOGO
=========================================*/

.footer-logo img{
    width: 220px;
    margin-bottom: 25px;
}

.footer-about p{
    color:#cfcfcf;
    line-height:30px;
    font-size:15px;
    margin-bottom:30px;
}

/*=========================================
        SOCIAL ICONS
=========================================*/

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    transition:.35s;
}

.footer-social a:hover{
    background:#D4AF37;
    color:#08172F;
    transform:translateY(-6px);
}

/*=========================================
        TITLES
=========================================*/

.footer h3{
    color:#fff;
    font-size:22px;
    margin-bottom:30px;
    position:relative;
}

.footer h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:60px;
    height:2px;
    background:#D4AF37;
}

/*=========================================
        LINKS
=========================================*/

.footer-links ul{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.footer-links a{
    color:#cfcfcf;
    transition:.3s;
}

.footer-links a:hover{
    color:#D4AF37;
    padding-left:10px;
}

/*=========================================
        CONTACT
=========================================*/

.footer-contact p{
    color:#cfcfcf;
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:20px;
    line-height:28px;
    transition:.3s;
}

.footer-contact p:hover{
    color:#fff;
}

.footer-contact i{
    color:#D4AF37;
    margin-top:5px;
    transition:.3s;
}

.footer-contact p:hover i{
    transform:rotate(10deg);
}

/*=========================================
        BUTTON
=========================================*/

.footer-btn{
    display:inline-block;
    margin-top:20px;
    background:linear-gradient(135deg,#D4AF37,#FFD700);
    color:#08172F;
    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.35s;
}

.footer-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(212,175,55,.35);
}

/*=========================================
        HOVER EFFECTS (links)
=========================================*/

.footer-links ul li{
    transition:.3s;
}

.footer-links ul li:hover{
    transform:translateX(8px);
}

/*=========================================
        BACKGROUND GLOW EFFECTS
=========================================*/

.footer-glow-right{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(212,175,55,.05);
    right:-150px;
    top:-120px;
    filter:blur(80px);
    pointer-events:none;
    z-index:0;
}

.footer-glow-left{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.03);
    left:-120px;
    bottom:-120px;
    filter:blur(100px);
    pointer-events:none;
    z-index:0;
}

/*=========================================
        COPYRIGHT / BOTTOM BAR
=========================================*/

.footer-bottom{
    width: 100%;
    background: linear-gradient(135deg,#D4AF37,#FFD700);
    padding: 10px 0;
    position: relative;
    z-index: 2;
    margin-top: 60px;
    left: 0;
    right: 0;
}

.footer-bottom p{
    color: #08172F;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: .3px;
    text-align: center;
    margin: 0;
    padding: 0 20px;
}

.footer hr{
    display: none;
}

@media(max-width:768px){
    .footer-bottom{
        padding: 18px 0;
    }
    .footer-bottom p{
        font-size: 13.5px;
    }
}
/*=========================================
        SCROLL TOP BUTTON
=========================================*/

.scroll-top{
    position:fixed;
    right:30px;
    bottom:30px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:linear-gradient(135deg,#D4AF37,#FFD700);
    color:#08172F;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(212,175,55,.35);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:9999;
}

.scroll-top.show{
    opacity:1;
    visibility:visible;
}

.scroll-top:hover{
    transform:translateY(-6px);
}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1200px){
    .footer-top{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .footer{
        padding-top:70px;
    }
    .footer-top{
        grid-template-columns:1fr;
        gap:40px;
    }
    .footer-bottom{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }
    .footer-logo img{
        width:180px;
    }
    .footer h3{
        margin-bottom:20px;
    }
    .footer-contact p{
        font-size:15px;
    }
}

@media(max-width:480px){
    .footer{
        padding-top:60px;
    }
    .footer-about p{
        font-size:14px;
        line-height:26px;
    }
    .footer-btn{
        width:100%;
        text-align:center;
    }
    .footer-social{
        justify-content:center;
    }
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}