/* ========================================
   FOOTER STYLES - Professional 3 Column Layout
   ======================================== */

.main-footer {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    padding: 3rem 0 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 3 Column Grid Layout */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 2rem;
}

/* Column Styles */
.footer-column {
    text-align: left;
}

.footer-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: white;
}

/* Address Section */
.footer-address {
    line-height: 1.8;
}

.footer-address p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    opacity: 0.95;
}

.footer-address i {
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Benefits List */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-list i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-list strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.footer-list p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Footer Text */
.footer-text {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Instagram gradient */
.social-link:nth-child(1):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

/* Facebook blue */
.social-link:nth-child(2):hover {
    background: #1877f2;
    color: white;
}

/* WhatsApp green */
.social-link:nth-child(3):hover {
    background: #25d366;
    color: white;
}

/* Contact Info */
.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    margin: 1rem 0;
    font-size: 0.95rem;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.footer-contact i {
    color: white;
    font-size: 1.1rem;
    width: 20px;
}

/* Footer Hours */
.footer-hours {
    margin-top: 2rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-hours h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.footer-hours p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    opacity: 0.95;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    margin-top: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Tablet */
@media (max-width: 968px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-address,
    .footer-contact p {
        text-align: left;
    }

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

/* Mobile */
@media (max-width: 480px) {
    .main-footer {
        padding: 2rem 0 0;
    }

    .footer-title {
        font-size: 1.5rem;
    }

    .footer-list li {
        padding: 0.75rem;
    }
}