/* =====================================================
   YUVAASOFT – ADVISOR RESPONSE (BOOTSTRAP 5)
===================================================== */

.ys-response-wrap {
  min-height: 100vh;
  padding: 120px 20px;
  background:
    radial-gradient(circle at center, rgba(31,111,229,0.14), transparent 60%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  animation: pageFade 1s ease forwards;
}

/* ---------- Card ---------- */

.ys-response-card {
  background: #ffffff;
  padding: 70px 64px;
  border-radius: 36px;
  box-shadow: 0 40px 120px rgba(15,23,42,0.15);
  animation: cardLift 0.9s ease forwards;
}

/* ---------- Icon ---------- */

.ys-response-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 2.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  animation: iconPop 0.8s ease forwards, iconPulse 2.8s ease-in-out infinite;
}

/* ---------- Title ---------- */

.ys-response-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: .2s;
  opacity: 0;
}

/* ---------- Text ---------- */

.ys-response-text {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: .35s;
  opacity: 0;
}

/* ---------- Info Box ---------- */

.ys-response-info {
  max-width: 520px;
  background: #f8fafc;
  border-radius: 22px;
  padding: 28px 32px;
  margin-bottom: 44px;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: .5s;
  opacity: 0;
}

.ys-response-info p {
  font-weight: 700;
  color: #020617;
}

.ys-response-info li {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 6px;
}

/* ---------- Actions ---------- */

.ys-response-actions {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: .65s;
  opacity: 0;
}

/* ---------- Buttons ---------- */

.ys-btn {
  padding: 16px 42px;
  font-weight: 800;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
}

/* Primary */
.ys-btn.primary {
  background: linear-gradient(135deg, #1f6fe5);
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(31,111,229,0.6);
  border-radius: 60px;
}

.ys-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 100px rgba(31,111,229,0.8);
  background: transparent;
  color: #1f6fe5;
}

/* Outline */
.ys-btn.outline {
  background: transparent;
  color: #1f6fe5;
  border-radius: 60px;
}

.ys-btn.outline:hover {
  background: #1f6fe5;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Shine */
.ys-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: translateX(-100%);
}

.ys-btn:hover::after {
  animation: btnShine .8s ease;
}

/* ---------- Animations ---------- */

@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cardLift {
  from {
    opacity: 0;
    transform: translateY(50px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes iconPop {
  from { transform: scale(.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes iconPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(31,111,229,.4); }
  50% { box-shadow: 0 0 0 20px rgba(31,111,229,0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes btnShine {
  to { transform: translateX(100%); }
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .ys-response-card {
    padding: 50px 28px;
  }

  .ys-response-title {
    font-size: 2.1rem;
  }

  .ys-response-text {
    font-size: 0.95rem;
  }
}

/* ---------- Accessibility ---------- */

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
