﻿/* Adjust the rest for contrast */
:root {
    --fb-primary: #a5b7c3; /* matches the wave */
    --accent-color: #1877F2; /* #ff6b00 Maybe orange is better? */
    --text-dark: #2c3e50; /* darker text */
}
/* Footer */
.footer {
    background: linear-gradient(135deg, #b7c9d3, #dfe6ec); /* soft light blue-gray gradient */
    color: #2c3e50; /* dark blue-gray text for contrast */
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

    .footer-wave svg {
        display: block;
        width: calc(100% + 1.3px);
        height: 80px;
    }

    /* Waves - make them slightly darker to stand out */
    .footer-wave .shape-fill {
        fill: #a5b7c3; /* medium-light steel blue-gray */
    }

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-logo {
    transition: transform 0.3s ease;
}

/* Titles */
.footer-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--accent-color);
        border-radius: 3px;
    }

/* Links */
.footer-links {
    list-style: none;
    padding-left: 0;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        display: block;
        transition: padding-left 0.3s ease;
        font-size:1rem;
    }

        .footer-links a:hover {
            color: var(--text-dark);
            padding-left: 8px;
        }

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background: var(--accent-color);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

/* Newsletter Form */
.btn-infoserv {
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

    .btn-infoserv:hover {
        transform: translateY(-3px);
        background: #ff5500;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

/* Copyright */
.copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

    .copyright a {
        color: var(--text-dark);
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .copyright a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }


/* Responsive */
@media (max-width: 992px) {
    .footer-title::after {
        width: 40px;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-wave svg {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 50px;
    }

    .footer-wave svg {
        height: 50px;
    }

    .footer-title {
        margin-bottom: 1rem;
    }
}


/* Make sure your social icons and links contrast correctly */
.footer-links a,
.social-icon,
.copyright a {
    color: var(--text-dark);
}

    .footer-links a:hover,
    .social-icon:hover,
    .copyright a:hover {
        color: var(--accent-color);
    }