/**
 * About Us Page Styles
 */

/* ---- Hero ---- */
.abt-hero {
  background: linear-gradient(135deg, #f8fafb 0%, #eef2f5 100%);
  padding: 5rem 0 4rem;
  margin-top: 124px;
}

.abt-hero-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.abt-hero-text {
  flex: 1;
}

.abt-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--bs-secondary, #214462);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.abt-hero-lead {
  font-size: 1.15rem;
  color: #5a6a7a;
  margin: 0;
  line-height: 1.6;
}

.abt-hero-img {
  flex: 0 0 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(33, 68, 98, 0.15);
}

.abt-hero-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* ---- Section Title ---- */
.abt-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bs-secondary, #214462);
  margin: 0 0 2rem;
  position: relative;
  padding-bottom: 14px;
}

.abt-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--bs-primary, #ffaa17);
  border-radius: 2px;
}

.abt-section-title--center {
  text-align: center;
}

.abt-section-title--center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ---- Story ---- */
.abt-story {
  padding: 5rem 0;
}

.abt-story-inner {
  display: flex;
  gap: 2.5rem;
  max-width: 800px;
}

.abt-story-accent {
  width: 4px;
  min-height: 100%;
  background: linear-gradient(to bottom, var(--bs-primary, #ffaa17), var(--bs-secondary, #214462));
  border-radius: 4px;
  flex-shrink: 0;
}

.abt-story-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a5568;
  margin: 0 0 1.25rem;
}

.abt-story-content p:last-child {
  margin-bottom: 0;
}

/* ---- Stats ---- */
.abt-stats {
  background: var(--bs-secondary, #214462);
  padding: 3.5rem 0;
}

.abt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.abt-stat {
  text-align: center;
}

.abt-stat-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--bs-primary, #ffaa17);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.abt-stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ---- Why Choose Us ---- */
.abt-why {
  padding: 5rem 0;
  background: #f8fafb;
}

.abt-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.abt-why-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid #eef1f4;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-why-card:hover {
  transform: translateY(-6px);
  border-color: var(--bs-primary, #ffaa17);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.abt-why-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--bs-secondary, #214462);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.35s ease;
}

.abt-why-card:hover .abt-why-icon {
  background: var(--bs-primary, #ffaa17);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(255, 170, 23, 0.3);
}

.abt-why-icon i {
  font-size: 1.5rem;
  color: var(--bs-primary, #ffaa17);
  transition: color 0.35s ease;
}

.abt-why-card:hover .abt-why-icon i {
  color: #fff;
}

.abt-why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bs-secondary, #214462);
  margin: 0 0 0.75rem;
}

.abt-why-card p {
  font-size: 0.9rem;
  color: #5a6a7a;
  line-height: 1.7;
  margin: 0;
}

/* ---- Values ---- */
.abt-values {
  padding: 5rem 0;
}

.abt-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.abt-value {
  padding: 2rem 1.5rem;
  border-radius: 14px;
  border: 1px solid #eef1f4;
  transition: all 0.3s ease;
  text-align: center;
}

.abt-value:hover {
  border-color: var(--bs-primary, #ffaa17);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.abt-value i {
  font-size: 2rem;
  color: var(--bs-primary, #ffaa17);
  margin-bottom: 1rem;
  display: block;
}

.abt-value h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bs-secondary, #214462);
  margin: 0 0 0.75rem;
}

.abt-value p {
  font-size: 0.9rem;
  color: #5a6a7a;
  line-height: 1.6;
  margin: 0;
}

/* ---- Certifications ---- */
.abt-certs {
  background: var(--bs-secondary, #214462);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.abt-certs::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 170, 23, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(255, 170, 23, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.abt-certs-title {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.abt-certs-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--bs-primary, #ffaa17);
  margin: 14px auto 0;
  border-radius: 2px;
}

.abt-certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.abt-cert {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}

.abt-cert:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 170, 23, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.abt-cert-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--bs-primary, #ffaa17);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.35s ease;
  background: rgba(255, 170, 23, 0.08);
}

.abt-cert:hover .abt-cert-ring {
  background: var(--bs-primary, #ffaa17);
  box-shadow: 0 0 24px rgba(255, 170, 23, 0.3);
}

.abt-cert-ring i {
  font-size: 1.6rem;
  color: var(--bs-primary, #ffaa17);
  transition: color 0.35s ease;
}

.abt-cert:hover .abt-cert-ring i {
  color: var(--bs-secondary, #214462);
}

.abt-cert h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.abt-cert p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .abt-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .abt-hero-img {
    flex: none;
    width: 100%;
    max-width: 480px;
  }

  .abt-story-inner {
    max-width: 100%;
  }

  .abt-why-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .abt-certs-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

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

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

  .abt-story,
  .abt-why,
  .abt-values,
  .abt-certs,
  .abt-cta {
    padding: 3rem 0;
  }

  .abt-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .abt-stat-num {
    font-size: 2.2rem;
  }

  .abt-values-grid {
    grid-template-columns: 1fr;
  }

  .abt-story-inner {
    gap: 1.5rem;
  }

  .abt-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .abt-cta-btn {
    justify-content: center;
  }
}
