/* Footer Styles */
.site-footer {
    background: var(--primary-dark);
    color: #ccc;
    padding: 60px 0 30px;
}

.site-footer p {
    color: #ccc;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.site-footer .footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.site-footer .footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary);
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-links li {
    margin-bottom: 10px;
    padding-left: 0;
    transition: all 0.3s ease;
}

.site-footer .footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer .footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.site-footer .footer-contact .footer-logo {
    margin-bottom: 20px;
}

.site-footer .footer-contact .footer-logo img {
    max-width: 100%;
    height: auto;
}

.site-footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer .contact-info span,
.site-footer .contact-info span a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer .contact-info span a:hover {
    color: var(--secondary);
}

.site-footer .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .site-footer .footer-grid {
        gap: 30px;
    }
}