﻿/* =============================================================
   ABOUT US - Premium Redesign
   ============================================================= */

:root {
  --brand-dark:  #0d1e30;
  --brand-teal:  #18b28f;
  --brand-teal2: #4ef0d2;
  --brand-blue:  #0b45f6;
  --text-body:   #4a5568;
  --text-head:   #102033;
  --bg-light:    #f4f7fb;
  --radius:      12px;
  --shadow-sm:   0 4px 18px rgba(16,32,51,.07);
  --shadow-md:   0 16px 48px rgba(16,32,51,.12);
}

/* =============================================================
   HERO BANNER
   ============================================================= */
.about-hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: var(--brand-dark);
  color: #fff;
  text-align: center;
}

.about-hero::before {
  content: "";
 position: absolute;
 inset: -60px;
 background:
 radial-gradient(circle at 50% 50%, rgba(24,178,143,.2) 0%, transparent 70%),
 url('../images/service.jpg') center/cover no-repeat;
 opacity: .4;
 animation: heroBgPan 25s linear infinite alternate;
 z-index: 0;
}

.about-hero::after {
 content: "";
 position: absolute;
 inset: 0;
 background: linear-gradient(180deg, rgba(13,30,48,.8) 0%, rgba(13,30,48,.95) 100%);
 z-index: 0;
}

.about-hero .container { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }

.about-kicker {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 background: rgba(24,178,143,.15);
 border: 1px solid rgba(24,178,143,.4);
 border-radius: 50px;
 color: var(--brand-teal2);
 font-size: 12px;
 font-weight: 800;
 letter-spacing: 2px;
 padding: 6px 20px;
 text-transform: uppercase;
 margin-bottom: 24px;
}

.about-hero h1 {
 font-size: clamp(36px, 6vw, 64px);
 font-weight: 900;
 line-height: 1.1;
 margin: 0 0 24px;
 max-width: 800px;
 text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.about-hero-lead {
 color: rgba(255,255,255,.75);
 font-size: 19px;
 line-height: 1.7;
 max-width: 700px;
 margin: 0 0 40px;
}

/* =============================================================
 WHO WE ARE SECTION
 ============================================================= */
.about-who {
 padding: 100px 0;
 background: #fff;
}

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

.who-content-kicker {
 color: var(--brand-teal);
 font-size: 13px;
 font-weight: 800;
 letter-spacing: 1.5px;
 text-transform: uppercase;
 margin-bottom: 12px;
 display: block;
}

.who-content h2 {
 color: var(--text-head);
 font-size: 40px;
 font-weight: 900;
 line-height: 1.15;
 margin: 0 0 24px;
}

.who-content p {
 color: var(--text-body);
 font-size: 17px;
 line-height: 1.8;
 margin-bottom: 20px;
}

/* Visual Stats Grid next to Who We Are */
.who-stats-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 20px;
}

.who-stat-card {
 background: var(--bg-light);
 border-radius: var(--radius);
 padding: 30px;
 text-align: center;
 border: 1px solid #e2eaf1;
 transition: transform .3s, box-shadow .3s;
}

.who-stat-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-sm);
 background: #fff;
 border-color: var(--brand-teal);
}

.who-stat-num {
 display: block;
 font-size: 46px;
 font-weight: 900;
 color: var(--brand-dark);
 line-height: 1;
 margin-bottom: 8px;
}

.who-stat-label {
 color: var(--brand-teal);
 font-size: 13px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 1px;
}

/* =============================================================
 STATEMENTS (Mission, Vision, Values)
 ============================================================= */
.about-statements {
 background: var(--bg-light);
 padding: 90px 0;
}

.stmt-header {
 text-align: center;
 margin-bottom: 60px;
}
.stmt-header h2 {
 font-size: 36px;
 font-weight: 900;
 color: var(--text-head);
 margin: 0;
}

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

.stmt-card {
 background: #fff;
 border-radius: var(--radius);
 padding: 40px 32px;
 box-shadow: var(--shadow-sm);
 border: 1px solid #e2eaf1;
 position: relative;
 overflow: hidden;
 transition: transform .3s, box-shadow .3s;
 display: flex;
 flex-direction: column;
}

.stmt-card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-md);
}

/* Color variations for cards */
.stmt-card.teal { border-bottom: 4px solid var(--brand-teal); }
.stmt-card.blue { border-bottom: 4px solid var(--brand-blue); }
.stmt-card.red { border-bottom: 4px solid #f4b000; } /* Using yellow/gold instead of hard red */

.stmt-icon {
 width: 60px;
 height: 60px;
 border-radius: 12px;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 24px;
 margin-bottom: 24px;
}

.stmt-card.teal .stmt-icon { background: rgba(24,178,143,.1); color: var(--brand-teal); }
.stmt-card.blue .stmt-icon { background: rgba(11,69,246,.1); color: var(--brand-blue); }
.stmt-card.red .stmt-icon { background: rgba(244,176,0,.1); color: #f4b000; }

.stmt-card h3 {
 font-size: 22px;
 font-weight: 800;
 color: var(--text-head);
 margin: 0 0 16px;
}

.stmt-card p {
 color: var(--text-body);
 font-size: 16px;
 line-height: 1.7;
 margin: 0;
 flex-grow: 1;
}

/* =============================================================
 HISTORY / JOURNEY SECTION
 ============================================================= */
.about-history {
 padding: 90px 0;
 background: #fff;
}

.history-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 50px;
}

.history-content h2 {
 font-size: 34px;
 font-weight: 900;
 color: var(--text-head);
 margin: 0 0 20px;
}

.history-content p {
 color: var(--text-body);
 font-size: 16px;
 line-height: 1.8;
 margin-bottom: 20px;
}

.history-timeline {
 position: relative;
 padding-left: 30px;
 border-left: 2px dashed rgba(24,178,143,.3);
}

.timeline-item {
 position: relative;
 margin-bottom: 30px;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
 position: absolute;
 left: -40px;
 top: 4px;
 width: 18px;
 height: 18px;
 border-radius: 50%;
 background: var(--brand-teal);
 border: 4px solid #fff;
 box-shadow: 0 0 0 2px rgba(24,178,143,.2);
}

.timeline-item h4 {
 font-size: 18px;
 font-weight: 800;
 color: var(--text-head);
 margin: 0 0 8px;
}

.timeline-item p {
 color: var(--text-body);
 font-size: 15px;
 line-height: 1.6;
 margin: 0;
}

/* =============================================================
 RESPONSIVE
 ============================================================= */
@media (max-width: 991.98px) {
 .who-grid, .history-grid { grid-template-columns: 1fr; gap: 40px; }
 .stmt-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
 .about-hero { padding: 90px 0 70px; }
 .about-hero h1 { font-size: clamp(32px, 8vw, 40px); }
 .about-hero-lead { font-size: 16px; }
 .stmt-grid { grid-template-columns: 1fr; }
 .who-stats-grid { grid-template-columns: 1fr; }
}

/* Site-wide theme support */
body.dark-theme .about-who,
body.dark-theme .about-history {
 background: #07100f;
}

body.dark-theme .about-statements {
 background: #0b1513;
}

body.dark-theme .who-content h2,
body.dark-theme .stmt-header h2,
body.dark-theme .history-content h2,
body.dark-theme .stmt-card h3,
body.dark-theme .timeline-item h4,
body.dark-theme .who-stat-num {
 color: #edf5f3;
}

body.dark-theme .who-content p,
body.dark-theme .stmt-card p,
body.dark-theme .history-content p,
body.dark-theme .timeline-item p {
 color: #b8c4c0;
}

body.dark-theme .who-stat-card,
body.dark-theme .stmt-card {
 background: #101b19;
 border-color: rgba(255, 255, 255, .09);
 box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
}
