/* About Us Page - Separate Stylesheet */

/* ABOUT HERO SECTION */
.about-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #003d75 100%);
  color: var(--text-light);
  padding: 80px 40px;
  text-align: center;
  margin-bottom: 60px;
}

.about-hero-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

/* COMPANY STORY SECTION */
.company-story {
  padding: 80px 40px;
  background-color: #fff;
}

.story-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.story-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
}

.story-image {
  text-align: center;
}

.story-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* MISSION, VISION, VALUES SECTION */
.mvv-section {
  background-color: var(--bg-light);
  padding: 80px 40px;
}

.mvv-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mvv-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mvv-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 16px;
  border-bottom: 3px solid var(--primary-red);
  padding-bottom: 12px;
  display: inline-block;
}

.mvv-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
}

/* COMPANY VALUES SECTION */
.values-section {
  background-color: #fff;
  padding: 80px 40px;
}

.values-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.values-subtitle {
  font-size: 1.1rem;
  color: #999;
  font-weight: 400;
}

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

.value-card {
  background-color: var(--bg-light);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.value-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(230, 45, 54, 0.15);
  transform: translateY(-8px);
}

.value-icon {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.value-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.value-description {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.6;
}

/* CERTIFICATIONS SECTION */
.certifications-section {
  background-color: var(--bg-light);
  padding: 80px 40px;
}

.certifications-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.certifications-header {
  text-align: center;
  margin-bottom: 60px;
}

.certifications-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.certifications-subtitle {
  font-size: 1.1rem;
  color: #999;
  font-weight: 400;
}

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

.certification-card {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.certification-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(230, 45, 54, 0.15);
  transform: translateY(-8px);
}

.cert-icon {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cert-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cert-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.cert-description {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.6;
}

/* TEAM SECTION */
.team-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
  padding: 80px 40px;
}

.team-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.team-subtitle {
  font-size: 1.1rem;
  color: #999;
  font-weight: 400;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.team-stat {
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.team-stat:hover {
  transform: translateY(-5px);
}

.team-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 8px;
}

.team-stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

.team-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* RESPONSIVE DESIGN */

/* Tablet and medium screens */
@media (max-width: 1024px) {
  .about-hero-title {
    font-size: 2.5rem;
  }

  .story-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mvv-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .about-hero {
    padding: 60px 20px;
    margin-bottom: 40px;
  }

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

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

  .company-story {
    padding: 60px 20px;
  }

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

  .story-text {
    font-size: 0.95rem;
  }

  .values-section {
    padding: 60px 20px;
  }

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

  .values-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .certifications-section {
    padding: 60px 20px;
  }

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

  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .certification-card {
    padding: 30px 15px;
  }

  .cert-icon {
    height: 80px;
    margin-bottom: 15px;
  }

  .cert-name {
    font-size: 1rem;
  }

  .cert-description {
    font-size: 0.85rem;
  }

  .team-section {
    padding: 60px 20px;
  }

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

  .team-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .team-stat {
    padding: 30px 20px;
  }

  .team-stat-number {
    font-size: 2rem;
  }

  .team-description {
    font-size: 1rem;
  }

  .mvv-container {
    gap: 20px;
  }

  .mvv-card {
    padding: 30px 20px;
  }

  .mvv-title {
    font-size: 1.3rem;
  }

  .mvv-text {
    font-size: 0.95rem;
  }
}

/* Small mobile screens */
@media (max-width: 480px) {
  .about-hero-title {
    font-size: 1.5rem;
  }

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

  .values-title {
    font-size: 1.5rem;
  }

  .certifications-title {
    font-size: 1.5rem;
  }

  .certification-card {
    padding: 25px 15px;
  }

  .team-stat-number {
    font-size: 1.5rem;
  }

  .team-stat-label {
    font-size: 0.9rem;
  }

  .team-description {
    font-size: 0.95rem;
  }
}
