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

.footer-top{
    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        transparent,
        #00d4ff,
        #FFD166,
        #00d4ff,
        transparent
    );

    box-shadow:0 0 15px rgba(255,209,102,.4);


}

.custom-footer{
    width:100%;
    background:#058181;
    color:#fff;
    padding-top:10px;
    font-family: Poppins;

    position:relative;
    z-index:99;
    overflow:hidden;
}

/* =========================
    TOP AREA
========================= */

.footer-container{
    width:90%;
    margin:auto;

    display:grid;
    grid-template-columns:
    1.1fr
    1.1fr
    0.7fr
    1.4fr;

    gap:60px;

    padding-bottom:50px;
}

/* =========================
    TITLES
========================= */

.footer-title{
    display:flex;
    align-items:center;
    gap:12px;

    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
}

.footer-title span{
    width:40px;
    height:3px;
    background:linear-gradient(to right, #E67500 0%, #FFB300 100%);
    border-radius:20px;
}


/* =========================
    SERVICES
========================= */



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

.contact-card{
    display:flex;
    gap:15px;
    align-items:flex-start;

    padding:14px 16px;
    margin-bottom:12px;

    background:rgba(255,255,255,.04);
    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;

    transition:.35s ease;
}

.contact-card i{
    width:44px;
    height:44px;

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

    background:rgba(255,255,255,.08);

    border-radius:12px;

    color:#E67500;
    font-size:18px;

    transition:.35s ease;
}

.contact-card h4{
    color:#fff;
    margin:0 0 4px;
    font-size:15px;
}

.contact-card p{
    margin:0;
    color:rgba(255,255,255,.75);
    font-size:14px;
    line-height:1.6;
}

.contact-card:hover{
    transform:translateX(8px);
    border-color:#E67500;
    background:rgba(255,255,255,.08);
}

.contact-card:hover i{
    background:#E67500;
    color:#058181;
    transform:rotate(-8deg);
}
/* =========================
    SOCIAL ICONS
========================= */

.social-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.social-card{
    display:flex;
    align-items:center;
    gap:14px;

    padding:14px 16px;

    text-decoration:none;
    color:#fff;

    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;

    transition:all .35s ease;
}

.social-card i{
    width:42px;
    height:42px;

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

    border-radius:12px;

    background:rgba(255,255,255,.08);

    font-size:18px;
    color:#fff;

    transition:all .35s ease;
}

.social-card span{
    transition:all .35s ease;
}

.social-card:hover{
    transform:translateX(8px);
}

/* FACEBOOK */
.social-card.facebook:hover{
    border-color:#3b50f9;
}

.social-card.facebook:hover i{
    background:#3b50f9;
    color:#fff;
}

.social-card.facebook:hover span{
    color:#3b50f9;
}

/* LINKEDIN */
.social-card.linkedin:hover{
    border-color:#0A66C2;
}

.social-card.linkedin:hover i{
    background:#0A66C2;
    color:#fff;
}

.social-card.linkedin:hover span{
    color:#0A66C2;
}

/* INSTAGRAM */
.social-card.instagram:hover{
    border-color:#E4405F;
}

.social-card.instagram:hover i{
    background:linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
    color:#fff;
}

.social-card.instagram:hover span{
    color:#E4405F;
}

/* YOUTUBE */
.social-card.youtube:hover{
    border-color:#FF0000;
}

.social-card.youtube:hover i{
    background:#FF0000;
    color:#fff;
}

.social-card.youtube:hover span{
    color:#FF0000;
}

/* WHATSAPP */
.social-card.whatsapp:hover{
    border-color:#25D366;
}

.social-card.whatsapp:hover i{
    background:#25D366;
    color:#fff;
}

.social-card.whatsapp:hover span{
    color:#25D366;
}
/* =========================
    MAP
========================= */

.footer-map-card{
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(10px);

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

    padding:18px;

    transition:.35s ease;
}

.footer-map-card:hover{
    border-color:#E67500;
    transform:translateY(-5px);
}

.map-header{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:16px;
}

.map-header i{
    width:50px;
    height:50px;

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

    border-radius:14px;

    background:rgba(255,255,255,.08);

    color:#E67500;
    font-size:20px;
}


.map-header p{
    margin:4px 0 0;
    color:rgba(255,255,255,.75);
    font-size:14px;
}

.map-wrapper{
    overflow:hidden;
    border-radius:14px;
    height:260px;
}

.map-wrapper iframe{
    width:100%;
    height:100%;
    border:none;

    filter:grayscale(30%);
    transition:.5s ease;
}

.footer-map-card:hover iframe{
    filter:grayscale(0%);
    transform:scale(1.03);
}

.direction-btn{
    margin-top:16px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    text-decoration:none;

    padding:12px;

    border-radius:12px;

    background:#E67500;
    color:#fff;

    font-weight:600;

    transition:.35s ease;
}

.direction-btn:hover{
    transform:translateY(-2px);
}
/* =========================
    BOTTOM BAR
========================= */

.footer-bottom{
    margin-top:0px;
    padding-top:25px;

    border-top:2px solid rgba(255,255,255,.12);

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

.footer-copy{
    display:flex;
    align-items:center;
    gap:10px;
    letter-spacing:.5px;
    
    color:#ffffff;
    font-size:15px;
}

.footer-copy span{
    color:#E67500;
    font-weight:600;
}

/* =========================
    Our Services
========================= */


.services-list{
    list-style:none;
    padding:0;
    margin:0;
}

.services-list li{
    margin-bottom:12px;
}

.services-list a{
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    gap:12px;

    padding:12px 16px;

    color:#fff;
    text-decoration:none;

    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;

    transition:.35s ease;
}

.services-list a i{
    color:#E67500;
    width:22px;
    font-size:16px;
}

.services-list a span{
    margin-left:auto;
    opacity:.5;
    transition:.35s;
}


.services-list a:hover{
     color:#E67500;
    background:rgba(255,255,255,.08);
    transform:translateX(8px);
    border-color:#E67500;
}

.services-list a:hover span{
    opacity:1;
    transform:translateX(4px);
}

/* COPYRIGHT */


/* =========================
    RESPONSIVE
========================= */

@media(max-width:1200px){

    .footer-container{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .custom-footer{
        padding-top:50px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:20px;

        text-align:center;
    }

    

    .footer-col h2{
        font-size:24px;
    }

}