/* Contact Page Styles */

.contact-main {
  background: linear-gradient(
    100deg,
    rgba(185, 34, 51, 1) 0%,
    rgba(121, 42, 54, 1) 40%,
    rgba(223, 29, 49, 1) 100%
  );
  color: #fff;
  padding-bottom: 80px;
  min-height: 100vh;
}

/* Hero Section */
.contact-hero {
  position: relative;
  padding: 120px 0 60px;
  text-align: center;
  overflow: hidden;
}

.contact-hero__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
}

.contact-hero__container {
  position: relative;
  z-index: 1;
}

.contact-hero__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}

.contact-hero__desc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Form Section */
.contact-form-section {
  position: relative;
  z-index: 1;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-wrapper {
  width: 100%;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
}

.form-group label .required {
  font-size: 12px;
  margin-left: 0.5em;
}

.form-control-wrap {
  position: relative;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 2px;
  background: #fff;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

textarea.form-control {
  height: 200px;
  resize: vertical;
}

/* Privacy Policy Acceptance */
.form-group .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}

.form-group .wpcf7-acceptance input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.form-group .wpcf7-acceptance a {
  color: #fff;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.form-group .wpcf7-acceptance a:hover {
  opacity: 0.8;
}

.form-group .wpcf7-acceptance .required {
  font-size: 12px;
  margin-left: 0.5em;
}

.form-submit {
  text-align: center;
  margin-top: 60px;
}

.btn-submit {
  width: 100%;
  display: inline-block;
  background: #000;
  color: #fff;
  border: none;
  padding: 15px 80px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}

.btn-submit:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero__bg-text {
    font-size: 60px;
  }

  .contact-hero__title {
    font-size: 28px;
  }

  .contact-hero__desc {
    font-size: 14px;
    text-align: center;
  }

  .form-control {
    padding: 12px;
  }

  .btn-submit {
    width: 100%;
  }

  .form-group .wpcf7-acceptance {
    font-size: 13px;
    gap: 6px;
  }

  .form-group .wpcf7-acceptance input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }
}
