/* ═══════════════════════════════════════════════
   MP Celebrities — Professional Stylesheet
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #1a6b3c;
  --green-light: #e8f5ee;
  --orange:      #f47c20;
  --orange-light:#fff4ec;
  --blue:        #2563eb;
  --blue-light:  #eff6ff;
  --purple:      #7c3aed;
  --purple-light:#f5f3ff;
  --red:         #dc2626;
  --red-light:   #fef2f2;
  --dark:        #0f172a;
  --dark-2:      #1e293b;
  --gray-1:      #334155;
  --gray-2:      #64748b;
  --gray-3:      #94a3b8;
  --gray-4:      #cbd5e1;
  --gray-5:      #e2e8f0;
  --gray-6:      #f1f5f9;
  --gray-7:      #f8fafc;
  --white:       #ffffff;

  --font-body:   'Inter', sans-serif;
  --font-display:'Playfair Display', serif;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.12);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: .01em;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: #e06b10;
  border-color: #e06b10;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(244,124,32,.35);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--gray-4);
}
.btn-outline:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-lg { padding: 15px 34px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════ NAVBAR ═══════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-5);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 88px;
}
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo img {
  height: 76px;
  width: auto;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
}
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-1);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--green);
  background: var(--green-light);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--gray-5);
}
.mobile-menu a {
  text-decoration: none;
  color: var(--gray-1);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.mobile-menu a:hover { background: var(--gray-6); }
.mobile-menu .btn { margin-top: 8px; }
.mobile-menu.open { display: flex; }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: linear-gradient(155deg, #f8fffe 0%, #f0faf5 40%, #fef9f5 100%);
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .18;
}
.shape-1 {
  width: 500px; height: 500px;
  background: var(--green);
  top: -100px; right: -100px;
}
.shape-2 {
  width: 350px; height: 350px;
  background: var(--orange);
  bottom: 0; left: -80px;
  opacity: .12;
}
.shape-3 {
  width: 250px; height: 250px;
  background: var(--blue);
  top: 40%; right: 20%;
  opacity: .08;
}
.hero-inner {
  position: relative;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,124,32,.12);
  color: var(--orange);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(244,124,32,.25);
  margin-bottom: 28px;
  letter-spacing: .02em;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.gradient-text {
  background: linear-gradient(135deg, var(--green) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--gray-2);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Stats */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}
.stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  text-align: center;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  font-family: var(--font-display);
  letter-spacing: -.03em;
}
.stat-number sup {
  font-size: 1.1rem;
  vertical-align: top;
  margin-top: 4px;
  display: inline-block;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray-2);
  font-weight: 500;
  margin-top: 6px;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--gray-5);
  flex-shrink: 0;
}

/* ═══════════════════ SECTION COMMONS ═══════════════════ */
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}
.text-accent { color: var(--orange); }
.section-sub {
  color: var(--gray-2);
  font-size: 1rem;
  line-height: 1.65;
}
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ═══════════════════ SERVICES ═══════════════════ */
.services-section { background: var(--white); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-5);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }
.icon-orange { background: var(--orange-light); color: var(--orange); }
.icon-blue   { background: var(--blue-light);   color: var(--blue);   }
.icon-purple { background: var(--purple-light);  color: var(--purple); }
.icon-green  { background: var(--green-light);   color: var(--green);  }
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--gray-2);
  line-height: 1.65;
  margin-bottom: 20px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: gap var(--transition);
}
.card-link svg { width: 14px; height: 14px; }
.card-link:hover { gap: 10px; }

/* ═══════════════════ PROGRAMS ═══════════════════ */
.programs-section {
  background: linear-gradient(180deg, var(--gray-7) 0%, #fef9f5 100%);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--gray-5);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.prog-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.prog-icon svg { width: 26px; height: 26px; }
.icon-green-light  { background: var(--green-light);  color: var(--green);  }
.icon-orange-light { background: var(--orange-light); color: var(--orange); }
.icon-red-light    { background: var(--red-light);    color: var(--red);    }
.icon-blue-light   { background: var(--blue-light);   color: var(--blue);   }
.prog-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.program-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.program-card p {
  font-size: 0.845rem;
  color: var(--gray-2);
  line-height: 1.65;
}

/* ═══════════════════ PERSONALITIES ═══════════════════ */
.personalities-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-5);
  cursor: pointer;
}
.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,30,.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  z-index: 2;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: .01em;
}

/* ═══════════════════ CTA SECTION ═══════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #e06010 50%, #c45108 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape-1 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,.08);
  top: -120px; right: -80px;
}
.cta-shape-2 {
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,.06);
  bottom: -80px; left: 5%;
}
.cta-inner { position: relative; }
.cta-content {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.cta-content p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════ CONTACT ═══════════════════ */
.contact-section { background: var(--gray-7); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-5);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-1);
  letter-spacing: .01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-5);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,107,60,.1);
}
.form-group { margin-bottom: 0; }
.contact-form > .form-group { margin-bottom: 20px; }
.contact-form > .btn { margin-top: 8px; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-5);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.info-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; }
.info-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.info-card p {
  font-size: 0.85rem;
  color: var(--gray-2);
  line-height: 1.6;
}
.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gray-6);
  color: var(--gray-1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: var(--dark);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  color: var(--gray-3);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: .01em;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  color: var(--gray-3);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--orange); }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-3);
  font-size: 0.855rem;
  line-height: 1.55;
}
.contact-list svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  color: var(--gray-3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social a svg { width: 14px; height: 14px; }
.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
}
.footer-bottom {
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom span {
  color: var(--gray-3);
  font-size: 0.83rem;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: var(--gray-3);
  font-size: 0.83rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--white); }

/* ═══════════════════ SCROLL ANIMATIONS ═══════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .cards-grid, .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { flex-direction: row; flex-wrap: wrap; }
  .info-card { flex: 1 1 260px; }
}
@media (max-width: 768px) {
  .nav-links, .navbar > .container > .btn:not(.hamburger) { display: none; }
  .hamburger { display: flex; }
  .navbar .btn-primary { display: none; }
  .hero-title { font-size: 1.9rem; }
  .stats-row { flex-wrap: wrap; border-radius: var(--radius-lg); }
  .stat-divider { display: none; }
  .stat-card { min-width: 45%; border: 1px solid var(--gray-5); border-radius: 12px; margin: 6px; }
  .cards-grid, .programs-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
