/* Apple-style Footer */
.apple-footer {
    background-color: #f5f5f7;
    color: #1d1d1f;
    font-size: 12px;
    padding: 40px 0 20px;
    border-top: 1px solid #d2d2d7;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 20px;
}

.footer-nav-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    min-width: 150px;
    margin-bottom: 20px;
}

.brand-column {
    max-width: 250px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    filter: grayscale(100%); /* Minimalist logo look */
    opacity: 0.8;
}

.footer-heading {
    font-size: 12px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

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

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

.footer-links a {
    color: #424245;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #1d1d1f;
    text-decoration: underline;
}

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

.social-icon {
    color: #424245;
    transition: color 0.2s ease;
}

.social-icon:hover {
    color: #1d1d1f;
}

.company-info {
    font-size: 11px;
    color: #86868b;
    line-height: 1.5;
}

.contact-info li {
    margin-bottom: 12px;
}

.contact-info .label {
    display: block;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 2px;
}

.contact-info .value {
    color: #424245;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #d2d2d7;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    color: #86868b;
    font-size: 11px;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-links a {
    color: #424245;
    font-size: 11px;
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
}

.separator {
    color: #d2d2d7;
    font-size: 10px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-nav-wrapper {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
