/* Bunları Biliyor Musunuz? - Resimli, Modern Tasarım */
.facts-showcase {
    padding: 120px 0;
    background-color: #f9f9fa;
    position: relative;
    overflow: hidden;
}

.facts-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 5;
}

/* Başlık */
.facts-header {
    text-align: center;
    margin-bottom: 60px;
}

.facts-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.facts-header h2 span {
    color: #e20613;
    position: relative;
}

.facts-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(226, 6, 19, 0.1);
    z-index: -1;
}

.facts-header p {
    font-size: 1.2rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

/* Slider */
.facts-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 30px;
    padding: 20px 5px;
}

.facts-slider::-webkit-scrollbar {
    display: none;
}

/* Kart */
.fact-card {
    min-width: calc(100% - 60px);
    scroll-snap-align: start;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    height: 500px;
}

.fact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(226, 6, 19, 0.15);
}

/* Kart Görsel */
.fact-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.fact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.fact-card:hover .fact-image img {
    transform: scale(1.05);
}

.fact-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e20613, #ff5252);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(226, 6, 19, 0.2);
    z-index: 10;
}

/* Kart İçerik */
.fact-content {
    padding: 40px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.fact-icon {
    position: absolute;
    top: -70px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.fact-icon i {
    color: #e20613;
    font-size: 1.2rem;
}

.fact-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.fact-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
}

/* Dots Navigasyon */
.facts-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.fact-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fact-dot.active {
    width: 30px;
    border-radius: 10px;
    background-color: #e20613;
}

/* Slider Kontrolleri */
.facts-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    transform: translateY(-50%);
    padding: 0 15px;
    pointer-events: none;
}

.facts-prev,
.facts-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: none;
    color: #e20613;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.facts-prev:hover,
.facts-next:hover {
    background-color: #e20613;
    color: white;
    transform: scale(1.1);
}

/* Arka Plan Dekorasyonu */
.facts-decoration-top {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    z-index: 1;
}

.facts-decoration-bottom {
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 500px;
    height: 500px;
    z-index: 1;
}

/* Responsive Düzenlemeler */
@media (min-width: 992px) {
    .fact-card {
        flex-direction: row;
        height: 400px;
    }
    
    .fact-image {
        width: 50%;
        height: 100%;
    }
    
    .fact-content {
        width: 50%;
        padding: 40px;
    }
    
    .fact-badge {
        top: 30px;
        left: 30px;
        bottom: auto;
    }
    
    .fact-icon {
        top: 30px;
        right: 30px;
    }
}

@media (max-width: 768px) {
    .facts-showcase {
        padding: 80px 0;
    }
    
    .facts-header h2 {
        font-size: 2.8rem;
    }
    
    .facts-prev,
    .facts-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .fact-badge {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .fact-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .facts-showcase {
        padding: 60px 0;
    }
    
    .facts-header h2 {
        font-size: 2.2rem;
    }
    
    .facts-header p {
        font-size: 1rem;
    }
    
    .fact-card {
        min-width: 100%;
        height: 450px;
    }
    
    .fact-image {
        height: 200px;
    }
    
    .fact-content {
        padding: 30px 20px 20px;
    }
    
    .fact-content h3 {
        font-size: 1.5rem;
    }
}