@keyframes pageReveal{

from{
transform:scale(0.96);
opacity:0;
}

to{
transform:scale(1);
opacity:1;
}

}


body{

font-family: 'Poppins', sans-serif;
animation:pageReveal 0.8s ease;


}


/* ================= FUNDING SECTION ================= */

.funding-section{
  padding:100px 20px;
  text-align:center;
}

.funding-wrapper{
  max-width:750px;
  margin:auto;
}

/* ================= IMAGE ================= */

.funding-img{
  display:flex;
  justify-content:center;
  margin-bottom:40px;
}

.funding-img img{
  width:100%;
  max-width:650px;

  height:auto;
  object-fit:cover;

  border-radius:20px;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.85);

  transition:0.4s ease;
}

.funding-img img:hover{
  transform:scale(1.03);
}

/* ================= TITLE ================= */

.funding-section .guide-title{
  font-family:'Playfair Display',serif;
  font-size:42px;
  letter-spacing:3px;

  margin:20px 0 25px 0;

  color:#ffffff;

  text-align:center;

  text-shadow:0 0 25px rgba(255,255,255,0.3);
}

/* ================= TEXT ================= */

.funding-text{
  max-width:680px;
  margin:auto;
  padding:0 10px;
}

.funding-text p{
  font-family:'Poppins',sans-serif;
  font-size:16px;
  line-height:1.9;

  margin-bottom:22px;

  color:#ffffff;
  opacity:0.85;

  text-align:left; /* 🔥 rata kiri */

  transition:0.3s;
}

.funding-text p:hover{
  opacity:1;
}

/* ================= BUTTON ================= */

.funding-links{
  display:flex;
  flex-direction:column;
  gap:15px;
  margin-top:30px;
}

.funding-btn{
  position:relative;

  display:inline-block;
  padding:14px 20px;

  border-radius:30px;

  text-decoration:none;
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  letter-spacing:1px;

  color:white;
  border:1px solid rgba(255,255,255,0.25);

  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);

  overflow:hidden;

  transition:all 0.3s ease;

  box-shadow:
    0 0 10px rgba(255,255,255,0.1),
    inset 0 0 10px rgba(255,255,255,0.05);
}

/* SHINE */
.funding-btn::before{
  content:"";
  position:absolute;

  top:0;
  left:-120%;

  width:120%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.9),
    transparent
  );

  transition:0.6s;
}

/* BORDER */
.funding-btn::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:30px;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );

  opacity:0;
  transition:0.4s;
}

/* HOVER */
.funding-btn:hover{
  transform:translateY(-4px);

  background:rgba(255,255,255,0.12);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.8),
    0 0 25px rgba(255,255,255,0.25);
}

.funding-btn:hover::before{
  left:120%;
}

.funding-btn:hover::after{
  opacity:1;
}

/* DONATE SPECIAL */
.donate-btn{
  border:1px solid rgba(0,200,255,0.6);

  background:linear-gradient(
    135deg,
    rgba(0,200,255,0.15),
    rgba(0,120,255,0.05)
  );

  box-shadow:
    0 0 20px rgba(0,200,255,0.2);
}

/* ================= DONATE TEXT ================= */

.funding-donate{
  margin-top:50px;
}

.funding-donate h3{
  font-family:'Montserrat',sans-serif;
  font-size:20px;
  margin-bottom:10px;
}

.funding-donate p{
  opacity:0.8;
}

/* BANK */
.bank-info{
  margin-top:15px;
  font-size:15px;
  letter-spacing:1px;
  opacity:0.85;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .funding-section{
    padding:70px 18px;
  }

  .funding-section .guide-title{
    font-size:30px;
  }

  .funding-text p{
    font-size:15px;
  }

}


/* ================= HERO ================= */

.funding-hero{
  width:100%;
}

/* IMAGE WRAPPER */
.funding-hero-bg{
  position:relative;
  width:100%;
  height:80vh;
  overflow:hidden;
}

.funding-hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.5);
}

/* OVERLAY TEXT (TENGAH) */
.funding-hero-overlay{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);

  text-align:center;
  color:white;

  width:90%;
  max-width:700px;
}

/* TITLE */
.funding-hero-overlay h1{
  font-family:'Playfair Display',serif;
  font-size:64px;
  letter-spacing:5px;

  margin-bottom:15px;

  text-shadow:0 0 30px rgba(255,255,255,0.4);
}

/* SUBTITLE */
.funding-hero-overlay p{
  font-family:'Montserrat',sans-serif;
  font-size:18px;
  line-height:1.6;

  color:#eaeaea;

  text-shadow:0 0 15px rgba(0,0,0,0.8);
}


/* ================= CONTENT BELOW ================= */

.funding-content{
  padding:80px 20px;
  background:#000;
  color:white;
}

/* WRAPPER */
.funding-wrapper{
  max-width:800px;
  margin:auto;
}

/* TEXT */
.funding-wrapper p{
  font-family:'Poppins',sans-serif;
  font-size:16px;
  line-height:1.8;

  color:#dcdcdc;

  margin-bottom:22px;

  text-align:left; /* 🔥 penting: rata kiri */
}


/* ================= MOBILE ================= */

@media(max-width:768px){

  .funding-hero-bg{
    height:60vh;
  }

  .funding-hero-overlay h1{
    font-size:34px;
  }

  .funding-hero-overlay p{
    font-size:14px;
  }

  .funding-wrapper p{
    font-size:14px;
  }

}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  background: #0d0d0d;
  color: #ffffff; /* semua teks putih */
}

/* CONTAINER */
.afj-container {
  max-width: 800px;
  margin: auto;
  padding: 50px 20px;
}

/* IMAGE */
.image-box {
  text-align: center;
  margin-bottom: 25px;
}

.image-box img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* TITLE */
h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: #ffffff;
}

/* DESCRIPTION */
.desc {
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #ffffff;
}

/* BOX */
.box {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* CENTER BOX */
.center {
  text-align: center;
}

/* SUBTITLE */
h2 {
  margin-bottom: 12px;
  font-size: 20px;
  color: #ffffff;
}

/* LIST */
ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
  color: #ffffff;
}

/* TEXT */
p {
  color: #ffffff;
  line-height: 1.6;
}

/* LINKS */
a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
}

a:hover {
  opacity: 0.7;
}


/* ================= SUPPORT ================= */

.support-section{
  padding:100px 20px;
  text-align:center;
  background:#000;
}

.support-wrapper{
  max-width:700px;
  margin:auto;
}

/* TEXT */
.support-text{
  font-family:'Poppins',sans-serif;
  font-size:16px;
  line-height:1.8;
  opacity:0.85;
  margin-bottom:30px;
  color:white;
}

/* LINKS */
.support-links{
  display:flex;
  justify-content:center;
}

/* BUTTON */
.support-btn{
  position:relative;

  display:inline-block;
  padding:16px 45px;

  border-radius:40px;

  text-decoration:none;
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  letter-spacing:2px;

  color:white;
  border:1px solid rgba(255,255,255,0.35);

  background:linear-gradient(
    135deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.05)
  );

  backdrop-filter:blur(12px);

  overflow:hidden;

  transition:all 0.3s ease;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.7),
    0 0 25px rgba(255,255,255,0.1);
}

/* SHINE EFFECT */
.support-btn::before{
  content:"";
  position:absolute;

  top:0;
  left:-120%;

  width:120%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );

  transition:0.6s;
}

/* BORDER GLOW */
.support-btn::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:40px;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );

  opacity:0;
  transition:0.4s;
}

/* HOVER */
.support-btn:hover{
  transform:translateY(-4px);

  box-shadow:
    0 20px 45px rgba(0,0,0,0.9),
    0 0 35px rgba(255,255,255,0.25);

  border-color:white;
}

.support-btn:hover::before{
  left:120%;
}

.support-btn:hover::after{
  opacity:1;
}

/* CLICK */
.support-btn:active{
  transform:scale(0.95);
  background:white;
  color:black;
}

/* MOBILE */
@media(max-width:768px){

  .support-section{
    padding:70px 18px;
  }

  .support-text{
    font-size:14px;
  }

}

.donate-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 26px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  border-radius: 20px;
  background: transparent;
  transition: all 0.3s ease;
}

/* hover / click effect */
.donate-btn:hover {
  background: white;
  color: black;
}


.faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.faq-title {
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: #f5d77a;
  letter-spacing: 1px;
}

.icon {
  font-size: 18px;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  color: white;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px 20px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}
