/* Footer Styles */
.sp-footer {
    background: #1A1A1A;
    color: #ecf0f1;
    padding: 60px 0 0 0;
    margin-top: 50px;
    height: auto; 
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-title {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3498db;
}

.footer-widget p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 23px;
}

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

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

.footer-links li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
    font-size: 26px;
}

.footer-links li a:hover {
    color: #3498db;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3498db;
    transform: translateY(-2px);
    color: #ffffff;
}

.contact-info p {
    color: #bdc3c7;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info p i {
    margin-right: 10px;
    color: #ffffff;
    width: 20px;
}

.footer-bottom {
    background: #1a252f;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    margin: 0;
    color: #95a5a6;
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sp-footer {
        padding: 40px 0 0 0;
    }
    
    .footer-widget {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom .text-right {
        text-align: center !important;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .sp-footer {
        padding: 30px 0 0 0;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
}