/* ================================================================
   DOSYA: MultiSiteManager.Web/wwwroot/css/Toku/footer-neo-glassmorphism.css
   TOKU NEO-GLASSMORPHISM FOOTER - ULTRA MODERN & FUTURISTIC
   Matching corporate-navbar-neo-glassmorphism.css design pattern
   ================================================================ */

/* ================================================================
   FOOTER BASE - TRUE GLASSMORPHISM
   ================================================================ */
.toku-footer {
    position: relative;
    margin-top: 6rem;
    /* True Glassmorphism - Glass Effect */
    background: var(--glass-bg, rgba(10, 14, 39, 0.7));
    backdrop-filter: blur(var(--glass-blur, 30px));
    -webkit-backdrop-filter: blur(var(--glass-blur, 30px));
    border-top: 1px solid var(--glass-border, rgba(0, 217, 255, 0.2));
    /* Glow Border */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 -10px 30px rgba(0, 132, 255, 0.1);
    color: var(--light-text, #e0e0e0);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* FULL-WIDTH CONTAINER */
.footer-container-fullwidth {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ================================================================
   FOOTER MAIN CONTENT
   ================================================================ */
.footer-main {
    padding: 4rem 3rem 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ================================================================
   FOOTER COLUMNS
   ================================================================ */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Company Column */
.company-column {
    max-width: 380px;
}

.footer-logo-section {
    margin-bottom: 1.5rem;
}

.footer-brand-link {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-brand-link:hover {
    transform: translateY(-3px);
}

.footer-logo {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(var(--glow-blue, 0 0 20px rgba(0, 132, 255, 0.6)));
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-logo-toku {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-brand-link:hover .footer-logo {
    filter: drop-shadow(var(--shadow-glow-strong, 0 0 40px rgba(0, 132, 255, 0.5), 0 0 60px rgba(0, 217, 255, 0.3)));
}

.footer-brand-link:hover .footer-logo-toku {
    transform: scale(1.05);
}

.footer-brand {
    display: inline-block;
}

.footer-brand-name {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: var(--gradient-neon, linear-gradient(135deg, #0084ff 0%, #00d9ff 50%, #9d4edd 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 132, 255, 0.3);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 132, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(0, 132, 255, 0.6);
    }
}

.footer-description {
    color: rgba(224, 224, 224, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ================================================================
   FOOTER SOCIAL LINKS
   ================================================================ */
.footer-social {
    margin-top: 1rem;
}

.footer-social-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--neon-cyan, #00d9ff);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--neon-cyan, #00d9ff);
    border-radius: 10px;
    color: var(--neon-cyan, #00d9ff);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--glow-cyan, 0 0 20px rgba(0, 217, 255, 0.6));
    font-size: 18px;
}

.social-link:hover {
    background: rgba(0, 217, 255, 0.2);
    color: var(--bright-white, #ffffff);
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--glow-cyan, rgba(0, 217, 255, 0.6));
}

/* ================================================================
   FOOTER COLUMN TITLES
   ================================================================ */
.footer-column-title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--neon-cyan, #00d9ff);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    font-size: 18px;
    color: var(--neon-blue, #0084ff);
    opacity: 0.9;
}

/* ================================================================
   FOOTER LINKS
   ================================================================ */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    position: relative;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: rgba(224, 224, 224, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.footer-link i {
    font-size: 14px;
    color: var(--neon-blue, #0084ff);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--neon-cyan, #00d9ff);
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--neon-cyan, #00d9ff);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3), inset 0 0 15px rgba(0, 217, 255, 0.1);
    transform: translateX(8px);
    padding-left: 20px;
}

.footer-link:hover i {
    color: var(--neon-cyan, #00d9ff);
    opacity: 1;
    transform: scale(1.2) rotate(6deg);
}

/* ================================================================
   FOOTER CONTACT INFO
   ================================================================ */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(224, 224, 224, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.contact-item i {
    color: var(--neon-cyan, #00d9ff);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(224, 224, 224, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--neon-cyan, #00d9ff);
}

/* ================================================================
   FOOTER CTA BUTTON
   ================================================================ */
.footer-cta {
    margin-top: 1.5rem;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--gradient-neon, linear-gradient(135deg, #0084ff 0%, #00d9ff 50%, #9d4edd 100%));
    color: var(--bright-white, #ffffff);
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-glow-strong, 0 0 40px rgba(0, 132, 255, 0.5));
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.footer-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.footer-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 132, 255, 0.6), 0 0 20px rgba(0, 217, 255, 0.4), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.footer-contact-btn:hover::before {
    left: 100%;
}

.footer-contact-btn i {
    font-size: 16px;
}

/* ================================================================
   İLETİŞİM BİLGİLERİ ROW (COPYRIGHT SEVİYESİNDE)
   ================================================================ */
.footer-contact-row {
    border-top: 1px solid rgba(0, 217, 255, 0.15);
    border-bottom: 1px solid rgba(0, 217, 255, 0.15);
    padding: 2rem 3rem;
    background: rgba(0, 132, 255, 0.03);
}

.footer-contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-contact-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--neon-cyan, #00d9ff);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-items {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
}

.footer-contact-items .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(224, 224, 224, 0.8);
    font-size: 14px;
}

.footer-contact-items .contact-item i {
    color: var(--neon-cyan, #00d9ff);
    font-size: 16px;
    flex-shrink: 0;
}

.footer-contact-items .contact-item a {
    color: rgba(224, 224, 224, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-items .contact-item a:hover {
    color: var(--neon-cyan, #00d9ff);
}

/* ================================================================
   FOOTER BOTTOM
   ================================================================ */
.footer-bottom {
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    padding: 2rem 3rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-copyright p {
    margin: 0;
    color: rgba(224, 224, 224, 0.6);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-legal-link {
    color: rgba(224, 224, 224, 0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal-link:hover {
    color: var(--neon-cyan, #00d9ff);
}

.footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan, #00d9ff);
    transition: width 0.3s ease;
}

.footer-legal-link:hover::after {
    width: 100%;
}

.separator {
    color: rgba(224, 224, 224, 0.3);
    font-size: 12px;
}

/* ================================================================
   RESPONSIVE DESIGN
   ================================================================ */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2.5rem;
    }

    .company-column {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .company-column {
        grid-column: 1 / -1;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .footer-container {
        padding: 0 1rem;
    }

    .footer-main {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-contact-row {
        padding: 1.5rem 1.5rem;
    }

    .footer-contact-items {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .footer-bottom {
        padding: 1.5rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand-name {
        font-size: 26px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }

    .separator {
        display: none;
    }
}

/* ================================================================
   ACCESSIBILITY
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.footer-link:focus,
.footer-legal-link:focus,
.social-link:focus,
.footer-contact-btn:focus {
    outline: 2px solid var(--neon-cyan, #00d9ff);
    outline-offset: 2px;
}
