/* === FOOTER STYLES === */
.site-footer {
    background: #1a1a1a; /* A slightly softer black */
    color: #a0a0a0;
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-column .footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-social-links a {
    color: #a0a0a0;
    margin-left: 1.5rem;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.footer-social-links a:hover {
    color: #ff6b35; /* ValorVDC Orange/Red */
}

.site-footer-wrapper {
    background: #000; /* Reverted to black background */
    backdrop-filter: none; /* Removed blur effect */
    -webkit-backdrop-filter: none; /* Removed blur effect for Safari */
    border-top: none; /* Removed border */
    box-shadow: none; /* Removed shadow */
    padding: 3rem 0;
    color: #fff; /* Changed text color to white for contrast */
    margin-top: auto; /* Push footer to the bottom */
    position: relative;
    z-index: 10;
    margin-bottom: 0; /* Ensures no extra space at the bottom */
}

.site-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-footer-inner a {
    color: #fff; /* Ensure links are white */
    text-decoration: none;
}

.site-footer-inner a:hover {
    text-decoration: underline;
}

.site-footer-wrapper .logo img {
    filter: brightness(0) invert(1); /* Adjust logo color for black background if needed */
}