/*
Theme Name: Mecanum Wheels
Theme URI: https://www.mecanum-wheels.com
Description: Precision Mecanum Wheel & Module Manufacturer - English Corporate Website
Version: 1.0.0
Author: Mecanum Wheels Team
Author URI: https://www.mecanum-wheels.com
Tags: corporate, industrial, responsive, custom
Text Domain: mecanum-wheels
*/

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

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

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-widgets .widget h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-widgets .widget p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-widgets .widget p i {
    margin-right: 8px;
    color: #4a90e2;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4a90e2;
}

/* Contact Info Links - Phone & Email */
.footer-widgets .widget p a,
.footer-widgets .widget a[href^="tel:"],
.footer-widgets .widget a[href^="mailto:"] {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widgets .widget p a:hover,
.footer-widgets .widget a[href^="tel:"]:hover,
.footer-widgets .widget a[href^="mailto:"]:hover {
    color: #4a90e2;
}

/* Certifications */
.certifications {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cert-badge-small {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(74, 144, 226, 0.2);
    border: 1px solid #4a90e2;
    border-radius: 3px;
    font-size: 11px;
    color: #4a90e2;
}

/* Footer Bottom */
.footer-bottom {
    background: transparent;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-bottom a {
    color: #4a90e2;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-widgets {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Success Message
   ========================================== */
.success-message {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   Responsive Footer
   ========================================== */

@media (max-width: 992px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

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