/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', 'Poppins', 'Inter', sans-serif;
  background-color: #ffffff;
  color: #000000;
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Page Container */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Header / Logo */
.header {
  text-align: center;
  padding: 20px 0 10px;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo-text {
  font-family: 'Roboto', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: #000000;
  line-height: 1;
  letter-spacing: -1px;
}

.logo-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ff6b00;
  margin-top: 2px;
}

/* Hero Text */
.hero-text {
  text-align: center;
  padding: 10px 20px 0;
}

h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  line-height: 41.6px;
  letter-spacing: normal;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 26px;
  letter-spacing: normal;
  margin: 0;
  padding: 0;
}

/* Form Card */
.form-card {
  width: 550px;
  max-width: 550px;
  margin: 20px auto 50px;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 33px 4px;
  border-radius: 0px;
  position: relative;
  padding-bottom: 50px; /* Space for fixed nav footer */
  overflow: hidden;
}

/* Progress Bar */
.progress-bar-container {
  display: none;
}

.progress-bar-fill {
  height: 100%;
  width: 10%;
  background-color: #84ADFF;
  border-radius: 0;
  transition: width 0.3s ease;
}

/* Form Steps */
.form-step {
  display: none;
  padding: 30px 20px;
  min-height: 180px;
}

.form-step.active {
  display: block;
}

/* Field Label */
.field-label {
  font-family: 'Roboto', sans-serif;
  font-size: 16.1px;
  font-weight: 400;
  color: #000000;
  margin: 0 0 8px;
  padding: 0;
}

.required {
  color: #e53e3e;
}

/* Radio Buttons */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  margin: 0 0 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: background-color 0.2s;
}

.radio-option:hover {
  background-color: transparent;
}

.radio-option input[type="radio"] {
  width: 15px;
  height: 15px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  accent-color: auto;
  flex-shrink: 0;
}

.radio-label {
  font-family: 'Roboto', sans-serif;
  font-size: 16.1px;
  font-weight: 400;
  color: #000000;
  margin-left: 10px;
  cursor: pointer;
}

/* Text Inputs */
.field-wrapper {
  margin: 0 0 16px;
}

.form-input {
  width: 100%;
  border: 1px solid rgb(169, 179, 198);
  border-radius: 5px;
  padding: 9px 18px;
  font-family: 'Roboto', 'Inter', sans-serif;
  font-size: 16.1px;
  font-weight: 400;
  color: #000000;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.2s;
}

.form-input::placeholder {
  color: rgb(96, 113, 121);
}

.form-input:focus {
  border-color: #188bf6;
}

/* Select / Dropdown */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
  cursor: pointer;
}

/* International Phone Input Override */
.iti {
  width: 100%;
}

.iti .iti__selected-country-primary {
  padding: 0 6px 0 12px;
}

/* Navigation Footer */
.form-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  background-color: transparent;
  border-top: none;
}

.btn-back {
  background: none;
  border: none;
  color: #666666;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  padding: 8px 12px;
  display: none;
}

.btn-back:hover {
  color: #333333;
}

.btn-back.visible {
  display: block;
}

.btn-continue {
  background-color: rgba(0, 0, 0, 0.1);
  color: #ffffff;
  border: none;
  border-radius: 0px;
  padding: 17px 24px;
  font-family: 'Roboto', sans-serif;
  font-size: 16.1px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 50px;
  transition: background-color 0.2s;
  margin-left: auto;
}

.btn-continue:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.btn-text {
  display: block;
}

.btn-arrow {
  display: block;
  font-size: 16px;
}

/* Disclaimer / Legal Text */
.disclaimer {
  margin-top: 20px;
}

.disclaimer p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 21px;
  margin: 0 0 10px;
}

.disclaimer a {
  color: #188bf6;
  text-decoration: underline;
}

.disclaimer a:hover {
  color: #0d6efd;
}

.consent-note {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 21px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.badge-bbb {
  width: 196px;
  height: 100px;
  object-fit: contain;
}

.badge-ssl {
  width: 200px;
  height: 100px;
  object-fit: contain;
}

/* Footer */
.footer {
  text-align: center;
  padding: 10px 30px 40px;
}

.footer p {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  line-height: 15.6px;
  margin: 0 0 15px;
}

.copyright {
  margin-bottom: 15px;
}

.company-desc {
  margin-bottom: 15px;
}

.facebook-disclaimer {
  margin-bottom: 0;
}

/* Thank You */
.thankyou-content {
  text-align: center;
  padding: 40px 20px;
}

.thankyou-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.thankyou-content p {
  font-size: 16px;
  color: #333333;
}

/* Error Messages */
.error-message {
  color: #e53e3e;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
  display: none;
}

.error-message.visible {
  display: block;
}

/* Address Field Labels */
.address-label {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

/* Address Two-Column Row */
.address-row {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}

.address-row .field-wrapper {
  flex: 1;
}

/* Search Address Field */
.search-field-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.search-field-wrapper .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(96, 113, 121);
  font-size: 16px;
  pointer-events: none;
}

.search-field-wrapper .form-input {
  padding-left: 40px;
}

/* Responsive */
@media (max-width: 600px) {
  .form-card {
    width: calc(100% - 30px);
    max-width: 100%;
    margin: 20px 15px 40px;
  }

  h1 {
    font-size: 25px;
    line-height: 32px;
  }

  h2 {
    font-size: 16px;
    line-height: 22px;
  }

  .hero-text {
    padding: 10px 15px 0;
  }

  .form-step {
    padding: 25px 10px;
  }

  .form-nav {
    padding: 0 10px;
  }

  .trust-badges {
    flex-direction: column;
    gap: 15px;
  }

  .badge-bbb,
  .badge-ssl {
    width: 150px;
    height: auto;
  }

  .footer {
    padding: 10px 20px 30px;
  }

  .logo-img {
    width: 300px;
  }
}
