/* Footer Styles */
.site-footer {
    background: linear-gradient(180deg, #1a4d2e 0%, #0a1f12 100%);
    padding: 80px 0 0;
    font-family: 'Nunito', sans-serif;
    color: #cbd5e0;
    border-top: 2px solid #2e7d4f; /* Accent line using brand active green */
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 35px;
    height: 2px;
    background: var(--ga, #2e7d4f);
    border-radius: 2px;
}

.footer-column .footer-logo {
    max-width: 100px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.footer-column .footer-logo:hover {
    transform: scale(1.05);
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #a0aec0;
    font-size: 0.95rem;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #cbd5e0;
}

.footer-contact-info li svg {
    width: 20px;
    height: 20px;
    color: var(--ga, #2e7d4f);
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links li a {
    text-decoration: none;
    color: #9ca3af;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-links li a::before {
    content: "→";
    color: var(--ga, #2e7d4f);
    font-size: 0.9rem;
    opacity: 0;
    margin-left: -15px;
    transition: all 0.3s ease;
}

.footer-links li a:hover::before {
    opacity: 1;
    margin-left: 0;
}

.working-hours {
    list-style: none;
    padding: 0;
}

.working-hours li {
    margin-bottom: 12px;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.working-hours .day {
    font-weight: 600;
}

.store-location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.store-location-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.store-location-map img,
.store-location-map iframe {
    width: 100%;
    height: auto;
    display: block;
}

.footer-bottom-area {
    background: #051009;
    padding: 15px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.copyright strong {
    color: #fff;
    font-weight: 600;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-title {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: var(--ga, #2e7d4f);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.social-icons i {
    font-size: 14px;
}

/* Responsive adjust */
@media (max-width: 1199px) {
    .footer-top {
        gap: 30px;
        margin-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 25px;
    }

    .footer-social {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 40px;
    }

    .footer-column h4::after {
        left: 0;
        transform: none;
    }

    .footer-contact-info li,
    .footer-links li a {
        justify-content: flex-start;
    }

    .footer-column .footer-logo {
        margin: 0 0 25px;
    }

    .footer-bottom {
        text-align: center;
        align-items: center;
    }

    .footer-social {
        align-items: center;
    }
}



