/* ═══════════════════════════════════════════════
   MP Celebrities — About Page
   ═══════════════════════════════════════════════ */

.nav-active {
  color: var(--green) !important;
  background: var(--green-light) !important;
  border-radius: 8px;
}

/* ── Fade-in keyframe ── */
@keyframes auFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.au-anim { opacity: 0; }
.au-anim.visible {
  animation: auFadeUp .65s ease forwards;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.au-hero {
  padding: 156px 24px 80px;
  background: linear-gradient(180deg, #fdf6ef 0%, #fbeee2 100%);
  text-align: center;
}
.au-hero-inner { max-width: 700px; margin: 0 auto; }

.au-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 30px;
  letter-spacing: .02em;
  animation: auFadeUp .6s ease both;
  animation-delay: .1s;
}
.au-badge svg { width: 12px; height: 12px; }

.au-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -.025em;
  margin-bottom: 22px;
  animation: auFadeUp .65s ease both;
  animation-delay: .2s;
}
.au-accent { color: var(--orange); }

.au-hero-sub {
  color: var(--gray-2);
  font-size: 1rem;
  line-height: 1.75;
  animation: auFadeUp .65s ease both;
  animation-delay: .3s;
}

/* ════════════════════════════════
   ABOUT PARAGRAPH
════════════════════════════════ */
.au-about-para {
  padding: 72px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-5);
}
.au-para-text {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  color: var(--gray-1);
  line-height: 1.85;
}

/* ════════════════════════════════
   CORE INITIATIVES
════════════════════════════════ */
.au-initiatives {
  padding: 80px 24px 100px;
  background: var(--white);
}
.au-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  letter-spacing: -.02em;
  margin-bottom: 52px;
}
.au-init-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.au-init-card {
  background: var(--white);
  border: 1px solid var(--gray-5);
  border-radius: 16px;
  padding: 36px 26px 32px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.au-init-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.09);
}
.au-init-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(244,124,32,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
  transition: background .25s ease;
}
.au-init-icon svg { width: 26px; height: 26px; }
.au-init-card:hover .au-init-icon {
  background: var(--orange);
  color: #fff;
}
.au-init-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.35;
}
.au-init-card p {
  font-size: .875rem;
  color: var(--gray-2);
  line-height: 1.7;
}

/* ════════════════════════════════
   OUR VISION
════════════════════════════════ */
.au-vision {
  padding: 90px 24px;
  background: var(--white);
  border-top: 1px solid var(--gray-5);
}
.au-vision-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.au-vision-icon {
  width: 56px; height: 56px;
  color: var(--orange);
  margin: 0 auto 20px;
}
.au-vision-icon svg { width: 100%; height: 100%; }
.au-vision-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.au-vision-text {
  font-size: .98rem;
  color: var(--gray-2);
  line-height: 1.85;
}

/* ════════════════════════════════
   CTA
════════════════════════════════ */
.au-cta {
  position: relative;
  background: linear-gradient(135deg, var(--orange) 0%, #e0680e 100%);
  padding: 90px 24px;
  text-align: center;
  overflow: hidden;
}
.au-cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.au-cta-s1 {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 55px solid rgba(255,255,255,.08);
  top: -120px; right: -80px;
}
.au-cta-s2 {
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,.06);
  bottom: -70px; left: 6%;
}
.au-cta-inner { position: relative; max-width: 600px; margin: 0 auto; }
.au-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.au-cta-sub {
  color: rgba(255,255,255,.88);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
/* Override outline-white for this page */
.au-cta .btn-outline-white {
  border-color: rgba(255,255,255,.8);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: 13px 32px;
}
.au-cta .btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

/* ════════════════════════════════
   FOOTER (About-page version)
════════════════════════════════ */
.footer {
  background: #0f172a;
}
.footer-top { padding-top: 0; }
.footer-brand-row {
  display: flex;
  padding-top: 50px;
}
.footer-logo-block {
  max-width: 280px;
}
.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}
.footer-logo-block p {
  color: #94a3b8;
  font-size: .85rem;
  line-height: 1.7;
}

/* nav row: appears in full footer below the logo */
.footer-nav-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px 0 50px;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 32px;
}
.footer-nav-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: .01em;
}
.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-col ul a {
  color: #94a3b8;
  text-decoration: none;
  font-size: .86rem;
  transition: color .2s;
}
.footer-nav-col ul a:hover { color: var(--orange); }

.footer-contact-list { list-style: none !important; }
.footer-contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #94a3b8;
  font-size: .84rem;
  line-height: 1.55;
}
.footer-contact-list svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}
.footer-follow {
  color: #fff;
  font-size: .83rem;
  font-weight: 600;
  margin: 20px 0 12px;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.footer-social svg { width: 14px; height: 14px; }
.footer-social a:hover { background: var(--orange); color: #fff; }

.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom-inner span {
  color: #64748b;
  font-size: .82rem;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  color: #64748b;
  font-size: .82rem;
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: #fff; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 900px) {
  .au-init-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-nav-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .au-hero { padding: 110px 20px 60px; }
  .au-hero-title { font-size: 1.85rem; }
  .au-init-grid { grid-template-columns: 1fr; }
  .footer-nav-row { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
