/* Footer - Professional Clean Style */
footer {
    background: var(--bg-color);
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 3px solid var(--primary-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Brand Column */
.footer-brand .footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-address {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Contact Column */
.footer-contact p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact p strong {
    color: var(--text-color);
    font-weight: 700;
}

/* Social Media Column */
.footer-social h3 {
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.tiktok {
    background: #000000;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: 1;
    }

    .social-icons {
        justify-content: flex-start;
    }
}