.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 30px;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    display: inline-block;
    max-width: 180px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer-nav {
    margin-bottom: 0;
}

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

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: block;
    padding: 2px 0;
}

.footer-links a:hover {
    color: var(--bg-white);
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-underline-offset: 4px;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.site-footer .contact-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-top: 2px;
    color: var(--primary-color);
    background-color: transparent !important;
}

.site-footer .contact-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color) !important;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-details a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--bg-white);
}

.contact-details strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--bg-white);
    display: block;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* Footer Contact Links Layout */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.link-item-content {
    flex: 1;
}

.site-footer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: var(--bg-white) !important;
    transition: var(--transition);
    border: none !important;
}

.site-footer .social-link:hover {
    background-color: var(--primary-color) !important;
    transform: scale(1.1);
    color: var(--bg-white) !important;
    border: none !important;
}

.site-footer .social-link svg {
    width: 20px;
    height: 20px;
    color: var(--bg-white) !important;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 0;
}

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

    .footer-column {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-description {
        font-size: 13px;
    }

    .contact-item {
        margin-bottom: 15px;
    }

    .contact-details a,
    .contact-details p {
        font-size: 13px;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .copyright p {
        font-size: 12px;
    }
}
