body {
  font-family: "Sarabun", sans-serif;
  background-color: #030712; /* Even darker background */
  color: #e5e7eb;
  scroll-behavior: smooth;
}
/* -- ส่วน Gradient Text ยังคงเป็นสีฟ้า-ม่วงเหมือนเดิม -- */
.gradient-text {
  background: linear-gradient(90deg, #38bdf8, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === START: ส่วนที่ปรับแก้ === */

/* 1. เปลี่ยนพื้นหลังปุ่มเป็นสีเขียว LINE */
.cta-button {
  background: #06C755; /* Official LINE Green */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  animation: pulse-animation 2s infinite;
}

/* 2. เปลี่ยนสีเงาและสีพื้นหลังตอน hover ให้เป็นโทนเขียว */
.cta-button:hover {
  transform: translateY(-5px);
  background-color: #05a546; /* Darker green on hover */
  box-shadow: 0 10px 25px rgba(6, 199, 85, 0.3);
}

/* 3. เปลี่ยนสี Animation Pulse ให้เป็นสีเขียว */
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(6, 199, 85, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(6, 199, 85, 0);
  }
}

/* === END: ส่วนที่ปรับแก้ === */


.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.testimonial-slider::-webkit-scrollbar {
  height: 8px;
}
.testimonial-slider::-webkit-scrollbar-track {
  background: #1f2937;
  border-radius: 10px;
}
.testimonial-slider::-webkit-scrollbar-thumb {
  background: #4b5563;
  border-radius: 10px;
}
.testimonial-slider::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  transform: scale(0);
  transition: transform 0.3s ease;
}
.floating-cta.visible {
  transform: scale(1);
}