/* Hakkımızda Sayfası - Modern Kurumsal Tasarım */

.about-us-page {
  background-color: #f8f9fa;
}

/* Breadcrumb Section */
.about-breadcrumb-section {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
}

.about-breadcrumb-section .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.about-breadcrumb-section .breadcrumb-item a {
  color: #6c757d;
  text-decoration: none;
}

.about-breadcrumb-section .breadcrumb-item a:hover {
  color: #495057;
}

.about-breadcrumb-section .breadcrumb-item.active {
  color: #212529;
}

/* Hero Section */
.about-hero-section {
  padding: 60px 0;
  background: #fff;
}

.about-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #495057;
}

.about-description p {
  margin-bottom: 1.5rem;
}

.hero-stats {
  margin-top: 2rem;
}

.stat-box {
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  min-width: 120px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: #6c757d;
}

.about-hero-image {
  position: relative;
}

.about-hero-image img {
  transition: transform 0.3s ease;
}

.about-hero-image:hover img {
  transform: scale(1.02);
}

.about-badge {
  animation: float 3s ease-in-out infinite;
}

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

/* Features Section */
.about-features-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.feature-card {
  transition: all 0.3s ease;
  border: 1px solid #dee2e6;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
  border-color: #667eea;
}

.feature-icon {
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #212529;
}

.feature-card p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
}

/* Values Section */
.about-values-section {
  padding: 60px 0;
  background: #fff;
}

.value-card {
  transition: all 0.3s ease;
  border: 1px solid #dee2e6;
}

.value-card:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-color: #667eea;
}

.value-icon {
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #212529;
}

.value-card p {
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.6;
}

/* CTA Section */
.about-cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 0;
}

.about-cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.about-cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
}

.cta-buttons .btn-light {
  background: #fff;
  color: #667eea;
  border: none;
  font-weight: 500;
}

.cta-buttons .btn-light:hover {
  background: #f8f9fa;
  color: #5568d3;
}

.cta-buttons .btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 500;
}

.cta-buttons .btn-outline-light:hover {
  background: #fff;
  color: #667eea;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero-section {
    padding: 40px 0;
  }

  .about-hero-content h1 {
    font-size: 2rem;
  }

  .about-description {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-box {
    width: 100%;
    text-align: center;
  }

  .about-features-section,
  .about-values-section,
  .about-cta-section {
    padding: 40px 0;
  }

  .about-cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .about-badge {
    position: relative !important;
    margin: 1rem 0 !important;
  }
}

@media (max-width: 576px) {
  .about-hero-content h1 {
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}
