/* Footer Styles */
footer {
    position: relative;
    background-image: url('/assets/img/bg/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0 0;
    color: #ffffff;
}

footer .footer-overlay {
    /* background: rgba(76, 142, 42, 0.92); */
    background: #60af28dc;
    padding: 60px 20px 20px;
        position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

footer .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

/* Footer Logo */
footer .footer-logo img {
    max-width: 245px;
    height: auto;
    margin-bottom: 0px;
    padding: 15px;
    border-radius: 8px;
}

footer .footer-description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 400;
}

/* Social Icons */
footer .footer-social {
    display: flex;
    gap: 12px;
}

footer .social-icon {
    width: 42px;
    height: 42px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

footer .social-icon svg {
    width: 18px;
    height: 18px;
}

footer .social-icon:hover {
    background: #ffffff;
    color: #4c8e2a;
    transform: translateY(-3px);
}

/* Footer Headings */
footer .footer-heading {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(  --text-dark);
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); */
    font-family: var(--font1);
}

/* Footer Menu */
footer .footer-menu {
    list-style: none;
    padding-left: 0;
}

footer .footer-menu li {
    margin-bottom: 15px;
}

footer .footer-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
    font-weight: 400;
}

footer .footer-menu a:hover {
    padding-left: 8px;
    color: #fff;
}

footer .footer-menu .arrow {
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
    color: var(--dark-bg);
}

/* Services Column */
footer .footer-services .footer-menu a span:not(.arrow) {
    line-height: 1.6;
}

/* Contact Information */
footer .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

footer .contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

footer .contact-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

footer .contact-item span {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
}

/* Footer Bottom */
footer .footer-bottom {
   background-color: var( --dark-green);
    padding: 20px;
    text-align: center;
    position: relative;
}

footer .footer-bottom p {
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 0;
}

/* Enquiry Button */
footer .enquiry-btn {
    position: fixed;
    left: 20px;
    bottom: 10px;
    z-index: 99;
}

footer .enquiry-btn a {
    display: inline-block;
    background: var(  --primary-green);
    color: #ffffff;
    padding: 10px 35px;
    font-size: 16px;
    letter-spacing: 0.4px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

footer .enquiry-btn a:hover {
    background: #3d7122;
    padding-right: 45px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
  footer   .contact-item {
        padding: 10px 0;
    }
/* Responsive Design */
@media (max-width: 1200px) {
    footer .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    footer .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    footer .footer-overlay {
        padding: 40px 20px 20px;
    }

    footer .footer-heading {
        font-size: 22px;
    }


    footer .enquiry-btn a {
        border-radius: 30px;
    }
    footer .footer-contact{
        gap: 0;
    }
     footer   .contact-item {
        padding: 10px 0;
    }
    footer .enquiry-btn {
    position: fixed;
 left: -51px;
        bottom: 74px;
    z-index: 99;
    rotate: -90deg;
}
}

@media (max-width: 480px) {
    footer .footer-logo img {
        max-width: 220px;
    }

    footer .footer-heading {
        font-size: 20px;
    }

    footer .footer-menu a {
        font-size: 15px;
    }

    footer .contact-item span {
        font-size: 14px;
    }
}