.site-footer {
    /* background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); */
    background-color: #112040;
    color: #f8fafc;
    padding: 80px 0 40px;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 209, 178, 0.5), transparent);
    box-shadow: 0 0 15px rgba(0, 209, 178, 0.2);
}

.footer-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.footer-brand .brand-logo:hover {
    transform: translateX(5px);
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: #00d1b2;
    color: #0f172a;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(0, 209, 178, 0.3);
    border-color: #00d1b2;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
    display: inline-block;
}

.footer-links a:hover {
    color: #00d1b2;
    padding-left: 4px;
}

.whatsapp-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease !important;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
    padding-left: 20px !important; /* Overriding the general link hover padding */
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

.newsletter-box p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
}

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

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 10px 16px;
    color: #f8fafc;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.newsletter-form button {
    background: #00d1b2;
    color: #0f172a;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-form button:hover {
    background: #00bfa5;
    transform: scale(1.02);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #94a3b8;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
    }
}
