/* Footer Stilleri */
.footer {
    background: linear-gradient(
        45deg,
        var(--background-color),
        #1a1a1a,
        #262626,
        var(--background-color)
    );
    background-size: 400% 400%;
    position: relative;
    animation: footerGradient 15s ease infinite;
    will-change: background-position;
    overflow: hidden;
    padding: 80px 0 30px;
    color: #fff;
}

/* Gradient overlay */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at bottom right,
        rgba(230, 255, 0, 0.1),
        transparent 50%
    );
    pointer-events: none;
    z-index: 1;
}

/* Üst gradient çizgi */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(230, 255, 0, 0.3),
        transparent
    );
}

/* Footer içeriğinin z-index'ini artır */
.footer-top,
.footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-info h3 {
    font-family: 'Poppins', 'Poppins-Fallback', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    will-change: background-position;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-info h3:hover {
    background: linear-gradient(45deg, #FFD700, #FF6B00, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    transform: scale(1.05);
}

.footer-info h3::after {
    content: '';
    position: absolute;
    width: 38px;
    height: 3px;
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    animation: textGradient 3s ease infinite;
    bottom: -2px;
    left: 30%;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-info p {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    will-change: transform, opacity;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.footer-social a i {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    display: inline-block;
}

.footer-social a:hover i {
    transform: translateY(-3px);
    background: linear-gradient(45deg, #FFD700, #FF6B00, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.footer-col h4 {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    will-change: background-position;
    display: inline-block;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-col h4:hover {
    background: linear-gradient(45deg, #FFD700, #FF6B00, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    transform: scale(1.05);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-col ul li a:hover {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    display: inline-block;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.footer-contact li i {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    display: inline-block;
}

.footer-contact i {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    display: inline-block;
}

.footer-contact li:hover i,
.footer-contact i:hover {
    background: linear-gradient(45deg, #FFD700, #FF6B00, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    transform: scale(1.1);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #888;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    display: inline-block;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Responsive düzenleme */
@media screen and (max-width: 992px) {
    .footer {
        background: linear-gradient(
            45deg,
            var(--background-color),
            #1a1a1a,
            var(--background-color)
        );
        background-size: 300% 300%;
    }
}

/* Center footer content on mobile */
@media (max-width: 768px) {
    .footer-top {
        text-align: center;
    }
    
    .footer-info, 
    .footer-links, 
    .footer-services, 
    .footer-newsletter {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }
    
    .footer h3 {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-info p {
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links ul, 
    .footer-services ul {
        align-items: center;
    }
    
    .footer-newsletter form {
        margin: 0 auto;
        max-width: 90%;
    }
    
    .footer-bottom {
        text-align: center;
        flex-direction: column;
    }
    
    .footer-bottom p {
        margin-bottom: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Footer responsive düzenlemeler */
@media (max-width: 768px) {
    .footer-col {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-col h4 {
        margin-bottom: 20px;
    }
    
    .footer-col ul li {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .footer-contact li {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .footer-contact i {
        margin-bottom: 5px;
        font-size: 1.2rem; /* İkonları biraz daha büyüt */
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-info h3 {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-info p {
        margin-left: auto;
        margin-right: auto;
    }
} 