body {
  font-family: 'Rubik', sans-serif;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #ff2b9c;
  border-color: #ff2b9c;
}

.btn-primary:hover {
  background-color: #e0007f;
  border-color: #e0007f;
}

.text-primary {
  color: #ff2b9c !important;
}

.hero-section {
  background: #163D79 url('../img/hero-bg.png') no-repeat top center;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 50, 0.3);
}

.hero-section > .container {
  position: relative;
}

.section-dark {
  background-color: #1a2b47;
}

.portfolio-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.testimonial-portrait {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 1rem;
}

/* ── Contact form ── */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid #dee2e6;
  background: #fff;
  color: #6c757d;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.step-circle.active {
  border-color: #ff2b9c;
  background: #ff2b9c;
  color: #fff;
}

.step-circle.completed {
  border-color: #ff2b9c;
  background: #ff2b9c;
  color: #fff;
}

.step-line {
  flex: 1;
  height: 2px;
  background: #dee2e6;
  max-width: 48px;
  transition: background 0.2s;
}

.step-line.completed {
  background: #ff2b9c;
}

.option-card .option-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-card .option-label {
  display: block;
  padding: 1rem 1.25rem;
  border: 2px solid #dee2e6;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  height: 100%;
}

.option-card .option-label:hover {
  border-color: #ff2b9c;
  background: rgba(255, 43, 156, 0.03);
}

.option-card .option-input:checked + .option-label {
  border-color: #ff2b9c;
  background: rgba(255, 43, 156, 0.06);
}
