/* ========================================
   FOOTER COMPONENT STYLES
   ======================================== */

/* Footer */
.footer {
    background: var(--gray-700);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--grass-green);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-services, .footer-links {
    list-style: none;
    padding: 0;
}

.footer-services li, .footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--grass-green);
}

/* Footer Logo Styling */
.footer-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    /* filter: brightness(0) invert(1); */
    transition: var(--transition);
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-tagline {
    color: var(--gray-300);
    font-size: 1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.footer-address {
    color: var(--gray-300);
    line-height: 1.6;
}

.footer-address p {
    margin-bottom: 8px;
}

.footer-address strong {
    color: var(--white);
}

/* Footer Social Media */
.footer-social {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-600);
}

.footer-social-label {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer-social-block {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.footer-social-facebook {
    background: #1877F2;
}

.footer-social-facebook:hover {
    background: #166FE5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
    color: #fff;
}

.footer-social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
    color: #fff;
    filter: brightness(1.1);
}

.footer-social-link .fab {
    font-size: 20px;
    z-index: 1;
}

.footer-social-link span {
    font-size: 1rem;
    z-index: 1;
}

/* Footer Bottom */
.footer-bottom {
    background: var(--black);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid var(--gray-700);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-hours {
    font-size: 14px;
    color: var(--gray-400);
}

.footer-hours p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-logo-img {
        max-width: 150px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-hours {
        font-size: 13px;
    }

    .footer-social-block {
        flex-direction: column;
    }

    .footer-social-link {
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 0;
    }

    .footer-main {
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-logo-img {
        max-width: 120px;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-services li, .footer-links li {
        margin-bottom: 6px;
        font-size: 0.9rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-address {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 15px 0;
    }

    .footer-hours {
        font-size: 12px;
    }
}

/* Large Desktop Optimization */
@media (min-width: 1200px) {
    .footer-logo-img {
        max-width: 250px;
    }

    .footer-main {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 50px;
    }
}
