/* Footer Styles */

.footer {
    background: #fff;
    color: #e5e7eb;
    margin-top: 5rem;
    padding: 0.5rem 0 0;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
    text-align: left;
}

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

.footer-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-start;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #3f94e91a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f242e;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #408AE8;
    color: white;
    transform: translateY(-3px);
}

/* Footer Title */
.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f242e;
    text-align: left;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #676f7e;
    font-weight: 400;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.footer-link:hover {
    color: #408AE8;
    font-weight: 500;
}

.footer-text {
    color: #676f7e;
    font-size: 0.875rem;
}

.footer-text:hover{
    color: #408AE8;
    font-weight: 500;
}

/* Contact Items */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.contact-item a {
    color: #9ca3af !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #408AE8 !important;
}

.contact-item:hover a {
    color: #408AE8 !important;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #676f7e;
    transition: color 0.3s ease;
}

.contact-item:hover svg {
    color: #408AE8 !important;
}

/* Contact Items Compact */
.footer-contact-compact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item-compact {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #676f7e;
    transition: color 0.3s ease;
}

.contact-item-compact a {
    color: #676f7e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-compact span {
    color: #676f7e;
    transition: color 0.3s ease;
}

.contact-item-compact:hover {
    color: #408AE8;
}

.contact-item-compact:hover a {
    color: #408AE8;
}

.contact-item-compact:hover span {
    color: #408AE8;
}

.contact-item-compact svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #676f7e;
    transition: color 0.3s ease;
}

.contact-item-compact:hover svg {
    color: #408AE8;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
}

.copyright {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

/* Responsive */
@media (min-width: 1024px) {
    .footer-logo {
        max-width: 200px;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 1rem 0 0;
        margin-top: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-column:first-child {
        text-align: left;
        align-items: flex-start;
    }

    .footer-description {
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }
}

/* Print */
@media print {
    .footer {
        display: none !important;
    }
}
