/* =====================================================
   CLION - About Page Styles
   ===================================================== */

/* =====================================================
   PAGE HEADER
   ===================================================== */

.page-header {
  background: linear-gradient(135deg, #F9FAFB 0%, #E5E7EB 100%);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233, 32, 32, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--spacing-sm);
  font-size: 0.95rem;
  color: var(--mid-grey);
}

.page-breadcrumb a {
  color: var(--primary-red);
}

.page-breadcrumb span {
  color: var(--mid-grey);
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--near-black);
  margin-bottom: var(--spacing-sm);
}

.page-description {
  font-size: 1.25rem;
  color: var(--dark-grey);
  line-height: 1.6;
}

/* =====================================================
   ABOUT STORY SECTION
   ===================================================== */

.about-story {
  padding: var(--spacing-xl) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--neu-shadow);
}

.story-content h2 {
  margin-bottom: var(--spacing-md);
}

.story-content p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
}

.story-highlight {
  background: var(--off-white);
  border-left: 4px solid var(--primary-red);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin: var(--spacing-md) 0;
  box-shadow: var(--neu-shadow-sm);
}

.story-highlight p {
  font-size: 1.125rem;
  color: var(--dark-grey);
  font-style: italic;
  margin: 0;
}

/* =====================================================
   MISSION & VISION SECTION
   ===================================================== */

.mission-vision {
  padding: var(--spacing-xl) 0;
  background: var(--white);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.mv-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--neu-shadow);
  text-align: center;
  transition: var(--transition-normal);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.2), 
              -12px -12px 24px rgba(255, 255, 255, 0.8);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  box-shadow: var(--neu-shadow-sm);
  color: var(--primary-red);
  font-size: 2.5rem;
}

.mv-card h3 {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-sm);
  color: var(--near-black);
}

.mv-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark-grey);
}

/* =====================================================
   VALUES SECTION
   ===================================================== */

.values {
  padding: var(--spacing-xl) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.value-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--neu-shadow-sm);
  transition: var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--neu-shadow);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--neu-shadow-sm);
  color: var(--primary-red);
  font-size: 2rem;
}

.value-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--near-black);
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--mid-grey);
}

/* =====================================================
   JOURNEY/TIMELINE SECTION
   ===================================================== */

.journey {
  padding: var(--spacing-xl) 0;
  background: var(--white);
}

.timeline {
  max-width: 900px;
  margin: var(--spacing-lg) auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light-grey);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  align-items: center;
}

.timeline-content {
  background: var(--off-white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--neu-shadow-sm);
  transition: var(--transition-normal);
}

.timeline-content:hover {
  box-shadow: var(--neu-shadow);
  transform: translateY(-2px);
}

.timeline-year {
  width: 80px;
  height: 80px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: var(--glow-red);
  position: relative;
  z-index: 2;
}

.timeline-item:nth-child(even) .timeline-content:first-child {
  order: 3;
}

.timeline-item:nth-child(even) .timeline-year {
  order: 2;
}

.timeline-item:nth-child(even) .timeline-content:last-child {
  order: 1;
}

.timeline-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--near-black);
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--mid-grey);
  line-height: 1.7;
}

/* =====================================================
   CERTIFICATIONS SECTION
   ===================================================== */

.certifications {
  padding: var(--spacing-xl) 0;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.cert-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--neu-shadow-sm);
  text-align: center;
  transition: var(--transition-normal);
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--neu-shadow);
}

.cert-badge {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  box-shadow: var(--neu-shadow-sm);
}

.cert-badge img {
  width: 60px;
  height: auto;
}

.cert-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--near-black);
}

.cert-card p {
  font-size: 0.9rem;
  color: var(--mid-grey);
}

/* =====================================================
   TEAM DETAIL SECTION
   ===================================================== */

.team-detail {
  padding: var(--spacing-xl) 0;
  background: var(--white);
}

.team-detail-grid {
  display: grid;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.team-detail-member {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: var(--spacing-md);
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--neu-shadow);
  transition: var(--transition-normal);
}

.team-detail-member:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 28px rgba(0, 0, 0, 0.2), 
              -12px -12px 28px rgba(255, 255, 255, 0.8);
}

.team-detail-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.team-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-detail-info {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-detail-name {
  font-size: 2rem;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 0.5rem;
}

.team-detail-role {
  color: var(--primary-red);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.team-detail-qualifications {
  background: var(--white);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--neu-shadow-sm);
}

.team-detail-qualifications h5 {
  font-size: 1rem;
  color: var(--near-black);
  margin-bottom: 0.5rem;
}

.team-detail-qualifications ul {
  list-style: none;
  padding-left: 0;
}

.team-detail-qualifications li {
  color: var(--mid-grey);
  padding: 0.25rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.team-detail-qualifications li::before {
  content: '✓';
  color: var(--primary-red);
  font-weight: bold;
}

.team-detail-bio {
  color: var(--dark-grey);
  line-height: 1.8;
  font-size: 1rem;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 1024px) {
  .story-grid,
  .mv-grid {
    grid-template-columns: 1fr;
  }
  
  .team-detail-member {
    grid-template-columns: 1fr;
  }
  
  .team-detail-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .timeline::before {
    left: 40px;
  }
  
  .timeline-item {
    grid-template-columns: 80px 1fr;
    gap: var(--spacing-sm);
  }
  
  .timeline-item:nth-child(even) .timeline-content:first-child,
  .timeline-item:nth-child(even) .timeline-content:last-child {
    order: initial;
  }
  
  .timeline-content:empty {
    display: none;
  }
  
  .values-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .timeline-year {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    grid-template-columns: 60px 1fr;
  }
}