/* =========================
   About Hero
   ========================= */

.about-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.78)),
    url("../../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding: 120px 0;
}

.about-hero-title {
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 26px;
}

.about-hero-text {
  max-width: 760px;
  font-size: 19px;
  line-height: 1.8;
  color: #e8e1d6;
}

/* =========================
   Mission Highlight Card
   ========================= */

.about-highlight-card {
  background: linear-gradient(135deg, var(--color-black), var(--color-brown));
  color: var(--color-white);
  padding: 50px;
  border-radius: 26px;
  border: 1px solid rgba(201, 162, 77, 0.45);
  box-shadow: 0 25px 70px rgba(17, 17, 17, 0.16);
  position: relative;
  overflow: hidden;
}

.about-highlight-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 162, 77, 0.25),
    transparent 68%
  );
}

.about-highlight-card span {
  position: relative;
  display: inline-block;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

.about-highlight-card h3 {
  position: relative;
  color: var(--color-white);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  margin-bottom: 22px;
}

.about-highlight-card p {
  position: relative;
  color: #f0e8dc;
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 0;
}

/* =========================
   Value Cards
   ========================= */

.about-value-card {
  height: 100%;
  background-color: var(--color-cream);
  border: 1px solid #eadcc5;
  border-radius: 22px;
  padding: 34px;
  transition: all 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.1);
}

.about-value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-black);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 24px;
}

.about-value-card h3 {
  font-size: 24px;
  color: var(--color-black);
  margin-bottom: 14px;
}

.about-value-card p {
  color: #555555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* =========================
   Difference List
   ========================= */

.about-difference-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-difference-item {
  display: flex;
  gap: 24px;
  padding: 28px;
  border-radius: 22px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 77, 0.26);
  transition: all 0.3s ease;
}

.about-difference-item:hover {
  background-color: rgba(201, 162, 77, 0.12);
  transform: translateX(8px);
}

.about-difference-item span {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.about-difference-item h3 {
  color: var(--color-gold);
  font-size: 22px;
  margin-bottom: 10px;
}

.about-difference-item p {
  color: #ddd4c8;
  line-height: 1.7;
  margin-bottom: 0;
}

/* =========================
   CTA
   ========================= */

.about-cta-section {
  padding: 110px 0;
  background:
    linear-gradient(rgba(17, 17, 17, 0.86), rgba(17, 17, 17, 0.86)),
    url("../../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  color: var(--color-white);
}

.about-cta-section h2 {
  font-size: clamp(34px, 4vw, 56px);
  max-width: 900px;
  margin: 0 auto 22px;
  color: var(--color-white);
  line-height: 1.2;
}

.about-cta-section p {
  max-width: 720px;
  margin: 0 auto;
  color: #e3d9cc;
  font-size: 18px;
  line-height: 1.7;
}

/* =========================
   About Responsive
   ========================= */

@media (max-width: 991px) {
  .about-hero {
    min-height: auto;
    padding: 140px 0 90px;
  }

  .about-highlight-card {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .about-hero {
    text-align: center;
    padding: 120px 0 80px;
  }

  .about-hero-text {
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
  }

  .about-highlight-card,
  .about-value-card,
  .about-difference-item {
    padding: 28px;
  }

  .about-difference-item {
    flex-direction: column;
    gap: 18px;
  }

  .about-difference-item:hover {
    transform: translateY(-6px);
  }

  .about-cta-section {
    padding: 80px 0;
  }
}

@media (max-width: 575px) {
  .about-hero-title {
    font-size: 38px;
  }

  .about-highlight-card h3 {
    font-size: 26px;
  }

  .about-value-card h3,
  .about-difference-item h3 {
    font-size: 21px;
  }

  .about-cta-section p {
    font-size: 16px;
  }
}
