/* Footer Styles */
.main-footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #141414;
}

/* Footer Background */
.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column - Brand Section */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

/* .footer-logo {
    width: 32px;
    height: 32px;
} */

.footer-brand-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Center Column - Menu Section */
.footer-center {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #8FC31F;
}

/* Right Column - CTA Section */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.footer-cta {
    width: 100%;
    max-width: 280px;
}

.footer-cta-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 45px;
}

.footer-cta a:hover .footer-cta-image {
    transform: translateY(-2px);
    box-shadow: 0 1px 1px #8FC31F;
    border-radius: 45px;
}

/* Footer Bottom - 3 Column Layout */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 40px;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 20px;
}

/* Bottom Left - Legal Links */
.footer-bottom-left {
    display: flex;
    justify-content: flex-start;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #8FC31F;
}

/* Bottom Center - Copyright */
.footer-bottom-center {
    display: flex;
    justify-content: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

/* Bottom Right - Social Media */
.footer-bottom-right {
    display: flex;
    justify-content: flex-end;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #8FC31F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(81, 248, 39, 0.3);
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-container {
        padding: 0 40px;
        gap: 40px;
    }

    .footer-bottom-container {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-right {
        grid-column: 1 / 3;
        align-items: center;
        text-align: center;
    }

    .footer-cta {
        max-width: 320px;
    }

    .footer-bottom-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        justify-content: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 40px 0 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 30px;
        text-align: center;
    }

    .footer-left {
        align-items: center;
    }

    .footer-right {
        align-items: center;
    }

    .footer-bottom-container {
        padding: 0 30px;
    }

    .footer-legal {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 20px;
        gap: 25px;
    }

    .footer-brand-text {
        font-size: 1.1rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-nav-link {
        font-size: 0.9rem;
    }

    .footer-cta {
        max-width: 260px;
    }

    .footer-bottom-container {
        padding: 0 20px;
    }

    .footer-legal {
        gap: 12px;
    }

    .legal-link {
        font-size: 0.85rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}