/* ===== About Us Page Styles — about-us.css ===== */

/* --- Section: About --- */
.about h2 {
  font-size: clamp(24px, 3.2vw, 38px);
  margin: 14px 0 20px;
  line-height: 1.2;
}

.about p.muted {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 860px;
}

.about .stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 32px 0 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.about .stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about .stats b {
  font-size: 38px;
  line-height: 1;
  color: var(--steel);
  font-weight: 900;
}

.about .stats span {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}

/* --- Section: Values --- */
.values {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.valgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.val {
  background: var(--bg);
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.val:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(16, 42, 80, 0.08);
  border-color: var(--accent);
}

.val .ic {
  font-size: 36px;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
}

.val h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 700;
}

.val p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* --- Section: Location / Map --- */
.loc .wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.loc .info h2 {
  font-size: clamp(24px, 3.2vw, 38px);
  margin: 14px 0 28px;
}

.loc .row {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.loc .row:last-child {
  margin-bottom: 0;
}

.loc .row .ic {
  font-size: 20px;
  background: var(--bg-2);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.loc .row b {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  letter-spacing: .06em;
}

.loc .row span {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}

.loc .map {
  position: relative;
  padding-top: 56.25%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 42, 80, 0.04);
}

.loc .map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Responsive Media Queries --- */
@media (max-width: 991px) {
  .loc .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .valgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .about .stats {
    gap: 24px 40px;
  }
  
  .valgrid {
    grid-template-columns: 1fr;
  }
  
  .loc .wrap {
    gap: 30px;
  }
}
