/* Page Hero */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-xxl)) 0 var(--space-xl);
  text-align: center;
  color: #FFFFFF;
  background: url('https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 30, 92, 0.9), rgba(46, 155, 63, 0.8)); /* Deep Navy to Green */
  z-index: 1;
}

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

.breadcrumb {
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: #FFFFFF;
}

.breadcrumb span {
  margin: 0 5px;
  color: rgba(255, 255, 255, 0.5);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0;
  color: #FFFFFF;
}

/* Core Values (Mission, Vision, Values) */
.core-values {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding-bottom: var(--space-xl);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.value-card {
  text-align: center;
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(46, 155, 63, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--color-success);
}

.value-icon svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.value-card:nth-child(2) .value-icon {
  background-color: rgba(61, 189, 228, 0.1);
  color: var(--color-primary);
}

.value-card:nth-child(3) .value-icon {
  background-color: rgba(245, 130, 10, 0.1);
  color: var(--color-cta);
}

/* Timeline */
.timeline-section {
  background-color: var(--color-card-bg);
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

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

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
  width: 50%;
  padding-right: var(--space-xl);
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-right: 0;
  padding-left: var(--space-xl);
}

.timeline-dot {
  position: absolute;
  top: 0;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-cta);
  border: 4px solid #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(even) .timeline-dot {
  right: auto;
  left: -10px;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.timeline-content {
  background-color: var(--color-bg);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 15px;
  right: -10px;
  border-width: 10px 0 10px 10px;
  border-style: solid;
  border-color: transparent transparent transparent var(--color-bg);
}

.timeline-item:nth-child(even) .timeline-content::before {
  right: auto;
  left: -10px;
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--color-bg) transparent transparent;
}

/* Team Section */
.team-section {
  background-color: var(--color-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.team-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 30, 92, 0.85); /* Deep Navy */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-md);
  color: #FFFFFF;
  opacity: 0;
  transition: opacity var(--transition-normal);
  text-align: center;
}

.team-card:hover .team-image {
  transform: scale(1.05);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-bio {
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.9);
}

.team-social {
  display: flex;
  gap: 10px;
}

.team-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: background-color var(--transition-fast);
}

.team-social a:hover {
  background-color: var(--color-primary);
}

.team-info {
  padding: var(--space-md);
  text-align: center;
  border-top: 2px solid var(--color-border);
}

.team-info h4 {
  margin-bottom: 5px;
  color: var(--color-dark);
}

.team-role {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Awards Strip */
.awards-section {
  padding: var(--space-lg) 0;
  background-color: #FFFFFF;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.awards-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.award-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: var(--color-bg);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-dark);
}

.award-icon {
  width: 24px;
  height: 24px;
  fill: var(--color-cta);
}

/* Responsive */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(even) {
    margin-left: 0;
    padding-left: 50px;
  }
  
  .timeline-dot {
    left: 10px !important;
  }
  
  .timeline-content::before {
    left: -10px !important;
    right: auto;
    border-width: 10px 10px 10px 0 !important;
    border-color: transparent var(--color-bg) transparent transparent !important;
  }
  
  .awards-strip {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
