/* Ekibimiz Sayfası Stilleri */

/* Genel Ayarlar */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sayfa Başlığı */
.page-header {
    padding: 60px 0 40px;
    background: #f9fafb;
    margin-top: 180px; /* Header yüksekliği kadar boşluk */
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #002290;
    margin: 0;
}

/* Takım Değerleri */
.team-values {
    padding: 80px 0;
    background: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #f9fafb;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #002290, #0053a6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #002290, #0053a6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Birlikte Çalışma */
.team-collaboration {
    padding: 80px 0;
    background: white;
}

.collab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.collab-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.collab-text p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: linear-gradient(135deg, #002290, #0053a6);
    transform: scale(1.05);
}

.stat-item:hover h3,
.stat-item:hover p {
    color: white;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #002290;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.stat-item p {
    color: #6b7280;
    font-size: 16px;
    transition: color 0.3s ease;
}

.collab-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.collab-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.collab-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .page-header {
        margin-top: 100px; /* Mobilde header daha küçük */
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .collab-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
}

@media (max-width: 480px) {
    .page-header {
        padding: 40px 0 30px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
}
