/* ============================================================
   KODLY — About Page Styles
   Extends: css/style.css (must be loaded first)
   Only contains styles NOT already in style.css
============================================================ */

/* ── Page Hero / Inner Banner ── */
.page-hero {
  padding: 160px 0 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,43,119,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,43,119,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-hero-orb {
  position: absolute;
  top: -80px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,43,119,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 18px;
}
.page-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.page-hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero__title span { color: var(--primary); }
.page-hero__sub {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.breadcrumb-item {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none !important;
  transition: color 0.18s;
}
.breadcrumb-item:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--primary); font-weight: 600; }
.breadcrumb-sep { font-size: 0.7rem; color: var(--border); }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--primary);
  padding: 48px 0;
}
.stat-bar-item { text-align: center; }
.stat-bar-item__num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-bar-item__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.stat-bar-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  height: 52px;
  align-self: center;
}

/* ── Who We Are ── */
.who-we-are-section {
  padding: 96px 0;
  background: #fff;
}
.who-image-stack { position: relative; }
.who-image-main {
  width: 100%;
  border-radius: 20px;
  height: 480px;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-gray) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.who-image-main img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }

/* placeholder when no image provided */
.who-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
}
.who-image-placeholder i { font-size: 3rem; color: var(--primary); opacity: 0.3; }
.who-image-placeholder span { font-size: 0.82rem; color: var(--text-muted); }

.who-badge-years {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.who-badge-years__num  { font-size: 2rem; font-weight: 800; line-height: 1; }
.who-badge-years__text { font-size: 0.75rem; opacity: 0.8; margin-top: 4px; }

.who-badge-award {
  position: absolute;
  top: 24px; left: -20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}
.who-badge-award__icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(42,43,119,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.who-badge-award__title { font-size: 0.75rem; font-weight: 700; color: var(--text-dark); }
.who-badge-award__sub   { font-size: 0.65rem; color: var(--text-muted); margin-top: 1px; }

.who-content { padding-left: 20px; }
.who-content__heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.who-content__text {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Who we are — value pills */
.who-values { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 30px; }
.who-value-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(42,43,119,0.06);
  border: 1px solid rgba(42,43,119,0.12);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
}
.who-value-pill i { font-size: 0.85rem; }

/* ── Mission & Vision ── */
.mission-vision-section {
  padding: 96px 0;
  background: var(--bg-soft);
}

.mv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.mv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.mv-card--mission::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(42,43,119,0.04);
}
.mv-card--vision::before {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(79,80,200,0.05);
}

.mv-card__icon-wrap {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.mv-card--mission .mv-card__icon-wrap { background: rgba(42,43,119,0.08); color: var(--primary); }
.mv-card--vision  .mv-card__icon-wrap { background: rgba(79,80,200,0.08); color: var(--accent); }

.mv-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.mv-card--mission .mv-card__tag { background: rgba(42,43,119,0.08); color: var(--primary); }
.mv-card--vision  .mv-card__tag { background: rgba(79,80,200,0.08); color: var(--accent); }

.mv-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.mv-card__text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

.mv-card__points { list-style: none; padding: 0; margin: 0; }
.mv-card__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mv-card__points li:last-child { border-bottom: none; }
.mv-card__points li i { color: var(--primary); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }

/* ── Values Grid ── */
.values-section { padding: 96px 0; background: #fff; }

.value-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.value-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: all 0.25s;
}
.value-card:hover .value-card__icon { background: rgba(255,255,255,0.15); color: #fff; }
.value-card__title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; transition: color 0.25s; }
.value-card__desc  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; transition: color 0.25s; }
.value-card:hover .value-card__title { color: #fff; }
.value-card:hover .value-card__desc  { color: rgba(255,255,255,0.75); }

/* ── Team Section ── */
.team-section { padding: 96px 0; background: var(--bg-soft); }

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  height: 100%;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.team-card__avatar {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
}
.team-card__avatar--blue   { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); }
.team-card__avatar--purple { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.team-card__avatar--green  { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.team-card__avatar--pink   { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }

.team-card__body { padding: 20px 22px 22px; }
.team-card__name   { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-card__role   { font-size: 0.8rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.team-card__bio    { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.team-card__socials { display: flex; gap: 8px; }
.team-social-btn {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none !important;
  transition: all 0.18s;
}
.team-social-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Why Choose Us ── */
.why-section { padding: 96px 0; background: #fff; }

.why-visual {
  background: var(--primary);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.why-visual::after {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.why-visual__quote {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.why-visual__quote::before {
  content: '"';
  font-size: 4rem;
  color: rgba(255,255,255,0.12);
  line-height: 0;
  vertical-align: -30px;
  margin-right: 4px;
}
.why-visual__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.why-visual__stat-num   { font-size: 1.8rem; font-weight: 800; color: #fff; letter-spacing: -0.04em; line-height: 1; }
.why-visual__stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

.why-list { list-style: none; padding: 0; margin: 0 0 32px; }
.why-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.why-list__item:last-child { border-bottom: none; }
.why-list__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(42,43,119,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.why-list__title { font-size: 0.92rem; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.why-list__desc  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* ── Timeline / Journey ── */
.journey-section { padding: 96px 0; background: var(--bg-soft); }

.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), rgba(42,43,119,0.1));
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.timeline-dot--hollow {
  background: #fff;
  border-color: var(--border);
  box-shadow: 0 0 0 2px var(--border);
}

.timeline-item__year {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
}
.timeline-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.timeline-item__desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── About page responsive ── */
@media (max-width: 991px) {
  .who-content { padding-left: 0; margin-top: 60px; }
  .who-image-stack { margin-bottom: 60px; }
  .who-badge-years { bottom: -10px; right: -10px; }
  .who-badge-award { top: 14px; left: -10px; }
  .stat-bar-divider { display: none; }
  .why-visual { margin-bottom: 48px; }
}
@media (max-width: 767px) {
  .page-hero { padding: 130px 0 60px; }
  .mv-card { padding: 30px 24px; }
  .why-visual__stats { grid-template-columns: 1fr 1fr; }
}
