/* ===== Footer ===== */
.footer {
    background: rgba(60, 46, 37, 0.92);
    padding: 60px 0 0;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-bottom: 50px;
}

.footer-brand {
    flex: 0 0 320px;
}

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

.footer-brand .logo img {
    width: 32px;
    height: 32px;
}

.footer-brand .logo-text {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-desc {
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact h4 {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-item span {
    font-family: var(--font-secondary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-group h4 {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.link-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-group a {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: white;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.link-group a:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    font-family: var(--font-secondary);
    font-size: 13px;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-family: var(--font-secondary);
    font-size: 13px;
    color: white;
    opacity: 0.8;
}

.footer-legal a:hover {
    opacity: 1;
}

/* Responsive Footer Styles */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}