@charset "UTF-8";

/* =====================================================
   CONTACT FORM STYLES - MOBILE
   Standalone mobile platform (non-responsive)
   ===================================================== */

/* =====================================================
   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: 32px 30px;
  margin: 0;
  width: 100%;
  float: left;
}

/* =====================================================
   HEADER SECTION
   ===================================================== */

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

.contact-form-badge {
  width: 100%;
  height: 70px;
  margin: 0 auto 16px;
  background-image: url("../images/bkgs/confidentiality.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

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

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

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

/* =====================================================
   FORM CONTAINER
   ===================================================== */

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

.contact-form-body {
  padding: 24px 20px;
  background: #ffffff;
}

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

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

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

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

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

/* Keep long service names from running under the chevron */
.contact-input-wrapper select {
  /* leave space for the right-side arrow */
  padding-right: 56px;               /* was 16px */
  background-position: right 16px center;
  background-size: 12px auto;

  /* prevent overflow + add ellipsis */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  /* make sure native arrows stay hidden everywhere */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.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: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.contact-input-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-input-icon-quote {
  position: absolute;
  left: 14px;
  top: 18px;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.contact-input-icon-quote img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 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: 24px;
}

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

.contact-radio-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

/* Contact Method Options - Keep on one line if they fit */
.contact-method-options {
  display: flex !important;
  flex-direction: row !important;
  gap: 16px !important;
  flex-wrap: wrap;
}

/* =====================================================
   RADIO BUTTON FIX - Override boilerplate
   ===================================================== */

.contact-radio-option input[type="radio"] {
  width: 20px !important;
  height: 20px !important;
  accent-color: #5B2C6F;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
  appearance: auto;
  -webkit-appearance: radio;
  -moz-appearance: radio;
}

/* For browsers that don't support accent-color */
.contact-radio-option input[type="radio"]:checked {
  background-color: #5B2C6F;
  border-color: #5B2C6F;
}

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

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

.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 14px/160% "Inter", sans-serif;
  color: #555;
  cursor: pointer;
}

/* =====================================================
   CHECKBOX FIX - Override boilerplate
   ===================================================== */

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

/* For browsers that don't support accent-color */
.contact-checkbox-wrapper input[type="checkbox"]:checked {
  background-color: #5B2C6F;
  border-color: #5B2C6F;
}

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

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

.contact-recaptcha-wrapper > div {
  transform: scale(0.9);
  transform-origin: 0 0;
}

/* =====================================================
   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;
  touch-action: manipulation;
}

.contact-submit-btn:active {
  background: #442153;
  transform: scale(0.98);
}

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

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

.contact-error {
  color: #dc3545;
  font-size: 13px;
  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;
  font-size: 14px;
  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;
}



/* =====================================================
   TRANSPARENCY SECTION - MOBILE
   ===================================================== */

.transparency-wrapper {
  float: left;
  width: 100%;
  background: #fff;
  padding: 32px 30px 32px 30px;
  box-sizing: border-box;
  margin-bottom: 0px;
}

.transparency-container {
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.transparency-header {
  width: 100%;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
}

.header-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 10px;
}

.header-icon img {
  width: 56px;
  height: 56px;
  display: block;
}

.header-title {
  flex: 1;
  font: 400 28px/1.3 "Rosarivo", cursive;
  color: #7c5f99;
  margin: 0;
}

.hero-image {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 24px;
  box-sizing: border-box;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.content-section {
  width: 100%;
  padding: 0 20px 24px 20px;
  box-sizing: border-box;
}

.content-heading {
  font: 600 18px/1.4 "Inter", sans-serif;
  color: #22252B;
  margin-bottom: 16px;
}

.content-text {
  font: 400 16px/1.6 "Inter", sans-serif;
  color: #333;
  margin-bottom: 16px;
}

.content-text:last-of-type {
  margin-bottom: 0;
}

.priority-box {
  width: 100%;
  background: #f0e6f5;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 20px;
  box-sizing: border-box;
}

.priority-text {
  font: 400 16px/150% "Rosarivo", cursive;
  font-style: normal;
  color: #22252B;
  margin: 0;
}