/* Footer Styles */
footer {
    font-family: 'Poppins', sans-serif;
}

.site-footer {
    background-color: #f8f8f8;
    padding: 40px 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.footer-section h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.whatsapp-link,
.email-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0;
    font-size: 0;
}

.email-link {
    display: none;
}

.whatsapp-link:hover {
    background-color: #1da851;
    transform: translateY(-2px);
}

.email-link:hover {
    color: #0066cc;
}

.whatsapp-link svg,
.email-link svg {
    color: white;
    fill: white;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

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

.footer-section li a:hover {
    color: #333;
    text-decoration: underline;
}

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

.footer-section li {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    align-items: center;
}

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

.social-icon:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.youtube:hover {
    background-color: #ff0000;
}

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

.footer-bottom {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-section {
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 20px;
    }

    .footer-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 0 15px;
    }

    .footer-container {
        padding: 0 15px;
        gap: 20px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section p,
    .footer-section li {
        font-size: 13px;
    }
}