/* ── SHARED SECTION STYLES ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 6px;
}
.section-title span { color: var(--green); }
.section-subtitle { font-size: 15px; color: var(--muted); margin-bottom: 36px; }
.divider {
  width: 50px; height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 36px;
}

/* ── KEY HIGHLIGHTS ── */
.highlights-section {
  background: var(--off-white);
  padding: 60px 24px;
}
.hl-awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.hl-card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--border);
}
.hl-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hl-card h3 span { color: var(--green); font-size: 14px; font-family: 'DM Sans', sans-serif; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.stat-item {
  background: white;
  border-radius: 12px;
  padding: 22px 14px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.stat-item:hover { box-shadow: 0 8px 24px rgba(11,35,84,0.10); transform: translateY(-3px); }
.stat-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.stat-num.green { color: var(--green); }
.stat-num.gold { color: var(--gold); }
.stat-num.red { color: #E53935; }
.stat-lbl { font-size: 12px; color: var(--muted); line-height: 1.3; }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.award-item {
  text-align: center;
  padding: 14px 8px;
  border-radius: 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.award-item:hover { box-shadow: 0 4px 16px rgba(11,35,84,0.10); }
.award-icon-box {
  width: 54px; height: 54px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fef3d8, #fde6a0);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.award-item p { font-size: 11px; color: var(--text); line-height: 1.3; font-weight: 500; }
.award-item .award-year { font-size: 10px; color: var(--muted); margin-top: 3px; }

/* ── SERVICES ── */
.services-section {
  padding: 70px 24px;
  background: white;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.service-card {
  border-radius: 16px;
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(11,35,84,0.12);
  transform: translateY(-4px);
  border-color: var(--green);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--green);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.2s;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  background: #EBF8EE;
}
.service-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ── ABOUT ── */
.about-section {
  background: var(--off-white);
  padding: 70px 24px;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-img-block {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-weight: 500;
}
.about-img-block.tall { grid-row: span 2; aspect-ratio: auto; }
.about-img-block.green-bg { background: linear-gradient(135deg, #1a8a33, var(--green)); }

.about-content .about-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.about-content h2 span { color: var(--green); }
.about-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.about-bullets {
  list-style: none;
  margin-bottom: 28px;
}
.about-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 10px;
}
.about-bullets li::before {
  content: '✓';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FOUNDERS ── */
.founders-section {
  padding: 70px 24px;
  background: white;
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.founder-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow 0.25s, transform 0.2s;
}
.founder-card:hover { box-shadow: 0 16px 48px rgba(11,35,84,0.12); transform: translateY(-4px); }
.founder-photo {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.founder-photo .founder-initials {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 3px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
}
.founder-info { padding: 22px 20px; }
.founder-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}
.founder-info .role {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.founder-info p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── RESPONSIVE: HIGHLIGHTS + SERVICES + ABOUT + FOUNDERS ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hl-awards-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-grid { max-width: 400px; }
  .founders-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .highlights-section { padding: 40px 16px; }
  .hl-card { padding: 20px 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-item { padding: 16px 10px; }
  .stat-num { font-size: 20px; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .services-section { padding: 48px 16px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 24px 20px; }
  .about-section { padding: 48px 16px; }
  .about-inner { gap: 32px; }
  .about-content h2 { font-size: 26px; }
  .founders-section { padding: 48px 16px; }
  .founders-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 24px; }
}
