/* TAM YAPI - Referanslar Bölümü Stilleri */

.tam-references-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.tam-references-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Stili */
.tam-references-header {
    text-align: center;
    margin-bottom: 60px;
}

.tam-references-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.tam-references-divider {
    width: 80px;
    height: 3px;
    background-color: #F18A3A;
    margin: 0 auto 20px;
}

.tam-references-header p {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

/* Wrapper Stili */
.tam-references-wrapper {
    position: relative;
    padding: 0 50px;
    margin-bottom: 60px;
}

/* Kontrol Butonları */
.tam-references-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.tam-references-prev,
.tam-references-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tam-references-prev:hover,
.tam-references-next:hover {
    background-color: #F18A3A;
    color: #fff;
}

/* Carousel Stili */
.tam-references-carousel {
    overflow: hidden;
    padding: 20px 0;
}

.tam-references-track {
    display: flex;
    transition: transform 0.8s ease;
}

/* Referans Öğeleri */
.tam-reference-item {
    flex: 0 0 33.333%;
    min-width: 33.333%;
    padding: 0 15px;
    transition: all 0.3s ease;
}

/* Logo Kutusu */
.tam-reference-logo {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tam-reference-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tam-reference-logo img {
    max-width: 100%;
    max-height: 120px;
    transition: all 0.3s ease;
}

/* İstatistikler Bölümü */
.tam-references-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tam-stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 15px;
    position: relative;
}

.tam-stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    height: 60%;
    width: 1px;
    background-color: #eee;
}

.tam-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #F18A3A;
    margin-bottom: 5px;
}

.tam-stat-text {
    font-size: 15px;
    color: #777;
    font-weight: 500;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tam-reference-item {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: calc(var(--item-index) * 0.1s);
    opacity: 0;
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .tam-reference-item {
        flex: 0 0 33.333%;
        min-width: 33.333%;
    }
}

@media (max-width: 991px) {
    .tam-reference-item {
        flex: 0 0 33.333%;
        min-width: 33.333%;
    }
    
    .tam-reference-logo {
        height: 180px;
        padding: 30px;
    }
    
    .tam-reference-logo img {
        max-height: 100px;
    }
    
    .tam-references-stats {
        padding: 30px;
    }
    
    .tam-stat-item {
        min-width: 120px;
    }
    
    .tam-stat-number {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .tam-references-section {
        padding: 70px 0;
    }
    
    .tam-references-header h2 {
        font-size: 30px;
    }
    
    .tam-reference-item {
        flex: 0 0 50%;
        min-width: 50%;
    }
    
    .tam-reference-logo {
        height: 160px;
    }
    
    .tam-references-stats {
        flex-wrap: wrap;
    }
    
    .tam-stat-item {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
    
    .tam-stat-item:nth-child(2):after {
        display: none;
    }
    
    .tam-stat-item:nth-child(1):after,
    .tam-stat-item:nth-child(3):after {
        display: none;
    }
}

@media (max-width: 576px) {
    .tam-references-section {
        padding: 50px 0;
    }
    
    .tam-reference-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .tam-references-wrapper {
        padding: 0 30px;
    }
    
    .tam-references-prev,
    .tam-references-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .tam-stat-item {
        flex: 0 0 100%;
    }
    
    .tam-stat-item:after {
        display: none;
    }
} 