/* About hero (premium corporate) */

.about-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(6, 45, 57, 0.88) 0%,
      rgba(0, 108, 142, 0.55) 55%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    url("../img/about.jpeg");
  background-size: cover;
  background-position: center;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(214, 190, 99, 0.22),
      transparent 42%
    ),
    radial-gradient(circle at 80% 30%, rgba(0, 108, 142, 0.25), transparent 45%);
  pointer-events: none;
}

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

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(214, 190, 99, 0.22);
  border: 1px solid rgba(214, 190, 99, 0.6);
  padding: 12px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
  font-weight: 700;
  color: #fff;
}

.about-hero-badge i {
  color: var(--gold);
}

.about-hero h1 {
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 16px;
  color: #fff;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.98);
  font-size: 18px;
  max-width: 650px;
}

/* Improve readability if any overlay gradients are subtle */
.about-hero h1,
.about-hero p,
.about-hero-badge,
.about-hero-mini {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.about-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.about-hero-card-row {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-hero-mini {
  background: rgba(8, 59, 76, 0.35);
  border: 1px solid rgba(214, 190, 99, 0.35);
  border-radius: 16px;
  padding: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.about-hero-mini h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #fff;
}

.about-hero-mini p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  margin: 0;
}

@media (max-width: 992px) {
  .about-hero h1 {
    font-size: 44px;
  }

  .about-hero-card-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .about-hero {
    min-height: 64vh;
  }

  .about-hero h1 {
    font-size: 34px;
  }

  .about-hero p {
    font-size: 15px;
  }
}
