/* ============================================================
   FOOTER STYLING [START]
   ============================================================ */
.sc-footer {
    background-color: #0f172a; /* Deep Navy Dark Background */
    color: #cbd5e1;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sc-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Column 1: Logo & Socials */
.sc-footer-logo img {
    height: 45px;
    margin-bottom: 25px;
}

.sc-footer-about {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.sc-footer-socials {
    display: flex;
    gap: 15px;
}

.sc-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

.sc-social-icon:hover {
    background: var(--sc-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Titles & Links */
.sc-footer-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.sc-footer-links {
    list-style: none;
}

.sc-footer-links li {
    margin-bottom: 12px;
}

.sc-footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.sc-footer-links li a:hover {
    color: var(--sc-primary);
    padding-left: 5px;
}

/* WhatsApp Button in Footer */
.sc-footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 20px;
    background: #25d366; /* WhatsApp Green */
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.sc-footer-wa:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* Bottom Bar */
.sc-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.sc-footer-bottom span {
    color: var(--sc-primary);
    font-weight: 700;
}

.sc-footer-made-by i {
    color: #ef4444; /* Heart Red */
    margin: 0 4px;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .sc-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .sc-footer-grid {
        grid-template-columns: 1fr;
    }
    .sc-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}