/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 64px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

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

.footer-section .logo {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

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

.footer-section h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.625;
    margin-bottom: 24px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #2563eb;
}

.social-icon i {
    color: white;
    font-size: 1rem;
}

/* Footer Lists */
.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.contact-item i {
    width: 20px;
    height: 20px;
    color: #60a5fa;
    margin-right: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

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

.contact-item-content p {
    margin: 0;
    line-height: 1.5;
}

.contact-item-title {
    color: #d1d5db;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-item-subtitle {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 32px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-legal {
    width: 100%;
}

.footer-legal h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-legal-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: white;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-legal h4 {
        text-align: left;
    }

    .footer-legal-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer {
        padding: 48px 0;
    }
}
