/* ========================= ABOUT US PAGE ========================= */

/* HERO */
.about-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background:
    linear-gradient(rgba(10, 10, 10, 0.35), rgba(10, 10, 10, 0.35)),
    url("heroImage.webp") center center/cover no-repeat;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -60px;
  left: -60px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(80px);
  border-radius: 50%;
}

.about-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  bottom: -40px;
  right: -40px;
  background: rgba(255, 200, 120, 0.12);
  filter: blur(80px);
  border-radius: 50%;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.about-hero-tag {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}

.about-hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 18px;
}

.about-hero-content p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.8;
}

/* INTRO */
.about-intro {
  position: relative;
  margin-top: -60px;
  padding: 0 20px 110px;
  z-index: 3;
}

.about-intro-card {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  padding: 70px 70px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.intro-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-intro-card h2 {
  font-size: 3rem;
  line-height: 1.2;
  color: #111827;
  font-weight: 800;
  margin-bottom: 28px;
}

.about-intro-card p {
  max-width: 900px;
  margin: 0 auto 18px;
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1.95;
}

.about-intro-card p:last-child {
  margin-bottom: 0;
}

/* VALUES */
.about-values {
  padding: 30px 20px 110px;
  background: linear-gradient(180deg, #f8f8f8 0%, #f1f1f1 100%);
}

.about-values-container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}

.about-value-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 42px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.value-line {
  display: block;
  width: 62px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 24px;
 background: linear-gradient(135deg, #3b82f6, #2563eb, #1e40af);
}

.about-value-box h3 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #111827;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-value-box p {
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.9;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .about-hero {
    min-height: 300px;
    padding: 40px 20px;
  }

  .about-hero-content h1 {
    font-size: 3rem;
  }

  .about-intro-card {
    padding: 55px 40px;
  }

  .about-intro-card h2 {
    font-size: 2.5rem;
  }

  .about-values-container {
    gap: 30px;
  }

  .about-value-box h3 {
    font-size: 2.1rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 35vh;
    padding: 80px 20px 50px;
  }

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

  .about-hero-content p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .about-intro {
    margin-top: -40px;
    padding: 0 16px 80px;
  }

  .about-intro-card {
    padding: 40px 22px;
    border-radius: 22px;
  }

  .about-intro-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .about-intro-card p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .about-values {
    padding: 10px 16px 80px;
  }

  .about-values-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-value-box {
    padding: 32px 22px;
    border-radius: 20px;
  }

  .about-value-box h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .about-value-box p {
    font-size: 0.97rem;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 28vh;
    padding: 70px 15px 40px;
  }

  .about-hero-tag {
    font-size: 0.72rem;
    letter-spacing: 2px;
  }

  .about-hero-content h1 {
    font-size: 1.7rem;
  }

  .about-hero-content p {
    font-size: 0.9rem;
  }

  .intro-tag {
    font-size: 0.72rem;
    letter-spacing: 2px;
  }

  .about-intro-card h2 {
    font-size: 1.7rem;
  }

  .about-intro-card p {
    font-size: 0.94rem;
  }

  .about-value-box h3 {
    font-size: 1.55rem;
  }

  .about-value-box p {
    font-size: 0.94rem;
  }
}