.bulk-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #2878ff 0%, #56a0f5 55%, #a8d4ff 100%);
}

.bulk-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.bulk-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
}

.bulk-hero-text {
  flex: 0 0 auto;
}

.bulk-hero-title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.bulk-form-section {
  background: #fff;
  padding: 56px 0 72px;
}

.bulk-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.bulk-intro {
  text-align: center;
  font-size: 18px;
  color: #333;
  margin-bottom: 6px;
}

.bulk-subintro {
  text-align: center;
  font-size: 17px;
  color: #555;
  margin-bottom: 36px;
}

.bulk-highlight {
  color: #e05a2b;
  font-weight: 600;
}

.bulk-errors {
  background: #fff5f5;
  border: 1px solid #fca5a5;
  border-radius: 6px;
  padding: 14px 20px;
  margin-bottom: 24px;
  list-style: none;
}

.bulk-errors li {
  color: #dc2626;
  font-size: 16px;
  padding: 2px 0;
}

.bulk-success {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 20px 24px;
  color: #166534;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.bulk-success svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #16a34a;
}

.bulk-fieldset-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a2340;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 24px;
  margin-top: 36px;
}

.bulk-fieldset-title:first-of-type {
  margin-top: 0;
}

.bulk-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  margin-bottom: 20px;
}

.bulk-row-full {
  grid-template-columns: 1fr;
}

.bulk-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bulk-label {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

.bulk-req {
  color: #e05a2b;
}

.bulk-input,
.bulk-select,
.bulk-textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  padding: 9px 12px;
  font-size: 16px;
  color: #111827;
  background: #fff;
  transition: border-color 0.15s;
  box-sizing: border-box;
  font-family: inherit;
}

.bulk-input:focus,
.bulk-select:focus,
.bulk-textarea:focus {
  outline: none;
  border-color: #2878ff;
  box-shadow: 0 0 0 3px rgba(40, 120, 255, 0.1);
}

.bulk-textarea {
  resize: vertical;
  min-height: 90px;
}

.bulk-select-wrap {
  position: relative;
}

.bulk-select {
  appearance: none;
  padding-right: 36px;
  cursor: pointer;
}

.bulk-select-wrap::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #6b7280;
  pointer-events: none;
}

.bulk-input-suffix-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.bulk-input-suffix {
  padding-right: 44px;
}

.bulk-suffix {
  position: absolute;
  right: 12px;
  font-size: 15px;
  color: #6b7280;
  font-weight: 500;
  pointer-events: none;
}

.bulk-submit-row {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.bulk-submit {
  background: #2878ff;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 56px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}

.bulk-submit:hover {
  background: #1a60e0;
}

@media (max-width: 860px) {
  .bulk-hero {
    height: 200px;
  }

  .bulk-hero-title {
    font-size: 28px;
  }

  .bulk-hero-inner {
    padding: 0 24px;
  }

  .bulk-container {
    padding: 0 20px;
  }

  .bulk-form-section {
    padding: 36px 0 52px;
  }
}

@media (max-width: 600px) {
  .bulk-row {
    grid-template-columns: 1fr;
  }

  .bulk-submit {
    width: 100%;
  }
}

.bulk-phone-wrap {
  display: flex;
  gap: 8px;
}
.bulk-phone-code {
  width: 72px;
  min-width: 72px;
  flex-shrink: 0;
  text-align: center;
  background: #f5f7fa;
  color: #555;
  cursor: default;
}
.bulk-phone-number {
  flex: 1;
}
