@charset "UTF-8";

/* =====================================================
   CONTACT FORM STYLES
   Scoped to prevent conflicts with main site CSS
   ===================================================== */

/* =====================================================
   BASE WRAPPER
   ===================================================== */

.contact-form-wrapper * {
  box-sizing: border-box;
}

.contact-form-wrapper {
  font-family: "Inter", sans-serif;
  background-color: #F2EFF6;
  min-height: 100vh;
  display: block;
  padding: 100px 0;
  margin: 0;
  width: 100%;
  float: left;
}

/* =====================================================
   HEADER SECTION (Wider: 1000px)
   ===================================================== */

.contact-form-header {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 0;
  text-align: center;
  padding: 0 40px 40px 40px;
}

.contact-form-badge {
  float: left;
  width: 900px;
  height: 60px;
  margin-bottom: 20px;
  background-image: url("../images/bkgs/confidentiality.png");
}

.contact-form-badge::before {
  content: "";
  font-size: 16px;
}

.contact-form-header h1 {
  font: 400 40px/130% "Rosarivo", cursive;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.contact-form-header h1 .highlight {
  color: #5B2C6F;
}

.contact-form-header p {
  font: 400 18px/160% "Inter", sans-serif;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* =====================================================
   FORM CONTAINER (Narrower: 750px)
   ===================================================== */

.contact-form-container {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-form-body {
  padding: 40px 50px 50px;
  background: #ffffff;
}

/* =====================================================
   FORM GROUPS & LABELS
   ===================================================== */

.contact-form-group {
  margin-bottom: 24px;
}

.contact-form-group label {
  display: block;
  font: 400 16px/160% "Inter", sans-serif;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}

/* =====================================================
   INPUT FIELDS
   ===================================================== */

.contact-input-wrapper {
  position: relative;
}

.contact-input-wrapper input,
.contact-input-wrapper select,
.contact-input-wrapper textarea {
  width: 100%;
  padding: 14px 16px 14px 45px;
  border: 1px solid #442153;
  border-radius: 8px;
  font: 400 16px/160% "Inter", sans-serif;
  color: #333;
  transition: all 0.3s ease;
  background: #fafafa;
}

.contact-input-wrapper input:focus,
.contact-input-wrapper select:focus,
.contact-input-wrapper textarea:focus {
  outline: none;
  border-color: #E6DFE9;
  background: #ffffff;
}

.contact-input-wrapper textarea {
  min-height: 120px;
  resize: vertical;
}

/* Input Icons */
.contact-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
  pointer-events: none;
}

.contact-input-icon-quote {
  position: absolute;
  left: 16px;
  top: 25%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
  pointer-events: none;
}

/* Position textarea icon at top left */
.contact-input-wrapper textarea + .contact-input-icon {
  top: 18px !important;
  transform: none !important;
}

/* =====================================================
   SELECT DROPDOWN
   ===================================================== */

.contact-input-wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

/* =====================================================
   RADIO BUTTONS
   ===================================================== */
.contact-radio-group {
  margin-bottom: 30px;
}

.contact-radio-group-label {
  font: 400 16px/160% "Inter", sans-serif;
  color: #333;
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
}

/* UPDATED - Single horizontal line */
.contact-radio-options {
  display: flex;
  flex-direction: row;
  gap: 30px; /* Adjust spacing between items */
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.contact-radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.contact-radio-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: #5B2C6F;
  cursor: pointer;
  margin: 0;
}

.contact-radio-option label {
  font: 400 16px/160% "Inter", sans-serif;
  color: #555;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
}

/* Contact Method Options - Force Single Line */
.contact-method-options {
  display: flex !important;
  flex-direction: row !important;
  gap: 40px !important;
  grid-template-columns: none !important;
}

/* =====================================================
   CHECKBOXES
   ===================================================== */

.contact-checkbox-group {
  margin-bottom: 24px;
}

.contact-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-checkbox-wrapper input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #5B2C6F;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-checkbox-wrapper label {
  font: 400 16px/160% "Inter", sans-serif;
  color: #555;
  cursor: pointer;
}

/* =====================================================
   RECAPTCHA
   ===================================================== */

.contact-recaptcha-wrapper {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

/* =====================================================
   SUBMIT BUTTON
   ===================================================== */

.contact-submit-btn {
  width: 100%;
  padding: 16px;
  background: #5B2C6F;
  color: white;
  border: none;
  border-radius: 8px;
  font: 500 16px/160% "Inter", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-submit-btn:hover {
  background: #F2EFF6;
  color: #5B2C6F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 95, 153, 0.3);
}

.contact-submit-btn::after {
  content: "→";
  font-size: 20px;
}

/* =====================================================
   ERROR MESSAGES
   ===================================================== */

.contact-error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.contact-error.show {
  display: block;
}

/* =====================================================
   RESPONSE MESSAGES
   ===================================================== */

.contact-response-message {
  margin-top: 20px;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.contact-response-message.success {
  background: #d4edda;
  color: #155724;
  border: 2px solid #c3e6cb;
}

.contact-response-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 2px solid #f5c6cb;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 768px) {
  .contact-form-header {
    max-width: 100%;
    padding: 30px 20px;
  }

  .contact-form-header h1 {
    font-size: 32px;
  }

  .contact-form-container {
    max-width: 100%;
  }

  .contact-form-body {
    padding: 30px 20px;
  }

  .contact-radio-options {
    grid-template-columns: 1fr;
  }
}