/* Contact Form */
/* =========================
   Contact Form (ONLY)
   ========================= */
.contact-form-container {
  display: none;
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
  /* Make the form area feel like your site cards */
}
.contact-form-container.active {
  display: block;
}
.contact-form-container #contactFormElement {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .contact-form-container #contactFormElement {
    padding: 1rem;
    border-radius: 14px;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.back-btn {
  display: none;
}

.form-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0b0b0b;
  margin-bottom: 1rem;
  padding-left: 1rem;
  letter-spacing: -0.4px;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Group spacing (a bit tighter + consistent with card UI) */
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #000;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.2px;
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

/* Submit button: match your site CTA vibe (bold, clean, slight lift) */
.submit-btn {
  width: 100%;
  padding: 1.05rem;
  background: #0b0b0b;
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  letter-spacing: 0.4px;
}
.submit-btn:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}
.submit-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

/* Helper text */
.field-hint {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  color: #6f6f6f;
  line-height: 1.35;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* =========================
 Radio buttons (3 squared)
 ========================= */
.radio-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (max-width: 520px) {
  .radio-row {
    grid-template-columns: 1fr;
  }
}

.radio-pill {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7e7e7;
  background: #ffffff;
  border-radius: 14px; /* squared but still nice */
  padding: 0.95rem 0rem;
  display: flex !important;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  /* hide native radio circle */
}
.radio-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  display: none;
}
.radio-pill span {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #0b0b0b;
  text-transform: lowercase; /* remove if you want */
}
.radio-pill:hover {
  transform: translateY(-1px);
  border-color: #dcdcdc;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

/* selected state */
.radio-pill:has(input:checked) {
  background: #0b0b0b;
  border-color: #0b0b0b;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.radio-pill:has(input:checked) span {
  color: #ffffff;
}

/* keyboard focus */
.radio-pill:has(input:focus-visible) {
  outline: 3px solid rgba(120, 165, 255, 0.35);
  outline-offset: 2px;
}

/* =========================
   Quantity stepper (MODERN)
   ========================= */
.qty-stepper {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  gap: 0.75rem;
  align-items: center;
  /* Firefox spinner removal */
}
.qty-stepper input[type=number] {
  height: 56px;
  width: 100%;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600 !important;
  color: #0b0b0b;
  font-style: italic;
  border-radius: 14px;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  /* remove ugly native arrows */
}
.qty-stepper input[type=number]:focus {
  border-color: #0b0b0b;
  box-shadow: 0 0 0 1px rgba(49, 144, 239, 0.267);
}
.qty-stepper input[type=number]::-webkit-inner-spin-button, .qty-stepper input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-stepper input[type=number] {
  -moz-appearance: textfield;
}

.qty-btn {
  height: 56px;
  width: 56px;
  border-radius: 14px;
  border: 1px solid #e7e7e7;
  background: #ffffff;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 900;
  color: #0b0b0b;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.qty-btn:hover {
  transform: translateY(-1px);
  border-color: #d6d6d6;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}
.qty-btn:active {
  transform: translateY(0px);
  box-shadow: none;
}

/* =========================
 Urgent (minimal, display only)
 ========================= */
.urgent-inline {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.urgent-inline__label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: rgba(0, 0, 0, 0.62);
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.urgent-inline__phone {
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 0.92rem; /* slightly smaller than body */
  font-weight: 500; /* not shouting */
  color: rgba(0, 0, 0, 0.86);
  text-decoration: none;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.urgent-inline__phone:hover {
  color: rgb(0, 0, 0);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-group {
  position: relative;
  /* default underline */
  /* when any child input is focused */
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 0;
  border: none;
  border-radius: 0;
  background: transparent;
  outline: none;
  box-shadow: none;
  position: relative;
  z-index: 2;
}
.form-group::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  transition: height 0.2s ease, background 0.2s ease;
}
.form-group:focus-within::after {
  height: 1px;
  background: linear-gradient(to right, rgb(124, 161, 234), rgba(136, 171, 241, 0.45), rgba(120, 165, 255, 0));
}

#contactDrawer input,
#contactDrawer textarea {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #000;
  font-weight: 400;
}

/* Make the country dropdown appear above your drawer/overlay */
.iti .iti__dropdown-content,
.iti .iti__country-list {
  z-index: 999999 !important;
}

.iti {
  padding-left: 15px;
}

.iti__search-inputt {
  padding-left: 15px;
}/*# sourceMappingURL=ContactForm.css.map */