/* ============================================================
   about.css — About & Contact page styles
   ============================================================ */

/* ── SPLIT LAYOUT ────────────────────────────────────────── */
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}

/* ── ABOUT SIDE ──────────────────────────────────────────── */
.about-intro {
  font-family: var(--font-b); font-size: 15.5px;
  color: var(--muted); line-height: 1.8; margin-bottom: 8px;
}
.company-stats { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.cstat {
  display: flex; align-items: center; gap: 16px;
  background: var(--off); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px 20px; transition: all 200ms ease;
}
.cstat:hover { border-color: var(--blue); background: var(--blue-lt); }
.cstat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-lt); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}
.cstat:nth-child(2) .cstat-icon { background: var(--green-lt); }
.cstat:nth-child(3) .cstat-icon { background: var(--light); }
.cstat-val {
  font-family: var(--font-h); font-size: 22px; font-weight: 800; color: var(--blue);
}
.cstat:nth-child(2) .cstat-val { color: var(--green); }
.cstat:nth-child(3) .cstat-val { color: var(--navy2); }
.cstat-lbl { font-family: var(--font-m); font-size: 11px; color: var(--muted); }

/* ── TEAM ────────────────────────────────────────────────── */
.section-sub {
  font-family: var(--font-h); font-size: 22px; font-weight: 700;
  color: var(--navy); margin: 28px 0 16px;
}
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
  box-shadow: var(--sh-sm); text-align: center; transition: all 200ms ease;
}
.team-card:hover { border-color: var(--blue); box-shadow: var(--sh); transform: translateY(-3px); }
.team-card__photo { height: 180px; overflow: hidden; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__info { padding: 16px; }
.team-card__info h4 {
  font-family: var(--font-h); font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}
.team-card__info p { font-family: var(--font-m); font-size: 11px; color: var(--blue); letter-spacing: .06em; }

/* ── VALUES ──────────────────────────────────────────────── */
.values-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.values-list li {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--off); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 18px;
  font-family: var(--font-b); font-size: 14px; color: var(--slate);
  transition: all 200ms ease;
}
.values-list li:hover { border-color: var(--green); background: var(--green-pale); }
.values-list .fa-check-circle { color: var(--green-mid); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.values-list strong { color: var(--navy); font-weight: 600; }

/* ── CONTACT SIDE ────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 36px;
  box-shadow: var(--sh); position: relative; overflow: hidden;
}
.contact-form-wrap::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.contact-form-wrap h3 {
  font-family: var(--font-h); font-size: 24px; font-weight: 700;
  color: var(--navy); margin-bottom: 24px;
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fgroup { margin-bottom: 14px; }
.fgroup label {
  display: block; font-family: var(--font-m); font-size: 10.5px;
  color: var(--slate); letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 7px;
}
.fgroup input,
.fgroup textarea,
.fgroup select {
  width: 100%; background: var(--off); border: 1.5px solid var(--border);
  color: var(--navy); font-family: var(--font-b); font-size: 14.5px;
  padding: 12px 16px; border-radius: 10px; outline: none;
  transition: all 180ms ease; -webkit-appearance: none; appearance: none;
}
.fgroup input:focus,
.fgroup textarea:focus,
.fgroup select:focus {
  border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.fgroup textarea { min-height: 110px; resize: vertical; }
.submit-btn {
  width: 100%; padding: 15px; border-radius: 10px;
  font-family: var(--font-b); font-size: 15px; font-weight: 700;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 200ms ease; box-shadow: 0 4px 14px rgba(26,86,219,.3);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,219,.4); }

/* ── CONTACT INFO CARDS ──────────────────────────────────── */
.contact-info-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.ci-card {
  background: var(--off); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 22px;
  display: flex; align-items: flex-start; gap: 14px; transition: all 200ms ease;
}
.ci-card:hover { border-color: var(--blue); background: var(--blue-lt); }
.ci-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ci-bl  { background: var(--blue-lt);  }
.ci-gr  { background: var(--green-lt); }
.ci-nv  { background: var(--light);    }
.ci-wh  { background: #fff; border: 1px solid var(--border); }
.ci-card__lbl {
  font-family: var(--font-m); font-size: 10px; color: var(--muted);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 3px;
}
.ci-card__val {
  font-family: var(--font-b); font-size: 14px;
  font-weight: 600; color: var(--navy); line-height: 1.55;
}

/* ── MAP ─────────────────────────────────────────────────── */
.map-wrap {
  margin-top: 32px; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--sh-sm);
}
.map-wrap iframe { width: 100%; height: 280px; display: block; border: none; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .split-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 16px; }
}
