/* Footer İstatistikler */
.footer-stats {
    background: linear-gradient(135deg, #0891b2 0%, #10b981 100%);
    padding: 50px 0;
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-item i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Footer Detay Alanı */
.footer-details {
    background: #1e293b;
    padding: 60px 0;
    color: white;
}

.footer-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #10b981;
}

.footer-info {
    line-height: 1.8;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-info-item i {
    color: #10b981;
    font-size: 18px;
    margin-top: 2px;
    min-width: 20px;
}

.footer-info-item strong {
    color: white;
    display: block;
}

/* Çalışma Saatleri */
.working-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

.working-hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.working-hours-item:last-child {
    border-bottom: none;
}

.working-hours-item .day {
    font-weight: 600;
    color: white;
}

.working-hours-item .time {
    color: #10b981;
}

/* Harita */
.footer-map {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-map iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/* Ödeme Yöntemleri */
.footer-payments {
    text-align: center;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 30px;
}

.footer-payments h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 40px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.payment-icons img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: brightness(1);
}

/* Sertifikalar */
.certificates {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.certificate-badge {
    text-align: center;
}

.certificate-badge img {
    height: 80px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.certificate-badge:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.certificate-badge span {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Sosyal Medya Linkleri - Güncellenmiş */
.footer-social {
    margin-top: 25px;
}

.footer-social h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: white;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.social-links a i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-details-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-icons {
        gap: 15px;
    }
    
    .payment-icons img {
        height: 35px;
    }
    
    .certificates {
        gap: 20px;
    }
    
    .certificate-badge img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item i {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}
