/* --------------------------------------------------------------------------
   Spotless Clean Group - 5-Column Footer Stylesheet
   Author: InfoPixal
   -------------------------------------------------------------------------- */

.sp-footer {
    background-color: #07192c !important;
    color: #cbd5e1;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sp-footer-main {
    padding: 50px 0 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sp-footer-5col-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1.5fr 1.1fr;
    gap: 24px;
}

.sp-footer-col {
    display: flex;
    flex-direction: column;
}

.sp-footer-logo-wrap {
    display: inline-block;
    margin-bottom: 14px;
}

.sp-footer-logo {
    max-height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.sp-footer-brand-desc {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.55;
    margin: 0 0 16px 0;
}

.sp-footer-social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.sp-social-btn:hover {
    background: #f97316;
    transform: translateY(-2px);
    color: #ffffff !important;
}

.sp-footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 8px;
}

.sp-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: #f97316;
    border-radius: 2px;
}

.sp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sp-footer-links li a {
    color: #94a3b8;
    font-size: 12px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: inline-block;
}

.sp-footer-links li a:hover {
    color: #38bdf8;
    transform: translateX(3px);
}

.sp-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sp-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.45;
}

.sp-footer-contact-list li a {
    color: #94a3b8;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.sp-footer-contact-list li a:hover {
    color: #38bdf8;
}

.sp-fc-icon {
    color: #38bdf8;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Bottom Strip */
.sp-footer-bottom {
    padding: 16px 0;
    background-color: #051322;
}

.sp-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11.5px;
    color: #64748b;
    flex-wrap: wrap;
    gap: 8px;
}

.sp-footer-copy {
    margin: 0;
}

.sp-footer-credit {
    margin: 0;
}

.sp-footer-credit a {
    color: #38bdf8;
    text-decoration: none !important;
}

/* Responsive Footer */
@media screen and (max-width: 1024px) {
    .sp-footer-5col-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .sp-footer-5col-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .sp-footer-5col-grid {
        grid-template-columns: 1fr;
    }
    .sp-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}
