/* ========================================
   About Page Specific Styles
   ======================================== */

.page-content {
  padding-top: 7rem;
  min-height: 100vh;
  background-color: var(--gray-50);
  padding-bottom: 5rem;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 1rem;
}

/* Lawyer Profile Section */
.lawyer-profile-section {
  margin-bottom: 5rem;
}

.profile-card {
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profile-image-container {
  width: 100%;
  position: relative;
}

.profile-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.profile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, var(--navy-900), transparent);
  padding: 1.5rem;
  color: var(--white);
}

.profile-name-mobile {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.profile-role-mobile {
  color: var(--gold-500);
}

.profile-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-header {
  display: none;
  margin-bottom: 1.5rem;
}

.profile-name {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy-900);
}

.profile-role {
  font-size: 1.25rem;
  color: var(--gold-500);
  margin-top: 0.5rem;
}

.bio-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 1rem;
  border-right: 4px solid var(--gold-500);
  padding-right: 1rem;
}

.bio-text {
  color: var(--gray-600);
  line-height: 1.75;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.credential-card {
  background-color: var(--gray-50);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-100);
}

.credential-title {
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}

.credential-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}

/* Mission & Vision Section */
.mission-vision-section {
  margin-bottom: 5rem;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.vision-card,
.mission-card {
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal);
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-0.5rem);
}

.vision-card {
  background-color: var(--navy-900);
  color: var(--white);
}

.mission-card {
  background-color: var(--white);
  color: var(--navy-900);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 1rem;
}

.vision-card .card-text {
  color: var(--gray-300);
  line-height: 1.75;
}

.mission-card .card-text {
  color: var(--gray-600);
  line-height: 1.75;
}

/* Timeline Section */
.timeline-section {
  max-width: 56rem;
  margin: 0 auto;
}

.timeline-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 2.5rem;
}

.timeline {
  border-right: 2px solid rgba(212, 175, 55, 0.3);
  padding-right: 2rem;
  margin-right: 1rem;
  position: relative;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-dot {
  position: absolute;
  right: -2.6rem;
  top: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 4px solid var(--white);
}

.timeline-dot.gold {
  background-color: var(--gold-500);
}

.timeline-dot.navy {
  background-color: var(--navy-900);
}

.timeline-year {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}

.timeline-description {
  color: var(--gray-600);
}

/* ========================================
   Media Queries
   ======================================== */

@media (min-width: 768px) {
  .page-title {
    font-size: 3rem;
  }

  .profile-card {
    flex-direction: row;
  }

  .profile-image-container {
    width: 33.333%;
  }

  .profile-image {
    height: 100%;
    min-height: 400px;
  }

  .profile-overlay {
    display: none;
  }

  .profile-content {
    width: 66.667%;
    padding: 3rem;
  }

  .profile-header {
    display: block;
  }

  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-title {
    font-size: 3.75rem;
  }
}
