/* Contact 3: Centered form with background image */
.contact3 {
  width: 100%;
  min-height: 600px;
  padding: 80px 40px;
  background-image: linear-gradient(160deg, #020510 0%, #050f2a 35%, #091840 60%, #040c22 100%);
  position: relative;
}

.contact3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
  background-color: transparent;
}

.contact3-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact3-form {
  background-color: var(--card-bg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact3-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--input-text);
  margin: 0 0 8px 0;
  line-height: 1.2;
  font-family: Arial, sans-serif;
  text-align: center;
}

.contact3-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact3-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--input-text);
  margin: 0;
  font-family: Arial, sans-serif;
}

.contact3-input,
.contact3-textarea {
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  background-color: var(--input-bg);
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: var(--input-text);
  outline: none;
  transition: border-color 0.3s ease;
}

.contact3-input:focus,
.contact3-textarea:focus {
  border-color: var(--text-primary);
}

.contact3-input::placeholder,
.contact3-textarea::placeholder {
  color: var(--text-muted);
}

.contact3-textarea {
  resize: vertical;
  min-height: 100px;
}

.contact3-button {
  padding: 14px 40px;
  background-color: var(--button-bg);
  color: var(--button-text);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
  align-self: center;
}

.contact3-button:hover {
  background-color: var(--button-hover-bg);
}

@media (max-width: 768px) {
  .contact3 {
    padding: 60px 20px;
    min-height: 500px;
    background-image: linear-gradient(160deg, #020510 0%, #050f2a 35%, #091840 60%, #040c22 100%);
  }

  .cont