/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.footer-content {
    padding: 3rem 0 1.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        padding: 3.5rem 0 1.75rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        padding: 4rem 0 2rem;
    }
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        gap: 3rem;
        margin-bottom: 3rem;
    }
}

.footer-brand {
    max-width: 100%;
}

@media (min-width: 768px) {
    .footer-brand {
        max-width: 400px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-logo {
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .footer-logo {
        margin-bottom: 1.5rem;
    }
}

.footer-logo svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #3b82f6;
}

@media (min-width: 768px) {
    .footer-logo svg {
        width: 2rem;
        height: 2rem;
    }
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .footer-logo-text {
        font-size: 1.5rem;
    }
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .footer-description {
        margin-bottom: 2rem;
        font-size: 1rem;
    }
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.5rem;
    color: #93c5fd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    transform: translateY(-2px);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

@media (min-width: 768px) {
    .footer-title {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .footer-title {
        margin-bottom: 1.5rem;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .footer-links {
        gap: 0.75rem;
    }
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-link {
        font-size: 0.95rem;
    }
}

.footer-link:hover {
    color: #93c5fd;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .footer-contact-info {
        gap: 1rem;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .contact-item {
        font-size: 0.95rem;
    }
}

.contact-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: #3b82f6;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .contact-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.contact-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #93c5fd;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        padding: 1.75rem 0;
        gap: 1rem;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .footer-bottom {
        padding: 2rem 0;
    }
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .footer-copyright {
        font-size: 0.875rem;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-legal {
        gap: 2rem;
        justify-content: flex-end;
    }
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .footer-legal a {
        font-size: 0.875rem;
    }
}

.footer-legal a:hover {
    color: #cbd5e1;
}