/* ==========================================================================
   About Page Styles — Clean White Luxury Theme
   ========================================================================== */

/* ── 0. Utility grids ───────────────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* ── 1. Page Hero ───────────────────────────────────────────────────────── */
.about-hero {
  padding: 5rem 0 4rem;
  text-align: center;
  min-height: 83vh;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  isolation: isolate;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-2);
  z-index: -1;
  opacity: 0.5;
}

.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ── 2. Our Story ───────────────────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.story-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── 3. Timeline ────────────────────────────────────────────────────────── */
.timeline {
  border-left: 2px solid var(--border);
  padding-left: 2rem;
  margin-top: 3rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.38rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 2px !important;
  background: var(--tan);
  border: 2px solid #FFFFFF;
}

.timeline-year {
  color: var(--green-primary);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

/* ── 4. Mission / Vision / Values ───────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
}

.value-card {
  padding: 2.2rem 2rem;
  border: 1px solid var(--border);
  border-radius: 6px !important;
  background: var(--bg-surface);
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.value-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.value-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* ── 5. Stats ───────────────────────────────────────────────────────────── */
.stats-section .glass.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 6px !important;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
  .stats-section .glass.stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-section .glass.stats {
    grid-template-columns: 1fr;
  }
}

.stat {
  padding: 2.4rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

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

.stat-v {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--green-primary);
  margin-bottom: 0.35rem;
}

.stat-l {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ── 6. Team / Leadership ───────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 6px !important;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.team-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--green-primary);
}

.team-avatar i,
.team-avatar svg {
  width: 2rem;
  height: 2rem;
}

.team-name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.team-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.team-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 6px !important;
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.team-socials a:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: var(--green-soft);
}

.team-socials a i,
.team-socials a svg {
  width: 0.95rem;
  height: 0.95rem;
}

/* ── 7. Why Choose Us — icon style ─────────────────────────────────────── */
.ico {
  width: 2rem;
  height: 2rem;
  color: var(--green-primary);
  margin-bottom: 0.75rem;
}

/* ── 8. Awards & Partnerships ───────────────────────────────────────────── */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .awards-grid { grid-template-columns: 1fr; }
}

.award-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 6px !important;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.award-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.award-icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--green-primary);
  margin: 0 auto 1rem;
  display: block;
}

.award-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.3rem;
}

.award-org {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── 9. Features grid wrap fix ──────────────────────────────────────────── */
.features-grid {
  margin-top: 0;
}
