/* ==========================================
   About Page Specific Styles
   ========================================== */

/* Hero Section */
.about-hero {
  padding: 4rem 0;
}

.about-hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-hero-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}


.story-title {
  font-size: 2.5rem;
  color: #1a3d2b;
  margin-bottom: 1.5rem;
}

.story-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

.story-paragraph:last-child {
  margin-bottom: 0;
}


.story-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Mission & Vision Section */
.mission-vision-section {
  background: #f8f9fa;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.mission-card,
.vision-card {
  text-align: center;
  padding: 3rem 2rem;
}

.mission-icon,
.vision-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #2c7a4b, #55bb88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-title,
.vision-title {
  font-size: 1.8rem;
  color: #1a3d2b;
  margin-bottom: 1rem;
}

.mission-text,
.vision-text {
  color: #666;
  line-height: 1.8;
  font-size: 1.05rem;
}

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

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

.value-title {
  color: #1a3d2b;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.value-description {
  color: #666;
  line-height: 1.7;
}

/* What Makes Us Different Section */
.what-makes-different-section {
  background: linear-gradient(135deg, #f0f9f4 0%, #ffffff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-box {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-box-title {
  color: #2c7a4b;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-box-text {
  color: #666;
  line-height: 1.7;
}

/* CTA Section */
.about-cta-section {
  background: linear-gradient(135deg, #1e4d35 0%, #2c7a4b 100%);
  color: white;
  text-align: center;
}

.about-cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.about-cta-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta-primary {
  background: #ffd166;
  color: #1a3d2b;
}

.about-cta-primary:hover {
  background: #ffbe3d;
  color: #1a3d2b;
}

.about-cta-secondary {
  background: transparent;
  border-color: white;
  color: white;
}

.about-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-subtitle {
    font-size: 1.1rem;
  }

  .story-title {
    font-size: 2rem;
  }

  .story-paragraph {
    font-size: 1rem;
  }

  .mission-title,
  .vision-title {
    font-size: 1.6rem;
  }

  .mission-text,
  .vision-text {
    font-size: 1rem;
  }

  .about-cta-title {
    font-size: 2rem;
  }

  .about-cta-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 3rem 0;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .story-title {
    font-size: 1.75rem;
  }

  .mission-card,
  .vision-card {
    padding: 2rem 1.5rem;
  }

  .value-emoji {
    font-size: 2.5rem;
  }

  .about-cta-title {
    font-size: 1.75rem;
  }

  .about-cta-description {
    font-size: 1rem;
  }

  .about-cta-buttons {
    flex-direction: column;
  }

  .about-cta-buttons .btn-primary,
  .about-cta-buttons .btn-secondary {
    width: 100%;
  }
}
