
/* --- Footer Styles (add to testing.css or Footer.css) --- */

.site-footer {
    background-color: #2c3e50; 
    color: #dae1e6;
    padding: 60px 20px 30px; 
    font-family: 'Mulish', sans-serif;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1); 
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    gap: 30px; 
}

.footer-section {
    flex: 1; 
    min-width: 200px; 
    margin-bottom: 20px; 
}

.footer-section h3 {
    color: #007bff; 
    font-size: 1.3em;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative; 
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px; 
    width: 50px; 
    height: 3px;
    background-color: #007bff; 
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: #dae1e6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95em;
}

.footer-section ul li a:hover {
    color: #007bff; 
}

/* Footer Logo Section */
.footer-logo img {
    max-width: 200px; 
    height: auto;
    margin-bottom: 15px;
    margin-top: 25px;
}

.footer-logo .tagline {
    font-size: 1em;
    color: #dae1e6;
    line-height: 1.5;
}

/* Footer Contact Section */
.footer-contact p {
    font-size: 0.95em;
    margin-bottom: 15px;
    color: #dae1e6;
    display: flex;
    align-items: center;
    gap: 10px; 
}

.footer-contact p i {
    color: #007bff; 
    font-size: 1.1em;
}

.footer-contact p a {
    color: #dae1e6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact p a:hover {
    color: #007bff;
}

.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px; 
}

.social-links a {
    color: #dae1e6;
    font-size: 1.8em; 
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: #007bff; 
    transform: translateY(-3px);
}

/* Footer Bottom Section */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.473); 
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    font-size: 0.9em;
    color: #dae1e6;
}

.footer-bottom p {
    color: #dae1e6;
}


/* --- Responsive Adjustments for Footer --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; 
        align-items: center; 
        text-align: center;
    }

    .footer-section {
        min-width: unset; 
        width: 100%; 
        margin-bottom: 30px;
    }

    .footer-section h3::after {
        left: 50%; 
        transform: translateX(-50%);
    }

    .footer-contact p {
        justify-content: center; 
    }

    .social-links {
        justify-content: center;
    }

    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 15px 20px;
    }
}
