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

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

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

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

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

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

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

/* Filtre Butonları */
.tam-services-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tam-filter-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-size: 15px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.tam-filter-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #F18A3A;
    transition: width 0.3s ease;
}

.tam-filter-btn:hover, 
.tam-filter-btn.active {
    color: #F18A3A;
}

.tam-filter-btn:hover:after, 
.tam-filter-btn.active:after {
    width: 70%;
}

/* Hizmet Kartları Grid */
.tam-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    grid-gap: 25px;
    margin-bottom: 50px;
}

/* Hizmet Kartı */
.tam-service-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    padding: 25px;
    border: 1px solid #f0f0f0;
}

.tam-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.tam-service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: #F18A3A;
    transition: height 0.3s ease;
}

.tam-service-card:hover:before {
    height: 100%;
}

/* İkon Stili */
.tam-service-icon {
    margin-bottom: 18px;
    width: 65px;
    height: 65px;
    background-color: rgba(241, 138, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F18A3A;
    font-size: 26px;
    transition: all 0.3s ease;
}

.tam-service-card:hover .tam-service-icon {
    transform: scale(1.1);
    background-color: rgba(241, 138, 58, 0.2);
}

/* İçerik Stili */
.tam-service-content {
    flex: 1;
}

.tam-service-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    transition: color 0.3s ease;
}

.tam-service-card:hover .tam-service-content h3 {
    color: #F18A3A;
}

.tam-service-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 18px;
}

/* Özellikler Listesi */
.tam-service-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.tam-service-features span {
    margin-right: 15px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
}

.tam-service-features i {
    color: #F18A3A;
    margin-right: 5px;
    font-size: 14px;
}

/* Bağlantı Stili */
.tam-service-link {
    color: #F18A3A;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.tam-service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.tam-service-link:hover {
    color: #e07928;
}

.tam-service-link:hover i {
    transform: translateX(5px);
}

/* CTA Bölümü */
.tam-services-cta {
    text-align: center;
    margin-top: 20px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.tam-services-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

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

/* Filtre Animasyonları */
.tam-service-card.hidden {
    display: none;
}

.tam-service-card.visible {
    animation: fadeIn 0.5s ease forwards;
}

/* Responsive Düzenlemeler */
@media (max-width: 1024px) {
    .tam-services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .tam-services-section {
        padding: 70px 0;
    }
    
    .tam-services-header h2 {
        font-size: 30px;
    }
    
    .tam-filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .tam-services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 20px;
    }
    
    .tam-service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .tam-service-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .tam-services-section {
        padding: 50px 0;
    }
    
    .tam-services-grid {
        grid-template-columns: 1fr;
    }
    
    .tam-service-card {
        padding: 20px;
    }
    
    .tam-services-cta {
        padding: 30px 20px;
    }
} 