/* ===== About Section ===== */

.section {
  padding: 8rem 0;
  position: relative;
  background: var(--bg-secondary);
}

.section:nth-child(even) {
  background: var(--bg-primary);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.professional-badge-section {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 1.5rem 0;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.profile-container {
  position: relative;
  border-radius: 10px;
  height: 35rem;
  overflow: hidden;
  background: var(--gradient-card);
  padding: 2rem;
}

.profile-image {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--gradient-card);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0px 10px var(--shadow-accent);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (min-width: 1400px) {
  .section-title {
    font-size: 4rem;
  }
}

@media (max-width: 1200px) {
  .about-content {
    gap: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 6rem 0;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-image {
    display: flex;
    justify-content: center;
  }

  .profile-container {
    max-width: 400px;
    width: 100%;
  }

  .about-text {
    align-items: center;
    text-align: center;
  }

  .about-description {
    max-width: 600px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

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

  .about-stats {
    gap: 1rem;
  }

  .stat-item {
    padding: 1.2rem;
  }

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

@media (max-width: 480px) {
  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .professional-badge-section {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .profile-container {
    padding: 1rem;
    height: 25rem;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .about-stats .stat-item:nth-child(3) {
    grid-column: span 2;
  }

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

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

  .stat-label {
    font-size: 0.8rem;
  }
}
