/* Footer Widget Styles - Dynamic colors will override these defaults */
.footer-widgets {
    margin-bottom: 30px;
}

.footer-widget {
    margin-bottom: 30px;
    color: var(--footer-text-color, #666666) !important;
}

.footer-widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    padding-bottom: 10px;
    display: inline-block;
    margin:0;
}

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

.footer-widget ul li {
    margin-bottom: 8px;
    padding-right: 0;
}

.footer-widget ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: #ff6600;
}

.footer-widget p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-widget .textwidget {
    color: #666;
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.footer-bottom p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Responsive Footer Widgets */
@media (max-width: 768px) {
    .footer-widgets .row > div {
        margin-bottom: 30px;
    }
    
    .footer-widget-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .footer-widgets .row > div {
        margin-bottom: 25px;
    }
    
    .footer-widget {
        margin-bottom: 25px;
    }
}

/* Footer Widget Areas for different layouts */
.footer-widgets .col-md-12 {
    width: 100%;
}

.footer-widgets .col-md-6 {
    width: 50%;
}

.footer-widgets .col-md-4 {
    width: 33.333333%;
}

.footer-widgets .col-md-3 {
    width: 25%;
}

/* Social Media Icons in Footer */
.footer-widget .social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-widget .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    color: #666;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-widget .social-links a:hover {
    background: #ff6600;
    color: #fff;
    transform: translateY(-2px);
}

/* Contact Info in Footer */
.footer-widget .contact-info {
    margin-bottom: 15px;
}

.footer-widget .contact-info i {
    color: #ff6600;
    margin-left: 10px;
    width: 20px;
}

/* Newsletter Signup in Footer */
.footer-widget .newsletter-form {
    margin-top: 20px;
}

.footer-widget .newsletter-form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer-widget .newsletter-form button {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-widget .newsletter-form button:hover {
    background: #e55a00;
}
