/* Footer CSS File */

.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.site-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.site-footer .footer-logo h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.site-footer .footer-logo p {
    color: rgba(255, 255, 255, 0.8);
}

.site-footer .footer-links h4,
.site-footer .footer-contact h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.site-footer .footer-links ul {
    list-style: none;
}

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

.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.site-footer .footer-links a:hover {
    color: var(--secondary-color);
}

.site-footer .footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.site-footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.site-footer .social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.site-footer .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .site-footer .footer-content {
        gap: 30px;
    }
}