/* Footer Newsletter Styling */
.newsletter-section {
    margin-top: 1rem;
}

.newsletter-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

.newsletter-section p {
    font-size: 0.9rem;
    color: #ddd;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form .form-control {
    flex: 1;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    outline: none;
    border-color: #6b8e23;
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form .theme-btn {
    padding: 0.6rem 1.2rem;
    background-color: #6b8e23;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form .theme-btn:hover {
    background-color: #556b1f;
    transform: translateY(-2px);
}

.newsletter-form .theme-btn i {
    font-size: 1rem;
}

/* Footer Contact Info Styling */
.footer-content .contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.footer-content .contact-info li i {
    font-size: 1.2rem;
    color: #6b8e23;
    margin-top: 0.2rem;
    min-width: 20px;
}

.footer-content .contact-info li p {
    margin: 0;
    line-height: 1.6;
}

.footer-content .contact-info li strong {
    color: #fff;
    font-weight: 600;
}

.footer-content .contact-info li a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-content .contact-info li a:hover {
    color: #6b8e23;
}

/* Footer Logo Styling */
.footer-section .widget-head img {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

/* Footer Social Icons */
.footer-section .social-icon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.footer-section .social-icon a:hover {
    background-color: #6b8e23;
    transform: translateY(-3px);
}

.footer-section .social-icon a i {
    color: #fff;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer-widgets-wrapper .col-xl-3 {
        margin-bottom: 2rem;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form .theme-btn {
        width: 100%;
    }
}