/* ==========================================================================
   Footer Styles
   ========================================================================== */

.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

/* Footer Brand Section */
.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    color: #999;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.footer-contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #fff;
    font-size: 0.875rem;
}

.footer-contact-info i {
    color: #e74c3c;
    margin-right: 12px;
    font-size: 1rem;
    width: 20px;
}

.footer-contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #e74c3c;
}

/* Footer Widget Sections */
.footer-widget {
    margin-bottom: 30px;
}

.footer-widget-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #e74c3c;
}

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

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

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Work Hours Section */
.work-hours-info {
    margin-bottom: 20px;
}

.work-hours-time {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #fff;
    font-size: 0.875rem;
}

.work-hours-time i {
    color: #e74c3c;
    margin-right: 10px;
    font-size: 1rem;
}

.work-hours-description {
    color: #999;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
}

.footer-cta-btn:hover {
    background: #c0392b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-copyright {
    color: #999;
    font-size: 0.875rem;
    margin: 0;
}

.footer-copyright a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #c0392b;
}

/* Responsive */
@media (max-width: 767px) {
    .site-footer {
        padding: 40px 0 0;
    }
    
    .footer-widget {
        margin-bottom: 40px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-contact-info li {
        justify-content: center;
    }
}
