/* Footer Styles */
.site-footer {
    background: #000;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    font-weight: 400;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-social {
    margin-bottom: 1rem;
}

/* Footer Brand Section - Left Aligned */
.footer-brand {
    text-align: left;
}

.footer-logo-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 60px;
    height: 84px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-moto {
    color: #bdc3c7;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    max-width: 400px;
}

/* Footer Links */
.footer-links strong,
.footer-contact strong,
.footer-social strong {
    display: block;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a,
.footer-contact a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-size: 1rem;
    line-height: 1.4;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
    transform: translateX(3px);
}

/* Footer Social - Follow Us Section */
.footer-social {
    text-align: left;
}

.footer-social strong {
    margin-bottom: 1rem;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.footer-social-icons a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.footer-social-icons a .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    text-align: center;
    color: #95a5a6;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 1.05rem;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: left;
    }
    
    .footer-moto {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
        padding: 0 15px;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-logo-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        text-align: left;
    }
    
    .footer-logo {
        width: 40px;
        height: 70px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-moto {
        font-size: 0.85rem;
    }
    
    .footer-social-icons {
        justify-content: flex-start;
    }
    
    .footer-social-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .footer-social-icons a .dashicons {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }
    
    .footer-links a,
    .footer-contact a {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }
    
    .footer-links strong,
    .footer-contact strong,
    .footer-social strong {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-inner {
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .footer-logo {
        width: 35px;
        height: 35px;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-moto {
        font-size: 0.8rem;
    }
    
    .footer-social-icons a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .footer-social-icons a .dashicons {
        font-size: 14px;
        width: 14px;
        height: 14px;
    }
    
    .footer-links strong,
    .footer-contact strong,
    .footer-social strong {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
}
