.footer-section {
    background-color: #310357; /* Modern dark neutral */
    color: #ccc;
    font-family: "Work Sans", sans-serif;
    font-size: 0.9rem;
    padding: 2rem 1rem;
}

.footer-section-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    border-bottom: 1px solid #2b2b2b;
    padding-bottom: 1.5rem;
}

.footer-widget {
    display: flex;
    flex-direction: column;
}

.footer-widget .logo {
    max-width: 120px;
    margin-bottom: 1rem;
    filter: grayscale(100%) invert(100%);
}

.footer-widget h3 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.footer-widget p {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.widget-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-links li {
    margin-bottom: 0.5rem;
}

.widget-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.widget-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    color: #999;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background-color: #1e1e1e;
    transition: background 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    background-color: #80078b;
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    font-size: 0.75rem;
    color: #777;
    margin-top: 1rem;
    border-top: 1px solid #1f1f1f;
}
.fa-square-full{
    display: none;
}

.footer-widget .submit {
    background: linear-gradient(to right, #80078b, #ae25bb);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Work Sans", sans-serif;
    border: none;
    border-radius: 4px;
    padding: 0.6rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.footer-widget .submit:hover {
    background: linear-gradient(to right, #ae25bb, #80078b);
    transform: translateY(-1px);
}

.footer-widget .submit i {
    font-size: 0.9rem;
}
