/* Johan van den Hoek Bouwservice – Design System */

/* ── Buttons ── */
.btn-primary {
  background-color: #F57C1F;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.15);
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.btn-primary:hover {
  background-color: #d4680f;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(245,124,31,0.4);
}

.btn-secondary {
  background-color: #1C3D5A;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s, transform 0.15s;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}
.btn-secondary:hover {
  background-color: #13293d;
  transform: translateY(-1px);
}

.btn-ghost {
  border: 2px solid rgba(255,255,255,0.8);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}
.btn-ghost:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: #ffffff;
}

/* ── Form inputs ── */
.form-input {
  width: 100%;
  border: 1.5px solid #D1D5DB;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: #1F2937;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: #F57C1F;
  box-shadow: 0 0 0 3px rgba(245,124,31,0.18);
}
select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236B7280'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ── Lists ── */
.check-list { list-style: none; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; }
.cross-list { list-style: none; padding: 0; }
.cross-list li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; }
.star-rating { color: #F59E0B; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid #E5E7EB; }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #1C3D5A;
  padding: 1.125rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] > summary { color: #F57C1F; }
.faq-item[open] > summary .faq-icon { transform: rotate(180deg); }
.faq-icon { transition: transform 0.25s; flex-shrink: 0; }
.faq-item .faq-body { padding-bottom: 1.25rem; color: #4B5563; line-height: 1.7; }

/* ── Hero ── */
.hero-bg {
  background: linear-gradient(135deg, #1C3D5A 0%, #0f2235 50%, #1a3550 100%);
  position: relative;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10-10-4.5-10-10zm-20 0c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10-10-4.5-10-10zm-20 0c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10-10-4.5-10-10zM50 30c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10-10-4.5-10-10zm-20 0c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10-10-4.5-10-10zM10 30c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10-10-4.5-10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ── Service cards ── */
.service-card {
  background: #ffffff;
  border-radius: 0.875rem;
  padding: 1.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  transition: all 0.25s ease;
  border: 1.5px solid #F3F4F6;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: 0 12px 28px -6px rgba(28,61,90,0.15);
  transform: translateY(-5px);
  border-color: #F57C1F;
}

/* ── Process steps ── */
.step-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #F57C1F, #d4680f);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(245,124,31,0.4);
}

/* ── Connector line between steps (desktop) ── */
.steps-grid { position: relative; }
