/* ─── Shared helpers ─────────────────────────────────────────── */

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #747780;
}
.page-breadcrumb a { color: #747780; transition: color 160ms ease; }
.page-breadcrumb a:hover { color: #1eb8d4; }
.page-breadcrumb .material-symbols-outlined { font-size: 1rem; color: #c4c6d0; }
.page-breadcrumb span:last-child { color: #001736; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1eb8d4;
}
.section-label .material-symbols-outlined { font-size: 1rem; }

.section-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #001736;
  line-height: 1.1;
}

.section-desc {
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #43474f;
}

/* ─── Hero ───────────────────────────────────────────────────── */

.about-hero {
  position: relative;
  background: #f7f9fb;
  overflow: hidden;
}

.about-hero-inner {
  display: grid;
  gap: 3rem;
  padding-bottom: 0;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-hero-inner {
    grid-template-columns: minmax(0, 1fr) 480px;
    min-height: 540px;
    padding-bottom: 5rem;
  }
}

.about-hero-text { padding-top: 2rem; }

@media (min-width: 1024px) {
  .about-hero-text { padding-top: 0; }
}

.about-hero-image {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

@media (min-width: 1024px) {
  .about-hero-image {
    aspect-ratio: auto;
    align-self: stretch;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(25, 28, 30, 0.1);
}

.about-hero-badge .material-symbols-outlined {
  font-size: 1.3rem;
  color: #1eb8d4;
}

.about-hero-badge strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: #001736;
  letter-spacing: -0.02em;
}

.about-hero-badge small {
  display: block;
  font-size: 0.72rem;
  color: #747780;
  margin-top: 0.05rem;
}

/* ─── Mission / Vision ───────────────────────────────────────── */

.mv-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .mv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.mv-card {
  border-radius: 1.5rem;
  padding: 2rem 2rem 2.25rem;
  border: 1px solid rgba(196, 198, 208, 0.2);
}

.mv-card-mission {
  background: #001736;
  color: #ffffff;
}

.mv-card-vision {
  background: linear-gradient(135deg, rgba(30, 184, 212, 0.1) 0%, rgba(255, 255, 255, 0.98) 65%);
  background-color: #ffffff;
}

.mv-card-icon {
  display: inline-flex;
  height: 2.8rem;
  width: 2.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  margin-bottom: 1.25rem;
}

.mv-card-mission .mv-card-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #44d8f1;
}

.mv-card-vision .mv-card-icon {
  background: rgba(30, 184, 212, 0.12);
  color: #1eb8d4;
}

.mv-card-icon .material-symbols-outlined { font-size: 1.35rem; }

.mv-card h2 {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.mv-card-mission h2 { color: #ffffff; }
.mv-card-vision h2 { color: #001736; }

.mv-card p {
  font-size: 0.9rem;
  line-height: 1.75;
}

.mv-card-mission p { color: rgba(255, 255, 255, 0.78); }
.mv-card-vision p { color: #43474f; }

/* ─── Values ─────────────────────────────────────────────────── */

.values-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .values-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.value-card {
  padding: 1.6rem 1.6rem 1.8rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(196, 198, 208, 0.24);
  background: #f7f9fb;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 184, 212, 0.2);
  box-shadow: 0 16px 36px rgba(25, 28, 30, 0.07);
}

.value-icon {
  display: inline-flex;
  height: 2.6rem;
  width: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: rgba(30, 184, 212, 0.1);
  color: #1eb8d4;
  margin-bottom: 1rem;
}

.value-icon .material-symbols-outlined { font-size: 1.2rem; }

.value-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #001736;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #43474f;
}

/* ─── Timeline ───────────────────────────────────────────────── */

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 1.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.43rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: rgba(196, 198, 208, 0.5);
  border-radius: 2px;
}

@media (min-width: 768px) {
  .timeline { padding-left: 2rem; }
  .timeline::before { left: 0.93rem; }
}

.timeline-item {
  position: relative;
  padding: 0 0 2.25rem 1.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

@media (min-width: 768px) {
  .timeline-item { padding-left: 2rem; }
}

.timeline-dot {
  position: absolute;
  left: -1.5rem;
  top: 0.35rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid rgba(196, 198, 208, 0.7);
  box-shadow: 0 0 0 3px rgba(196, 198, 208, 0.2);
}

@media (min-width: 768px) {
  .timeline-dot { left: -2rem; }
}

.timeline-dot-active {
  background: #1eb8d4;
  border-color: #1eb8d4;
  box-shadow: 0 0 0 4px rgba(30, 184, 212, 0.18);
}

.timeline-year {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1eb8d4;
  margin-bottom: 0.4rem;
}

.timeline-content h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #001736;
  margin-bottom: 0.4rem;
}

.timeline-content p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #43474f;
  max-width: 600px;
}

/* ─── Leadership ─────────────────────────────────────────────── */

.leadership-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .leadership-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .leadership-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
}

.leader-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  padding: 0;
  border-radius: 1.35rem;
  border: 1px solid rgba(196, 198, 208, 0.24);
  background: #ffffff;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.leader-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(25, 28, 30, 0.08);
}

.leader-card-placeholder {
  opacity: 0.55;
}

.leader-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(0, 23, 54, 0.08);
  color: #001736;
  margin-bottom: 1rem;
}

.leader-avatar .material-symbols-outlined { font-size: 2rem; }

.leader-avatar-placeholder {
  background: rgba(196, 198, 208, 0.25);
  color: #c4c6d0;
}

.leader-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  flex-shrink: 0;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 350ms ease;
}

.leader-card:hover .leader-photo img { transform: scale(1.04); }

.leader-info {
  padding: 1rem 1rem 1.25rem;
}

.leader-info h3 {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #001736;
  letter-spacing: -0.02em;
}

.leader-info span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #747780;
}

/* ─── FAQ ────────────────────────────────────────────────────── */

.faq-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .faq-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 4rem;
  }
}

.faq-header { position: sticky; top: 110px; }

.faq-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: #1eb8d4;
  letter-spacing: -0.01em;
  transition: color 160ms ease, gap 160ms ease;
}

.faq-contact-link .material-symbols-outlined { font-size: 0.9rem; transition: transform 160ms ease; }
.faq-contact-link:hover { color: #006876; gap: 0.55rem; }
.faq-contact-link:hover .material-symbols-outlined { transform: translateX(2px); }

.faq-list { display: grid; gap: 0.6rem; }

.faq-item {
  border-radius: 1.1rem;
  border: 1px solid rgba(196, 198, 208, 0.3);
  background: #ffffff;
  overflow: hidden;
  transition: border-color 180ms ease;
}

.faq-item:has(.faq-trigger[aria-expanded="true"]) {
  border-color: rgba(30, 184, 212, 0.3);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.05rem 1.25rem;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #001736;
  letter-spacing: -0.01em;
}

.faq-chevron {
  font-size: 1.1rem;
  color: #747780;
  flex-shrink: 0;
  transition: transform 240ms ease, color 180ms ease;
}

.faq-trigger[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: #1eb8d4;
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-body.is-open { grid-template-rows: 1fr; }
.faq-body > div { overflow: hidden; }

.faq-body p {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.87rem;
  line-height: 1.7;
  color: #43474f;
}

.faq-body a { color: #1eb8d4; font-weight: 600; text-decoration: underline; text-decoration-color: rgba(30,184,212,0.35); }
.faq-body a:hover { color: #006876; }
.faq-body strong { color: #001736; font-weight: 700; }
