/**
 * ============================================================================
 * ABOUT US PAGE DEDICATED STYLESHEET - Financier Buzz
 * Luxury Navy (#0a2540) & Gold (#d4af37) | Interactive Timeline | Stat Counters
 * ============================================================================
 */

:root {
  --ap-navy: #0a2540;
  --ap-navy-dark: #06182a;
  --ap-gold: #d4af37;
  --ap-gold-light: #fef08a;
  --ap-gold-bg: rgba(212, 175, 55, 0.12);
  --ap-emerald: #10b981;
  --ap-border: #e2e8f0;
  --ap-radius: 1.25rem;
  --ap-radius-sm: 0.85rem;
  --ap-shadow: 0 20px 45px -15px rgba(10, 37, 64, 0.12);
}

/* About Hero Banner */
.ap-hero-banner {
  background: radial-gradient(circle at 85% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 55%),
              linear-gradient(135deg, #061727 0%, #0a2540 60%, #163e68 100%);
  color: #ffffff;
  padding: 4.5rem 0 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.ap-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.85rem;
  line-height: 1.18;
  color: #ffffff;
  letter-spacing: -0.5px;
}

/* Mission & Vision Cards */
.ap-mission-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--ap-radius);
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(10, 37, 64, 0.08);
  transition: all 0.3s ease;
}

.ap-mission-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: var(--ap-shadow);
}

.ap-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, var(--ap-gold), var(--ap-navy));
  transition: height 0.3s ease;
}

.ap-mission-card:hover::before {
  height: 100%;
}

.ap-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--ap-radius-sm);
  background: var(--ap-gold-bg);
  color: var(--ap-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.ap-mission-card:hover .ap-card-icon {
  background: var(--ap-navy);
  color: var(--ap-gold);
  transform: scale(1.08);
}

/* Statistics Counter Grid */
.ap-stats-section {
  background: var(--ap-navy-dark);
  color: #ffffff;
  padding: 4.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.ap-stat-box {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ap-stat-box:last-child {
  border-right: none;
}

.ap-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--ap-gold-light);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.ap-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Timeline Architecture */
.ap-timeline-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.ap-timeline-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #e2e8f0;
  transform: translateX(-50%);
}

.ap-timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
}

.ap-timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 3rem;
  text-align: right;
}

.ap-timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
  text-align: left;
}

.ap-timeline-dot {
  position: absolute;
  top: 10px;
  width: 20px;
  height: 20px;
  background: var(--ap-gold);
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
  z-index: 2;
}

.ap-timeline-item:nth-child(odd) .ap-timeline-dot {
  right: -10px;
}

.ap-timeline-item:nth-child(even) .ap-timeline-dot {
  left: -10px;
}

.ap-timeline-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--ap-radius-sm);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 10px 25px -10px rgba(10, 37, 64, 0.08);
  transition: transform 0.3s ease;
}

.ap-timeline-card:hover {
  transform: translateY(-4px);
  border-color: var(--ap-gold);
}

.ap-timeline-year {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ap-gold);
  background: var(--ap-gold-bg);
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

/* Why Choose Us Cards */
.ap-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--ap-radius);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: all 0.3s ease;
}

.ap-feature-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: var(--ap-shadow);
}

.ap-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--ap-radius-sm);
  background: var(--ap-gold-bg);
  color: var(--ap-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.ap-feature-card:hover .ap-feature-icon {
  background: var(--ap-navy);
  color: var(--ap-gold);
}

/* Responsive */
@media (max-width: 991px) {
  .ap-stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .ap-stat-box:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .ap-timeline-wrap::before {
    left: 20px;
  }
  .ap-timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 50px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
  .ap-timeline-item .ap-timeline-dot {
    left: 10px !important;
    right: auto !important;
  }
}
