/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    padding: 0 1rem;
}

.footer-section p {
    color: #ffffff;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #3498db;
    margin-right: 0.5rem;
}

.footer-logo h5 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #3498db;
}

.social-text {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #ffffff;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.contact-info i {
    margin-right: 0.5rem;
    width: 20px;
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #ffffff;
}

/* Mobile Footer Accordion */
@media (max-width: 768px) {
    .footer-title {
        cursor: pointer;
        position: relative;
    }

    .footer-title::after {
        content: '+';
        position: absolute;
        right: 0;
        font-size: 1.2rem;
        font-weight: bold;
    }

    .footer-title.active::after {
        content: '-';
    }

    .footer-links,
    .social-icons,
    .contact-info {
        display: none;
    }

    .footer-links.show,
    .social-icons.show,
    .contact-info.show {
        display: block;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
