/* Custom Footer Styles */
.footer-area {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 60px 0 0;
}

.footer-area a {
    color: #ffffff;
    text-decoration: none;
}

.footer-area a:hover {
    color: #3cb878; /* Green color instead of blue */
}

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    border-bottom: 2px solid #3cb878;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.footer-list li {
    margin-bottom: 12px;
}

.contact-info i {
    margin-right: 10px;
    color: #3cb878;
}

/* Newsletter and Social Media Section */
.newsletter-section {
    margin-bottom: 30px;
}

.social-connect {
    margin-top: 30px;
}

.social-connect h4 {
    margin-bottom: 15px;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: #3cb878;
    color: #ffffff;
    border-radius: 3px;
    text-align: center;
    line-height: 36px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.social-icons a:hover {
    background-color: #2a9761;
    color: #ffffff;
}

.subscribe-form .form-control {
    background-color: #333333;
    border: none;
    color: #ffffff;
    height: 45px;
    border-radius: 4px 0 0 4px;
}

.subscribe-form .btn {
    background-color: #3cb878;
    color: #ffffff;
    border: none;
    height: 45px;
    border-radius: 0 4px 4px 0;
}

.footer-copyright {
    background-color: #2a2a2a;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #3a3a3a;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
    .order-1 {
        text-align: center;
    }
    
    .footer-column {
        margin-bottom: 20px;
    }

    /* Center headings on mobile */
    .footer-column h4 {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Improve spacing on mobile */
    .social-connect {
        margin-top: 15px;
    }
}