/* ================= ROOT ================= */
.dr1058faq {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0b1220, #050816);
  color: #e2e8f0;
  font-family: "Inter", "Segoe UI", sans-serif;
}

/* ================= CONTAINER ================= */
.dr1058faq-container {
  max-width: 950px;
  margin: auto;
  text-align: center;
}

/* ================= TITLE ================= */
.dr1058faq-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.dr1058faq-subtitle {
  color: #94a3b8;
  margin-bottom: 45px;
  font-size: 15px;
}

/* ================= FAQ IMAGE ================= */
.dr1058faq-image {
  position: relative;
  max-width: 720px;
  margin: 0 auto 50px;
  border-radius: 18px;
  overflow: hidden;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow: 0 20px 60px rgba(0,0,0,0.6);

  transition: 0.4s ease;
}

/* IMAGE */
.dr1058faq-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* PREMIUM HOVER EFFECT */
.dr1058faq-image:hover img {
  transform: scale(1.05);
}

/* SOFT DARK OVERLAY */
.dr1058faq-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(5,8,22,0.5)
  );
  pointer-events: none;
}

/* ================= LIST ================= */
.dr1058faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ================= CARD ================= */
.dr1058faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: all 0.3s ease;
}

/* subtle hover */
.dr1058faq-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* ================= QUESTION ================= */
.dr1058faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  background: transparent;
  border: none;
  color: #f1f5f9;
  font-size: 15.5px;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ================= ICON ================= */
.dr1058faq-icon {
  font-size: 18px;
  color: #38bdf8;
  transition: transform 0.3s ease;
}

/* ================= ANSWER ================= */
.dr1058faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: #cbd5f5;
  font-size: 14px;
  line-height: 1.7;

  transition: all 0.35s ease;
}

/* ================= ACTIVE ================= */
.dr1058faq-item.active {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.1);
}

.dr1058faq-item.active .dr1058faq-answer {
  max-height: 220px;
  padding: 0 22px 20px;
}

.dr1058faq-item.active .dr1058faq-icon {
  transform: rotate(45deg);
}

/* ================= HIDDEN ================= */
.dr1058faq-item.hidden {
  display: none;
}

/* ================= BUTTON ================= */
.dr1058faq-toggle-wrap {
  margin-top: 25px;
}

.dr1058faq-toggle-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  background: transparent;
  color: #38bdf8;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
}

.dr1058faq-toggle-btn:hover {
  background: #38bdf8;
  color: #020617;
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

  .dr1058faq-title {
    font-size: 24px;
  }

  .dr1058faq-question {
    font-size: 14.5px;
  }

  .dr1058faq-image {
    margin-bottom: 35px;
  }
}