/* ═══════════════ ABOUT SECTION ═══════════════ */
.About {
  background: #f9f5f0;
  padding: 6em 4em;
  overflow: hidden;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5em;
  flex-wrap: wrap;
}

/* ── Image Stack ── */
.about-image-stack {
  position: relative;
  flex: 0 0 420px;
  height: 500px;
}

.about-img {
  border-radius: 20px;
  object-fit: cover;
  position: absolute;
}

.about-img-back {
  width: 300px;
  height: 380px;
  top: 40px;
  left: 0;
  filter: brightness(0.85);
  border: 6px solid #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.about-img-front {
  width: 280px;
  height: 330px;
  top: 0;
  left: 160px;
  border: 6px solid #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  z-index: 2;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #133E87;
  color: white;
  padding: 1em 1.5em;
  border-radius: 16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(19,62,135,0.4);
}

.badge-number {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-size: 0.75em;
  opacity: 0.9;
  text-align: center;
}

/* ── Text Content ── */
.about-text {
  flex: 1;
  min-width: 280px;
}

.section-label {
  display: inline-block;
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #133E87;
  margin-bottom: 1em;
}

.section-label.light {
  color: rgba(255,255,255,0.7);
}

.about-text h2 {
  font-size: 2.5em;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.25;
  margin-bottom: 1em;
}

.about-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1em;
  font-size: 1em;
}

/* ── Stats ── */
.about-stats {
  display: flex;
  gap: 2.5em;
  margin: 2em 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2.2em;
  font-weight: 700;
  color: #133E87;
  line-height: 1;
}

.stat-desc {
  font-size: 0.85em;
  color: #888;
  margin-top: 0.3em;
}

/* ── CTA ── */
.about-cta {
  display: inline-block;
  margin-top: 1em;
  padding: 0.9em 2.2em;
  background: #133E87;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95em;
  transition: all 0.3s ease;
  text-decoration: none;
}

.about-cta:hover {
  background: #0e2f66;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(19,62,135,0.3);
}

/* ── Banner CTA button ── */
.cta-btn {
  display: inline-block;
  margin-top: 1.5em;
  padding: 0.75em 1.8em;
  background: #133E87;
  color: white !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: white;
  color: #133E87 !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .About {
    padding: 4em 1.5em;
  }
  .about-inner {
    flex-direction: column;
    gap: 2em;
  }
  .about-image-stack {
    flex: none;
    width: 100%;
    height: 320px;
  }
  .about-img-back {
    width: 200px;
    height: 260px;
  }
  .about-img-front {
    width: 190px;
    height: 220px;
    left: 110px;
  }
  .about-text h2 {
    font-size: 1.8em;
  }
}
