/* ═══════════════════════════════════════════════════════════════════════════
   MAXZEETON.NG — ABOUT PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

.page-hero {
  position: relative;
  height: 65vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 80px;
}

.page-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(5, 8, 16, 0.7);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 16px;
  color: var(--text-white);
}

.page-hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Story Section */
.story-section {
  max-width: 1100px;
  margin: 0 auto 80px;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.story-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: var(--bg-card);
}

.story-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.story-section h2 {
  margin-bottom: 16px;
}

.story-content {
  text-align: left;
}

.story-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.story-content h3 {
  font-size: 1.8rem;
  margin: 18px 0 10px;
  color: var(--text-primary);
}

.story-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 12px;
}

.story-content .story-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.story-content strong {
  color: var(--text-primary);
}

.story-services {
  margin-top: 44px;
}

.story-services-title {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 24px;
  color: var(--text-primary);
}

.story-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.story-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: all 0.3s ease;
}

.story-service-card:hover {
  border-color: var(--red-border);
  box-shadow: 0 8px 30px var(--red-glow);
  transform: translateY(-4px);
}

.story-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--red-dim);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.story-service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.story-service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0;
}

.story-services-note {
  max-width: 880px;
  margin: 22px auto 0;
  text-align: center;
  color: var(--text-light);
  line-height: 1.75;
}

.story-services-action {
  margin-top: 24px;
  text-align: center;
}

/* Mission & Vision */
.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.mission-card,
.vision-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.mission-card h3,
.vision-card h3 {
  color: var(--red);
  margin-bottom: 16px;
}

.mission-card p,
.vision-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Core Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.value-card:hover {
  border-color: var(--red-border);
  box-shadow: 0 8px 30px var(--red-glow);
  transform: translateY(-5px);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-dim);
  border-radius: 12px;
  color: var(--red);
  font-size: 1.5rem;
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.team-member {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}

.team-member:hover {
  border-color: rgba(214, 0, 28, 0.25);
  transform: translateY(-5px);
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 2.5rem;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--bg-section-alt);
  padding: 80px 0;
  overflow: hidden;
}

.testimonials-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 48px;
}

.testimonials-track {
  display: flex;
  gap: 32px;
  animation: testimonialScroll 30s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes testimonialScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% / 2));
  }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  width: 450px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--red-border);
  box-shadow: 0 8px 30px var(--red-glow);
  transform: translateY(-5px);
}

.testimonial-stars {
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--red-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.author-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}


/* Responsive */
@media (max-width: 1024px) {
  .story-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-media img {
    min-height: 340px;
  }

  .values-grid,
  .stats-row,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-vision {
    gap: 40px;
  }

  .story-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mission-vision,
  .values-grid,
  .stats-row,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    height: 40vh;
    min-height: 300px;
    margin-bottom: 60px;
  }

  .story-section {
    margin-bottom: 10px;
  }

  .story-content {
    text-align: left;
  }

  .story-media img {
    min-height: 260px;
  }

  .story-services {
    margin-top: 30px;
  }

  .story-services-title {
    margin-bottom: 18px;
  }

  .story-service-card {
    padding: 20px;
  }

  .story-services-note {
    text-align: left;
  }

  .story-services-action {
    text-align: left;
  }

  .testimonial-card {
    width: 300px;
  }
}
