/* Inline Form Section Styles */
.form-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.inline-form-inner {
  width: 100%;
  max-width: 1660px;
  background-color: #CAE37A;
  border-radius: 30px;
  padding: 80px 150px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  gap: 50px;
}

.inline-form-content {
  flex: 1;
}

.inline-form-title {
  font-family: 'Onest', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  color: #000;
  margin: 0 0 10px 0;
}

.inline-form-subtitle {
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: #000;
  margin: 0;
}

.inline-form-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #fff;
  border-radius: 90px;
  padding: 2px 2px 2px 40px;
  height: 67px;
  width: 391px;
  box-sizing: border-box;
  justify-content: space-between;
}

.inline-input-phone {
  border: none;
  background: transparent;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #000;
  outline: none;
  width: 160px;
}

.inline-input-phone::placeholder {
  color: #D2D2D2;
}

.inline-form-submit {
  background-color: #151313;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  border: none;
  border-radius: 100px;
  padding: 0 40px;
  height: 63px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.inline-form-submit:hover {
  background-color: #333;
}

/* Success State */
.inline-form-success {
  justify-content: flex-start;
}

@media (max-width: 1024px) {
  .inline-form-inner {
    flex-direction: column;
    padding: 40px;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  
  .inline-form-title {
    font-size: 26px;
    line-height: 30px;
  }
  
  .inline-form-subtitle {
    font-size: 16px;
  }
  
  .inline-form-row {
    width: 100%;
    max-width: 355px;
    padding: 2px 2px 2px 20px;
  }
  
  .inline-input-phone {
    width: 140px;
  }
  
  .inline-form-submit {
    padding: 0 30px;
  }
}
