/* ============================================================
   ECONADI — ABOUT PAGE STYLES
   ============================================================ */

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,32,96,0.88) 0%,
    rgba(0,32,96,0.70) 55%,
    rgba(0,145,196,0.55) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

/* Breadcrumb */
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-bottom: 20px;
}
.breadcrumb li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb li a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.breadcrumb li a:hover { color: var(--teal); }
.breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
  color: rgba(255,255,255,0.3);
}
.breadcrumb li:last-child { color: rgba(255,255,255,0.85); }

.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  line-height: 1.7;
}


/* ================================================================
   COMPANY OVERVIEW
   ================================================================ */
.about-overview { background: var(--white); }

.about-overview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-overview-text .section-body { max-width: 100%; }

/* Division list */
.divisions-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}

.division-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.division-item:last-child { border-bottom: none; }

.division-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
  transition: opacity var(--transition);
}
.division-item:hover .division-num { opacity: 1; }

.division-text h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.3;
}
.division-text p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ================================================================
   VISION & MISSION
   ================================================================ */
.vision-mission { background: var(--off-white); }

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 28px;
  align-items: start;
}

.vm-card {
  border-radius: var(--radius-md);
  padding: 44px 40px;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.vm-card--vision {
  background: var(--navy);
  color: var(--white);
}

.vm-card--mission {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.vm-card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
}
.vm-card--vision .vm-card-icon { color: var(--teal); }
.vm-card--mission .vm-card-icon { color: var(--teal); }
.vm-card-icon svg { width: 100%; height: 100%; }

.vm-card-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.vm-card--vision .vm-card-title { color: var(--teal); }
.vm-card--mission .vm-card-title { color: var(--teal); }

.vm-card-text {
  font-size: 1.05rem;
  line-height: 1.75;
  font-style: italic;
}
.vm-card--vision .vm-card-text { color: rgba(255,255,255,0.88); }

/* Mission list */
.vm-mission-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vm-mission-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.mission-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 7px;
}


/* ================================================================
   CORE TEAM
   ================================================================ */
.core-team { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

/* Photo */
.team-photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--off-white);
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo { transform: scale(1.04); }

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,32,96,0.92) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.team-card:hover .team-photo-overlay { opacity: 1; }

.team-overlay-creds {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  font-style: italic;
}

/* Info */
.team-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.team-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 4px;
}

.team-credentials {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
}

.team-role-badge {
  flex-shrink: 0;
  background: rgba(73,157,128,0.12);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(73,157,128,0.3);
  white-space: nowrap;
}

.team-speciality {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.6;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.team-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
}

/* CTA actions */
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
  .about-overview-inner { grid-template-columns: 1fr; gap: 48px; }
  .vm-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  .page-hero { min-height: 340px; padding-bottom: 48px; }
  .page-hero-title { font-size: 1.9rem; }
  .vm-card { padding: 32px 24px; }
  .team-info { padding: 20px; }
  .team-header { flex-direction: column; gap: 8px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
