/* ==========================================================================
   YPPMB COMPANY PROFILE - PREMIUM STYLESHEET
   Yayasan Peduli Perjuangan Masyarakat Bersih
   "Suara Bersih Rakyat, Bersatu lawan Kezhaliman, Tegakkan Keadilan"
   ========================================================================== */

:root {
  /* Color Tokens */
  --yp-primary: #047857;          /* Emerald Green Primary */
  --yp-primary-dark: #064e3b;     /* Deep Forest */
  --yp-primary-light: #10b981;    /* Light Emerald */
  --yp-primary-50: #ecfdf5;       /* Subtle Tint */
  --yp-primary-100: #d1fae5;
  --yp-primary-200: #a7f3d0;

  --yp-secondary: #0f172a;        /* Deep Midnight Navy */
  --yp-secondary-dark: #020617;
  --yp-secondary-light: #1e293b;
  --yp-secondary-card: #1e293b;

  --yp-accent: #d97706;           /* Amber / Gold */
  --yp-accent-light: #f59e0b;
  --yp-accent-50: #fffbeb;

  --yp-text-main: #0f172a;
  --yp-text-muted: #64748b;
  --yp-text-light: #94a3b8;
  --yp-text-white: #ffffff;

  --yp-bg-main: #f8fafc;
  --yp-bg-card: #ffffff;
  --yp-bg-alt: #f1f5f9;

  --yp-border: #e2e8f0;
  --yp-border-hover: #cbd5e1;
  --yp-border-emerald: rgba(16, 185, 129, 0.25);

  --yp-radius-sm: 8px;
  --yp-radius-md: 14px;
  --yp-radius-lg: 20px;
  --yp-radius-xl: 28px;
  --yp-radius-full: 9999px;

  --yp-shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
  --yp-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --yp-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --yp-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --yp-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.18);
  --yp-shadow-emerald: 0 12px 30px -8px rgba(4, 120, 87, 0.35);

  --yp-font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --yp-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --yp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--yp-font-body);
  background-color: var(--yp-bg-main);
  color: var(--yp-text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--yp-font-heading);
  color: var(--yp-secondary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--yp-transition);
}

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

/* Utility Containers */
.yp-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.yp-section {
  padding: 96px 0;
  position: relative;
}

.yp-section-alt {
  background-color: var(--yp-bg-alt);
}

.yp-section-dark {
  background-color: var(--yp-secondary);
  color: var(--yp-text-white);
}

/* Typography Helpers */
.yp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--yp-radius-full);
  background: var(--yp-primary-50);
  color: var(--yp-primary);
  border: 1px solid var(--yp-primary-200);
}

.yp-badge-amber {
  background: var(--yp-accent-50);
  color: var(--yp-accent);
  border-color: #fde68a;
}

.yp-badge-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #a7f3d0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.yp-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.yp-section-title {
  font-size: 2.35rem;
  font-weight: 800;
  margin-top: 14px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.yp-section-subtitle {
  font-size: 1.05rem;
  color: var(--yp-text-muted);
  line-height: 1.7;
}

.yp-section-dark .yp-section-title {
  color: var(--yp-text-white);
}

.yp-section-dark .yp-section-subtitle {
  color: var(--yp-text-light);
}

/* Header & Sticky Navbar */
.yp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--yp-transition);
}

.yp-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.yp-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.yp-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.yp-brand-logo {
  height: 54px;
  width: 54px;
  object-fit: contain;
  border-radius: var(--yp-radius-md);
  box-shadow: var(--yp-shadow-xs);
  border: 1px solid var(--yp-border);
  background: #ffffff;
  padding: 2px;
}

.yp-brand-text {
  display: flex;
  flex-direction: column;
}

.yp-brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--yp-primary-dark);
  font-family: var(--yp-font-heading);
  line-height: 1.1;
}

.yp-brand-tagline {
  font-size: 0.72rem;
  color: var(--yp-text-muted);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav Menu */
.yp-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.yp-nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--yp-secondary-light);
  position: relative;
  padding: 6px 0;
}

.yp-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--yp-primary);
  border-radius: 4px;
  transition: var(--yp-transition);
}

.yp-nav-link:hover {
  color: var(--yp-primary);
}

.yp-nav-link:hover::after,
.yp-nav-link.active::after {
  width: 100%;
}

.yp-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.yp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.925rem;
  font-weight: 700;
  border-radius: var(--yp-radius-full);
  cursor: pointer;
  transition: var(--yp-transition);
  border: 1px solid transparent;
  font-family: var(--yp-font-body);
}

.yp-btn-primary {
  background: linear-gradient(135deg, var(--yp-primary) 0%, #059669 100%);
  color: #ffffff;
  box-shadow: var(--yp-shadow-emerald);
}

.yp-btn-primary:hover {
  background: linear-gradient(135deg, #059669 0%, var(--yp-primary-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(4, 120, 87, 0.45);
}

.yp-btn-outline {
  background: transparent;
  border-color: var(--yp-border);
  color: var(--yp-secondary);
}

.yp-btn-outline:hover {
  border-color: var(--yp-primary);
  color: var(--yp-primary);
  background: var(--yp-primary-50);
}

.yp-btn-accent {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

.yp-btn-accent:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-2px);
}

.yp-btn-white {
  background: #ffffff;
  color: var(--yp-primary-dark);
  font-weight: 800;
}

.yp-btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: var(--yp-shadow-lg);
}

.yp-btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.yp-btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

/* Mobile Toggle */
.yp-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--yp-secondary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.yp-hero {
  position: relative;
  padding: 160px 0 100px;
  background: radial-gradient(120% 80% at 50% 0%, rgba(16, 185, 129, 0.12) 0%, rgba(248, 250, 252, 0) 100%),
              linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  overflow: hidden;
}

.yp-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.yp-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.yp-hero-content {
  position: relative;
  z-index: 2;
}

.yp-hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--yp-secondary);
  line-height: 1.15;
  margin: 18px 0 20px;
}

.yp-hero-title span.highlight {
  background: linear-gradient(135deg, var(--yp-primary) 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.yp-hero-slogan {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--yp-radius-md);
  background: rgba(255, 255, 255, 0.85);
  border-left: 4px solid var(--yp-accent-light);
  box-shadow: var(--yp-shadow-sm);
  margin-bottom: 24px;
}

.yp-hero-slogan-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--yp-secondary);
  font-style: italic;
  line-height: 1.5;
}

.yp-hero-desc {
  font-size: 1.1rem;
  color: var(--yp-text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.yp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.yp-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--yp-border);
}

.yp-stat-item {
  display: flex;
  flex-direction: column;
}

.yp-stat-number {
  font-size: 1.85rem;
  font-weight: 900;
  font-family: var(--yp-font-heading);
  color: var(--yp-primary);
  line-height: 1;
}

.yp-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yp-text-muted);
  margin-top: 6px;
  line-height: 1.3;
}

/* Hero Visual / Card */
.yp-hero-visual {
  position: relative;
  z-index: 2;
}

.yp-hero-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--yp-radius-xl);
  padding: 36px;
  box-shadow: var(--yp-shadow-xl);
  border: 1px solid var(--yp-border-emerald);
  text-align: center;
  transition: var(--yp-transition);
}

.yp-hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -15px rgba(4, 120, 87, 0.25);
}

.yp-hero-logo-box {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  padding: 12px;
  background: #ffffff;
  border-radius: var(--yp-radius-lg);
  box-shadow: var(--yp-shadow-md);
  border: 2px solid var(--yp-primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.yp-hero-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.yp-hero-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--yp-secondary);
  margin-bottom: 6px;
}

.yp-hero-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--yp-primary);
  background: var(--yp-primary-50);
  padding: 4px 12px;
  border-radius: var(--yp-radius-full);
  margin-bottom: 18px;
}

.yp-hero-card-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.yp-hero-card-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--yp-radius-full);
  background: var(--yp-bg-alt);
  color: var(--yp-secondary-light);
}

.yp-hero-pdf-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: var(--yp-radius-md);
  background: var(--yp-primary-50);
  border: 1px dashed var(--yp-primary-light);
  margin-top: 12px;
}

.yp-hero-pdf-info {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.yp-hero-pdf-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #fee2e2;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ==========================================================================
   ABOUT / LATAR BELAKANG & GERAKAN MORAL
   ========================================================================== */
.yp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.yp-about-story {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.8;
}

.yp-about-lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--yp-secondary);
  line-height: 1.6;
}

/* 4 Moral Roles Grid */
.yp-roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.yp-role-card {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: var(--yp-radius-lg);
  border: 1px solid var(--yp-border);
  box-shadow: var(--yp-shadow-sm);
  transition: var(--yp-transition);
  position: relative;
  overflow: hidden;
}

.yp-role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--yp-primary);
  opacity: 0;
  transition: var(--yp-transition);
}

.yp-role-card:hover {
  transform: translateY(-4px);
  border-color: var(--yp-primary-200);
  box-shadow: var(--yp-shadow-md);
}

.yp-role-card:hover::before {
  opacity: 1;
}

.yp-role-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--yp-radius-md);
  background: var(--yp-primary-50);
  color: var(--yp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.yp-role-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--yp-secondary);
  margin-bottom: 8px;
}

.yp-role-desc {
  font-size: 0.9rem;
  color: var(--yp-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   VISI & MISI SECTION
   ========================================================================== */
.yp-vision-box {
  background: linear-gradient(135deg, var(--yp-secondary) 0%, #064e3b 100%);
  border-radius: var(--yp-radius-xl);
  padding: 48px;
  color: #ffffff;
  box-shadow: var(--yp-shadow-xl);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.yp-vision-box::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
}

.yp-vision-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #a7f3d0;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--yp-radius-full);
  margin-bottom: 20px;
}

.yp-vision-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.yp-vision-text {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.65;
  color: #f1f5f9;
  max-width: 950px;
  font-style: italic;
}

/* Mission Cards Grid */
.yp-mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.yp-mission-card {
  background: #ffffff;
  border-radius: var(--yp-radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--yp-border);
  box-shadow: var(--yp-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--yp-transition);
  position: relative;
}

.yp-mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--yp-shadow-lg);
  border-color: var(--yp-primary-light);
}

.yp-mission-num {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--yp-font-heading);
  color: var(--yp-primary-light);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.85;
}

.yp-mission-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--yp-secondary);
  margin-bottom: 12px;
}

.yp-mission-desc {
  font-size: 0.925rem;
  color: var(--yp-text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   4 PILAR / BIDANG KEGIATAN (AD/ART)
   ========================================================================== */
.yp-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.yp-pillar-card {
  background: #ffffff;
  border-radius: var(--yp-radius-xl);
  overflow: hidden;
  border: 1px solid var(--yp-border);
  box-shadow: var(--yp-shadow-sm);
  transition: var(--yp-transition);
  display: flex;
  flex-direction: column;
}

.yp-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--yp-shadow-xl);
  border-color: var(--yp-primary-200);
}

.yp-pillar-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--yp-bg-alt);
}

.yp-pillar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.yp-pillar-card:hover .yp-pillar-img {
  transform: scale(1.08);
}

.yp-pillar-badge-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: var(--yp-radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.yp-pillar-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.yp-pillar-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.yp-pillar-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--yp-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.yp-pillar-titles {
  display: flex;
  flex-direction: column;
}

.yp-pillar-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--yp-secondary);
}

.yp-pillar-sub {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--yp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.yp-pillar-desc {
  font-size: 0.975rem;
  color: var(--yp-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.yp-pillar-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid var(--yp-border);
  padding-top: 20px;
}

.yp-pillar-point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.925rem;
  color: #334155;
  font-weight: 600;
}

.yp-pillar-check {
  color: var(--yp-primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   GALERI DOKUMENTASI KEGIATAN & JEJAK GERAKAN
   ========================================================================== */
.yp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.yp-gallery-card {
  background: #ffffff;
  border-radius: var(--yp-radius-lg);
  overflow: hidden;
  border: 1px solid var(--yp-border);
  box-shadow: var(--yp-shadow-sm);
  transition: var(--yp-transition);
  display: flex;
  flex-direction: column;
}

.yp-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--yp-shadow-xl);
  border-color: var(--yp-primary-200);
}

.yp-gallery-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--yp-bg-alt);
}

.yp-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.yp-gallery-card:hover .yp-gallery-thumb img {
  transform: scale(1.08);
}

.yp-gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  color: #a7f3d0;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--yp-radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.yp-gallery-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.yp-gallery-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--yp-secondary);
  line-height: 1.4;
  margin-bottom: 8px;
}

.yp-gallery-desc {
  font-size: 0.88rem;
  color: var(--yp-text-muted);
  line-height: 1.6;
}

/* Hero Photo Visual */
.yp-hero-photo-wrap {
  position: relative;
  border-radius: var(--yp-radius-xl);
  overflow: hidden;
  box-shadow: var(--yp-shadow-xl);
  border: 3px solid #ffffff;
}

.yp-hero-photo-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.yp-hero-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.85) 100%);
  color: #ffffff;
}

.yp-hero-floating-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--yp-radius-md);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--yp-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.yp-hero-floating-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

/* ==========================================================================
   RECENT NEWS / PUBLIKASI
   ========================================================================== */
.yp-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.yp-news-card {
  background: #ffffff;
  border-radius: var(--yp-radius-lg);
  overflow: hidden;
  border: 1px solid var(--yp-border);
  box-shadow: var(--yp-shadow-sm);
  transition: var(--yp-transition);
  display: flex;
  flex-direction: column;
}

.yp-news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--yp-shadow-lg);
  border-color: var(--yp-primary-200);
}

.yp-news-thumb {
  height: 200px;
  background: var(--yp-bg-alt);
  position: relative;
  overflow: hidden;
}

.yp-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.yp-news-card:hover .yp-news-thumb img {
  transform: scale(1.05);
}

.yp-news-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.yp-news-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yp-text-muted);
  margin-bottom: 8px;
}

.yp-news-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--yp-secondary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.yp-news-excerpt {
  font-size: 0.9rem;
  color: var(--yp-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.yp-news-link {
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--yp-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.yp-news-link:hover {
  gap: 10px;
}

/* ==========================================================================
   COMMUNITY ADVOCACY / ASPIRASI FORM
   ========================================================================== */
.yp-advocacy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.yp-advocacy-info {
  background: #ffffff;
  border-radius: var(--yp-radius-xl);
  padding: 40px;
  border: 1px solid var(--yp-border);
  box-shadow: var(--yp-shadow-sm);
}

.yp-advocacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.yp-advocacy-item {
  display: flex;
  gap: 16px;
}

.yp-advocacy-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--yp-primary-50);
  color: var(--yp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.yp-advocacy-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--yp-secondary);
  margin-bottom: 4px;
}

.yp-advocacy-item-desc {
  font-size: 0.875rem;
  color: var(--yp-text-muted);
  line-height: 1.5;
}

/* Form Card */
.yp-form-card {
  background: #ffffff;
  border-radius: var(--yp-radius-xl);
  padding: 40px;
  border: 1px solid var(--yp-border);
  box-shadow: var(--yp-shadow-md);
}

.yp-form-group {
  margin-bottom: 20px;
}

.yp-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--yp-secondary);
  margin-bottom: 8px;
}

.yp-form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: var(--yp-font-body);
  color: var(--yp-secondary);
  background: #f8fafc;
  border: 1.5px solid var(--yp-border);
  border-radius: var(--yp-radius-md);
  transition: var(--yp-transition);
}

.yp-form-control:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--yp-primary);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.yp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Alert Boxes */
.yp-alert {
  padding: 16px 20px;
  border-radius: var(--yp-radius-md);
  margin-bottom: 24px;
  font-size: 0.925rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.yp-alert-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.yp-alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ==========================================================================
   CONTACT & SEKRETARIAT
   ========================================================================== */
.yp-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.yp-contact-card {
  background: #ffffff;
  border-radius: var(--yp-radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--yp-border);
  box-shadow: var(--yp-shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--yp-transition);
}

.yp-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--yp-shadow-md);
  border-color: var(--yp-primary-200);
}

.yp-contact-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--yp-radius-full);
  background: var(--yp-primary-50);
  color: var(--yp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.yp-contact-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--yp-secondary);
  margin-bottom: 8px;
}

.yp-contact-value {
  font-size: 0.95rem;
  color: var(--yp-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.yp-footer {
  background: var(--yp-secondary-dark);
  color: #94a3b8;
  padding: 80px 0 32px;
  font-size: 0.925rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.yp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.yp-footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.yp-footer-brand-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  background: #ffffff;
  border-radius: var(--yp-radius-md);
  padding: 3px;
}

.yp-footer-brand-name {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 900;
  font-family: var(--yp-font-heading);
}

.yp-footer-slogan {
  color: #e2e8f0;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 18px;
}

.yp-footer-desc {
  line-height: 1.7;
  color: #94a3b8;
}

.yp-footer-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
}

.yp-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.yp-footer-link {
  color: #94a3b8;
  transition: var(--yp-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.yp-footer-link:hover {
  color: #34d399;
  transform: translateX(4px);
}

.yp-footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

/* Back To Top & Quick WhatsApp */
.yp-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--yp-primary);
  color: #ffffff;
  border-radius: var(--yp-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--yp-shadow-lg);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--yp-transition);
}

.yp-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.yp-back-to-top:hover {
  background: var(--yp-primary-dark);
  transform: translateY(-4px);
}

.yp-floating-wa {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background: #25d366;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--yp-radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  z-index: 998;
  transition: var(--yp-transition);
}

.yp-floating-wa:hover {
  transform: translateY(-3px);
  background: #1eb956;
}

/* ==========================================================================
   PDF MODAL VIEWER
   ========================================================================== */
.yp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.yp-modal.open {
  display: flex;
}

.yp-modal-dialog {
  background: #ffffff;
  border-radius: var(--yp-radius-xl);
  width: 100%;
  max-width: 1000px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--yp-shadow-xl);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.yp-modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--yp-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
}

.yp-modal-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--yp-secondary);
}

.yp-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--yp-text-muted);
  padding: 4px;
  line-height: 1;
}

.yp-modal-close:hover {
  color: #ef4444;
}

.yp-modal-body {
  flex-grow: 1;
  background: #f8fafc;
  overflow: hidden;
}

.yp-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .yp-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .yp-hero-title {
    font-size: 2.6rem;
  }
  .yp-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .yp-mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .yp-pillars-grid {
    grid-template-columns: 1fr;
  }
  .yp-pdf-showcase {
    grid-template-columns: 1fr;
  }
  .yp-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .yp-header {
    height: 74px;
  }
  .yp-nav-wrap {
    height: 74px;
  }
  .yp-nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 32px;
    gap: 16px;
    box-shadow: var(--yp-shadow-lg);
    border-bottom: 1px solid var(--yp-border);
    transform: translateY(-150%);
    transition: var(--yp-transition);
  }
  .yp-nav-menu.mobile-open {
    transform: translateY(0);
  }
  .yp-mobile-toggle {
    display: block;
  }
  .yp-hero {
    padding: 120px 0 60px;
  }
  .yp-hero-title {
    font-size: 2.1rem;
  }
  .yp-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .yp-roles-grid {
    grid-template-columns: 1fr;
  }
  .yp-mission-grid {
    grid-template-columns: 1fr;
  }
  .yp-news-grid {
    grid-template-columns: 1fr;
  }
  .yp-advocacy-grid {
    grid-template-columns: 1fr;
  }
  .yp-contact-grid {
    grid-template-columns: 1fr;
  }
  .yp-footer-grid {
    grid-template-columns: 1fr;
  }
  .yp-form-row {
    grid-template-columns: 1fr;
  }
}
