/* TAM YAPI - Hakkımızda Bölümü Stilleri */

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

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

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

.tam-about-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tam-about-divider {
    width: 60px;
    height: 3px;
    background-color: #F18A3A;
    margin: 0 auto 15px;
}

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

/* İçerik Alanı */
.tam-about-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: flex-start;
}

.tam-about-image-gallery {
    flex: 0.9;
    min-width: 280px;
    padding: 0 15px;
    margin-bottom: 20px;
    max-height: 550px;
    overflow: hidden;
    padding-top: 85px;
}

.tam-about-main-image {
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 280px;
}

.tam-about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.tam-about-main-image:hover img {
    transform: scale(1.03);
}

.tam-about-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    height: 120px;
}

.tam-about-small-image {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.tam-about-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.tam-about-small-image:hover img {
    transform: scale(1.1);
}

/* Bilgi Alanı */
.tam-about-info {
    flex: 1.1;
    min-width: 300px;
    padding: 0 15px;
    margin-top: 10px;
}

/* Sekme Butonları */
.tam-about-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.tam-about-tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tam-about-tab-btn:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F18A3A;
    transition: width 0.3s ease;
}

.tam-about-tab-btn.active {
    color: #F18A3A;
}

.tam-about-tab-btn.active:after {
    width: 100%;
}

.tam-about-tab-btn:hover {
    color: #F18A3A;
}

/* Sekme İçeriği */
.tam-about-tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tam-about-tab-content.active {
    display: block;
}

.tam-about-tab-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.tam-about-tab-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

/* Sayaç Kutuları */
.tam-about-counter-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tam-about-counter {
    text-align: center;
    flex: 1;
    min-width: 100px;
    padding: 10px;
    margin: 5px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tam-about-counter:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tam-counter-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #F18A3A;
    margin-bottom: 3px;
}

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

/* Değerler Listesi */
.tam-about-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tam-about-values-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.tam-about-value-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(241, 138, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #F18A3A;
    font-size: 18px;
}

.tam-about-value-text h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #333;
}

.tam-about-value-text p {
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
    color: #777;
}

/* CTA Bölümü */
.tam-about-cta {
    text-align: center;
    margin-top: 30px;
}

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

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
    .tam-about-content {
        flex-direction: column;
    }
    
    .tam-about-image-gallery,
    .tam-about-info {
        width: 100%;
    }
    
    .tam-about-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .tam-about-section {
        padding: 50px 0;
    }
    
    .tam-about-header h2 {
        font-size: 28px;
    }
    
    .tam-about-tab-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .tam-about-counter-container {
        justify-content: center;
    }
    
    .tam-about-counter {
        min-width: 110px;
        margin: 8px;
    }
}

/* Vizyonumuz Listesi */
.tam-about-vision-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
}

.tam-about-vision-list li {
    margin-bottom: 25px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.tam-about-vision-list li:before {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 2px;
    color: #F18A3A;
    font-weight: bold;
}

.tam-about-vision-list li strong {
    color: #333;
    font-weight: 600;
}

/* Tarihçe Zaman Çizelgesi */
.tam-about-timeline {
    position: relative;
    margin: 20px 0;
    padding-left: 30px;
}

.tam-about-timeline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 9px;
    width: 2px;
    background-color: #eee;
}

.tam-timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.tam-timeline-year {
    position: absolute;
    left: -30px;
    width: 12px;
    height: 12px;
    background-color: #F18A3A;
    border-radius: 50%;
    z-index: 1;
    font-size: 0;
}

.tam-timeline-year:before {
    content: attr(data-year);
    position: absolute;
    top: -3px;
    left: -70px;
    width: 60px;
    text-align: right;
    color: #F18A3A;
    font-weight: 700;
    font-size: 15px;
}

.tam-timeline-content {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tam-timeline-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tam-timeline-content h4 {
    color: #333;
    font-size: 17px;
    margin: 0 0 8px;
    font-weight: 600;
}

.tam-timeline-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

@media (max-width: 767px) {
    .tam-timeline-year:before {
        display: none;
    }
    
    .tam-timeline-year {
        width: 18px;
        height: 18px;
        font-size: 0;
    }
    
    .tam-timeline-content {
        padding: 12px;
    }
} 