/* About Page Specific Styles */

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #f0faf8 0%, #e6f7f4 100%);
  padding: 5rem 0;
  margin-bottom: 0;
}

.about-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Mission Section */
.mission-section {
  padding: 6rem 0;
  background: white;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(26, 188, 156, 0.1), rgba(22, 160, 133, 0.1));
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 2rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-badge i {
  font-size: 1.25rem;
}

.mission-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.mission-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Difference Section */
.difference-section {
  padding: 6rem 0;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.difference-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
}

.difference-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.difference-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.difference-card:hover .difference-icon {
  transform: scale(1.1);
}

.difference-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.difference-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Story Section */
.story-section {
  padding: 6rem 0;
  background: white;
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.story-lead {
  font-size: 1.375rem;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.story-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Team Section */
.team-section {
  padding: 6rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.team-image-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: var(--background-light);
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-image-wrapper img {
  transform: scale(1.05);
}

.team-info {
  padding: 2rem;
}

.team-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-bio {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.team-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.team-link i {
  font-size: 1.25rem;
}

/* Trust Section */
.trust-section {
  padding: 6rem 0;
  background: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.trust-card {
  background: var(--background-light);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.trust-card:hover {
  background: white;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.trust-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.trust-card:hover .trust-icon {
  transform: scale(1.1);
}

.trust-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.trust-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.napp-logo-section {
  text-align: center;
  padding: 3rem 0;
}

.napp-logo {
  max-width: 400px;
  height: auto;
  transition: var(--transition);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.napp-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
}

/* Values Section */
.values-section {
  padding: 6rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.value-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--primary-color);
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(5px);
}

.value-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f0faf8 0%, #e6f7f4 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.contact-lead {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-feature {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}

.contact-feature i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-feature h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.contact-feature p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.contact-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.contact-form label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.contact-form .form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Scroll Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transition: all 0.8s ease;
}

.scroll-reveal[data-reveal="left"] {
  transform: translateX(-50px);
}

.scroll-reveal[data-reveal="right"] {
  transform: translateX(50px);
}

.scroll-reveal[data-reveal="up"] {
  transform: translateY(50px);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Responsive Design */
@media (max-width: 991px) {
  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-subtitle {
    font-size: 1.25rem;
  }

  .mission-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mission-content h2,
  .story-content h2,
  .contact-info h2 {
    font-size: 2rem;
  }

  .difference-grid,
  .team-grid,
  .trust-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 3rem 0;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-subtitle {
    font-size: 1.125rem;
  }

  .mission-section,
  .difference-section,
  .story-section,
  .team-section,
  .trust-section,
  .values-section,
  .contact-section {
    padding: 4rem 0;
  }

  .mission-content h2,
  .story-content h2,
  .contact-info h2 {
    font-size: 1.75rem;
  }

  .story-lead {
    font-size: 1.125rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .napp-logo {
    max-width: 300px;
  }

  .team-image-wrapper {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 1.75rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .difference-card,
  .team-info,
  .trust-card,
  .value-card {
    padding: 2rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}