.ks-footer {
    --ks-green: #172D2D;
    --ks-accent: #627B35;
    --ks-muted: rgba(255, 255, 255, 0.72);
    --ks-soft: rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, #1a3333 0%, #122424 100%);
    color: #fff;
    width: 100%;
    margin: 0;
    flex-shrink: 0;
}

.ks-footer__topline {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--ks-accent), transparent);
}

.ks-footer__main {
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.ks-footer__brand img {
    max-width: 160px;
    height: auto;
    display: block;
    margin-bottom: 1.25rem;
}

.ks-footer__tagline {
    color: var(--ks-muted);
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0 0 1.5rem;
    max-width: 22rem;
}

.ks-footer__heading {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a8c48a;
    margin: 0 0 1.15rem;
}

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

.ks-footer__links li + li {
    margin-top: 0.65rem;
}

.ks-footer__links a {
    color: var(--ks-muted);
    text-decoration: none;
    font-size: 0.96rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.ks-footer__links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ks-accent);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ks-footer__links a:hover {
    color: #fff;
}

.ks-footer__links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

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

.ks-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: var(--ks-muted);
    font-size: 0.96rem;
    line-height: 1.6;
}

.ks-footer__contact li + li {
    margin-top: 0.9rem;
}

.ks-footer__contact-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ks-soft);
    color: #a8c48a;
    font-size: 0.9rem;
}

.ks-footer__contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ks-footer__contact a:hover {
    color: #fff;
}

.ks-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.ks-footer__social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ks-soft);
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ks-footer__social a:hover {
    background: var(--ks-accent);
    transform: translateY(-2px);
    color: #fff;
}

.ks-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.15rem 0;
    background: #0f1e1e;
}

.ks-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.ks-footer__bottom-inner a {
    color: #a8c48a;
    text-decoration: none;
    font-weight: 600;
}

.ks-footer__bottom-inner a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .ks-footer__brand,
    .ks-footer__col {
        text-align: center;
    }

    .ks-footer__tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .ks-footer__social {
        justify-content: center;
    }

    .ks-footer__contact li {
        justify-content: center;
    }

    .ks-footer__bottom-inner {
        justify-content: center;
        text-align: center;
    }
}
