/**
 * Footer Styles
 *
 * @package Vebi
 */

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
    background: var(--gray-900);
    color: white;
    margin-top: 64px;
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, #1a4b8c 0%, #0f172a 100%);
    padding: 48px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.newsletter-text h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
    color: white;
}

.newsletter-text p {
    margin: 0;
    color: #94a3b8;
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 15px;
    width: 280px;
    transition: all 0.2s;
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    padding: 14px 28px;
    background: white;
    border: none;
    border-radius: 10px;
    color: var(--vebi-blue);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Footer Main */
.footer-main {
    padding: 64px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

/* Footer Brand */
.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.footer-description {
    color: var(--gray-400);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 14px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-contact-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    transition: color var(--transition-fast);
}

.footer-contact-link:hover {
    color: #60a5fa;
}

.footer-address {
    color: var(--gray-400);
}

/* Social Media */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--vebi-blue);
    transform: translateY(-2px);
}

/* Footer Columns */
.footer-column-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

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

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-menu a:hover {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 24px 0;
}

.footer-bottom-inner {
    text-align: center;
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 13px;
    margin: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 400px;
    }
    
    .newsletter-form input {
        flex: 1;
        width: auto;
    }
}

@media (max-width: 768px) {
    .site-footer {
        margin-top: 48px;
    }
    
    .footer-newsletter {
        padding: 36px 0;
    }
    
    .newsletter-text h3 {
        font-size: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .footer-main {
        padding: 48px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-column {
        text-align: center;
    }
}
