/* ========================================
   KWSP FOOTER SECTION
   ======================================== */

.kwsp-footer {
    background: #EEEEEE;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    border-top: 1px solid #DDDDDD;
}

/* Left Side - Social Media Section */
.kwsp-footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Social Icons Container */
.kwsp-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Individual Social Icon */
.kwsp-social-icon {
    width: 45px;
    height: 45px;
    background: #2E398C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.kwsp-social-icon:hover {
    background: #1E2970;
    transform: translateY(-2px);
}

/* KWSP Malaysia Text */
.kwsp-footer-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #2E398C;
    margin: 0;
    white-space: nowrap;
}

/* Right Side - Website Link Section */
.kwsp-footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Globe Icon */
.kwsp-globe-icon {
    width: 45px;
    height: 45px;
    background: #2E398C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 22px;
}

/* Website Link */
.kwsp-website-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #2E398C;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.kwsp-website-link:hover {
    color: #1E2970;
    text-decoration: underline;
}

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

/* Tablet - 768px */
@media (max-width: 768px) {
    .kwsp-footer {
        padding: 15px 20px;
        gap: 20px;
    }
    
    .kwsp-footer-left {
        gap: 10px;
    }
    
    .kwsp-social-icons {
        gap: 8px;
    }
    
    .kwsp-social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .kwsp-footer-text {
        font-size: 16px;
    }
    
    .kwsp-globe-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .kwsp-website-link {
        font-size: 16px;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .kwsp-footer {
        flex-direction: column;
        padding: 20px 15px;
        gap: 20px;
        text-align: center;
    }
    
    .kwsp-footer-left {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .kwsp-social-icons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .kwsp-social-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
    
    .kwsp-footer-text {
        font-size: 16px;
        text-align: center;
    }
    
    .kwsp-footer-right {
        gap: 8px;
    }
    
    .kwsp-globe-icon {
        width: 38px;
        height: 38px;
        font-size: 19px;
    }
    
    .kwsp-website-link {
        font-size: 15px;
    }
}

/* Mobile - 360px */
@media (max-width: 360px) {
    .kwsp-footer {
        padding: 18px 12px;
    }
    
    .kwsp-social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .kwsp-footer-text {
        font-size: 14px;
    }
    
    .kwsp-globe-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .kwsp-website-link {
        font-size: 14px;
    }
}