/* FOOTER STYLES */

.main-footer {
    background: #1b4d3e;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Base Column Styles */
.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #6db34d;
}

/* Column 1: Company */
.footer-logo-text {
    display: inline-block;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1;
}

.footer-logo-text span {
    color: #6db34d;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-list a:hover {
    color: #6db34d;
    transform: translateX(5px);
}

/* Column 3: Follow Us */
.social-cluster {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link-item:hover {
    color: #ffffff;
}

.social-icon-box {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-box i {
    width: 18px !important;
    height: 18px !important;
    stroke-width: 2.5px;
    display: block;
}

.social-link-item:hover .social-icon-box {
    background: #6db34d;
    color: white;
    transform: translateY(-3px);
    border-color: #6db34d;
}

/* Footer List Icons */
.footer-list i {
    width: 14px !important;
    height: 14px !important;
    stroke-width: 2.5px;
}

/* Column 4: Newsletter */
.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    color: #ffffff;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    background: #6db34d;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #5a943e;
    transform: scale(1.05);
}

/* SEO Keywords Section */
.footer-keywords {
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-keywords h5 {
    font-size: 15px;
    font-weight: 700;
    margin: 25px 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.keyword-container {
    line-height: 1.8;
    text-align: justify;
}

.keyword-container p {
    margin-bottom: 20px;
}

.keyword-container p:last-child {
    margin-bottom: 0;
}

.keyword-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.keyword-link:hover {
    color: #6db34d;
    text-decoration: none;
}

.keyword-divider {
    font-size: 12px;
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.15);
    user-select: none;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 60px;
    }
}

@media (max-width: 640px) {
    .main-footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}