/* ── About-page specific styles ───────────────────────────
   Uses tokens from style.css :root — do not redefine them here.
   ──────────────────────────────────────────────────────── */

/* ── Page hero ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2c3e4f 55%, var(--blue) 100%);
  padding: 100px 20px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 50%, rgba(82,142,176,0.22) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 auto 1rem;
  max-width: 680px;
}
.page-hero h1 em { color: var(--amber); font-style: normal; }
.page-hero p {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.70);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Section shell ──────────────────────────────────────── */
.about-section { padding: 5rem 0; background: var(--bg); }
.about-section.bg-light { background: var(--bg2); }
.about-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ── Section headings (about-specific, don't clash with style.css) ── */
.about-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin: 0 0 1rem;
}
.about-heading em { color: var(--blue); font-style: normal; }
.about-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
}

/* ── Intro two-column ───────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
@media (max-width: 768px) { .intro-grid { grid-template-columns: 1fr; gap: 3rem; } }

.intro-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-img .img-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 7px;
  letter-spacing: 0.02em;
}

/* ── btn-outline variant for light backgrounds ──────────── */
/* The global btn-outline (style.css) uses white text — override for about page light sections */
.about-section .btn-outline {
  color: var(--blue);
  border-color: var(--blue);
}
.about-section .btn-outline:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ── Placeholder when no image ──────────────────────────── */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--mid);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}
.img-placeholder svg { opacity: 0.4; fill: var(--mid); }

/* ── Stats bar ──────────────────────────────────────────── */
.stats-bar { background: var(--dark); padding: 4rem 0; }
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2.5rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── Why Choose Us cards ────────────────────────────────── */
.about-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(82,142,176,0.15);
}
.why-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(82,142,176,0.12), rgba(82,142,176,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.why-card-icon svg { fill: var(--blue); width: 26px; height: 26px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.5rem;
}
.why-card p {
  font-family: var(--font-body);
  font-size: 0.87rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* ── Team photo strip ───────────────────────────────────── */
.team-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 600px) { .team-strip { grid-template-columns: 1fr; } }
.team-photo {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--light);
  box-shadow: 0 10px 36px rgba(0,0,0,0.08);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Areas served ───────────────────────────────────────── */
.areas-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.75rem; }
.area-tag {
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--dark);
  background: #fff;
  border: 1px solid var(--light);
  padding: 7px 18px;
  border-radius: 50px;
  cursor: default;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.area-tag:hover { background: var(--blue); color: #fff; border-color: var(--blue); }