﻿/* ===================================================================
   MODERN CREATIVE FOOTER - PROFESSIONAL & EYE-CATCHING
   =================================================================== */

/* Footer Background Pattern */
.landing-footer-modern {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: var(--white);
    padding: 0 0 40px;
    overflow: hidden;
}

/* Animated Background Texture */
.landing-footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255, 255, 255, 0.02) 50px, rgba(255, 255, 255, 0.02) 52px);
    z-index: 0;
    pointer-events: none;
}

.landing-footer-modern > .container {
    position: relative;
    z-index: 1;
    padding-top: 60px;
}

/* Footer Brand Section - Enhanced */
.footer-brand-section {
    position: relative;
}

.footer-brand-name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* Social Links - Creative Design */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px);
    border-color: #3b82f6;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.social-link:hover::before {
    opacity: 1;
}

/* Footer Section Titles - Enhanced */
.footer-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

/* Footer Links - Modern Style */
.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-modern li {
    margin-bottom: 0.75rem;
}

.footer-links-modern a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links-modern a i {
    color: #3b82f6;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.footer-links-modern a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-links-modern a:hover i {
    transform: translateX(4px);
}

/* Footer Contact Items - Creative Design */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateX(4px);
}

.contact-icon-modern {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-modern i {
    color: var(--white);
    font-size: 16px;
}

.contact-text-modern small {
    display: block;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-text-modern p {
    margin: 0;
    font-size: 14px;
    color: #cbd5e1;
    font-weight: 500;
}

/* App Download Button - Premium Style */
.app-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.app-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: var(--white);
}

.app-download-btn i {
    font-size: 24px;
}

.app-download-btn small {
    display: block;
    font-size: 10px;
    opacity: 0.9;
}

.app-download-btn strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

/* Footer Divider - Elegant */
.footer-divider-modern {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.3), transparent);
    margin: 3rem 0 2rem;
}

/* Footer Copyright - Modern */
.footer-copyright-modern,
.footer-managed-modern {
    margin: 0.5rem 0;
    font-size: 14px;
    color: #64748b;
}

.footer-copyright-modern a,
.footer-managed-modern a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-copyright-modern a:hover,
.footer-managed-modern a:hover {
    color: #60a5fa;
}

/* Footer Legal Links - Clean */
.footer-legal-links {
    margin-top: 0.5rem;
}

.footer-legal-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #94a3b8;
}

.footer-legal-links span {
    color: #475569;
}

/* Footer Wave - Enhanced */
.footer-wave {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: rotate(360deg);
    color: #f8fafc;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-brand-name {
        font-size: 28px;
    }
    
    .footer-contact-item {
        padding: 0.75rem;
    }
}

@media (max-width: 767px) {
    .footer-brand-name {
        font-size: 24px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .landing-footer-modern > .container {
        padding-top: 40px;
    }
}
