.contact-wrapper {
  width: 100%;
  max-width: none;

  margin: 40px auto;
  padding: 20px;
  display: flex;
  gap: 20px;
  background: transparent;
}

.contact-form-box {
  flex: 0 0 65%;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
}

.contact-form-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-form-group {
  margin-bottom: 15px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-button {
  width: 100%;
  padding: 14px;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.contact-button:hover {
  background-color: #0056b3;
}

/* Honeypot */
.contact-honeypot {
  display: none;
}

.contact-map-box {
  flex: 0 0 35%;
  border-radius: 12px;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form-box,
  .contact-map-box {
    flex: 100%;
  }
}
