/* Hakkımızda Sayfası - Laravel: sadece hakkimizda.html'de yükle */

.about-image-wrapper {
  position: relative;
}

.about-main-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-float-card {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.about-float-card .number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-float-card .label {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 500;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.team-card-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
  transform: scale(1.05);
}

.team-card-body {
  padding: 24px;
}

.team-card-body h3 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.team-card-body .role {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card-body p {
  font-size: 0.875rem;
  color: var(--gray);
  margin: 0;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  height: 100%;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.value-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  font-size: 1.75rem;
  box-shadow: var(--shadow-md);
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.timeline-year {
  width: 80px;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  text-align: right;
  padding-top: 4px;
}

.timeline-content {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 23, 42, 0.04);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 20px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.timeline-content h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9375rem;
  color: var(--gray);
  margin: 0;
}

@media (max-width: 767.98px) {
  .about-float-card {
    position: static;
    margin-top: 24px;
  }

  .timeline-item { flex-direction: column; gap: 8px; }
  .timeline-year { text-align: left; }
  .timeline-content::before { display: none; }
}
