/* About Page Styles */
.page-hero {
  padding: 140px 2rem 6rem;
  background: linear-gradient(135deg, var(--deep-teal) 0%, var(--midnight) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(6, 214, 160, 0.1) 0%, transparent 60%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-hero .hero-title {
  color: var(--warm-cream);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 248, 240, 0.8);
  max-width: 700px;
  line-height: 1.7;
}

.about-story {
  padding: 8rem 2rem;
}

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

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.story-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-image {
  position: relative;
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 77, 77, 0.2);
}

.mission-vision {
  padding: 6rem 2rem;
}

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

.mv-card {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(13, 77, 77, 0.12);
  border: 2px solid transparent;
  transition: var(--transition-base);
}

.mv-card:hover {
  transform: translateY(-8px);
  border-color: var(--burnt-orange);
  box-shadow: 0 20px 60px rgba(13, 77, 77, 0.18);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--burnt-orange), #FF6B35);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: white;
}

.mv-card h3 {
  font-size: 2rem;
  color: var(--midnight);
  margin-bottom: 1rem;
}

.mv-card p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin: 0;
}

.values-section {
  padding: 8rem 2rem;
}

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

.value-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: var(--transition-base);
  text-align: center;
}

.value-card:hover {
  border-color: var(--burnt-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 77, 77, 0.12);
}

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

.value-card h4 {
  font-size: 1.25rem;
  color: var(--midnight);
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  
  .mv-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 1.5rem 4rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Ensure navbar is properly positioned on about page */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Make sure page hero doesn't overlap navbar */
.page-hero {
  margin-top: 0;
  position: relative;
}


/* Contact form status */
.form-status{font-size:14px;}
.form-status.success{color:#0a7a2f;}
.form-status.error{color:#b00020;}
