/* Footer */
.main-footer {
    background-color: #1a1a2e;
    padding: 2.5rem 2rem 2rem;
    color: var(--text-white);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-company-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.footer-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-email {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--text-hover);
}

.footer-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.footer-column-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--text-active);
}

.footer-text {
    font-size: 0.95rem;
    color: var(--text-white);
    line-height: 1.6;
}

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

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

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-hover);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #666;
    margin-bottom: 1rem;
}

.footer-copyright {
    text-align: center;
    margin: 1rem 0 0 0;
}

.footer-copyright p {
    font-size: 0.875rem;
    color: var(--text-white);
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-header-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-column-title {
        font-size: 1rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}


