/* Footer Styles - Updated Sept 9 2025 */
.footer {
    background: #333;
    padding: calc(4rem + 10px) 2rem 2rem;
    padding-bottom: 50px;
    text-align: center;
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    padding-bottom: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 2rem;
    height: 132px;
}

.footer-logo img {
    height: 100%;
    width: auto;
}

.footer-logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: calc(2rem + 15px);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-nav a.active {
    color: #ff4757 !important;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: calc(1rem + 5px);
    margin-bottom: 2rem;
}

.social-icon {
    width: 40.5px;
    height: 40.5px;
    display: block;
    position: relative;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s;
}

.social-icon .social-icon-hover {
    opacity: 0;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon:hover .social-icon-default {
    opacity: 0;
}

.social-icon:hover .social-icon-hover {
    opacity: 1;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.footer-contact strong {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: bold;
}

.footer .footer-contact strong {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: bold;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover,
.footer-contact a:active {
    color: #ff6b7a;
}

.footer-bottom {
    border-top: 1px solid #ff4757;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    line-height: 1.5;
}

.footer-bottom a {
    color: #ff4757 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ff6b7a !important;
    text-decoration: underline;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}