/* Footer Section */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(37, 99, 235, 0.3);
    padding-bottom: 0.5rem;
}

/* Brand Section */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 60px;
    height: 40px;
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-company-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.footer-tagline {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 2px;
}

/* Contact Section */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: #3b82f6;
    transform: translateX(4px);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #3b82f6;
    transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(203, 213, 225, 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.footer-badge svg {
    width: 16px;
    height: 16px;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo-icon {
        width: 80px;
        height: 50px;
    }
    
    .footer-company-name {
        font-size: 1.3rem;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .footer-contact-items {
        align-items: center;
        gap: 0.75rem;
    }
    
    .footer-contact-item {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .footer-links {
        align-items: center;
        gap: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .footer-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Tablet Footer */
@media (min-width: 769px) and (max-width: 1200px) {
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
} 