/* Kurumsal Ana Sayfa Stilleri */
.feature-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,123,255,0.15);
}

.feature-icon {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.about-content {
    padding-right: 2rem;
}

.service-highlights {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #007bff;
}

.service-item {
    font-size: 0.95rem;
    color: #495057;
}

.service-item i {
    font-size: 1.1rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,123,255,0.3);
}

.experience-badge h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.experience-badge p {
    font-size: 0.75rem;
    margin: 0;
    font-weight: 500;
}

/* İstatistik Kartları */
.stats-card {
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    margin: 0.5rem 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-label {
    color: #6c757d;
    font-weight: 500;
    margin: 0;
}

/* Avantaj Öğeleri */
.advantage-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.advantage-item:hover {
    border-left-color: #007bff;
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(0,123,255,0.1);
}

.advantage-item h5 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.advantage-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.advantage-icon {
    width: 50px;
    flex-shrink: 0;
}

/* Mobil optimizasyon */
@media (max-width: 768px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .service-highlights {
        padding: 1rem;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        top: 15px;
        right: 15px;
    }
    
    .experience-badge h3 {
        font-size: 1.5rem;
    }
    
    .experience-badge p {
        font-size: 0.65rem;
    }
    
    .stats-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .advantage-item {
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .advantage-icon {
        width: 40px;
    }
}

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

.ftco-animate {
    animation: fadeInUp 0.8s ease-out;
}

/* Buton geliştirmeleri */
.btn-lg {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 6px;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.4);
}

/* Müşteri Yorumu Kartları */
.testimony-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.testimony-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.stars i {
    font-size: 1rem;
    margin-right: 2px;
}

.testimony-text {
    font-style: italic;
    line-height: 1.6;
    color: #495057;
    margin: 0;
}

.client-name {
    font-weight: 600;
    color: #2c3e50;
}

.client-company {
    font-size: 0.85rem;
}

.client-avatar img {
    object-fit: cover;
}
