/* ===========================================
   FOOTER COMPONENT STYLES
   =========================================== */

.footer {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    color: #1e293b;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    margin-top: var(--spacing-3xl);
    border-top: 1px solid #e2e8f0;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-xl);
}

.footer__brand {
    max-width: 400px;
}

.footer__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: var(--spacing-lg);
}

.footer__logo-image {
    width: 250px;
    height: 63px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.footer__logo:hover .footer__logo-image {
    transform: scale(1.05);
}

.footer__logo .logo__icon {
    font-size: 1.5rem;
    line-height: 1;
}

.footer__logo .logo__text h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.1;
}

.footer__logo .logo__text p {
    font-size: var(--font-size-xs);
    color: #666;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer__description {
    color: #64748b;
    line-height: 1.6;
    font-size: var(--font-size-sm);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.footer__section h4 {
    color: #1e293b;
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
}

.footer__section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__section li {
    margin-bottom: var(--spacing-sm);
}

.footer__section a {
    color: #64748b;
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: var(--font-size-sm);
}

.footer__section a:hover {
    color: #22c55e;
}

.footer__bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: var(--font-size-sm);
}

.footer__social {
    display: flex;
    gap: var(--spacing-md);
}

.social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8fafc;
    color: #64748b;
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: var(--font-size-lg);
}

.social__link:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__logo-image {
        width: 225px;
        height: 57px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-xl) 0;
    }
    
    .footer__content {
        gap: var(--spacing-lg);
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer__logo-image {
        width: 190px;
        height: 48px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .footer__social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer__brand {
        text-align: center;
    }
    
    .footer__logo {
        justify-content: center;
    }
    
    .footer__logo-image {
        width: 150px;
        height: 38px;
    }
}
