.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #eeeeee;
  border-radius: 7px;
  background-color: #f8f8f8;
  font-weight: 400;
  font-size: 14px;
  font-family: "Nunito", sans-serif;
}

.contact-form-wrapper input::placeholder {
  font-weight: 400;
  font-size: 14px;
  font-family: "Nunito", sans-serif;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
}

.contact-section {
  padding: 55px 0;
  padding-bottom: 118px;
}

.contact-wrapper {
  margin-top: 45px;
  gap: 20px;
  display: flex;
}

.contact-info {
  width: calc(50% - 10px);
}

.contact-section .section-title {
  font-weight: 700;
  font-size: 27px;
  line-height: 30px;
  text-align: center;
  width: 100%;
}
.contact-subtitle {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 26px;
  margin-top: 55px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  transition: 0.3s all ease;
}
.contact-item a {
  transition: 0.3s all ease;
}
.contact-item a:hover{
  color:#A22A7D;
}

.contact-item svg {
  flex-shrink: 0;
}

.company-details {
  margin-top: 74px;
}

.company-details-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 28px;
}

.contact-subtitle-form {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 35px;
  text-align: center;
}

.company-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  font-size: 16px;
}

.company-detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  min-width: 140px;
  font-weight: 400;
  font-size: 16px;

  color: #6f6f73;
}

.detail-value {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0%;
  flex: 1;
  text-align: left;
}

.contact-form-wrapper {
  background: #fff;
  padding: 55px 80px;
  border-radius: 8px;
}

.contact-form-wrapper {
  width: calc(50% - 10px);
}

.contact-form {
  margin-top: 25px;
}

.form-group {
  margin-bottom: 10px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #999;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  margin-bottom: 22px;
  margin-top: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 16px;
  height: 16px;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: #a22a7d;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 3px;
  height: 6px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.privacy-link {
  color: #a22a7d;
  text-decoration: none;
  transition: 0.3s all ease;
  text-decoration: underline;
}

.privacy-link:hover {
  color: rgba(44, 71, 140, 1);
}

.btn-submit {
  width: 100%;
  padding: 13px 20px;
  background: #a22a7d;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #2c478c;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-form-wrapper {
    background: #fff;
    padding: 35px 25px;
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .contact-wrapper {
    margin-top: 26px;
    gap: 20px;
    display: flex;
    flex-direction: column;
  }
  .contact-section {
    padding: 32px 0;
    padding-bottom: 80px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .contact-subtitle {
    font-size: 18px;
    margin-bottom: 16px;
    margin-top: 0;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
  }

  .company-details {
    margin-top: 36px;
  }
  .company-detail-row {
    gap: 5px;
  }
  .detail-value {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0%;
    flex: 1;
    text-align: left;
  }

  .detail-label {
    min-width: 100px;
    font-weight: 400;
    font-size: 12px;
    color: #6f6f73;
  }
  .detail-value {
    text-align: left;
  }
  .contact-info,
  .contact-form-wrapper {
    width: 100%;
  }
  .contact-section .section-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    width: 100%;
  }

  .contact-subtitle-form {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
    text-align: left;
  }
  .contact-form-wrapper input::placeholder {
    font-size: 12px;
  }

  .contact-form-wrapper input,
  .contact-form-wrapper textarea {
    width: 100%;
    padding: 11px 20px;
    border: 1px solid #eeeeee;
    border-radius: 7px;
    background-color: #f8f8f8;
    font-weight: 400;
    font-size: 12px;
    font-family: "Nunito", sans-serif;
  }
  .checkbox-text {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
}
