:root {
  --orange: #E8650A;
  --orange-light: #F07A1A;
  --orange-dark: #C8520A;
  --green: #3D8B37;
  --green-light: #4CAF46;
  --green-dark: #2d6b28;
  --yellow: #F5C518;
  --bg-light: #FFF8F0;
  --text-dark: #1a1a1a;
  --text-gray: #666;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background: #fff;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  flex-wrap: nowrap;
}


.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
}

.nav-logo-text span:last-child {
  font-size: 10px;
  color: var(--green);
  letter-spacing: 1px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--orange);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.nav-btns {
  display: flex;
  gap: 10px;
}

.btn-donasi {
  background: var(--orange);
  color: white;
  padding: 9px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--orange);
}

.btn-donasi:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 101, 10, 0.4);
}

.btn-amil {
  background: var(--green);
  color: white;
  padding: 9px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-amil:hover {
  background: #2d6b28;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 139, 55, 0.4);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO SLIDER ---- */
.hero-slider {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .hero-slider {
    height: 500px;
  }
}

@media (max-width: 992px) {
  .hero-slider {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 220px;
  }
}

.hero-slide-content {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  z-index: 1;
}

.hero-slide-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-text-box {
  max-width: 600px;
  color: white;
  animation: slideUp 1s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-slider .hero-title {
  color: white;
  font-size: clamp(24px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-slider .hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(13px, 1.8vw, 16px);
  max-width: 500px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Slider Controls */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: white !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 6px;
  opacity: 1;
  background: var(--orange) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: white !important;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
}

/* Quick Search */
.hero-quick-search {
  max-width: 900px;
  margin: -40px auto 40px;
  position: relative;
  z-index: 10;
  padding: 0 24px;
}

.quick-search-box {
  background: white;
  padding: 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #eee;
}

.quick-search-box i {
  margin: 0 20px;
  color: var(--orange);
  font-size: 20px;
}

.quick-search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px 0;
  font-family: inherit;
}

.quick-search-box button {
  background: var(--orange);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.quick-search-box button:hover {
  background: var(--orange-dark);
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 101, 10, 0.1);
  border: 1px solid rgba(232, 101, 10, 0.2);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7
  }
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.hero-title .orange {
  color: var(--orange);
}

.hero-title .green {
  color: var(--green);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.btn-hero-primary {
  background: var(--orange);
  color: white;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(232, 101, 10, 0.35);
}

.btn-hero-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(232, 101, 10, 0.5);
}

.btn-hero-secondary {
  background: white;
  color: var(--orange);
  padding: 10px 24px;
  border-radius: 10px;
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--orange);
}

.btn-hero-secondary:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  display: block;
}

.stat-label {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
}

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.hero-logo-big {
  width: 220px;
  height: 220px;
  object-fit: contain;
  animation: floatLogo 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(232, 101, 10, 0.25));
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg)
  }

  50% {
    transform: translateY(-15px) rotate(2deg)
  }
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.hero-card {
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s;
}

.hero-card:hover {
  transform: translateY(-4px);
}

.hero-card-icon {
  font-size: 28px;
}

.hero-card-text .title {
  font-size: 13px;
  font-weight: 700;
  color: #333;
}

.hero-card-text .desc {
  font-size: 11px;
  color: var(--text-gray);
}

/* TICKER / marquee */
.ticker-bar {
  background: var(--orange);
  color: white;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-inner span {
  margin: 0 40px;
  font-size: 14px;
  font-weight: 500;
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ---- SEARCH BAR ---- */
.search-section {
  background: linear-gradient(180deg, #fff3e0, #fff);
  padding: 40px 24px;
}

.search-inner {
  max-width: 900px;
  margin: 0 auto;
}

.search-box {
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.search-box:focus-within {
  box-shadow: 0 8px 30px rgba(232, 101, 10, 0.2);
  border-color: var(--orange);
}

.search-box svg {
  margin: 0 16px;
  color: #999;
  flex-shrink: 0;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  padding: 16px 0;
  font-family: 'Poppins', sans-serif;
}

.search-box button {
  background: var(--green);
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s;
}

.search-box button:hover {
  background: #2d6b28;
}

/* ---- QUICK LINKS ---- */
.quick-section {
  padding: 60px 24px;
  background: white;
}

.quick-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quick-card {
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.quick-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: opacity 0.3s;
}

.quick-card:hover::before {
  opacity: 1;
}

.quick-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.quick-card.orange {
  background: linear-gradient(135deg, #FF8C42, #E8650A);
  color: white;
}

.quick-card.green {
  background: linear-gradient(135deg, #56C34E, #3D8B37);
  color: white;
}

.quick-card.teal {
  background: linear-gradient(135deg, #26C6DA, #0097A7);
  color: white;
}

.quick-card-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.quick-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.quick-card p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 20px;
}

.quick-card .btn-card {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.quick-card .btn-card:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: rgba(232, 101, 10, 0.1);
  color: var(--orange);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- PROGRAM SECTION ---- */
.program-section {
  padding: 80px 24px;
  background: #fafafa;
}

.program-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.program-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid #e0e0e0;
  background: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}

.tab-btn.active {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

.tab-btn:hover:not(.active) {
  border-color: var(--orange);
  color: var(--orange);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.program-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.program-card-img {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.program-card-img.orange-bg {
  background: linear-gradient(135deg, #FFE0B2, #FFCC80);
}

.program-card-img.green-bg {
  background: linear-gradient(135deg, #C8E6C9, #A5D6A7);
}

.program-card-img.teal-bg {
  background: linear-gradient(135deg, #B2EBF2, #80DEEA);
}

.program-card-img.yellow-bg {
  background: linear-gradient(135deg, #FFF9C4, #FFF176);
}

.program-card-body {
  padding: 16px;
}

.program-tag {
  display: inline-block;
  background: rgba(232, 101, 10, 0.1);
  color: var(--orange);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}

.program-card-body h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.program-card-body p {
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.progress-bar {
  background: #f0f0f0;
  border-radius: 50px;
  height: 6px;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transition: width 1.5s ease;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-gray);
}

.progress-info span:first-child {
  color: var(--orange);
  font-weight: 600;
}

/* ---- PILAR SECTION ---- */
.pilar-section {
  padding: 80px 24px;
  background: #f0f7ef;
}

.pilar-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.pilar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pilar-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.pilar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.pilar-card:hover::before {
  transform: scaleX(1);
}

.pilar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.pilar-icon {
  font-size: 52px;
  margin-bottom: 20px;
  display: block;
}

.pilar-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1a1a1a;
}

.pilar-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pilar-link {
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pilar-link:hover {
  text-decoration: underline;
}

/* ---- STATS SECTION ---- */
.stats-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--orange) 0%, #C8520A 100%);
  position: relative;
  overflow: hidden;
}

/* ---- STATS & AWARDS SECTION ---- */
.stats-awards-section {
  padding: 100px 24px;
  background: #093C5D;
  color: white;
  position: relative;
  overflow: hidden;
}

.stats-awards-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.stats-awards-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.stats-text .stats-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.stats-text .stats-desc {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.9;
}

.stats-video .video-card {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  aspect-ratio: 4/5;
}

.video-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.play-button {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  outline: none;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.amil-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 100001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.amil-modal-overlay.active {
  display: flex;
}

.amil-modal-overlay .modal-content {
  background: white;
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  position: relative;
}

.close-modal-x {
  position: absolute;
  top: -20px;
  right: -20px;
  background: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.close-modal-x:hover {
  color: var(--orange);
  transform: rotate(90deg);
}

.modal-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.modal-header p {
  color: #666;
  font-size: 15px;
  margin-bottom: 30px;
}

.link-masuk {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 18px;
  color: #aaa;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s;
}

.form-group input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: #f8f8f8;
  border: 2px solid #f8f8f8;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  transition: all 0.3s;
}

.form-group input:focus + .input-icon,
.form-group input:not(:placeholder-shown) + .input-icon {
  color: var(--orange);
}

.form-group input:focus {
  outline: none;
  background: white;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 101, 10, 0.1);
}

.password-group {
  display: flex;
  align-items: center;
}

.toggle-password {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 5px;
}

.modal-footer {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 12px;
  margin-top: 24px;
}

.btn-tutup {
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: #eee;
  color: #555;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-daftar {
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(232, 101, 10, 0.2);
  transition: all 0.3s;
}

.btn-daftar:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(232, 101, 10, 0.3);
}

.btn-tutup:hover {
  background: #e0e0e0;
}

/* General Modal Content (for Video, etc) */
.modal-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  z-index: 2;
  animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  background: black;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#player {
  width: 100%;
  height: 100%;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.3);
}

.video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 20px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  text-align: center;
}

.video-label h4 {
  font-size: 22px;
  font-weight: 700;
}

.awards-grid .awards-section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
}

.awards-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.award-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s;
}

.award-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.award-card h5 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.award-card p {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .stats-awards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-text {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .stats-awards-grid {
    grid-template-columns: 1fr;
  }

  .awards-items {
    grid-template-columns: 1fr;
  }
}


.partners-section {
  padding: 60px 24px;
  background: #fcfcfc;
  border-top: 1px solid #f0f0f0;
}

.partners-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.partners-slider {
  padding: 20px 0 40px;
}

.partner-card {
  background: white;
  height: 120px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid #eee;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.partner-card:hover {
  border-color: var(--orange);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all 0.3s;
}

.partner-card:hover img {
  filter: none;
  opacity: 1;
}

.partner-next,
.partner-prev {
  background: white !important;
  color: var(--text-dark) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid #eee !important;
}

.partner-next::after,
.partner-prev::after {
  font-size: 16px !important;
  font-weight: 800 !important;
}

.title-underline.center {
  margin: 0 auto;
}

.news-section {
  padding: 80px 24px;
  background: white;
}

.news-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.header-left .section-title {
  text-align: left;
  margin-bottom: 5px;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: gap 0.3s;
}

.btn-more:hover {
  gap: 15px;
}

/* News Grid */
.news-grid-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.news-big {
  height: 520px;
}

.news-right-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-medium {
  height: 248px;
}

.news-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.news-small {
  height: 248px;
}

.news-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  transition: background 0.3s;
}

.news-card-img:hover .news-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.news-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  color: white;
}

.news-tag {
  background: var(--orange);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.news-big h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.news-medium h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.news-small h5 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.news-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 15px;
}

/* Popular Section */
.news-popular-section {
  background: #fdfdfd;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid #f0f0f0;
}

.sub-section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}

.btn-more-simple {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.popular-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.popular-card:hover {
  transform: translateY(-5px);
}

.popular-img {
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
}

.popular-body {
  padding: 16px;
}

.popular-tag {
  font-size: 11px;
  color: var(--orange);
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.popular-card h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.popular-meta {
  font-size: 12px;
  color: #999;
}

/* ---- BERITA SECTION ---- */
.berita-section {
  padding: 80px 24px;
  background: white;
}

.berita-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.berita-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.berita-main {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.berita-main-img {
  height: 300px;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  position: relative;
}

.berita-main-img::before {
  content: '🕌';
  font-size: 80px;
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.3;
}

.berita-main-img .overlay {
  z-index: 2;
}

.berita-tag-news {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}

.berita-main-img h3 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.berita-main-img .meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin-top: 8px;
}

.berita-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
  cursor: pointer;
}

.berita-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.berita-card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.berita-card-img.bg1 {
  background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
}

.berita-card-img.bg2 {
  background: linear-gradient(135deg, #F3E5F5, #E1BEE7);
}

.berita-card-body {
  padding: 16px;
}

.berita-card-body h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #1a1a1a;
}

.berita-card-body .meta {
  font-size: 11px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.berita-card-body .meta span {
  color: var(--orange);
  font-weight: 600;
}

/* popular news */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.popular-card {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s;
  cursor: pointer;
}

.popular-card:hover {
  border-color: var(--orange);
  transform: translateX(4px);
}

.popular-card h4 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.popular-meta {
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
}

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 80px 24px;
  background: var(--bg-light);
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cta-card {
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.cta-card.orange-cta {
  background: linear-gradient(135deg, var(--orange), #C8520A);
  color: white;
}

.cta-card.dark-cta {
  background: linear-gradient(135deg, #1a1a2e, #2d2d44);
  color: white;
}

.cta-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-card p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.6;
}

.cta-card-emoji {
  font-size: 80px;
  position: absolute;
  right: 20px;
  top: 20px;
  opacity: 0.2;
}

.cta-card .cta-input {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-card input {
  flex: 1;
  min-width: 200px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
}

.cta-card input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.cta-card input:focus {
  border-color: rgba(255, 255, 255, 0.7);
}

.cta-card .btn-cta {
  background: white;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}

.cta-card.orange-cta .btn-cta {
  color: var(--orange);
}

.cta-card.dark-cta .btn-cta {
  color: #1a1a2e;
}

.cta-card .btn-cta:hover {
  transform: scale(1.05);
}

.btn-join {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-join:hover {
  background: #2d6b28;
  transform: translateY(-3px);
}

/* ---- FOOTER FLORAL DECORATION ---- */
.footer-floral {
  position: absolute;
  bottom: 0;
  width: 280px;
  height: 280px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

.footer-floral--left {
  left: -40px;
  width: 320px;
  height: 320px;
  animation: floralFloat 6s ease-in-out infinite;
}

.footer-floral--right {
  right: -30px;
  width: 260px;
  height: 260px;
  animation: floralFloat 7s ease-in-out infinite reverse;
}

.footer-floral svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}

@keyframes floralFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-8px) rotate(1.5deg); }
  66%       { transform: translateY(-4px) rotate(-1deg); }
}

@media (max-width: 768px) {
  .footer-floral--left {
    width: 200px;
    height: 200px;
    left: -30px;
  }
  .footer-floral--right {
    width: 170px;
    height: 170px;
    right: -20px;
  }
}

@media (max-width: 480px) {
  .footer-floral {
    opacity: 0.6;
  }
  .footer-floral--left  { width: 150px; height: 150px; }
  .footer-floral--right { width: 130px; height: 130px; }
}

/* ---- FOOTER ---- */
footer {
  background: var(--orange);
  color: white;
  padding: 80px 24px 40px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66 3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-46-45c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm20-17c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm58 33c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm-46-8c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm-22 22c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM22 28c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM1 81c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm82-53c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm-57 52c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm-5-33c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm42-51c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm-13 46c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm-11 20c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm55-46c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm-31 34c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm-13-64c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-logo .logo-main {
  font-size: 28px;
  font-weight: 900;
  color: white;
  letter-spacing: 1px;
}

.footer-logo .logo-sub {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 2px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 24px;
}


.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background: white;
  color: var(--orange);
  transform: translateY(-5px);
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.footer-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-info-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.footer-info-list li i {
  margin-top: 4px;
  color: white;
  font-size: 16px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: white;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .heart {
  color: white;
  animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}


/* ---- FLOATING BUTTONS ---- */
.float-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
  border: 3px solid white;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-5px);
}

.float-wa {
  background: #25D366;
  order: 2;
}

.float-history {
  background: var(--orange);
  order: 1;
}


/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- COUNTER ANIMATION ---- */
.counting {
  display: inline-block;
}

/* ---- MOBILE ---- */
@media (max-width: 1024px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .berita-grid {
    grid-template-columns: 1fr 1fr;
  }

  .berita-main {
    grid-column: 1/-1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .desktop-only {
    display: none !important;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 12px;
    margin-right: -10px;
    background: rgba(232, 101, 10, 0.1);
    border-radius: 12px;
  }

  .hamburger span {
    width: 28px;
    height: 3.5px;
    background: var(--orange);
    border-radius: 10px;
    transition: all 0.3s;
  }



  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .program-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pilar-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .popular-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* MOBILE DRAWER STYLES */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: absolute;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #fdfdfd;
  box-shadow: -5px 0 30px rgba(0,0,0,0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-overlay.active .mobile-drawer {
  right: 0;
}

.mobile-header {
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-logo img {
  height: 45px;
}

.close-menu {
  color: #333;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.mobile-nav-links li {
  width: 100%;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  color: #666;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
}

.mobile-nav-links a i {
  width: 20px;
  font-size: 18px;
  color: #999;
}

.mobile-nav-links a.active {
  color: var(--orange);
  background: rgba(232, 101, 10, 0.08);
}

.mobile-nav-links a.active i {
  color: var(--orange);
}

.mobile-btns-footer {
  padding: 25px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}

.btn-donasi-mobile {
  background: var(--orange);
  color: white;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.btn-amil-mobile {
  background: var(--green);
  color: white;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}