/* =========================
   WIZARD / GET QUOTES SECTION — Green Theme
   ========================= */

.wizard-section {
  margin: 40px auto;
}

.wizard-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.wizard-inner {
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 26px;
  padding: 40px 36px;
  box-shadow: 0 36px 80px rgba(7,181,168,0.1);
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

/* Decorative corner accent */
.wizard-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #07b5a8, #22c55e, #07b5a8);
  border-radius: 26px 26px 0 0;
}

.wizard-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ccfbf1, #dcfce7);
  color: #047857;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.wizard-title {
  font-size: 34px;
  margin: 0 0 6px;
  color: #0f172a;
}

.wizard-sub {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 32px;
  max-width: 720px;
  line-height: 1.6;
}

.wizard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Cards */
.wizard-card {
  position: relative;
  background: #f8fafc;
  border-radius: 18px;
  padding: 24px 20px;
  text-decoration: none;
  color: #0f172a;
  border: 1.5px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wizard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(7,181,168,0.12);
  border-color: #07b5a8;
  background: linear-gradient(135deg, #f0fdfa, #ffffff);
}

.wizard-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(7,181,168,0.08), rgba(34,197,94,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 14px;
  transition: all 0.3s;
}

.wizard-card:hover .icon {
  background: linear-gradient(135deg, rgba(7,181,168,0.15), rgba(34,197,94,0.15));
  transform: scale(1.05);
}

.wizard-card h3 {
  font-size: 17px;
  margin: 0 0 5px;
  font-weight: 700;
}

.wizard-card p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

/* Popular badge */
.wizard-card .badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #07b5a8, #22c55e);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

/* Arrow indicator on hover */
.wizard-card::after {
  content: '→';
  position: absolute;
  bottom: 16px;
  right: 18px;
  font-size: 16px;
  font-weight: 700;
  color: #07b5a8;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}
.wizard-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .wizard-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .wizard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wizard-inner {
    padding: 28px 20px;
  }
  .wizard-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .wizard-grid {
    grid-template-columns: 1fr;
  }
}
