/* About Us – image left, content right */
.about-us-section {
  position: relative;
  padding: 70px 0 80px;
  background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
  overflow: hidden;
}

.about-us-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(13, 64, 69, 0.06);
  pointer-events: none;
}

.about-us-section .about-us-row {
  align-items: center;
}

.about-us-media {
  position: relative;
  padding: 0 20px 20px 0;
}

.about-us-image-wrap {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 25, 47, 0.14);
  background: #fff;
}

.about-us-image-wrap img {
  width: 100%;
  height: auto;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.about-us-shape {
  position: absolute;
  left: 24px;
  bottom: 0;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border-radius: 24px;
  border: 2px solid rgba(13, 64, 69, 0.18);
  z-index: 1;
  pointer-events: none;
}

.about-us-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  max-width: 240px;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--theme-color1) 0%, #0d4045 100%);
  box-shadow: 0 12px 32px rgba(10, 25, 47, 0.22);
}

.about-us-badge .about-us-badge-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #fff;
}

.about-us-content {
  position: relative;
  padding-left: 20px;
}

.about-us-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0d4045;
  background: rgba(13, 64, 69, 0.08);
  border: 1px solid rgba(13, 64, 69, 0.12);
}

.about-us-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0d4045;
}

.about-us-content .about-us-title {
  margin: 0 0 20px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--theme-color1);
}

.about-us-text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(10, 25, 47, 0.75);
  margin-bottom: 28px;
}

.about-us-text p {
  margin-bottom: 14px;
  color: rgba(10, 25, 47, 0.75);
}

.about-us-text p:last-child {
  margin-bottom: 0;
}

.about-us-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.about-us-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(10, 25, 47, 0.08);
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.04);
}

.about-us-highlight i {
  margin-top: 2px;
  font-size: 14px;
  color: #0d4045;
}

.about-us-highlight span {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--theme-color1);
}

@media (max-width: 991.98px) {
  .about-us-section {
    padding: 50px 0 56px;
  }

  .about-us-media {
    margin-bottom: 36px;
    padding-right: 12px;
  }

  .about-us-content {
    padding-left: 0;
  }

  .about-us-content .about-us-title {
    font-size: 32px;
  }

  .about-us-image-wrap img {
    min-height: 300px;
  }
}

@media (max-width: 575.98px) {
  .about-us-content .about-us-title {
    font-size: 28px;
  }

  .about-us-highlights {
    grid-template-columns: 1fr;
  }

  .about-us-badge {
    max-width: 200px;
    padding: 14px 16px;
  }

  .about-us-badge .about-us-badge-title {
    font-size: 16px;
  }
}
