.site-footer {
    background-color: #2e7d32;
    color: #ffffff;
    padding-top: 4rem;
    font-family: 'Inter', sans-serif;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 4rem 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-container > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.footer-logo .highlight {
    color: #a5d6a7;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e8f5e9;
    opacity: 0.8;
    max-width: 300px;
}

.footer-links-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #a5d6a7;
}

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

.footer-links-col li {
    margin-bottom: 0.8rem;
}

.footer-links-col a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.85;
    transition: opacity 0.2s, padding-left 0.2s;
}

.footer-links-col a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-brand-img {
    height: 100px;
    width: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-links-col h4,
.footer-newsletter-col h4 {
    margin-top: 5px;
}

.footer-newsletter-col input {
    border: none !important;
    border-bottom: none !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 10px 15px;
    color: white;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 24px 24px 24px 24px;
    font-size: 0.85rem;
    margin-top: 3rem;
}

.footer-newsletter-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
    width: 100%;
}

.footer-newsletter-col p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.input-group {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 4px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.input-group:focus-within {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.input-group input {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    color: white;
    padding: 8px 16px;
    font-size: 0.9rem;
    flex-grow: 1;
    min-width: 0;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-group button {
    background-color: #ffffff;
    color: #2e7d32;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s;
    margin-left: 4px;
}

.input-group button:hover {
    transform: scale(1.05);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #c8e6c9;
}

.vs-logo {
    height: 24px !important;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    margin-top: 3px;
}

.credit-link:hover .vs-logo {
    opacity: 1;
    transform: scale(1.03);
}

.credit-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 50px;
    transition: background 0.2s;
}

.credit-badge:hover {
    background: rgba(255, 255, 255, 0.1);
}

.credit-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-desc {
        margin: 0 auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}