/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* Page Header */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.page-header .lead {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 0;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1.5rem;
}

.breadcrumb-item a {
  color: var(--primary);
}

.breadcrumb-item.active {
  color: var(--gray);
}

/* About Intro */
.about-intro-image {
  position: relative;
}

.about-intro-image::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  border-radius: var(--border-radius-lg);
  z-index: -1;
  opacity: 0.1;
}

/* Vision & Mission Cards */
.vision-mission-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--box-shadow);
  height: 100%;
  border: 1px solid var(--gray-light);
}

.vision-mission-card .card-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 102, 0, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.vision-mission-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

/* Value Cards */
.value-card {
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.value-card h4 {
  margin-bottom: 1rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 80px;
}

.timeline-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.timeline-content {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--gray-light);
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

/* Team Cards */
.team-card {
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--gray-light);
  border-radius: 50%;
  overflow: hidden;
}

.team-card h4 {
  margin-bottom: 0.5rem;
}

.team-position {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--gray);
  font-size: 0.9rem;
}

/* FAQ Accordion */
.accordion-button {
  font-weight: 500;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(255, 102, 0, 0.1);
  color: var(--primary);
  border-color: var(--primary);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.25);
  border-color: var(--primary);
}

.accordion-body {
  padding: 1.5rem;
  line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 767.98px) {
  .page-header {
    padding: 120px 0 40px;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline-year {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
  
  .vision-mission-card {
    padding: 2rem 1.5rem;
  }
}