/* ── ABOUT PAGE ── */

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── HERO ── */
.about-hero {
  background: linear-gradient(135deg, #071a07 0%, #0d2e0d 50%, #1a3a1a 100%);
  padding: 80px 40px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(126,217,87,0.08) 0%, transparent 70%);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(126,217,87,0.12);
  border: 1px solid rgba(126,217,87,0.3);
  color: #7ed957;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-hero-title {
  font-size: 54px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.about-hero-title span { color: #7ed957; }

.about-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.about-hero-wave {
  margin-bottom: -2px;
}

.about-hero-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ── WELCOME SECTION ── */
.about-welcome {
  padding: 70px 0 60px;
  background: #fff;
}

.about-welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-section-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.about-section-tag.centered {
  display: block;
  text-align: center;
  margin-bottom: 12px;
}

.about-section-title {
  font-size: 34px;
  font-weight: 900;
  color: #111;
  line-height: 1.2;
  margin-bottom: 22px;
}

.about-section-title.centered {
  text-align: center;
  margin-bottom: 40px;
}

.about-para {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-para strong { color: #1a3a1a; }

/* Stats row */
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #eee;
}

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

.stat-number {
  font-size: 32px;
  font-weight: 900;
  color: #2e7d32;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: #888;
  font-weight: 600;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Visual card stack */
.about-visual-col {
  position: relative;
}

.about-card-stack {
  position: relative;
  padding: 20px;
}

.about-glow-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(46,125,50,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.about-visual-card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-visual-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(46,125,50,0.12);
  border-color: #a5d6a7;
}

.card-top { margin-left: 0; }
.card-mid { margin-left: 24px; }
.card-bot { margin-left: 0; }

.about-visual-card .fas {
  font-size: 26px;
  color: #2e7d32;
  width: 48px;
  height: 48px;
  background: #e8f5e9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-visual-card div {
  display: flex;
  flex-direction: column;
}

.about-visual-card strong {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.about-visual-card span {
  font-size: 12px;
  color: #888;
  margin-top: 3px;
}

/* ── MISSION SECTION ── */
.about-mission {
  padding: 60px 0;
  background: #f4f7f4;
}

.mission-box {
  background: linear-gradient(135deg, #071a07 0%, #0d2e0d 100%);
  border-radius: 20px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(126,217,87,0.1) 0%, transparent 60%);
}

.mission-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.mission-icon img {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
}

.mission-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #7ed957;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mission-title {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 24px;
}

.mission-divider {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 3px;
  background: #7ed957;
  border-radius: 2px;
  margin: 0 auto 20px;
}

.mission-sub {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── WHY CHOOSE SECTION ── */
.about-why {
  padding: 70px 0;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #fafafa;
  border: 1.5px solid #eee;
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.why-card:hover {
  border-color: #a5d6a7;
  box-shadow: 0 8px 28px rgba(46,125,50,0.1);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: #e8f5e9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-icon .fas {
  font-size: 22px;
  color: #2e7d32;
}

.why-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
  line-height: 1.3;
}

.why-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* ── CLOSING SECTION ── */
.about-closing {
  padding: 70px 0;
  background: linear-gradient(135deg, #f4f7f4 0%, #e8f5e9 100%);
}

.closing-inner {
  text-align: center;
}

.closing-bolt {
  font-size: 40px;
  color: #2e7d32;
  margin-bottom: 16px;
  display: block;
}

.closing-inner h2 {
  font-size: 36px;
  font-weight: 900;
  color: #111;
  margin-bottom: 14px;
}

.closing-inner h2 span { color: #2e7d32; }

.closing-inner p {
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.6;
}

.closing-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.closing-btn-primary {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.closing-btn-primary:hover { background: #1b5e20; }

.closing-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #2e7d32;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #2e7d32;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}

.closing-btn-secondary:hover {
  background: #2e7d32;
  color: #fff;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .about-container { padding: 0 16px; }

  .about-hero { padding: 50px 16px 30px; }
  .about-hero-title { font-size: 34px; }
  .about-hero-sub { font-size: 14px; }

  .about-welcome { padding: 40px 0; }
  .about-welcome-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-visual-col { display: none; }

  .about-section-title { font-size: 26px; }
  .about-stats { gap: 20px; }
  .stat-number { font-size: 26px; }

  .mission-box { padding: 40px 24px; border-radius: 14px; }
  .mission-title { font-size: 20px; }

  .about-why { padding: 44px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; }

  .about-closing { padding: 44px 0; }
  .closing-inner h2 { font-size: 26px; }
  .closing-btn-primary, .closing-btn-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .about-stats { flex-direction: column; gap: 16px; }
}
