.footer-connect {
    background: #23393c;
    color: #ffffff;
    padding: 60px 20px 10px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: nowrap;
}

.footer-left {
    min-width: 250px;
}

/* LEFT */
.footer-left h4 {
    font-size: 40px;
    letter-spacing: 3px;
    font-weight: 500;
}

.footer-left h2 {
    font-size: 50px;
    font-weight: 600;
    margin-top: 10px;
    margin-left:-2px;
}

/* Divider */
.footer-divider {
    width: 4px;
    height: 220px;
    background: #f26522;
    flex-shrink: 0;
}

/* RIGHT WRAPPER */
.footer-right-wrapper {
    display: flex;
    align-items: center;        
    justify-content: flex-start; 
    gap: 25px;                 
           
}

/* Contact Items */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.footer-item i {
    font-size: 22px;
    color: #f26522;
}

/* Map */
.footer-map {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;   
    margin-left: 0px;     
}

.footer-map iframe {
    width: 300px;         
    height: 220px;        
    border-radius: 12px;
    border: 1px solid #f26522;
    margin-top: 0;         
}

.map-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #f26522;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 6px;
    font-weight: 600;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    font-size: 18px;
    letter-spacing: 3px;
    color: #ffffff;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    white-space: nowrap; 
}


.footer-copyright {
    width: 100%;
    padding: 18px 40px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 17px;
    letter-spacing: 0.5px;
    white-space: nowrap; 
}

/* Left text */
.footer-copyright .copyright-left {
    opacity: 0.8;
}

/* Right text */
.footer-copyright .copyright-right {
    opacity: 0.8;
    margin-right: 50px;
}

/* Hover effect (optional premium touch) */
.footer-copyright span:hover {
    opacity: 1;
    transition: 0.3s ease;
}

@media (max-width: 768px) {
    .footer-copyright {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
/* Floating WhatsApp Button */
.wa-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    overflow: hidden; 
}

.wa-button img {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    width: 100%;
}

/* Chat Box */
.wa-box {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    display: none;
    z-index: 9999;
}

/* Header */
.wa-header {
    background: #25D366;
    color: #fff;
    padding: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* Body */
.wa-body {
    padding: 20px;
    text-align: center;
}

.wa-chat-btn {
    display: inline-block;
    margin-top: 15px;
    background: #25D366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

.wa-chat-btn:hover {
    background: #1DA851;
}


@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-divider {
        display: none;
    }

    .footer-right-wrapper {
        flex-direction: column;
        min-width: unset;
        width: 100%;
        
    }

    .footer-map iframe {
        width: 100%;
        height: 220px;
    }

    .footer-bottom {
        font-size: 14px;      
        letter-spacing: 1px;  
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px 20px;
        font-size: 14px;   
    }

    .footer-copyright .copyright-right {
        margin-right: 0;   
    }
}

@media (max-width: 992px) {

    .footer-left {
        min-width: auto;
        text-align: flex-start;
        
    }

    .footer-left h4 {
        font-size: 32px;
        letter-spacing: 2px;
        margin-left: 10px;
    }

    .footer-left h2 {
        font-size: 35px;
        margin-left: 10px;
    }

}