.contact-body {
  background: transparent;
}

.contact-bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

.contact-bg-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
  pointer-events: none;
}

.contact-main {
  padding: 120px 20px 80px;
  text-align: center;
  min-height: 60vh;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
  box-sizing: border-box;
}

.contact-textarea {
  min-height: 250px;
  resize: vertical;
}

.contact-submit {
  align-self: flex-start;
  padding: 15px 40px;
  font-size: 20px;
  background-color: #03989e;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(3, 152, 158, 0.35);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.contact-success {
  display: none;
  padding: 50px;
  background: rgba(3, 152, 158, 0.2);
  border-radius: 15px;
  max-width: 600px;
  margin: 40px auto;
  border: 1px solid #03989e;
}

.contact-success-title {
  color: #fff;
}

.contact-back-link {
  color: #03989e;
  text-decoration: underline;
  font-size: 18px;
}

.contact-footer {
  background: transparent;
}

@media (max-width: 768px) {
  .contact-main {
    padding: 130px 16px 70px;
  }

  .contact-submit {
    width: 100%;
    align-self: stretch;
  }
}