/* ==========================================================================
   ABOUT HERO
   ========================================================================== */
.about-hero {
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://source.unsplash.com/1600x700/?greenhouse,plants,green');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  margin-top: 80px;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(8, 28, 21, 0.7);
}

.about-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--clr-white);
  animation: fadeIn 1s ease both;
}

.about-hero h1 {
  color: var(--clr-white);
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   OUR STORY
   ========================================================================== */
.story-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.story-img-col {
  width: 50%;
  position: relative;
}

.story-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.story-img-wrapper::after {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 4px solid var(--clr-green-deep);
  border-radius: 12px;
  z-index: -1;
  transition: transform 0.5s ease;
}

.story-col.visible .story-img-wrapper::after {
  animation: frameGrow 1s ease both;
}

@keyframes frameGrow {
  0% { transform: translate(-20px, -20px); opacity: 0; }
  100% { transform: translate(0, 0); opacity: 1; }
}

.story-text-col {
  width: 50%;
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.story-text-col p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--clr-text-muted);
}

/* ==========================================================================
   MISSION & VALUES
   ========================================================================== */
.values-section {
  background-color: var(--clr-green-light);
}

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

.value-card {
  background: var(--clr-white);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: perspective(400px) rotateY(90deg);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.value-card.visible {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats-section {
  background-color: var(--clr-green-deep);
  color: var(--clr-white);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-weight: 500;
  opacity: 0.9;
}

/* ==========================================================================
   TEAM
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--clr-white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--clr-border);
  transition: var(--transition-fast);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(45, 106, 79, 0.15);
  border-color: rgba(45, 106, 79, 0.3);
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 3px solid var(--clr-green-light);
}

.team-name {
  font-size: 1.25rem;
  color: var(--clr-green-forest);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--clr-green-deep);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.team-social a {
  color: var(--clr-text-muted);
}

.team-social a:hover {
  color: var(--clr-green-deep);
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline-section {
  background-color: var(--clr-off-white);
}

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

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--clr-green-deep);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  width: calc(50% - 30px);
  background: var(--clr-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.timeline-item.left .timeline-content {
  text-align: right;
}

.timeline-item.right {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: var(--clr-green-deep);
  border: 4px solid var(--clr-off-white);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(45, 106, 79, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(45, 106, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 106, 79, 0); }
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--clr-green-deep);
  margin-bottom: 0.5rem;
}

.timeline-item.left .timeline-content {
  animation: slideInLeft 0.8s ease backwards;
}

.timeline-item.right .timeline-content {
  animation: slideInRight 0.8s ease backwards;
}

.timeline-item.visible .timeline-content {
  animation-play-state: running;
}
.timeline-item .timeline-content {
  animation-play-state: paused;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .story-row { flex-direction: column; }
  .story-img-col, .story-text-col { width: 100%; }
  
  .timeline-container::before { left: 20px; }
  .timeline-item { flex-direction: column; align-items: flex-start; padding-left: 50px; }
  .timeline-item.right { flex-direction: column; }
  .timeline-content { width: 100%; text-align: left !important; }
  .timeline-dot { left: 20px; }
  
  .values-grid, .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
