/* =========================================================
   FEATURES SECTION – FULL GLASS SYSTEM SYNC
========================================================= */

.dr1features {
  background:
    radial-gradient(circle at top,
      rgba(56,189,248,0.12),
      transparent 45%),
    linear-gradient(180deg, #020617, #020617);

  padding: 110px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

/* ---------- HEADING ---------- */

.dr1features h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #f8fafc;
  letter-spacing: -0.5px;
  text-shadow: 0 12px 35px rgba(0,0,0,0.6);

  position: relative;
  display: inline-block;
}

/* --- Gradient Underline (Synced with Services) --- */

.dr1features h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  border-radius: 4px;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
}

.dr1features p {
  font-size: 1.05rem;
  max-width: 640px;
  margin: 30px auto 70px;
  color: #dbeafe;
  line-height: 1.8;
}

/* ---------- GRID WRAPPER ---------- */

.dr1features .quickactions-section {
  max-width: 820px;
  margin: auto;
}

.dr1features .actions {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 34px;
}

/* ---------- CARD (Glass Synced) ---------- */

.dr1features .qa-card {
  position: relative;
  height: 180px;
  border-radius: 26px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.02)
    );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.05);

  transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    box-shadow .4s ease,
    border .4s ease;
}

/* Gloss Overlay */

.dr1features .qa-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.05) 30%,
    transparent 60%
  );

  opacity: 0.35;
  pointer-events: none;
}

/* ---------- HOVER ---------- */

@media (hover: hover) {
  .dr1features .qa-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
      0 60px 150px rgba(0,0,0,0.9),
      0 0 60px rgba(56,189,248,0.2);
    border: 1px solid rgba(56,189,248,0.35);
  }
}

/* ---------- ICON ---------- */

.dr1features .icon {
  font-size: 2.8rem;
  width: 78px;
  height: 78px;
  margin-bottom: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.12);
  border-radius: 20px;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.35),
    0 15px 40px rgba(0,0,0,.5);
}

/* ---------- LABEL ---------- */

.dr1features .label {
  font-size: 1rem;
  letter-spacing: .5px;
  color: #f1f5f9;
}

/* ---------- REMOVE OLD COLOR EDGE GLOWS ---------- */
/* Glow now unified through hover system */

/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
  .dr1features {
    padding: 90px 18px;
  }

  .dr1features .qa-card {
    height: 160px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

@media (max-width: 480px) {
  .dr1features {
    padding: 80px 16px;
  }

  .dr1features .qa-card {
    height: 150px;
  }

  .dr1features .icon {
    width: 64px;
    height: 64px;
    font-size: 2.4rem;
  }

  .dr1features .label {
    font-size: .95rem;
  }
}

/* ---------- ACCESSIBILITY ---------- */

@media (prefers-reduced-motion: reduce) {
  .dr1features * {
    transition: none !important;
  }
}