/* ─── ABOUT PAGE HERO ─────────────────────── */
#about-hero {
  position: relative;
  max-width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 5vw;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
      will-change: transform;
    transform: translate3d(0,0,0) scale(1.15);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11,14,19,0.92) 0%, rgba(11,14,19,0.65) 50%, rgba(11,14,19,0.3) 100%),
    linear-gradient(0deg, rgba(11,14,19,0.6) 0%, transparent 40%);
}

/* ── Decorative corner brackets ── */
.about-bracket {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 2;
  opacity: 0.9;
}

.about-bracket.top-right {
  top: 8%;
  right: 5%;
  border-top: 3px solid var(--c-red); /* was #F5C518 */
  border-right: 3px solid var(--c-red);
}

.about-bracket.bottom-left {
  bottom: 10%;
  left: 3%;
  border-bottom: 3px solid #6FA8FF;
  border-left: 3px solid #6FA8FF;
}

/* ── Decorative dots ── */
.about-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-red); /* was #F5C518 */
  z-index: 2;
  opacity: 0.7;
  animation: dotPulse 3s ease-in-out infinite;
}
.about-dot:nth-child(2) { animation-delay: 0.8s; background: var(--c-blue); }
.about-dot:nth-child(3) { animation-delay: 1.6s; }

@keyframes dotPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

/* ── Hero content ── */
.about-hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  opacity: 0;
  transform: translateX(-60px);
  animation: aboutSlideIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes aboutSlideIn {
  to { opacity: 1; transform: translateX(0); }
}

.about-hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--c-white);
  margin-bottom: 0;
}

.about-hero-accent {
   display: block;
  color: var(--c-red-hi); /* was #F5C518 */
}

.about-hero-divider {
  width: 340px;
  height: 3px;
  margin: 20px 0 24px;
  background: linear-gradient(90deg, var(--c-red), var(--c-blue)); /* was yellow → blue */
  border-radius: 2px;
}

.about-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.about-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-red); /* was #F5C518 */
  color: #fff; /* was #1A1F2B dark text — now white on red */
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 100px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(215,43,43,0.35);
}
.about-hero-btn:hover {
   background: var(--c-red-hi); /* was #FFD740 */
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(215,43,43,0.5);
}

/* ── Scroll indicator ── */
.about-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-mouse {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width: 860px) {
  #about-hero { min-height: 80vh; padding: 100px 6vw 60px; }
  .about-hero-divider { width: 100%; max-width: 340px; }
  .about-bracket.top-right { top: 6%; right: 4%; }
  .about-dot { display: none; }
}

@media (max-width: 500px) {
  .about-hero-desc { font-size: 14.5px; }
  .about-hero-btn { padding: 13px 26px; font-size: 14px; }
  .about-scroll-indicator { display: none; }
}

/* ─── OUR STORY SECTION ─────────────────────── */
#about-story {
  background: #ffffff;
  padding: 100px 5vw;
  text-align: center;
}

.story-text-wrap {
  max-width: 900px;
  margin: 0 auto 56px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-text-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.story-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  color: #1A1F2B;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.story-title span { color: var(--c-red); }

.story-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #4A5568;
  max-width: 820px;
  margin: 0 auto;
}

.story-image-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.story-image-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.story-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 860px) {
  #about-story { padding: 70px 6vw; }
  .story-desc { font-size: 15px; }
}

/* ─── OUR MISSION SECTION ─────────────────────── */
#about-mission {
  background: #F0F2F7;
  padding: 100px 5vw;
  text-align: center;
}

.mission-text-wrap {
  max-width: 860px;
  margin: 0 auto 64px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.mission-text-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mission-title {
  font-family: var(--f-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: #1A1F2B;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.mission-tagline {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-red);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.mission-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #4A5568;
  max-width: 820px;
  margin: 0 auto;
}

/* ── Cards ── */
.mission-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);

  /* zoom-in entrance state */
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

/* stagger */
.mission-card:nth-child(1) { transition-delay: 0s, 0s, 0s, 0s; }
.mission-card:nth-child(2) { transition-delay: 0.12s, 0.12s, 0s, 0s; }
.mission-card:nth-child(3) { transition-delay: 0.24s, 0.24s, 0s, 0s; }
.mission-card:nth-child(4) { transition-delay: 0.36s, 0.36s, 0s, 0s; }

.mission-card.is-visible {
  opacity: 1;
  transform: scale(1);
}

.mission-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: rgba(215,43,43,0.2);
  transform: scale(1.04);
}

/* keep hover scale working after reveal */
.mission-card.is-visible:hover {
  transform: scale(1.04);
}

.mission-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(215,43,43,0.08);
  border: 1px solid rgba(215,43,43,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-icon svg {
  width: 26px;
  height: 26px;
  color: var(--c-red);
}

.mission-card h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: #1A1F2B;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.mission-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #5A6275;
}

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width: 1000px) {
  .mission-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  #about-mission { padding: 70px 6vw; }
  .mission-cards { grid-template-columns: 1fr; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .mission-card {
    opacity: 1;
    transform: none;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }
}
/* ─── OUR VISION SECTION ─────────────────────── */
#about-vision {
  background: #ffffff;
  padding: 100px 5vw;
}

.vision-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  color: #1A1F2B;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: 0.01em;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.vision-subtitle {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-red);
  margin-bottom: 10px;
}

.vision-tagline {
  font-size: 15px;
  font-weight: 700;
  color: #1A1F2B;
  margin-bottom: 20px;
  line-height: 1.5;
}

.vision-desc {
  font-size: 15px;
  line-height: 1.85;
  color: #4A5568;
  margin-bottom: 18px;
}
.vision-desc:last-child { margin-bottom: 0; }

.vision-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  object-fit: cover;
}

@media (max-width: 860px) {
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .vision-image { order: -1; }
  #about-vision { padding: 70px 6vw; }
}

/* ─── OUR VALUES SECTION ─────────────────────── */
#about-values {
  background: #F0F2F7;
  padding: 100px 5vw;
}

.values-header {
  text-align: center;
  margin-bottom: 56px;
}

.values-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  color: #1A1F2B;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.values-tagline {
  font-size: 15px;
  color: #4A5568;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.values-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  object-fit: cover;
}

.values-subtitle {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-red);
  margin-bottom: 20px;
}

.values-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #4A5568;
}

@media (max-width: 860px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  #about-values { padding: 70px 6vw; }
}