/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  padding: 10rem 2rem 6rem;
  margin-top: 70px;
  text-align: center;
  color: white;
}

.about-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.about-hero .gradient-text {
  color: var(--dark-bg);
}

.about-hero .hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
}

/* Mission Section */
.mission {
  background: white;
  padding: 5rem 2rem;
}

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

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

.mission-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.mission-text p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05), rgba(255, 179, 71, 0.05));
  border-radius: 15px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Why Choose Us */
.why-choose {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.03), rgba(255, 179, 71, 0.03));
  padding: 5rem 2rem;
}

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

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

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.benefit-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Our Story */
.our-story {
  background: white;
  padding: 5rem 2rem;
}

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

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.story-text p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

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

/* Safety Section */
.safety {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.03), rgba(255, 179, 71, 0.03));
  padding: 5rem 2rem;
}

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

.safety-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}

.safety-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.safety-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.safety-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.safety-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Values */
.values {
  background: white;
  padding: 5rem 2rem;
}

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

.value-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05), rgba(255, 179, 71, 0.05));
  border-radius: 15px;
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-10px);
}

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

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    padding: 7rem 1rem 4rem;
  }

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

  .mission-content,
  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story-content {
    grid-template-columns: 1fr;
  }

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