/* ========================================
   FOOTER STYLES
======================================== */

.footer {
    /* Daha modern ve derin bir arka plan */
    background: #0f141e; 
    background-image: radial-gradient(circle at top left, rgba(217, 70, 239, 0.05), transparent 40%),
                      radial-gradient(circle at bottom right, rgba(123, 192, 67, 0.05), transparent 40%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 0 30px; /* Üst boşluğu artırdık */
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Container Hizalaması için */
.footer .container {
    max-width: 1320px; /* Header ile aynı genişlik */
    margin: 0 auto;
    padding: 0 30px; /* Header padding ile uyumlu */
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto; /* Son sütunu sağa yaslamak için auto yaptık */
    gap: 50px; /* Sütun aralarını açtık */
    margin-bottom: 60px;
}

.footer-col h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Footer Links */
.footer-links,
.contact-links,
.footer-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.contact-links li,
.footer-features li {
    margin-bottom: 14px;
}

.footer-links a,
.contact-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-links a:hover,
.contact-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a i,
.contact-links a i {
    color: var(--primary);
    font-size: 14px;
    width: 20px; /* İkon hizalaması için */
}

.footer-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-features i {
    color: var(--success); /* Yeşil yaptık, daha güven verir */
    font-size: 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 70, 239, 0.3);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin: 0;
}

.footer-payment-methods {
    display: flex;
    align-items: center;
}

.footer-payment-methods .payment-methods-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-payment-methods .payment-methods-logo:hover {
    opacity: 1;
    transform: scale(1.08);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Sol alta aldım, Tawk.to sağda olur genelde */
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========================================
   RESPONSIVE (MOBİL UYUM)
======================================== */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 sütun */
        gap: 40px;
    }
}

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

    .footer-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 40px;
        text-align: center;
    }

    .footer-col h5 {
        justify-content: center;
    }

    .footer-links a,
    .contact-links a,
    .footer-features li {
        justify-content: center;
    }
    
    .footer-links a:hover,
    .contact-links a:hover {
        transform: translateX(0); /* Mobilde kayma efektini kapattım */
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }
}
