/* ======================================================
   QUOTES & WIZARD — FINAL PRODUCTION VERSION
   ====================================================== */


/* ======================================================
   GET QUOTES SECTION (REVENUE HIGHLIGHT)
   ====================================================== */

.wizard-section {
  width: 100%;
  margin: 56px 0;
  position: relative;
}

/* Match rest of website width */
.wizard-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ======================================================
   OUTER GLOW + PULSE (CORRECT LAYER)
   ====================================================== */

.wizard-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 52px;
  background: linear-gradient(
    135deg,
    rgba(37,99,235,0.55),
    rgba(34,197,94,0.55)
  );
  filter: blur(42px);
  opacity: 0.55;
  animation: revenueGlow 5s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

/* Pulse animation */
@keyframes revenueGlow {
  0% {
    opacity: 0.35;
    filter: blur(32px);
  }
  50% {
    opacity: 0.95;
    filter: blur(48px);
  }
  100% {
    opacity: 0.35;
    filter: blur(32px);
  }
}


/* ======================================================
   GRADIENT + GLASS CARD (SAFE)
   ====================================================== */

.wizard-inner {
  position: relative;
  background: linear-gradient(
    135deg,
    #2563eb 0%,
    #0891b2 50%,
    #22c55e 100%
  );
  border-radius: 36px;
  padding: 48px 40px;
  z-index: 1;
  overflow: hidden; /* ✅ ONLY clips glass, not glow */
}

/* Glass layer */
.wizard-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 0;
}

/* Keep content above effects */
.wizard-inner > * {
  position: relative;
  z-index: 1;
}


/* ======================================================
   GRID
   ====================================================== */

.wizard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}


/* ======================================================
   PRODUCT CARDS
   ====================================================== */

.quote-product-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
    cursor: pointer;
  border: 1px solid rgba(37,99,235,0.15);
  box-shadow: 0 16px 40px rgba(15,23,42,0.15);
  transition: transform .2s ease, box-shadow .2s ease;
}

.quote-product-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 48px rgba(37,99,235,0.35),
    0 0 0 2px rgba(34,197,94,0.25);
}

.quote-product-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.quote-product-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.quote-product-card p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.quote-product-card .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #22c55e;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
}


/* ======================================================
   OVERLAY (COMMON)
   ====================================================== */

.gc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,40,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.gc-overlay.show {
  display: flex;
}


/* ======================================================
   WIZARD / QUOTES MODAL
   ====================================================== */

.gc-wizard-box,
.gc-quotes-box {
  background: #ffffff;
  width: 720px;
  max-width: calc(100% - 32px);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.35);
  position: relative;
}

/* Close button */
.gc-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  font-size: 18px;
  cursor: pointer;
}


/* ======================================================
   FORM / STEPS
   ====================================================== */

.gc-step { display: none; }
.gc-step.active { display: block; }

.gc-step h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #0f172a;
}

.gc-step label {
  display: block;
  margin: 10px 0 4px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.gc-wizard-box input,
.gc-wizard-box select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 14px;
  margin-bottom: 14px;
}

.gc-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}


/* ======================================================
   PILLS
   ====================================================== */

.gc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gc-pills button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  background: #f8fafc;
  cursor: pointer;
  font-size: 13px;
}

.gc-pills button.active {
  background: linear-gradient(135deg,#2563eb,#22c55e);
  color: #ffffff;
  border: none;
}


/* ======================================================
   QUOTES LIST
   ====================================================== */

.quote-card {
  display: grid;
  grid-template-columns: 1.6fr 1fr 140px;
  gap: 14px;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid #e5e7eb;
}

.quote-premium {
  font-size: 20px;
  font-weight: 800;
  color: #2563eb;
}


/* ======================================================
   MOBILE
   ====================================================== */

@media (max-width: 768px) {
  .wizard-inner {
    padding: 32px 20px;
  }

  .quote-card {
    grid-template-columns: 1fr;
  }
}
