/* ================================
   CUSTOM TOGGLE CSS - Tượng thạch cao Minh Anh
   Chức năng: Hiển thị quy trình có nút Xem chi tiết / Thu gọn
   Tác giả: ChatGPT x Minh Anh
   ================================ */

.toggle-section {
  font-family: "Helvetica Neue", Arial, sans-serif;
  max-width: 800px;
  margin: 30px auto;
  text-align: left;
  padding: 20px;
  margin-top: -109px;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  background: #F6F5F4;
}

.toggle-section h2 {
  text-align: center;
  color: #333;
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: 700;
}

.toggle-section h3 {
  position: relative;
  margin-top: 25px;
  margin-bottom: 10px;
  padding-left: 55px; /* tạo khoảng trống cho icon */
  color: #444;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

/* Icon mặc định cho từng h3 */
.toggle-section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* 4 icon riêng cho từng giai đoạn */
.toggle-section .toggle-content h3:nth-of-type(1)::before {
  background-image: url('https://thachcaominhanh.com/wp-content/uploads/2025/11/quy-trinh-01.png');
}

.toggle-section .toggle-content h3:nth-of-type(2)::before {
  background-image: url('https://thachcaominhanh.com/wp-content/uploads/2025/11/quy-trinh-02.png');
}

.toggle-section .toggle-content h3:nth-of-type(3)::before {
  background-image: url('https://thachcaominhanh.com/wp-content/uploads/2025/11/quy-trinh-03.png');
}

.toggle-section .toggle-content h3:nth-of-type(4)::before {
  background-image: url('https://thachcaominhanh.com/wp-content/uploads/2025/11/quy-trinh-04.png');
}

/* Ẩn nội dung chi tiết mặc định */
.toggle-content p {
  display: none;
  text-align: justify;
}

/* Khi mở rộng: hiển thị nội dung */
.toggle-section.active .toggle-content p {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Hiệu ứng hiển thị mềm mại */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Nút xem chi tiết */
.toggle-btn {
  display: block;
  margin: 25px auto 0;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  background: #007bff;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}

.toggle-btn:hover {
  background: #0056b3;
}

.toggle-btn {
  text-transform: capitalize !important;
}

/* Hiển thị nút ở giữa */
.toggle-section .toggle-btn {
  text-align: center;
}

/* Responsive cho Mobile */
@media (max-width: 768px) {
  .toggle-section {
    padding: 15px;
  }

  .toggle-section h2 {
    font-size: 20px;
  }

  .toggle-section h3 {
    padding-left: 50px;
    font-size: 16px;
  }

  .toggle-section h3::before {
    width: 32px;
    height: 32px;
  }

  .toggle-btn {
    width: 100%;
    font-size: 16px;
  }
}

