/* Footer Custom Styles */

/* Ultra Modern Footer Styles */
.ultra-footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    overflow: hidden;
}

.ultra-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 219, 222, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(252, 70, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.ultra-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #00dbde 25%, 
        #fc466b 50%, 
        #00dbde 75%, 
        transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Ana Footer İçeriği */
.footer-main {
    position: relative;
    padding: 60px 0 40px;
    z-index: 1;
}

/* Marka Bölümü */
.footer-brand-section {
    padding-right: 20px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(1.1);
}

.footer-brand-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00dbde 0%, #fc466b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Sosyal Medya Linkleri */
.social-media-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link.facebook::before { background: linear-gradient(135deg, #1877f2, #0d5dbf); }
.social-link.twitter::before { background: linear-gradient(135deg, #1da1f2, #0c85d0); }
.social-link.instagram::before { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-link.youtube::before { background: linear-gradient(135deg, #ff0000, #cc0000); }

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 1;
}

/* Footer Başlıkları */
.footer-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00dbde, #fc466b);
    border-radius: 2px;
}

/* Footer Menü */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-menu a i {
    font-size: 0.7rem;
    margin-right: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #00dbde;
    padding-left: 10px;
}

.footer-menu a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* İletişim Listesi */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.contact-list li {
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    width: 20px;
    color: #00dbde;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item span,
.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #00dbde;
}

/* WhatsApp Butonu */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.whatsapp-button i {
    font-size: 1.3rem;
}

/* Alt Footer */
.footer-bottom {
    position: relative;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.copyright-text strong {
    color: #fff;
    font-weight: 600;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00dbde, #fc466b);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00dbde;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00dbde, #fc466b);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* YouTube Thumbnail Styles */
.youtube-thumbnail {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.youtube-thumbnail:hover .play-button-circle {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.youtube-thumbnail:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 219, 222, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    transition: all 0.3s ease;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.youtube-thumbnail img {
    transition: transform 0.3s ease;
}

.youtube-thumbnail:hover img {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-main {
        padding: 50px 0 30px;
    }

    .footer-brand-section {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .footer-links-section,
    .footer-contact-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 20px;
    }

    .footer-brand-title {
        font-size: 1.5rem;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .social-media-links {
        justify-content: center;
    }

    .footer-brand-section,
    .footer-links-section,
    .footer-contact-section {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-menu a {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

    .whatsapp-button {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .play-button-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}
