/* Font Awesome CDN */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.modern-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Üst Bölüm */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Marka Bölümü */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    font-weight: 300;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-link.whatsapp:hover {
    background: #25D366;
    color: #ffffff;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
}

.social-link.email:hover {
    background: #ea4335;
    color: #ffffff;
}

.social-link.phone:hover {
    background: #34a853;
    color: #ffffff;
}

/* Link Bölümleri */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-title {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.link-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, transparent);
}

.link-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-link::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-link:hover::before {
    transform: scale(1.2);
}

/* İletişim Bilgileri */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cccccc;
    font-size: 0.95rem;
    font-weight: 300;
}

.contact-item i {
    width: 16px;
    color: #ffffff;
    font-size: 0.9rem;
}

.contact-item a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
}

/* Alt Bölüm */
.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    font-size: 0.9rem;
    color: #999;
    font-weight: 300;
}

.footer-extra {
    display: flex;
    gap: 25px;
}

.extra-link {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    transition: color 0.3s ease;
    position: relative;
}

.extra-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.extra-link:hover {
    color: #ffffff;
}

.extra-link:hover::after {
    width: 100%;
}











/* Copyright link styling */
.copyright a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 5px;
    border-radius: 3px;
}

.copyright a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 0.3s ease;
}

.copyright a:hover {
    color: #cccccc;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.copyright a:hover::after {
    width: 100%;
}

/* Instagram gradient efekti */
.copyright a[href*="instagram.com"] {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.copyright a[href*="instagram.com"]:hover {
    background: linear-gradient(45deg, #ffad5c, #ff8c5c, #ff476c, #ff3c8b, #ff2ca8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Animasyon */
.copyright a {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}








/* Animasyonlar */
.footer-link,
.social-link,
.extra-link {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.footer-link:nth-child(1) { animation-delay: 0.1s; }
.footer-link:nth-child(2) { animation-delay: 0.2s; }
.footer-link:nth-child(3) { animation-delay: 0.3s; }
.footer-link:nth-child(4) { animation-delay: 0.4s; }
.footer-link:nth-child(5) { animation-delay: 0.5s; }

.social-link:nth-child(1) { animation-delay: 0.1s; }
.social-link:nth-child(2) { animation-delay: 0.2s; }
.social-link:nth-child(3) { animation-delay: 0.3s; }
.social-link:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-extra {
        gap: 20px;
    }
    
    .footer-description {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-top {
        padding: 50px 0 30px;
        gap: 30px;
    }
    
    .footer-brand {
        gap: 20px;
    }
    
    .footer-logo {
        width: 70px;
        height: 70px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .link-group {
        gap: 15px;
    }
    
    
}