/* ========================================
   FOOTER SECTION
   ======================================== */

.footer-section {
    background: linear-gradient(135deg, rgba(0, 146, 68, 0.02) 0%, rgba(252, 195, 0, 0.02) 50%, rgba(235, 28, 36, 0.02) 100%);
    border-top: 1px solid rgba(0, 146, 68, 0.1);
    position: relative;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
}

/* Footer Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow-primary);
}

.footer-logo i {
    font-size: 1.75rem;
    color: var(--yellow-primary);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 350px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 146, 68, 0.1);
}

.social-icon:hover {
    background: var(--yellow-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(252, 195, 0, 0.2);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--yellow-primary);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--yellow-primary);
    transition: width 0.3s ease;
}

.footer-links li a:hover {
    color: var(--yellow-primary);
    padding-left: 8px;
}

.footer-links li a:hover::before {
    width: 100%;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--yellow-primary);
    font-size: 1.1rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.footer-contact li div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact li a,
.footer-contact li span {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--yellow-primary);
}

/* Footer Hours */
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.hours-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 3px solid var(--yellow-primary);
    transition: all 0.3s ease;
}

.hours-item:hover {
    box-shadow: 0 4px 12px rgba(252, 195, 0, 0.1);
    transform: translateX(5px);
}

.hours-item .day {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.hours-item .time {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Footer CTA Button (if needed elsewhere) */
.footer-cta-btn {
    display: inline-block;
    background: var(--yellow-primary);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(252, 195, 0, 0.2);
    margin-top: 0.5rem;
}

.footer-cta-btn:hover {
    background: var(--yellow-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(252, 195, 0, 0.3);
}

/* Footer Bottom Bar */
.footer-bottom {
    background: rgba(252, 195, 0, 0.03);
    border-top: 1px solid rgba(0, 146, 68, 0.1);
    padding: 1.5rem 2rem;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--yellow-primary);
}

.footer-bottom-links .separator {
    color: rgba(252, 195, 0, 0.3);
}

/* ========================================
   FOOTER RESPONSIVE DESIGN
   ======================================== */

/* Tablet (Large) */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 600px;
    }
}

/* Tablet (Medium) */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem 1rem 1.5rem;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-logo {
        font-size: 1.35rem;
    }

    .footer-logo i {
        font-size: 1.5rem;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .social-links {
        justify-content: flex-start;
    }

    .hours-item {
        padding: 0.65rem;
    }

    .footer-bottom {
        padding: 1.25rem 1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-bottom-links .separator {
        display: none;
    }
}