:root {
  --blue-main: #1e40af;
  --blue-dark: #1e3a8a;
  --blue-light: #3b82f6;
  --blue-accent: #60a5fa;
  --silver-main: #e5e7eb;
  --bg-dark: #0f172a;
  --bg-card: #1e293b;
}

/* === GLOBAL (AMAN, GELAP) === */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #0a0f1e, #0f172a);
  color: #e5e7eb;
}

/* === FAQ & TESTIMONI WRAPPER === */
.faq-section,
.testimoni-section {
  max-width: 1000px;
  margin: 28px auto;
  padding: 28px 24px;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border-radius: 18px;
  border: 1px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(30, 64, 175, 0.15);
  position: relative;
  overflow: hidden;
}

/* Glow effect for sections */
.faq-section::before,
.testimoni-section::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    transparent 20%, 
    rgba(59, 130, 246, 0.1) 50%, 
    transparent 80%);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
  animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

/* === TITLE === */
.faq-title,
.testimoni-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 28px;
  color: var(--blue-accent);
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.7),
               0 0 20px rgba(59, 130, 246, 0.4);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* === FAQ ITEM === */
.faq-item {
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

/* === FAQ QUESTION === */
.faq-question {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: #f8fafc;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid var(--blue-light);
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: linear-gradient(135deg, #334155, #475569);
  border-color: var(--blue-accent);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3),
              0 0 12px rgba(96, 165, 250, 0.3);
}

.faq-question::after {
  content: "+";
  color: var(--blue-accent);
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}

/* === FAQ ANSWER (STATIS) === */
.faq-answer {
  padding: 0 20px 16px 20px;
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.7;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-top: none;
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 16px 20px;
}

/* === TESTIMONI GRID === */
.testimoni-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* === TESTIMONI CARD === */
.testimoni-card {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #e5e7eb;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.testimoni-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-accent);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3),
              0 0 15px rgba(96, 165, 250, 0.3);
}

.testimoni-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--blue-light), 
    var(--blue-accent), 
    var(--blue-light), 
    transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimoni-card:hover::before {
  opacity: 1;
}

/* TEXT */
.testimoni-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #d1d5db;
  font-style: italic;
}

/* NAME */
.testimoni-name {
  font-size: 14px;
  color: var(--blue-accent);
  font-weight: bold;
  text-shadow: 0 0 6px rgba(96, 165, 250, 0.5);
  text-align: right;
}

/* Quote marks */
.testimoni-text::before {
  content: "❝";
  color: var(--blue-light);
  font-size: 24px;
  margin-right: 5px;
  opacity: 0.6;
}

.testimoni-text::after {
  content: "❞";
  color: var(--blue-light);
  font-size: 24px;
  margin-left: 5px;
  opacity: 0.6;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
  .faq-title,
  .testimoni-title {
    font-size: 24px;
  }

  .faq-question {
    font-size: 15px;
    padding: 14px 16px;
  }
  
  .faq-answer {
    font-size: 14px;
    padding: 0 16px 14px 16px;
  }
  
  .testimoni-wrapper {
    grid-template-columns: 1fr;
  }
  
  .faq-section,
  .testimoni-section {
    padding: 20px 16px;
    margin: 20px 12px;
  }
}

/* Additional shine effect for cards */
.testimoni-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.6s ease;
  pointer-events: none;
}

.testimoni-card:hover::after {
  left: 150%;
}