/* ================================================
   about.css — About Section
   LOKOTRE Platform — ARFF BDJ
   ================================================ */

.about-section {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(230, 57, 70, 0.30),
    transparent);
}

/* ════════════════════════════════════════
   HERO CARD
   ════════════════════════════════════════ */

.about-hero-card {
  position: relative;
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--bd);
  border-radius: var(--r-xl);
  padding: 2.5rem 2.25rem;
  height: 100%;
  overflow: hidden;
  transition: var(--ease);
}

.about-hero-card:hover {
  border-color: var(--bd-2);
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

/* ── Watermark ── */
.about-watermark {
  position: absolute;
  bottom: -2rem;
  right: -0.75rem;
  font-size: 8.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.022);
  letter-spacing: -0.05em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Badge ── */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(230, 57, 70, 0.09);
  border: 1px solid rgba(230, 57, 70, 0.18);
  color: var(--c-primary-light);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  width: fit-content;
}

/* ── Title ── */
.about-hero-title {
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 800;
  color: var(--tx-1);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0;
}

.about-hero-title span {
  color: var(--c-primary);
}

/* ── Text ── */
.about-hero-text {
  font-size: 0.9rem;
  color: var(--tx-2);
  line-height: 1.8;
  margin: 0;
  unicode-bidi: plaintext;
  direction: ltr;
}

/* ── Tag Pills ── */
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.71rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.about-tag--red {
  background: rgba(230, 57, 70, 0.10);
  color: var(--c-primary-light);
  border: 1px solid rgba(230, 57, 70, 0.18);
}

.about-tag--orange {
  background: rgba(247, 127, 0, 0.10);
  color: #ffad4d;
  border: 1px solid rgba(247, 127, 0, 0.18);
}

.about-tag--blue {
  background: rgba(67, 97, 238, 0.10);
  color: #7d9cff;
  border: 1px solid rgba(67, 97, 238, 0.18);
}

.about-tag--green {
  background: rgba(46, 196, 182, 0.10);
  color: #4dd4c8;
  border: 1px solid rgba(46, 196, 182, 0.18);
}

/* ════════════════════════════════════════
   STAT CARDS
   ════════════════════════════════════════ */

.about-stat-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--bd);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.2rem;
  height: 100%;
  overflow: hidden;
  transition: var(--spring);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  min-height: 110px;
}

.about-stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--bd-2);
}

.about-stat-icon {
  position: absolute;
  bottom: 0.5rem;
  right: 0.75rem;
  font-size: 2.4rem;
  opacity: 0.05;
  pointer-events: none;
}

.about-stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.about-stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--tx-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Stat Variants ── */
.about-stat-card--blue {
  border-left: 3px solid var(--c-blue);
}
.about-stat-card--blue .about-stat-number {
  color: #7b9bff;
}
.about-stat-card--blue:hover {
  box-shadow: var(--sh-blu);
}

.about-stat-card--red {
  border-left: 3px solid var(--c-primary);
}
.about-stat-card--red .about-stat-number {
  color: var(--c-primary-light);
}
.about-stat-card--red:hover {
  box-shadow: var(--sh-red);
}

.about-stat-card--yellow {
  border-left: 3px solid var(--c-yellow);
}
.about-stat-card--yellow .about-stat-number {
  color: var(--c-yellow);
}
.about-stat-card--yellow:hover {
  box-shadow: 0 4px 24px rgba(244, 208, 63, 0.20);
}

.about-stat-card--green {
  border-left: 3px solid var(--c-green);
}
.about-stat-card--green .about-stat-number {
  color: #4dd4c8;
}
.about-stat-card--green:hover {
  box-shadow: var(--sh-grn);
}

/* ════════════════════════════════════════
   INFO CARDS — Row 2
   ════════════════════════════════════════ */

.about-info-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--bd);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem 2.25rem;
  height: 100%;
  overflow: hidden;
  transition: var(--spring);
  display: flex;
  flex-direction: column;
}

.about-info-card:hover {
  transform: translateY(-6px);
  border-color: var(--bd-2);
}

/* ── Color Bar Bottom ── */
.about-info-color-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}

.about-info-card--blue   .about-info-color-bar { background: var(--c-blue); }
.about-info-card--yellow .about-info-color-bar { background: var(--c-yellow); }
.about-info-card--green  .about-info-color-bar { background: var(--c-green); }

.about-info-card--blue:hover   { box-shadow: var(--sh-blu); }
.about-info-card--yellow:hover { box-shadow: 0 8px 32px rgba(244, 208, 63, 0.15); }
.about-info-card--green:hover  { box-shadow: var(--sh-grn); }

/* ── Number Dekoratif ── */
.about-info-number {
  position: absolute;
  top: -1rem;
  right: 0.75rem;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* ── Icon ── */
.about-info-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  transition: var(--ease);
  flex-shrink: 0;
}

.about-info-card--blue .about-info-icon {
  background: rgba(67, 97, 238, 0.12);
  color: #7b9bff;
  border: 1px solid rgba(67, 97, 238, 0.20);
}

.about-info-card--yellow .about-info-icon {
  background: rgba(244, 208, 63, 0.10);
  color: var(--c-yellow);
  border: 1px solid rgba(244, 208, 63, 0.20);
}

.about-info-card--green .about-info-icon {
  background: rgba(46, 196, 182, 0.10);
  color: #4dd4c8;
  border: 1px solid rgba(46, 196, 182, 0.20);
}

.about-info-card:hover .about-info-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* ── Title ── */
.about-info-title {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--tx-1);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

/* ── Text ── */
.about-info-text {
  position: relative;
  z-index: 1;
  font-size: 0.84rem;
  color: var(--tx-2);
  line-height: 1.75;
  margin-bottom: 1rem;
  unicode-bidi: plaintext;
  direction: ltr;
}

/* ── List ── */
.about-info-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
}

.about-info-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.81rem;
  color: var(--tx-2);
  padding: 0.32rem 0;
  border-bottom: 1px solid var(--bd);
}

.about-info-list li:last-child {
  border-bottom: none;
}

.about-info-list i {
  font-size: 0.68rem;
  flex-shrink: 0;
}

.about-info-card--blue   .about-info-list i { color: #7b9bff; }
.about-info-card--yellow .about-info-list i { color: var(--c-yellow); }
.about-info-card--green  .about-info-list i { color: #4dd4c8; }

/* ── Map Button ── */
.btn-about-map {
  display: inline-flex;
  align-items: center;
  background: rgba(46, 196, 182, 0.08);
  border: 1px solid rgba(46, 196, 182, 0.20);
  color: #4dd4c8 !important;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-md);
  transition: var(--spring);
  text-decoration: none !important;
  width: fit-content;
}

.btn-about-map:hover {
  background: var(--c-green);
  border-color: var(--c-green);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--sh-grn);
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 991.98px) {
  .about-hero-card { padding: 2rem 1.5rem; }
}

@media (max-width: 575.98px) {
  .about-hero-title { font-size: 1.3rem; }
  .about-watermark  { font-size: 5rem; }
}