/* Footer Styles */
.footer {
    background-color: #f8f9fa; /* Dark white/light gray */
    color: #333;
    padding: 4rem 0 2rem;
    margin-top: auto;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.05);
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Logo Section */
.logo-col {
    max-width: 300px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
}

.company-slogan {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-link {
    color: #444;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #007bff;
}

/* Quick Links */
.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #222;
    font-weight: 600;
}

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

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

.footer-links a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-links .fa-chevron-right {
    font-size: 0.7rem;
    color: #007bff;
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info i {
    margin-top: 3px;
    color: #007bff;
}

.contact-info a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #007bff;
}

/* Newsletter */
.newsletter-text {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #0056b3;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.copyright {
    font-size: 0.9rem;
    color: #666;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logo-col {
        text-align: center;
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-title {
        text-align: center;
    }

    .footer-links {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}
