/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: #faf8f2;
  color: #1a1a1a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* ===== VARIABLES ===== */
:root {
  --green-dark: #0d2d1c;
  --green-medium: #2e8b57;
  --green-light: #3da36e;
  --cream: #faf8f2;
  --cream-dark: #f0ede4;
  --gold: #d4933a;
  --gold-light: #e8b76a;
  --whatsapp: #25d366;
  --border-color: #d6d0c4;
  --muted: #5a5a5a;
}

.serif {
  font-family: "Cormorant Garamond", Georgia, serif;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--green-medium);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green-dark);
}
::selection {
  background: rgba(46, 139, 87, 0.2);
  color: var(--green-dark);
}

/* ===== ISLAMIC PATTERN ===== */
.islamic-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4933a' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ===== ANIMATIONS ===== */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-marquee {
  animation: marquee 40s linear infinite;
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}
.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}
.animate-bounce {
  animation: bounce 1.5s ease-in-out infinite;
}
.animate-shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-children.visible > *:nth-child(1) {
  transition-delay: 0ms;
  opacity: 1;
  transform: translateY(0);
}
.stagger-children.visible > *:nth-child(2) {
  transition-delay: 100ms;
  opacity: 1;
  transform: translateY(0);
}
.stagger-children.visible > *:nth-child(3) {
  transition-delay: 200ms;
  opacity: 1;
  transform: translateY(0);
}
.stagger-children.visible > *:nth-child(4) {
  transition-delay: 300ms;
  opacity: 1;
  transform: translateY(0);
}
.stagger-children.visible > *:nth-child(5) {
  transition-delay: 400ms;
  opacity: 1;
  transform: translateY(0);
}
.stagger-children.visible > *:nth-child(6) {
  transition-delay: 500ms;
  opacity: 1;
  transform: translateY(0);
}

/* ===== IMAGE HOVER ===== */
.img-hover-zoom {
  overflow: hidden;
}
.img-hover-zoom img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-hover-zoom:hover img {
  transform: scale(1.08);
}

/* ===== CARD GLOW ===== */
.card-glow {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-glow:hover {
  box-shadow:
    0 8px 40px -8px rgba(212, 147, 58, 0.2),
    0 0 0 1px rgba(212, 147, 58, 0.15);
  transform: translateY(-4px);
}

/* ===== CLIP SECTIONS ===== */
.clip-angled {
  clip-path: polygon(0 0, 100% 3%, 100% 97%, 0 100%);
}
.clip-angled-reverse {
  clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 97%);
}

/* ===== UTILITY ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-sm {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}
.label-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.label-gold .line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.label-gold .line-half {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(212, 147, 58, 0.5);
}

/* ===== SVG ICONS ===== */
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-lg {
  width: 24px;
  height: 24px;
}
.icon-sm {
  width: 16px;
  height: 16px;
}

/* ================================================================ */
/*  NAVBAR                                                          */
/* ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s;
  padding: 16px 0;
}
.navbar.scrolled {
  background: rgba(13, 45, 28, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212, 147, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon span {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}
.nav-logo-text span:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  display: block;
  line-height: 1.2;
}
.nav-logo-text span:last-child {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, 0.5);
  display: none;
}
@media (min-width: 640px) {
  .nav-logo-text span:last-child {
    display: block;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(250, 248, 242, 0.7);
  transition: all 0.2s;
}
.nav-links a:hover {
  background: rgba(250, 248, 242, 0.05);
  color: var(--cream);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-wa-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--whatsapp);
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  transition: transform 0.2s;
}
.btn-wa-nav:hover {
  transform: scale(1.05);
}
.btn-wa-nav:active {
  transform: scale(0.95);
}
.btn-wa-nav .label-full {
  display: none;
}
.btn-wa-nav .label-short {
  display: inline;
}
@media (min-width: 640px) {
  .btn-wa-nav .label-full {
    display: inline;
  }
  .btn-wa-nav .label-short {
    display: none;
  }
}

.btn-hamburger {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background 0.2s;
}
.btn-hamburger:hover {
  background: rgba(250, 248, 242, 0.1);
}
@media (min-width: 1024px) {
  .btn-hamburger {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(13, 45, 28, 0.98);
  backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.mobile-menu-header span {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}
.mobile-menu-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-menu-body a {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--cream);
  transition: color 0.2s;
}
.mobile-menu-body a:hover {
  color: var(--gold);
}
.mobile-menu-body .btn-wa-mobile {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--whatsapp);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
}

/* ================================================================ */
/*  HERO                                                            */
/* ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: rgba(13, 45, 28, 0.6);
}
.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 45, 28, 0.4),
    transparent,
    rgba(13, 45, 28, 0.9)
  );
}
.hero-overlay-3 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 45, 28, 0.5),
    transparent,
    transparent
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 112px 20px 32px;
}
@media (min-width: 768px) {
  .hero-content {
    padding-top: 144px;
  }
}

.hero-badge {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(212, 147, 58, 0.3);
  background: rgba(212, 147, 58, 0.1);
  backdrop-filter: blur(4px);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0;
  transform: translateY(-32px);
  transition: all 1s;
}
.hero-badge.loaded {
  opacity: 1;
  transform: translateY(0);
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-glow 2s infinite;
}

.hero h1 {
  max-width: 960px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 8vw, 86px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--cream);
  opacity: 0;
  transform: translateY(32px);
  transition: all 1s 0.2s;
}
.hero h1.loaded {
  opacity: 1;
  transform: translateY(0);
}
.hero h1 .gold {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero h1 .gold svg {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
}
.hero h1 .gold svg path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1s 0.7s;
}
.hero h1.loaded .gold svg path {
  stroke-dashoffset: 0;
}

.hero-sub {
  margin-top: 28px;
  max-width: 640px;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  color: rgba(250, 248, 242, 0.8);
  text-wrap: pretty;
  opacity: 0;
  transform: translateY(32px);
  transition: all 1s 0.4s;
}
.hero-sub.loaded {
  opacity: 1;
  transform: translateY(0);
}
.hero-sub strong {
  font-weight: 700;
  color: var(--cream);
}

.hero-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(32px);
  transition: all 1s 0.6s;
}
.hero-cta.loaded {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.btn-wa-hero {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--whatsapp);
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.3);
  transition: all 0.2s;
}
@media (min-width: 768px) {
  .btn-wa-hero {
    padding: 20px 40px;
    font-size: 18px;
  }
}
.btn-wa-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(37, 211, 102, 0.4);
}
.btn-wa-hero:active {
  transform: scale(0.95);
}
.btn-wa-hero svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(250, 248, 242, 0.2);
  font-size: 14px;
  font-weight: 500;
  color: rgba(250, 248, 242, 0.8);
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}
@media (min-width: 768px) {
  .btn-learn {
    padding: 16px 32px;
  }
}
.btn-learn:hover {
  border-color: rgba(250, 248, 242, 0.4);
  background: rgba(250, 248, 242, 0.05);
  color: var(--cream);
}

/* Stat strip */
.stat-strip {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(250, 248, 242, 0.1);
  background: rgba(13, 45, 28, 0.7);
  backdrop-filter: blur(12px);
}
.stat-strip-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .stat-strip-inner {
    flex-direction: row;
  }
}
.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 16px;
  border-bottom: 1px solid rgba(250, 248, 242, 0.1);
}
@media (min-width: 768px) {
  .stat-item {
    padding: 28px 16px;
    border-bottom: none;
    border-right: 1px solid rgba(250, 248, 242, 0.1);
  }
  .stat-item:last-child {
    border-right: none;
  }
}
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 147, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--cream);
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, 0.5);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .scroll-indicator {
    display: flex;
    bottom: 130px;
  }
}

/* ================================================================ */
/*  TICKER                                                          */
/* ================================================================ */
.ticker {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  padding: 14px 0;
}
.ticker-fade-l {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, var(--gold), transparent);
  z-index: 2;
  pointer-events: none;
}
.ticker-fade-r {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to left, var(--gold), transparent);
  z-index: 2;
  pointer-events: none;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
}
.ticker-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(13, 45, 28, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticker-dot span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(13, 45, 28, 0.7);
}

/* ================================================================ */
/*  KENAPA SECTION                                                  */
/* ================================================================ */
.kenapa {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 96px 0;
}
@media (min-width: 768px) {
  .kenapa {
    padding: 128px 0;
  }
}
.kenapa-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .kenapa-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  .kenapa-grid {
    gap: 80px;
  }
}

.kenapa-photo {
  position: relative;
}
.kenapa-photo .frame {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 2px solid rgba(212, 147, 58, 0.2);
}
@media (min-width: 768px) {
  .kenapa-photo .frame {
    top: -24px;
    left: -24px;
  }
}
.kenapa-photo .img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.kenapa-photo .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kenapa-photo .img-wrap .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 45, 28, 0.4),
    transparent,
    transparent
  );
}
.kenapa-photo .float-card {
  position: absolute;
  right: -16px;
  bottom: -16px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(212, 147, 58, 0.2);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .kenapa-photo .float-card {
    right: -32px;
    bottom: -24px;
  }
}
.kenapa-photo .float-card .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--green-dark);
}
.kenapa-photo .float-card .lbl {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.kenapa-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.kenapa-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--green-dark);
  text-wrap: balance;
}
.kenapa-text h2 .green {
  color: var(--green-medium);
}
.kenapa-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.kenapa-text blockquote {
  position: relative;
  margin-top: 16px;
  padding: 24px;
  border-radius: 12px;
  background: rgba(13, 45, 28, 0.03);
}
.kenapa-text blockquote .big-quote {
  position: absolute;
  top: 12px;
  left: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  line-height: 1;
  color: rgba(212, 147, 58, 0.2);
}
.kenapa-text blockquote p {
  position: relative;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  font-weight: 500;
  font-style: italic;
  color: var(--green-dark);
}
.kenapa-text blockquote cite {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  color: var(--gold);
}
.kenapa-text blockquote cite .line {
  width: 24px;
  height: 1px;
  background: rgba(212, 147, 58, 0.5);
}

/* ================================================================ */
/*  VIDEO SECTION                                                   */
/* ================================================================ */
.video-section {
  position: relative;
  background: var(--green-dark);
  padding: 128px 0;
  clip-path: polygon(0 0, 100% 3%, 100% 97%, 0 100%);
}
@media (min-width: 768px) {
  .video-section {
    padding: 160px 0;
  }
}
.video-section .container-sm {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.video-section h2 {
  max-width: 640px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--cream);
  text-wrap: balance;
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(250, 248, 242, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.video-thumb:hover img {
  transform: scale(1.05);
}
.video-thumb .overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 45, 28, 0.4);
  transition: background 0.3s;
}
.video-thumb:hover .overlay {
  background: rgba(13, 45, 28, 0.3);
}
.video-thumb .play-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb .play-ping {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 147, 58, 0.2);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@media (min-width: 768px) {
  .video-thumb .play-ping {
    width: 96px;
    height: 96px;
  }
}
.video-thumb .play-btn {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 147, 58, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .video-thumb .play-btn {
    width: 96px;
    height: 96px;
  }
}
.video-thumb:hover .play-btn {
  transform: scale(1.1);
  background: var(--gold);
}
.video-thumb .play-btn svg {
  width: 32px;
  height: 32px;
  color: var(--green-dark);
  fill: var(--green-dark);
}
@media (min-width: 768px) {
  .video-thumb .play-btn svg {
    width: 40px;
    height: 40px;
  }
}
.video-thumb .duration {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(13, 45, 28, 0.8);
  backdrop-filter: blur(4px);
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
}

/* ================================================================ */
/*  TUJUAN SECTION                                                  */
/* ================================================================ */
.tujuan {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 96px 0;
}
@media (min-width: 768px) {
  .tujuan {
    padding: 128px 0;
  }
}
.tujuan .header {
  max-width: 640px;
  margin-bottom: 64px;
}
.tujuan .header h2 {
  margin-top: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--green-dark);
  text-wrap: balance;
}
.tujuan .header p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.tujuan-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .tujuan-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .tujuan-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.program-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(214, 208, 196, 0.6);
  background: #fff;
}
.program-card-img {
  position: relative;
  height: 208px;
  overflow: hidden;
}
.program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.program-card:hover .program-card-img img {
  transform: scale(1.08);
}
.program-card-img .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 45, 28, 0.6),
    rgba(13, 45, 28, 0.1),
    transparent
  );
}
.program-card-img .num-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(212, 147, 58, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.2);
}
.program-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}
.program-card-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  transition: color 0.3s;
}
.program-card:hover .program-card-body h3 {
  color: var(--green-medium);
}
.program-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ================================================================ */
/*  BENEFIT SECTION                                                 */
/* ================================================================ */
.benefit {
  position: relative;
  background: var(--green-dark);
  padding: 128px 0;
  clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 97%);
}
@media (min-width: 768px) {
  .benefit {
    padding: 160px 0;
  }
}
.benefit .header {
  text-align: center;
  margin-bottom: 64px;
}
.benefit .header h2 {
  margin-top: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--cream);
  text-wrap: balance;
}
.benefit-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) {
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .benefit-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(250, 248, 242, 0.1);
  background: rgba(250, 248, 242, 0.04);
  backdrop-filter: blur(4px);
  transition: all 0.5s;
}
.benefit-card:hover {
  border-color: rgba(212, 147, 58, 0.25);
  background: rgba(250, 248, 242, 0.08);
}
.benefit-card .b-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(212, 147, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.benefit-card:hover .b-icon {
  background: rgba(212, 147, 58, 0.25);
}
.benefit-card .b-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
}
.benefit-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250, 248, 242, 0.6);
  transition: color 0.3s;
}
.benefit-card:hover p {
  color: rgba(250, 248, 242, 0.75);
}

/* ================================================================ */
/*  IMPACT SECTION                                                  */
/* ================================================================ */
.impact {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 96px 0;
}
@media (min-width: 768px) {
  .impact {
    padding: 128px 0;
  }
}
.impact-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  .impact-grid {
    gap: 80px;
  }
}
.impact-photo {
  position: relative;
}
.impact-photo .img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.impact-photo .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.impact-photo .img-wrap .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 45, 28, 0.3),
    transparent,
    transparent
  );
}
.impact-photo .frame-accent {
  position: absolute;
  right: -16px;
  bottom: -16px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 2px solid rgba(212, 147, 58, 0.2);
}
@media (min-width: 768px) {
  .impact-photo .frame-accent {
    right: -24px;
    bottom: -24px;
  }
}
.impact-photo .float-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(212, 147, 58, 0.3);
  background: rgba(212, 147, 58, 0.9);
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .impact-photo .float-badge {
    top: -24px;
    right: -32px;
  }
}
.impact-photo .float-badge .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--green-dark);
}
.impact-photo .float-badge .lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(13, 45, 28, 0.7);
}

.impact-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.impact-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--green-dark);
  text-wrap: balance;
}
.impact-text > p {
  line-height: 1.7;
  color: var(--muted);
}
.impact-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}
@media (min-width: 1024px) {
  .impact-numbers {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.impact-num-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.impact-num-item .val {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  color: var(--green-dark);
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s;
}
.impact-num-item .val.visible {
  opacity: 1;
  transform: translateY(0);
}
.impact-num-item .lbl {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

/* ================================================================ */
/*  GALLERY                                                         */
/* ================================================================ */
.gallery {
  position: relative;
  background: var(--cream-dark);
  padding: 96px 0;
}
@media (min-width: 768px) {
  .gallery {
    padding: 128px 0;
  }
}
.gallery .header {
  text-align: center;
  margin-bottom: 56px;
}
.gallery .header h2 {
  margin-top: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--green-dark);
  text-wrap: balance;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item .hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    to top,
    rgba(13, 45, 28, 0.8),
    rgba(13, 45, 28, 0.2),
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s;
}
.gallery-item:hover .hover-overlay {
  opacity: 1;
}
.gallery-item .hover-overlay p {
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
}
.g-span-2 {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1;
}
.g-1x1 {
  aspect-ratio: 1;
}
.g-2x1 {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

/* ================================================================ */
/*  TESTIMONI                                                       */
/* ================================================================ */
.testimoni {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 96px 0;
}
@media (min-width: 768px) {
  .testimoni {
    padding: 128px 0;
  }
}
.testimoni .header {
  text-align: center;
  margin-bottom: 56px;
}
.testimoni .header h2 {
  margin-top: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--green-dark);
  text-wrap: balance;
}
.testimoni-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimoni-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.testi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(214, 208, 196, 0.5);
  background: #fff;
}
.testi-card .quote-icon {
  width: 32px;
  height: 32px;
  color: rgba(212, 147, 58, 0.3);
}
.testi-card .stars {
  display: flex;
  gap: 4px;
}
.testi-card .stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  color: var(--gold);
}
.testi-card .text {
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.testi-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(214, 208, 196, 0.5);
}
.testi-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testi-card .author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
}
.testi-card .author-role {
  font-size: 12px;
  color: var(--muted);
}

/* ================================================================ */
/*  BERGABUNG                                                       */
/* ================================================================ */
.bergabung {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  padding: 96px 0;
}
@media (min-width: 768px) {
  .bergabung {
    padding: 128px 0;
  }
}
.bergabung .container-sm {
  text-align: center;
}
.bergabung .header h2 {
  margin-top: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--green-dark);
  text-wrap: balance;
}
.steps-grid {
  position: relative;
  margin-top: 64px;
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
}
.steps-grid .line {
  display: none;
  position: absolute;
  top: 48px;
  left: 16.67%;
  right: 16.67%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212, 147, 58, 0.3),
    transparent
  );
}
@media (min-width: 768px) {
  .steps-grid .line {
    display: block;
  }
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.step-icon-wrap {
  position: relative;
}
.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .step-icon {
    width: 96px;
    height: 96px;
  }
}
.step-item:hover .step-icon {
  transform: scale(1.05);
  box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.3);
}
.step-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (min-width: 768px) {
  .step-icon svg {
    width: 36px;
    height: 36px;
  }
}
.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.step-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
}
.step-item p {
  max-width: 280px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.bergabung .cta-wrap {
  margin-top: 56px;
}
.btn-wa-large {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 999px;
  background: var(--whatsapp);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.25);
  transition: all 0.2s;
}
.btn-wa-large:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(37, 211, 102, 0.35);
}
.btn-wa-large:active {
  transform: scale(0.95);
}
.btn-wa-large svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.btn-wa-large:hover svg {
  transform: rotate(12deg);
}

/* ================================================================ */
/*  CTA BANNER                                                      */
/* ================================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
  padding: 112px 0;
}
@media (min-width: 768px) {
  .cta-banner {
    padding: 144px 0;
  }
}
.cta-banner .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.cta-banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 45, 28, 0.8),
    rgba(13, 45, 28, 0.7),
    rgba(13, 45, 28, 0.9)
  );
}
.cta-banner .content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.cta-banner .bismillah {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: rgba(212, 147, 58, 0.4);
}
.cta-banner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  color: var(--cream);
  text-wrap: balance;
}
.cta-banner h2 .gold {
  color: var(--gold);
}
.cta-banner > .content > p {
  max-width: 640px;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  color: rgba(250, 248, 242, 0.7);
}
.cta-banner .btn-wrap {
  margin-top: 16px;
}
.cta-banner .btn-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 999px;
  background: var(--whatsapp);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.3);
  transition: all 0.2s;
}
.cta-banner .btn-wa-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(37, 211, 102, 0.4);
}
.cta-banner .btn-wa-cta:active {
  transform: scale(0.95);
}
.cta-banner .btn-wa-cta svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.cta-banner .btn-wa-cta:hover svg {
  transform: rotate(12deg);
}
.trust-indicators {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(250, 248, 242, 0.4);
}
.trust-indicators .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
}

/* ================================================================ */
/*  FOOTER                                                          */
/* ================================================================ */
.footer {
  position: relative;
  background: var(--green-dark);
  padding: 64px 0 96px;
  color: rgba(250, 248, 242, 0.7);
}
@media (min-width: 768px) {
  .footer {
    padding: 64px 0;
  }
}
.footer-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(212, 147, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand .logo-icon span {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}
.footer-brand .logo-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}
.footer-brand .logo-text p {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, 0.4);
}
.footer-brand > p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col .links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col .links a {
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col .links a:hover {
  color: var(--cream);
}
.footer-col .info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer-col .info .sub {
  color: rgba(250, 248, 242, 0.5);
}
.footer-col blockquote {
  margin-top: 8px;
  padding-left: 16px;
  border-left: 2px solid rgba(212, 147, 58, 0.3);
  font-size: 12px;
  font-style: italic;
  color: rgba(250, 248, 242, 0.4);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(250, 248, 242, 0.1);
  margin-top: 48px;
  padding-top: 32px;
  text-align: center;
  font-size: 12px;
  color: rgba(250, 248, 242, 0.3);
}
.footer-bottom .heart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-bottom .heart svg {
  width: 12px;
  height: 12px;
  fill: var(--gold);
  stroke: var(--gold);
}

/* ================================================================ */
/*  MOBILE CTA BAR                                                  */
/* ================================================================ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px;
  background: rgba(250, 248, 242, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(13, 45, 28, 0.1);
  transform: translateY(100%);
  transition: transform 0.5s;
}
.mobile-cta-bar.show {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .mobile-cta-bar {
    display: none;
  }
}
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  background: var(--whatsapp);
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.mobile-cta-bar a:active {
  transform: scale(0.95);
}

/* ================================================================ */
/*  URGENCY BAR                                                      */
/* ================================================================ */
.urgency-bar {
  background: linear-gradient(90deg, #b5451b, #d4933a, #b5451b);
  background-size: 200% 100%;
  animation: shimmer-bg 3s ease-in-out infinite;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 100;
}
.urgency-bar strong {
  color: #fff5cc;
}
@keyframes shimmer-bg {
  0%,
  100% {
    background-position: 0% 0;
  }
  50% {
    background-position: 100% 0;
  }
}

/* ================================================================ */
/*  HERO CTA – bigger & more contrast                               */
/* ================================================================ */
.btn-wa-hero {
  font-size: 17px;
  padding: 18px 36px;
  gap: 12px;
  box-shadow:
    0 8px 32px rgba(37, 211, 102, 0.45),
    0 0 0 4px rgba(37, 211, 102, 0.15);
}
.btn-wa-hero:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow:
    0 12px 40px rgba(37, 211, 102, 0.6),
    0 0 0 6px rgba(37, 211, 102, 0.2);
}

/* ================================================================ */
/*  MICRO TRUST (below hero CTA)                                    */
/* ================================================================ */
.hero-micro-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.hero-micro-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(250, 248, 242, 0.8);
  letter-spacing: 0.03em;
}
.hero-micro-trust .dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  display: inline-block;
  flex-shrink: 0;
}

/* ================================================================ */
/*  SOCIAL PROOF AVATAR STRIP                                       */
/* ================================================================ */
.avatar-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.9s 0.7s;
}
.avatar-strip.loaded {
  opacity: 1;
  transform: translateY(0);
}
.avatars-row {
  display: flex;
}
.avatars-row .av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: var(--green-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}
.avatars-row .av:first-child {
  margin-left: 0;
}
.av-bg1 {
  background: #2e8b57;
}
.av-bg2 {
  background: #1a6b3c;
}
.av-bg3 {
  background: #d4933a;
}
.av-bg4 {
  background: #3da36e;
}
.av-bg5 {
  background: #0d2d1c;
}
.avatar-strip-text {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(250, 248, 242, 0.9);
  line-height: 1.4;
}
.avatar-strip-text strong {
  color: #a3f5c9;
}

/* ================================================================ */
/*  STICKY WA BAR (desktop)                                         */
/* ================================================================ */
.sticky-wa-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 45, 28, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(37, 211, 102, 0.2);
  padding: 12px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(100%);
}
.sticky-wa-bar.show {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .sticky-wa-bar {
    display: flex;
  }
}
.sticky-wa-text {
  color: rgba(250, 248, 242, 0.85);
  font-size: 14px;
  font-weight: 500;
}
.sticky-wa-text strong {
  color: #a3f5c9;
}
.sticky-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--whatsapp);
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s;
  animation: pulse-glow 2s ease-in-out infinite;
}
.sticky-wa-cta:hover {
  transform: scale(1.05);
}
.sticky-wa-cta svg {
  width: 18px;
  height: 18px;
}

/* ================================================================ */
/*  MOBILE CTA BAR – enhanced                                       */
/* ================================================================ */
.mobile-cta-bar a {
  font-size: 16px;
  padding: 16px 24px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 -4px 20px rgba(37, 211, 102, 0.3);
  position: relative;
}
.mobile-cta-bar-wa {
  display: block;
}

/* ================================================================ */
/*  NAV LINKS – hide on mobile for ads traffic                      */
/* ================================================================ */
@media (max-width: 1023px) {
  .nav-links {
    display: none;
  }
}

/* ================================================================ */
/*  HERO HEADLINE enhancement                                       */
/* ================================================================ */
#heroTitle {
  font-size: clamp(36px, 7vw, 72px);
  line-height: 1.1;
  font-weight: 700;
}
#heroSub {
  font-size: clamp(15px, 2vw, 19px);
  max-width: 600px;
  line-height: 1.65;
}

/* ================================================================ */
/*  OBJECTION HANDLER STRIP                                         */
/* ================================================================ */
.objection-strip {
  background: #0d2d1c;
  padding: 32px 20px;
}
.objection-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.obj-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(250, 248, 242, 0.85);
}
.obj-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(37, 211, 102, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #25d366;
}
.obj-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.obj-text strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 2px;
}
.obj-text span {
  font-size: 12.5px;
  color: rgba(250, 248, 242, 0.6);
}

/* ================================================================ */
/*  CTA SECTION – enhanced                                          */
/* ================================================================ */
.cta-section-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.price-callout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 147, 58, 0.15);
  border: 1px solid rgba(212, 147, 58, 0.3);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ================================================================ */
/*  SCROLL INDICATOR – hide on mobile                              */
/* ================================================================ */
@media (max-width: 767px) {
  .scroll-indicator {
    display: none;
  }
}

/* ================================================================ */
/*  HADITH HOOK SECTION                                             */
/* ================================================================ */
.hadith-hook {
  background: var(--green-dark);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.hadith-hook-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hadith-hook-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.hadith-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}
.hadith-img-wrap img {
  width: 100%;
  border-radius: 16px;
  display: block;
}
.hadith-price-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  border-radius: 16px;
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(212, 147, 58, 0.4);
}
.hadith-price-badge .big {
  font-size: 22px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.hadith-price-badge .small {
  font-size: 12px;
  font-weight: 600;
  color: rgba(13, 45, 28, 0.7);
  margin-top: 2px;
}
.hadith-content h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin: 12px 0 20px;
}
.hadith-content h2 .gold {
  color: var(--gold);
}
.hadith-box {
  background: rgba(212, 147, 58, 0.08);
  border: 1px solid rgba(212, 147, 58, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin: 0 0 20px;
  position: relative;
}
.hadith-quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  line-height: 0.6;
  color: rgba(212, 147, 58, 0.25);
  position: absolute;
  top: 20px;
  left: 20px;
}
.hadith-arabic {
  font-size: 18px;
  text-align: center;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  margin-bottom: 12px;
  direction: rtl;
}
.hadith-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(250, 248, 242, 0.85);
  font-style: italic;
  position: relative;
  z-index: 1;
}
.hadith-source {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 10px;
  letter-spacing: 0.05em;
}
.hadith-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(250, 248, 242, 0.8);
  margin-bottom: 24px;
}
.hadith-content .btn-wa-hero {
  display: inline-flex;
  margin-top: 8px;
}

/* ================================================================ */
/*  BENEFIT CHECKLIST                                               */
/* ================================================================ */
.benefit-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefit-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.85);
}
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(46, 139, 87, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--green-medium);
  border: 1.5px solid rgba(46, 139, 87, 0.3);
}
.check-icon svg {
  width: 11px;
  height: 11px;
}

/* ================================================================ */
/*  CONVERSION CTA SECTION                                          */
/* ================================================================ */
#cta-conversion {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--green-dark) 0%, #0a2015 100%);
  position: relative;
  overflow: hidden;
}
#cta-conversion .islamic-pattern {
  opacity: 0.08;
}

/* ================================================================ */
/*  SECTION-SPECIFIC PATTERN OPACITIES                              */
/* ================================================================ */
.hero .islamic-pattern {
  opacity: 0.3;
}
.kenapa .islamic-pattern {
  opacity: 0.2;
}
.tujuan .islamic-pattern {
  opacity: 0.15;
}
.testimoni .islamic-pattern {
  opacity: 0.15;
}
.video-section .islamic-pattern {
  opacity: 0.1;
}
.bergabung .islamic-pattern {
  opacity: 0.1;
}
.hadith-hook .islamic-pattern {
  opacity: 0.15;
}
.footer .islamic-pattern {
  opacity: 0.05;
}

/* ================================================================ */
/*  SECTION CONTAINERS – relative positioning                       */
/* ================================================================ */
.tujuan .container,
.bergabung .container-sm,
.footer .container {
  position: relative;
}

/* ================================================================ */
/*  VIDEO SECTION – header flex layout                              */
/* ================================================================ */
.video-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ================================================================ */
/*  MOBILE MENU CLOSE BUTTON                                        */
/* ================================================================ */
.btn-menu-close {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

/* ================================================================ */
/*  LIVE DONATION CTA SECTION                                       */
/* ================================================================ */
.live-cta-section {
  background: linear-gradient(180deg, #0a2015 0%, var(--green-dark) 100%);
  padding: 80px 20px;
  position: relative;
}

.live-cta-card {
  background: linear-gradient(160deg, #0d2d1c 0%, #0a2015 100%);
  border: 1px solid rgba(212, 147, 58, 0.2);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.live-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4933a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Live badge */
.live-badge-wrap {
  display: flex;
  justify-content: center;
  padding: 28px 28px 0;
  position: relative;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whatsapp);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--whatsapp);
  flex-shrink: 0;
  animation: live-pulse 1.5s ease-in-out infinite;
}
@keyframes live-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.65);
  }
}

/* Card body */
.live-cta-body {
  padding: 20px 28px 28px;
  position: relative;
}

/* Divider ornament */
.live-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.live-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212, 147, 58, 0.3),
    transparent
  );
}
.live-divider-icon {
  width: 28px;
  height: 28px;
  background: rgba(212, 147, 58, 0.12);
  border: 1px solid rgba(212, 147, 58, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.live-divider-icon svg {
  width: 13px;
  height: 13px;
}

/* Stats row */
.live-stats-row {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 147, 58, 0.12);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
.live-stat-col {
  padding: 20px;
  text-align: center;
}
.live-stat-divider {
  background: rgba(212, 147, 58, 0.15);
  align-self: stretch;
}
.live-stat-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, 0.45);
  margin-bottom: 8px;
}
.live-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.live-stat-suffix {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(250, 248, 242, 0.45);
  margin-top: 6px;
}

/* Tick flash animation */
@keyframes live-tick-flash {
  0% {
    color: var(--whatsapp);
  }
  100% {
    color: var(--cream);
  }
}
.live-stat-num.ticking {
  animation: live-tick-flash 0.6s ease-out forwards;
}

/* Progress bar */
.live-progress-wrap {
  margin-bottom: 16px;
}
.live-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(250, 248, 242, 0.5);
}
.live-pct {
  color: var(--gold-light);
  font-weight: 700;
}
.live-progress-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 99px;
  overflow: hidden;
}
.live-progress-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #1e8c4e, #25d366, #a3f5c9);
  background-size: 200% 100%;
  animation: progress-shine 2.5s linear infinite;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes progress-shine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Activity ticker */
.live-activity-wrap {
  overflow: hidden;
  height: 36px;
  margin-bottom: 20px;
  position: relative;
}
.live-activity-wrap::before,
.live-activity-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32px;
  z-index: 2;
  pointer-events: none;
}
.live-activity-wrap::before {
  left: 0;
  background: linear-gradient(to right, #0d2d1c, transparent);
}
.live-activity-wrap::after {
  right: 0;
  background: linear-gradient(to left, #0d2d1c, transparent);
}
.live-activity-list {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.live-activity-item {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  color: rgba(250, 248, 242, 0.6);
  flex-shrink: 0;
}
.live-activity-av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.live-activity-item strong {
  color: var(--cream);
}
.live-activity-item .live-amt {
  color: var(--whatsapp);
  font-weight: 700;
}

/* CTA button */
.live-cta-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  border-radius: 999px;
  background: var(--whatsapp);
  font-size: 16px;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: 0.01em;
  box-shadow:
    0 8px 32px rgba(37, 211, 102, 0.4),
    0 0 0 3px rgba(37, 211, 102, 0.12);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.live-cta-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.live-cta-btn:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow:
    0 12px 40px rgba(37, 211, 102, 0.55),
    0 0 0 5px rgba(37, 211, 102, 0.18);
}
.live-cta-btn:active {
  transform: scale(0.97);
}

/* Micro trust below button */
.live-micro-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.live-micro-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(250, 248, 242, 0.45);
  letter-spacing: 0.02em;
}

/* ================================================================ */
/*  DONOR TOAST NOTIFICATION                                        */
/* ================================================================ */
.donor-toast-wrap {
  position: fixed;
  bottom: 80px;
  left: 16px;
  z-index: 200;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
}
@media (min-width: 768px) {
  .donor-toast-wrap {
    bottom: 24px;
  }
}

.donor-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0d2d1c 0%, #0a2015 100%);
  border: 1px solid rgba(212, 147, 58, 0.25);
  border-radius: 14px;
  padding: 10px 14px 10px 10px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(212, 147, 58, 0.08);
  max-width: 280px;
  pointer-events: auto;
  transform: translateX(-110%);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s ease;
}
.donor-toast.toast-in {
  transform: translateX(0);
  opacity: 1;
}
.donor-toast.toast-out {
  transform: translateX(-110%);
  opacity: 0;
}

.donor-toast-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.donor-toast-body {
  flex: 1;
  min-width: 0;
}
.donor-toast-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.donor-toast-detail {
  font-size: 11px;
  font-weight: 500;
  color: rgba(250, 248, 242, 0.5);
  margin-top: 1px;
}
.donor-toast-detail .toast-amt {
  color: var(--whatsapp);
  font-weight: 700;
}

.donor-toast-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--whatsapp);
  flex-shrink: 0;
  animation: live-pulse 1.5s ease-in-out infinite;
}
