/* ============================================
   PACKISTRY — ABOUT PAGE STYLES
   ============================================ */

/* ---- About Content + Quote Side by Side ---- */
.about-main-section { background: var(--bg-white); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-xl);
  align-items: start;
}

.about-content h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-md); }

.about-content .mission-label {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.about-content p { margin-bottom: var(--sp-md); font-size: var(--fs-base); line-height: 1.8; }

.about-content h4 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-sans);
  margin: var(--sp-lg) 0 var(--sp-sm);
  border-left: 3px solid var(--color-gold);
  padding-left: var(--sp-sm);
}

/* ---- Info Bar (gold bg) ---- */
.info-bar {
  background: #C9A84C;
  padding: 18px 0;
}

.info-bar .container {
  width: 100%;
  max-width: none;
  padding-right: clamp(16px, 2vw, 32px);
  padding-left: clamp(16px, 2vw, 32px);
}

.info-bar-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.info-bar-item {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 0 14px;
}

.info-bar-item + .info-bar-item {
  border-left: 1px solid rgba(15, 38, 64, 0.18);
}

/* The fourth tile is the address in each info bar. */
.info-bar-item:nth-child(4) {
  flex: 2.25 1 0;
}

.info-bar-item .ib-text {
  min-width: 0;
}

.info-bar-item .ib-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-bar-item .ib-icon svg { width: 16px; height: 16px; color: #0F2640; }

.info-bar-item .ib-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0F2640;
  white-space: nowrap;
}

.info-bar-item .ib-text span {
  font-size: 10px;
  color: rgba(11,31,53,0.65);
  font-weight: 500;
}

/* ---- What We Stand For ---- */
.stand-for-section { background: var(--bg-light); }
.stand-for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

/* ---- Stats Section ---- */
.stats-section {
  background: var(--bg-dark);
  padding: var(--sp-xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-serif);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item .stat-label {
  font-size: var(--fs-sm);
  color: var(--text-on-dark-muted);
  letter-spacing: 0.04em;
}

/* ---- Meet The Experts ---- */
.team-section { background: var(--bg-white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
}

.team-card {
  text-align: center;
  padding: var(--sp-lg) var(--sp-md);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--color-gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-md);
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-gold);
  border: 3px solid var(--color-gold);
}

.team-card h5 {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-card .role {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
  display: block;
}

.team-card p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 1199px) {
  .info-bar-grid { flex-wrap: wrap; }
  .info-bar-item,
  .info-bar-item:nth-child(4) { flex: 0 0 33.333%; padding: 10px 14px; }
  .info-bar-item:nth-child(3n + 1) { border-left: 0; }
  .info-bar-item .ib-text strong { white-space: normal; }
}

@media (max-width: 767px) {
  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .info-bar-grid { flex-wrap: wrap; }
  .info-bar-item { flex: 0 0 50%; padding: 10px 12px; }
  .info-bar-item:nth-child(4) { flex: 0 0 50%; }
  .info-bar-item:nth-child(odd) { border-left: 0; }
  .stand-for-grid, .stats-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .stat-item .stat-number { font-size: 40px; }
}
