/* ===== ABOUT US PAGE ===== */

/* --- Banner --- */
.about-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.banner-text h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 1px;
}

/* --- Intro Paragraph --- */
.about-intro {
  background: #f9fdfb;
  padding: 70px 0;
  text-align: center;
}

.about-intro p {
  font-size: 1.15rem;
  color: #2d2d2d;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Mission, Vision, Story --- */
.about-details {
  padding: 80px 0;
}

.mission-vision-story {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.detail-box {
  flex: 1 1 30%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.12);
}

.detail-box h2 {
  color: #064e3b;
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.detail-box p {
  color: #2d2d2d;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== WHY CHOOSE TING LI ===== */
.why-hychance {
  background: #065f46; /* Deep Emerald */
  color: white;
  padding: 100px 0;
}

.why-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

/* Left side - Title only */
.why-title {
  flex: 0 0 35%;
}

.why-title h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: white;
  line-height: 1.3;
  text-align: left;
  border-left: 6px solid white;
  padding-left: 15px;
}

/* Right side - Content points */
.why-content {
  flex: 1;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-list li {
  margin-bottom: 18px;
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
  padding-left: 30px;
}

/* Responsive */
@media (max-width: 900px) {
  .why-flex {
    flex-direction: column;
    gap: 30px;
  }

  .why-title {
    flex: 1;
    text-align: center;
  }

  .why-title h2 {
    border-left: none;
    border-bottom: 3px solid white;
    padding-left: 0;
    padding-bottom: 10px;
    text-align: center;
  }

  .why-content {
    text-align: left;
  }
}

/* ===== OUR INTERNATIONAL CLIENTS ===== */
.international-clients {
  background: #f9fafb;
  padding: 100px 0;
}

.clients-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left side - Photo */
.clients-photo {
  flex: 0 0 45%;
}

.clients-photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Right side - Text and list */
.clients-text {
  flex: 1;
}

.clients-text h2 {
  color: #065f46; /* Deep Emerald */
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.clients-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.7;
}

.country-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.country-list li {
  font-size: 1.1rem;
  color: #065f46;
  font-weight: 600;
  position: relative;
  padding-left: 24px;
}

.country-list li::before {
  content: "🌍";
  position: absolute;
  left: 0;
  color: #10b981; /* Emerald accent */
}

/* Responsive */
@media (max-width: 900px) {
  .clients-flex {
    flex-direction: column;
    text-align: center;
  }

  .clients-photo {
    flex: 1;
    order: -1;
  }

  .country-list {
    grid-template-columns: 1fr;
  }

  .clients-text h2 {
    font-size: 2rem;
  }
}