/*
 * Skysoft-form Styles v3.3 (FIXED COLORS)
 * Modern multi-step form with card-style navigation
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --acq-primary: #05509f;
  --acq-primary-hover: #043d7a;
  --acq-primary-light: #e8f0fa;
  --acq-secondary: #1a1a2e;
  --acq-dark: #0f0f1a;
  --acq-light: #ffffff;
  --acq-gray: #f5f5f7;
  --acq-border: #e0e0e0;
  --acq-text: #333333;
  --acq-text-light: #666666;
  --acq-success: #4caf50;
  --acq-error: #f44336;
  --acq-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --acq-radius: 12px;
  --acq-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   THEME ISOLATION (prevents theme CSS bleed)
   ============================================ */
.acq-form-wrapper,
.acq-form-wrapper * {
  box-sizing: border-box;
}

.acq-form-wrapper {
  color: var(--acq-text);
  line-height: 1.5;
}

.acq-form-wrapper input,
.acq-form-wrapper textarea,
.acq-form-wrapper button,
.acq-form-wrapper select {
  font: inherit;
}

.acq-form-wrapper .acq-input,
.acq-form-wrapper .acq-textarea,
.acq-form-wrapper .acq-floating-input,
.acq-form-wrapper .acq-floating-textarea,
.acq-form-wrapper .acq-otp-digit,
.acq-form-wrapper .acq-btn,
.acq-form-wrapper .acq-trigger-btn {
  font-family: inherit;
  letter-spacing: normal;
  line-height: 1.4;
  max-width: 100%;
  text-transform: none;
}

.acq-form-wrapper .acq-btn,
.acq-form-wrapper .acq-trigger-btn {
  box-shadow: none;
}

/* ============================================
   FORM WRAPPER
   ============================================ */
.acq-form-wrapper {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, sans-serif;
  background: linear-gradient(135deg,
      var(--acq-secondary) 0%,
      var(--acq-dark) 100%);
  min-height: 600px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acq-form-container {
  background: var(--acq-light);
  border-radius: var(--acq-radius);
  box-shadow: var(--acq-shadow);
  max-width: 700px;
  width: 100%;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.acq-progress-container {
  margin-bottom: 40px;
}

.acq-progress-bar {
  height: 6px;
  background: var(--acq-gray);
  border-radius: 3px;
  overflow: hidden;
}

.acq-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #05509f 0%, #3a7bc8 100%);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.acq-step-indicator {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: var(--acq-text-light);
  font-weight: 500;
}

/* ============================================
   FORM STEPS
   ============================================ */
.acq-step {
  display: none;
  animation: acqFadeIn 0.4s ease;
}

.acq-step.active {
  display: block;
}

.acq-step.slide-left {
  animation: acqSlideLeft 0.4s ease;
}

.acq-step.slide-right {
  animation: acqSlideRight 0.4s ease;
}

@keyframes acqFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes acqSlideLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes acqSlideRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   STEP TITLES
   ============================================ */
.acq-step-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--acq-text);
  margin: 0 0 10px 0;
  text-align: center;
  line-height: 1.3;
}

.acq-step-subtitle {
  font-size: 14px;
  color: var(--acq-text-light);
  text-align: center;
  margin: 0 0 30px 0;
}

/* ============================================
   CARD OPTIONS (Service Type)
   ============================================ */
.acq-card-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.acq-card-option {
  cursor: pointer;
}

.acq-card-option input {
  display: none;
}

.acq-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 15px;
  background: var(--acq-gray);
  border: 2px solid transparent;
  border-radius: var(--acq-radius);
  transition: var(--acq-transition);
  min-height: 100px;
}

.acq-card:hover {
  background: var(--acq-primary-light);
  border-color: #05509f;
  transform: translateY(-3px);
}

.acq-card-option input:checked+.acq-card {
  background: var(--acq-primary-light);
  border-color: #05509f;
  box-shadow: 0 0 0 3px rgba(5, 80, 159, 0.2);
}

.acq-card-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.acq-card-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--acq-text);
  text-align: center;
}

/* ============================================
   RADIO OPTIONS (Single Choice)
   ============================================ */
.acq-radio-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.acq-radio-option {
  cursor: pointer;
}

.acq-radio-option input {
  display: none;
}

.acq-radio-label {
  display: block;
  padding: 16px 20px;
  background: var(--acq-gray);
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--acq-text);
  text-align: center;
  transition: var(--acq-transition);
}

.acq-radio-label:hover {
  background: var(--acq-primary-light);
  border-color: #05509f;
}

.acq-radio-option input:checked+.acq-radio-label {
  background: var(--acq-primary-light);
  border-color: #05509f;
  color: #043d7a;
  box-shadow: 0 0 0 3px rgba(5, 80, 159, 0.2);
}

/* ============================================
   YES/NO OPTIONS
   ============================================ */
.acq-yesno-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.acq-yesno-option {
  cursor: pointer;
  flex: 1;
  max-width: 200px;
}

.acq-yesno-option input {
  display: none;
}

.acq-yesno-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 40px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  transition: var(--acq-transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.acq-yesno-btn.yes {
  background: linear-gradient(135deg, #e8f0fa 0%, #c8ddf5 100%);
  border: 2px solid transparent;
  color: #05509f;
}

.acq-yesno-btn.no {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border: 2px solid transparent;
  color: #c62828;
}

.acq-yesno-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.acq-yesno-option input:checked+.acq-yesno-btn.yes {
  background: #05509f;
  color: white;
  box-shadow: 0 8px 25px rgba(5, 80, 159, 0.4);
}

.acq-yesno-option input:checked+.acq-yesno-btn.no {
  background: #ef5350;
  color: white;
  box-shadow: 0 8px 25px rgba(244, 67, 54, 0.4);
}

/* ============================================
   CHECKBOX OPTIONS (Multiple Choice)
   ============================================ */
.acq-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.acq-checkbox-option {
  cursor: pointer;
}

.acq-checkbox-option input {
  display: none;
}

.acq-checkbox-label {
  display: block;
  padding: 14px 16px;
  background: var(--acq-gray);
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--acq-text);
  text-align: center;
  transition: var(--acq-transition);
}

.acq-checkbox-label:hover {
  background: var(--acq-primary-light);
  border-color: #05509f;
}

.acq-checkbox-option input:checked+.acq-checkbox-label {
  background: #05509f;
  border-color: #05509f;
  color: white;
}

/* ============================================
   TEXT INPUTS
   ============================================ */
.acq-input {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  border: 2px solid var(--acq-border);
  border-radius: 10px;
  background: var(--acq-light);
  color: var(--acq-text);
  transition: var(--acq-transition);
  box-sizing: border-box;
  margin-top: 30px;
}

.acq-input:focus {
  outline: none;
  border-color: #05509f;
  box-shadow: 0 0 0 3px rgba(5, 80, 159, 0.2);
}

.acq-input::placeholder {
  color: #999;
}

.acq-input-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--acq-text);
  margin-bottom: 8px;
  margin-top: 20px;
}

/* ============================================
   TEXTAREA
   ============================================ */
.acq-textarea {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  border: 2px solid var(--acq-border);
  border-radius: 10px;
  background: var(--acq-light);
  color: var(--acq-text);
  transition: var(--acq-transition);
  box-sizing: border-box;
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  margin-top: 30px;
}

.acq-textarea:focus {
  outline: none;
  border-color: #05509f;
  box-shadow: 0 0 0 3px rgba(5, 80, 159, 0.2);
}

/* ============================================
   DATE PICKER
   ============================================ */
.acq-date-picker {
  margin-top: 20px;
  animation: acqFadeIn 0.3s ease;
}

.acq-date-picker .acq-input {
  margin-top: 8px;
}

/* ============================================
   NAVIGATION BUTTONS
   ============================================ */
.acq-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--acq-border);
  gap: 15px;
}

.acq-btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--acq-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.acq-btn-icon {
  font-size: 18px;
}

/* ============================================
   PREVIOUS BUTTON - GRAY STYLE
   ============================================ */
.acq-btn-prev {
  background: #05509f !important;
  color: #ffffff !important;
  border: 2px solid #e0e0e0 !important;
}

.acq-btn-prev:hover {
  background: #043d7a !important;
  background: linear-gradient(135deg, #043d7a 0%, #032d5a 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 80, 159, 0.4);
}

/* Force show when JavaScript sets display */
.acq-btn-prev[style*="inline-block"],
.acq-btn-prev[style*="inline"],
.acq-btn-prev[style*="block"],
.acq-btn-prev[style*="flex"] {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ============================================
   NEXT BUTTON - PRIMARY BLUE
   ============================================ */
.acq-btn-next {
  background: #05509f !important;
  background: linear-gradient(135deg, #05509f 0%, #043d7a 100%) !important;
  color: #ffffff !important;
  border: none !important;
  margin-left: auto;
}

.acq-btn-next:hover {
  background: #043d7a !important;
  background: linear-gradient(135deg, #043d7a 0%, #032d5a 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 80, 159, 0.4);
}

/* ============================================
   SUBMIT BUTTON - PRIMARY BLUE
   ============================================ */
.acq-btn-submit {
  background: #05509f !important;
  background: linear-gradient(135deg, #05509f 0%, #043d7a 100%) !important;
  color: #ffffff !important;
  border: none !important;
  margin-left: auto;
  padding: 18px 40px;
  font-size: 18px;
}

.acq-btn-submit:hover {
  background: #043d7a !important;
  background: linear-gradient(135deg, #043d7a 0%, #032d5a 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 80, 159, 0.4);
}

.acq-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.acq-success-message {
  text-align: center;
  padding: 40px 20px;
  animation: acqFadeIn 0.5s ease;
}

.acq-success-icon {
  width: 80px;
  height: 80px;
  background: #05509f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  margin: 0 auto 20px;
  animation: acqBounce 0.6s ease;
}

@keyframes acqBounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.acq-success-message h2 {
  font-size: 28px;
  color: var(--acq-text);
  margin: 0 0 15px;
}

.acq-success-message p {
  font-size: 16px;
  color: var(--acq-text-light);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.acq-loading {
  text-align: center;
  padding: 60px 20px;
}

.acq-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--acq-gray);
  border-top-color: #05509f;
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: acqSpin 0.8s linear infinite;
}

@keyframes acqSpin {
  to {
    transform: rotate(360deg);
  }
}

.acq-loading p {
  font-size: 16px;
  color: var(--acq-text-light);
  margin: 0;
}

/* ============================================
   VALIDATION STYLES
   ============================================ */
.acq-error-message {
  background: #ffebee;
  border: 1px solid #ffcdd2;
  color: #c62828;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 15px;
  text-align: center;
  animation: acqShake 0.5s ease;
}

@keyframes acqShake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-10px);
  }

  75% {
    transform: translateX(10px);
  }
}

.acq-input.error,
.acq-textarea.error {
  border-color: #f44336;
  animation: acqShake 0.5s ease;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .acq-form-wrapper {
    padding: 20px 15px;
    min-height: auto;
  }

  .acq-form-container {
    padding: 30px 20px;
  }

  .acq-step-title {
    font-size: 20px;
  }

  .acq-card-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .acq-card {
    padding: 20px 10px;
    min-height: 80px;
  }

  .acq-card-icon {
    font-size: 26px;
  }

  .acq-card-text {
    font-size: 12px;
  }

  .acq-radio-options {
    grid-template-columns: 1fr;
  }

  .acq-checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .acq-yesno-options {
    flex-direction: column;
  }

  .acq-yesno-option {
    max-width: none;
  }

  .acq-navigation {
    flex-direction: column-reverse;
    gap: 15px;
  }

  .acq-btn {
    width: 100%;
    justify-content: center;
  }

  .acq-btn-next,
  .acq-btn-submit {
    margin-left: 0;
  }

  .acq-btn-prev {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .acq-form-container {
    padding: 25px 15px;
    border-radius: 8px;
  }

  .acq-card-options {
    grid-template-columns: 1fr 1fr;
  }

  .acq-checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }

  .acq-input,
  .acq-textarea {
    padding: 14px 16px;
    font-size: 16px;
  }
}

/* ============================================
   POPUP MODAL & TRIGGER BUTTON
   ============================================ */

/* Trigger Button */
.acq-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: linear-gradient(135deg, #05509f 0%, #043d7a 100%);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(5, 80, 159, 0.35);
  letter-spacing: 0.3px;
}

.acq-trigger-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 80, 159, 0.45);
}

.acq-trigger-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(5, 80, 159, 0.35);
}

.acq-trigger-icon {
  font-size: 22px;
  line-height: 1;
}

/* Modal Overlay */
.acq-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 30px;
}

.acq-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.acq-modal-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  transform: scale(0.95) translateY(20px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

.acq-modal-overlay.active .acq-modal-container {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Close Button */
.acq-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 400;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  line-height: 1;
  padding: 0;
}

.acq-modal-close:hover {
  background: #e0e0e0;
  color: #333;
}

.acq-modal-close:focus {
  outline: none;
  box-shadow: 0 0 0 2px #05509f;
}

/* Contact Form Close Button Override */
.acq-contact-container .acq-modal-close {
  background: transparent;
  font-size: 28px;
  font-weight: 300;
  color: #999;
}

.acq-contact-container .acq-modal-close:hover {
  background: transparent;
  transform: rotate(90deg);
  color: #333;
}

/* Popup Mode Adjustments */
.acq-form-wrapper.acq-popup-mode {
  min-height: auto;
  padding: 0;
  background: transparent;
}

.acq-popup-mode .acq-form-container {
  position: relative;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  padding: 50px;
  padding-top: 60px;
}

/* Body scroll lock when modal is open */
body.acq-modal-open {
  overflow: hidden;
}

/* ============================================
   POPUP RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
  .acq-modal-overlay {
    padding: 20px;
  }

  .acq-modal-container {
    max-width: 95%;
  }

  .acq-popup-mode .acq-form-container {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .acq-trigger-btn {
    padding: 16px 28px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }

  .acq-modal-overlay {
    padding: 15px;
    align-items: flex-start;
    padding-top: 30px;
    overflow-y: auto;
  }

  .acq-popup-mode .acq-form-container {
    padding: 30px 25px;
    border-radius: 12px;
  }

  .acq-modal-close {
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .acq-trigger-btn {
    padding: 14px 24px;
    font-size: 15px;
    gap: 10px;
  }

  .acq-trigger-icon {
    font-size: 20px;
  }

  .acq-popup-mode .acq-form-container {
    padding: 25px 20px;
  }
}

/* ============================================
   FORM SELECTOR POPUP
   ============================================ */

/* Selector Container */
.acq-selector-container {
  max-width: 600px;
}

/* Selector View */
.acq-selector-view {
  animation: acqFadeIn 0.3s ease;
}

/* Form Choices Grid */
.acq-form-choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* Form Choice Card */
.acq-form-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 40px 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e9ecef;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.acq-form-choice::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #05509F !important;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.acq-form-choice:hover {
  border-color: #05509F !important;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.acq-form-choice:hover::before {
  transform: scaleX(1);
  background: #05509F !important;

}

.acq-choice-icon {
  display: none;
}

.acq-choice-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--acq-text);
  text-align: center;
}

.acq-choice-arrow {
  display: none;
}

/* Back to Selector Button */
.acq-back-to-selector {
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 20px;
  background: #f5f5f7;
  color: red;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--acq-transition);
  z-index: 10;
}

.acq-back-to-selector:hover {
  background: #05509f;
  color: white;
}

/* Form View Animations */
.acq-form-view {
  animation: acqSlideLeft 0.4s ease;
}

.acq-form-view .acq-progress-container {
  margin-top: 20px;
}

/* Responsive Selector */
@media (max-width: 600px) {
  .acq-form-choices {
    gap: 15px;
  }

  .acq-form-choice {
    padding: 30px 20px;
    min-height: 100px;
  }
}

/* ============================================
   EMAIL OTP VERIFICATION
   ============================================ */

.acq-email-otp-wrapper {
  position: relative;
}

.acq-email-input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.acq-email-input-row .acq-input {
  flex: 1;
}

.acq-send-otp-btn {
  padding: 12px 20px;
  background: #05509f;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 14px;
}

.acq-send-otp-btn:hover {
  background: #043d7a;
  transform: translateY(-1px);
}

.acq-send-otp-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.acq-send-otp-btn.sending {
  pointer-events: none;
}

/* OTP Input Container */
.acq-otp-container {
  display: none;
  animation: acqFadeIn 0.3s ease;
}

.acq-otp-container.active {
  display: block;
}

.acq-otp-message {
  background: #e8f0fa;
  color: #05509f;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.acq-otp-message.error {
  background: #ffebee;
  color: #c62828;
}

.acq-otp-label {
  font-size: 14px;
  color: var(--acq-text-light);
  margin-bottom: 10px;
  display: block;
}

.acq-otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.acq-otp-digit {
  width: 50px;
  height: 60px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  border: 2px solid var(--acq-border);
  border-radius: 10px;
  background: var(--acq-gray);
  transition: all 0.2s ease;
}

.acq-otp-digit:focus {
  border-color: #05509f;
  background: white;
  outline: none;
  box-shadow: 0 0 0 3px rgba(5, 80, 159, 0.2);
}

.acq-otp-digit.filled {
  border-color: #05509f;
  background: white;
}

.acq-otp-digit.error {
  border-color: #f44336;
  background: #fff5f5;
}

.acq-otp-digit.success {
  border-color: #4caf50;
  background: #f5fff5;
}

/* Verify Button */
.acq-verify-otp-btn {
  width: 100%;
  padding: 14px;
  background: #05509f;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.acq-verify-otp-btn:hover {
  background: #043d7a;
}

.acq-verify-otp-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Resend Link */
.acq-otp-resend {
  text-align: center;
  font-size: 14px;
  color: var(--acq-text-light);
}

.acq-otp-resend a {
  color: #05509f;
  text-decoration: none;
  cursor: pointer;
}

.acq-otp-resend a:hover {
  text-decoration: underline;
}

/* Verified Badge */
.acq-email-verified {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #e8f0fa;
  border: 2px solid #05509f;
  border-radius: 8px;
  color: #05509f;
  font-weight: 500;
}

.acq-email-verified-icon {
  font-size: 20px;
}

.acq-otp-countdown {
  color: var(--acq-text-light);
  font-size: 13px;
}

/* Responsive OTP */
@media (max-width: 480px) {
  .acq-email-input-row {
    flex-direction: column;
  }

  .acq-send-otp-btn {
    width: 100%;
  }

  .acq-otp-digit {
    width: 40px;
    height: 50px;
    font-size: 20px;
  }
}

/* OTP Required Highlight */
.acq-otp-required {
  animation: acqShake 0.5s ease;
  border: 2px solid #f44336 !important;
  border-radius: 12px;
  padding: 15px;
  background: #fff5f5;
}

.acq-otp-required .acq-send-otp-btn {
  animation: acqPulse 1s ease infinite;
}

@keyframes acqPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.acq-input-error {
  border-color: #f44336 !important;
  animation: acqShake 0.5s ease;
}

/* ============================================
   INLINE SELECTOR MODE
   ============================================ */

.acq-inline-selector {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, sans-serif;
}

.acq-inline-selector .acq-form-wrapper.acq-inline-mode {
  background: transparent;
  min-height: auto;
  padding: 0;
}

.acq-inline-selector .acq-form-container {
  background: var(--acq-light);
  border-radius: var(--acq-radius);
  box-shadow: var(--acq-shadow);
  max-width: 700px;
  width: 100%;
  padding: 40px;
  position: relative;
  margin: 0 auto;
}

.acq-inline-back {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  background: #f5f5f7;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--acq-transition);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.acq-inline-back:hover {
  background: #05509f;
  color: white;
}

.acq-inline-selector .acq-selector-view,
.acq-inline-selector .acq-form-view {
  animation: acqFadeIn 0.4s ease;
}

.acq-inline-selector .acq-form-choices {
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .acq-inline-selector .acq-form-container {
    padding: 25px 20px;
  }

  .acq-inline-back {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* ============================================
   CONTACT FORM STYLES (Single Page)
   ============================================ */

/* Contact Form Wrapper - Remove dark background */
.acq-contact-form-wrapper {
  background: none;
  min-height: auto;
  padding: 0;
}

.acq-contact-container {
  max-width: 800px;
  background: transparent;
  box-shadow: none;
  padding: 20px 0;
}

/* Contact Form Fields Container */
.acq-contact-fields {
  margin-top: 20px;
}

/* Contact Form Rows */
.acq-contact-row {
  margin-bottom: 20px;
}

.acq-contact-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.acq-contact-field-full {
  grid-column: 1 / -1;
}

/* ============================================
   FLOATING LABELS (Cut Line Style)
   ============================================ */
.acq-floating-field {
  position: relative;
  margin-bottom: 25px;
  /* Increase margin for label space */
}

.acq-floating-input,
.acq-floating-textarea {
  width: 100%;
  padding: 16px 15px;
  height: 56px;
  font-size: 16px;
  border: 1px solid var(--acq-border);
  border-radius: 8px;
  background: transparent;
  /* Transparent to show page bg */
  color: var(--acq-text);
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.acq-floating-textarea {
  height: 150px;
  resize: vertical;
}

.acq-floating-input:focus,
.acq-floating-textarea:focus {
  outline: none;
  border-color: #05509f !important;
  border-width: 2px !important;
  padding: 15px 14px;
  /* Adjust for 2px border */
}

.acq-floating-label {
  position: absolute;
  left: 14px;
  top: 16px;
  padding: 0 4px;
  /* Space for the "cut" */
  font-size: 16px;
  color: #6c757d;
  pointer-events: none;
  transition: all 0.2s ease;
  background-color: transparent;
  z-index: 10;
}

/* Float label when focused or has value (placeholder mismatch) */
.acq-floating-input:focus~.acq-floating-label,
.acq-floating-input:not(:placeholder-shown)~.acq-floating-label,
.acq-floating-textarea:focus~.acq-floating-label,
.acq-floating-textarea:not(:placeholder-shown)~.acq-floating-label {
  top: -10px;
  /* Moves label up to cut the border */
  left: 14px;
  font-size: 13px;
  color: #05509f;
  background-color: #ffffff;
  /* Use page background color here to "cut" the line */
  font-weight: 500;
}

/* Error state for floating inputs */
.acq-floating-input.error,
.acq-floating-textarea.error {
  border-color: var(--acq-error);
}

.acq-floating-input.error~.acq-floating-label,
.acq-floating-textarea.error~.acq-floating-label {
  color: var(--acq-error);
}

/* Required asterisk */
.acq-required {
  color: var(--acq-error);
  margin-left: 2px;
}

/* Contact Form Submit Area */
.acq-contact-submit {
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  /* Center align */
  border: none;
}

.acq-contact-submit-btn {
  width: auto;
  min-width: 200px;
  margin: 0 !important;
  /* Override global margin-left: auto */
  padding: 16px 40px !important;
  font-size: 16px !important;
  border-radius: 50px;
  /* Pillow shape */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Popup specific overrides to keep card look */
.acq-popup-mode .acq-contact-form-wrapper {
  padding: 40px 20px;
}

.acq-popup-mode .acq-contact-container {
  background: var(--acq-light);
  box-shadow: var(--acq-shadow);
  padding: 40px;
  border-radius: var(--acq-radius);
}

/* Responsive */
@media (max-width: 768px) {
  .acq-contact-row-2 {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .acq-contact-submit-btn {
    width: 100%;
  }
}

/* ============================================
   FILE INPUT
   ============================================ */
.acq-file-input {
  padding: 12px;
  background: #f8f9fa;
  border: 2px dashed #e0e0e0;
  cursor: pointer;
}

.acq-file-input:hover {
  background: #e8f0fa;
  border-color: #05509f;
}

.acq-file-help {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
  margin-bottom: 0;
}
