/* Footer & CTA Section */
.footer-cta-wrapper {
    background-color: var(--bg-dark-green);
    overflow-x: hidden;
}

.cta-section {
    background-color: var(--bg-light-section);
    padding: 5rem 0; /* 80px */
    position: relative;
    z-index: 10;
}

.cta-title {
    color: var(--bg-dark-green); 
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 1.25rem; /* 20px */
    line-height: 1.3;
}

.cta-text {
    color: var(--text-body-dark);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.btn-cta-contact {
    background-color: var(--bg-darker-green);
    color: #fff;
    padding: 0.9375rem 2.5rem; /* 15px 40px */
    font-weight: 700;
    border-radius: 0.375rem; /* 6px */
    text-transform: uppercase;
    border: none;
    transition: all 0.3s;
}

.btn-cta-contact:hover {
    background-color: #4a59ad;
    color: #fff;
    transform: translateY(-0.1875rem); /* 3px */
    box-shadow: 0 0.625rem 1.25rem rgba(92, 107, 192, 0.3); /* 10px 20px */
}

.main-footer {
    background-color: var(--bg-dark-green);
    color: #fff;
    padding: 5rem 0 2.5rem 0; /* 80px 0 40px 0 */
    font-size: 0.95rem;
}

.footer-brand span {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

.footer-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 1.25rem; /* 20px */
    margin-bottom: 1.875rem; /* 30px */
}

.footer-heading {
    color: var(--accent-green);
    font-weight: 800;
    margin-bottom: 1.5625rem; /* 25px */
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.0625rem; /* 1px */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.9375rem; /* 15px */
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-green);
    transform: translateX(0.3125rem); /* 5px */
}

.contact-info li {
    margin-bottom: 1.25rem; /* 20px */
    display: flex;
    align-items: flex-start;
    gap: 0.9375rem; /* 15px */
    color: #fff;
}

.contact-info i {
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-top: 0.1875rem; /* 3px */
}

.bottom-footer {
    background-color: var(--bg-darker-green);
    padding: 1.5625rem 0; /* 25px */
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.social-links a {
    color: #fff;
    width: 2.1875rem; /* 35px */
    height: 2.1875rem; /* 35px */
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 0.625rem; /* 10px */
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-green);
    color: var(--bg-dark-green);
    transform: translateY(-0.1875rem); /* 3px */
}

ul.list-unstyled.contact-info {
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-title { font-size: 1.8rem; }
    .btn-cta-contact { 
        width: 100%; 
        margin-top: 1.25rem; /* 20px */ 
    }
}
