/* Import existing signup.css styles */

/* =========================
   Global font for React app
   ========================= */
#tl-react-signup-form,
#tl-react-signup-form * {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji",
               "Segoe UI Symbol", sans-serif !important;
}

/* Additional React-specific styles */
.tl-signup-form-container {
  font-family: inherit !important;
}

/* Step-specific styles */
.tl-step {
  display: none;
}

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

/* Form field styles */
.property-form .row-form {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.property-form .col-4 {
  flex: 1;
}

.property-form .col-6 {
  flex: 1;
}

.property-form .col-12 {
  width: 100%;
}

.property-input:focus {
  border-color: #51a3a3;
  box-shadow: 0 0 0 2px rgba(81, 163, 163, 0.2);
}

/* Timer styles */

.timer-box, .timer-box2 {
  display: none !important; /* Temporarily hide the timer boxes */
}

.timer-box, .timer-box2 {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 8px 12px;
  margin: 10px 0;
  font-size: 14px;
  color: #495057;
  display: flex;
  align-items: center;
  gap: 8px;
}

.timer-box2 {
  position: absolute;
  top: 60px;
  right: 40px;
  font-size: 12px;
}

/* Add-on styles */
.addon-services-box {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  background: #fff;
  transition: all 0.3s ease;
}

.addon-services-box:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.addon-services-box.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.addon-services-box h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.addon-services-box p {
  margin: 0 0 15px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.btn-addorder {
  display: inline-block;
  padding: 8px 16px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  color: #495057;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-addorder:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

.btn-addorder.active {
  background: #28a745;
  border-color: #28a745;
  color: #fff;
}

/* Summary styles */
.service-summary {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

.service-summary h2 {
  margin: 0 0 15px 0;
  font-size: 20px;
  color: #333;
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #dee2e6;
}

.summary-item:last-child {
  border-bottom: none;
}

.item-name {
  font-size: 14px;
  color: #495057;
}

.item-price {
  font-weight: 600;
  color: #333;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  margin: 5px 0;
  border-top: 1px solid #dee2e6;
  font-weight: 600;
}

.total-label {
  font-size: 16px;
  color: #333;
}

.total-value {
  font-size: 16px;
  color: #333;
}

/* Promise text */
.promise-text {
  background: #e7f3ff;
  border: 1px solid #b3d9ff;
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

.promise-text p {
  margin-bottom: 0;
}

.promise-text p:last-child {
  margin-bottom: 0;
}

/* Navigation buttons */
.tl-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.tl-navigation.single-button {
  justify-content: flex-end;
}

.action-button {
  font-weight: 400;
  border: 0 none;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px 15px;
  margin-top: 10px;
  font-size: 16px;
  max-width: 200px;
  width: 100%;
  transition: all 0.2s ease;
  /* keep label perfectly centered in all states */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative; /* anchor pseudo elements */   
}

#nextBtn {
  background-color: rgba(246, 174, 45, 1);
  border-color: rgba(246, 174, 45, 1);
  color: #000;
}

#nextBtn:hover {
  background: #e0a800;
  transform: translateY(-1px);
}

#prevBtn {
  background: #ffffff;
}

#prevBtn > svg {
  position: relative;
  top: 4px;
}
#prevBtn > span {
  color: #6c757d;
}

/* Responsive design */
@media (max-width: 768px) {
  /*
  .property-form {
    max-width: 100%;
    margin: auto;
    max-height: 350px;
    overflow-y: auto;
  }

  .property-form .row-form {
    flex-direction: column;
    gap: 10px;
  }

  .property-form .col-4,
  .property-form .col-6 {
    width: 100%;
  }
  */

  #address-fields .row-form:last-child input,
  #address-fields .row-form:last-child select {
    margin-bottom: 0 !important;
  }

  .timer-box2 {
    position: static;
    margin: 10px 0;
  }

  .tl-navigation {
    flex-direction: column-reverse;
  }

  .prevBtn,
  .next.action-button,
  #nextBtn {
    width: 100%;
    justify-content: center;
  }

  .action-button {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .tl-modal-content h2.fs-title {
    font-size: 16px !important;
    line-height: 23px !important;
  }
  .property-form .row-form {
    gap: 5px !important;
    margin-bottom: 0 !important;
  }
  .total-label, .total-value, .item-price {
    font-size: 14px !important;
  }
  .service-summary {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .service-summary h3 {
    display: none !important;
  }
  .summary-total {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* Additional styles to ensure compatibility */
.tl-react-signup-form {
  font-family: inherit !important; /* remove custom font, use system */
}

/* Ensure modals appear above WordPress elements */
.tl-modal {
  z-index: 999999 !important;
}

/* Progress bar styles - keeping only what's used */
.msform {
  position: relative;
  margin-bottom: 35px;
}

.msform input,
.msform textarea,
.msform select {
  padding: 8px 15px;
  border-radius: 10px;
  margin-bottom: 12px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #111;
  color: #111;
  font-size: 16px;
  box-shadow: 0 2px 6px rgb(0 0 0 / .1);
}

.progressbar {
  margin-bottom: 10px;
  overflow: hidden;
  counter-reset: step;
  text-align: center;
  padding-left: 0;
}

.progressbar li {
  list-style-type: none;
  color: #111;
  width: 20%;
  float: left;
  position: relative;
  font-size: 14px;
}

.progressbar li:before {
  content: '';
  counter-increment: step;
  width: 17px;
  height: 17px;
  display: block;
  line-height: 20px;
  font-size: 10px;
  color: #333;
  background: white;
  border-radius: 30px;
  margin: 0 auto 5px auto;
  border: 1px solid #333;
  z-index: 9999999 !important;
  position: relative;
}

.progressbar li:after {
  content: '';
  width: 100%;
  height: 5px;
  background: #BEBEBE;
  position: absolute;
  left: -50%;
  top: 7px;
}

.progressbar li:first-child:after {
  content: none;
}

.progressbar li.active:before,
.progressbar li.active:after {
  background: #02033C;
  color: white;
}

/* Form styles - keeping only what's needed */

#singup-new-user-fields fieldset {
  border: 0 !important;
}

.pac-container {
  z-index: 9999999 !important;
}
.property-input {
  line-height: normal !important;
}

/* Cross-browser placeholder styling */
.property-input::placeholder,
.property-input::-webkit-input-placeholder,
.property-input::-moz-placeholder,
.property-input:-ms-input-placeholder,
.property-input:-moz-placeholder {
  color: #374151 !important;
  opacity: 1 !important;
}

.action-button:hover {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #F6AE2D;
}

/* Essential utility classes */
.waiting_sign {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.date_picker_wrapper {
  max-width: 310px;
  margin: 0 auto !important;
}

input.service_date {
  display: none !important;
}

#phone_error {
  color: red;
  font-size: 12px;
  margin-top: -18px !important;
}

.icon {
  margin-right: 1px;
  font-size: 12px;
  vertical-align: middle;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .tl-stripe-badge {
    margin: -10px auto -11px !important;
  }

  .Text--terms {
    font-size: 12px !important;
    margin-top: -3px !important;
  }

  .p-GridCell {
    margin-bottom: 7px !important;
  }
}

/* Deal box */
.deal-box{
  background: #F2F2F2;
  padding: 15px 30px;
  max-width: 415px;
  margin: auto;
  border-radius: 6px;
  margin-bottom: 20px;
}
.deal-box .best-deal{
  background: #fff;
  padding: 4px 8px 7px 8px;
  border-radius: 4px;
  font-size: 13px;
  color: #111;
  font-weight: 400;
}
.deal-box > p{
  margin-top: 0px;
  line-height: 18px;
  text-align: left !important;
  margin-bottom: 20px;
}
.deal-box h3{
  font-size: 18px;
  margin-top: 15px;
  font-weight: bold;
  margin-bottom: 0px;
}
.deal-box h4{
  color: #111;
  margin-bottom: 5px;
  margin-top: 0;
  font-size: 30px;
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: bold;
}
.deal-box h4 span{
  color: #555;
  font-size: 14px;
  padding-left: 0;
  line-height: 16px;
}
/* Fine-tuned spacing */
.deal-box h4 .currency { margin-right: 2px; }        /* $ → price */
.deal-box h4 .first_step_price { margin-right: 3px; }/* price → “per visit” */

.deal-box h4 span.currency,
.deal-box h4 span.first_step_price {
  font-size: 35px;
  line-height: 1;                     /* prevents tall digits from dragging alignment */
  font-variant-numeric: tabular-nums; /* optional polish: steadier numerals */
  font-feature-settings: "tnum" 1;    /* fallback for browsers that support feature settings */
}

.deal-box ul{
  margin-top: 5px;
  list-style-type:disc;
  padding-left: 20px;
  padding-bottom: 0;
}
.deal-box ul li{
  margin-bottom:0px;
  color: #555;
  font-size: 14px;
}

.per-visit {
  position: static;     /* let flex handle positioning */
  top: auto;            /* remove offsets */
  left: auto; 
  font-style: normal;
  margin-left: 0;     /* small breathing room next to price */
  line-height: 1.05;    /* tighter two-line stack for "per<br/>visit" */
  align-self: center;   /* stays centered even if row height changes */
}

/**
Boxes
 */

.tl-lawn-box {
  width: 30%;
  text-align: center;
  padding: 25px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 6px 13px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 2px solid transparent;
}
.tl-lawn-box:hover, .tl-lawn-box:active, .tl-lawn-box:focus {
  border: 2px solid #0a4b78;
}

.tl-lawn-box img {
  max-width: 100%;
  height: auto;
}
.tl-lawn-box h3 {
  font-size: 24px;
  color: #111;
  font-weight: bold;
}
.tl-lawn-box p {
  color: #000;
  font-size: 16px;
}

.tl-lawn-box--button {
  margin: 0 auto;
  padding: 12px 20px;
  background: rgb(246, 174, 45);
  border: none;
  color: #000;
  font-weight: 600; /* align to brand weight */
  border-radius: 10px;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tl-lawn-box--button:hover, .tl-lawn-box--button:active {
  background: #d3a000;
}

.tl-lawn-options {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
  justify-content: center;
  margin:0;
}

/* MODAL */
.tl-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.tl-modal.show {
  opacity: 1;
  visibility: visible;
}

.tl-modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  width: 95%;
  max-width: 950px;
  position: relative;
  animation: fadeIn 0.4s ease;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  overflow: auto;
}

@media(max-width: 768px) {
  .tl-modal-content {
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 40px 30px 30px;
  }
}

.tl-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  z-index: 10;
}

@keyframes fadeIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Plan Buttons */
.tl-plan-buttons {
  display: flex;
  gap: 0px;
  margin: 10px 0 15px;
  justify-content: center;
}
.tl-plan-buttons-inner {
  background: rgba(239,239,239, 1);
  border: 2px solid rgba(220,220,220, 1);
  padding: 3px;
  border-radius: 10px;
}

.plan-btn {
  padding: 10px 20px;
  border: 1px solid rgba(239, 239, 239, 1);
  background: rgba(239, 239, 239, 1);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500; /* lighter brand weight */
  color: rgb(100, 100, 100);
  font-size: 15px;
}

.plan-btn:hover {
  background-color: #eee;
}

.plan-btn.selected {
  background-color: rgba(246, 174, 45, 1);
  border-color: rgba(246, 174, 45, 1);
  color: #3a3a3a;
  font-weight: 600;
}

/* Service Description */
.tl-service-title {
  font-size: 18px !important;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}

.tl-modal-content p {
  color: #555;
  font-size: 14px;
}

.tl-modal-content h2 {
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #111;
  margin: 12px 0;
  padding: 0;
  font-weight: 500;
  margin-bottom: 25px;
}

/* Primary CTAs: brand-consistent weight */
.tl-pay-btn {
  display: block;
  margin: 0 auto;
  padding: 12px 40px;
  background: rgba(246, 174, 45, 1);
  border: none;
  color: #000;
  font-weight: 600; /* was 500 */
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.tl-pay-btn:hover {
  background: #e0a800;
}

.tl-service-title {
  margin-top: 15px !important;
}
.tl-service-description, .tl-service-title {
  margin-bottom: 15px;
  padding-bottom: 0;
}

.tl-features-title {
  text-align:left;
}

@media only screen and (max-width:767px){
  .tl-modal-content p {
    padding-bottom: 5px !important;
  }
  .add-on-services{
    display: block;
  }
  .add-on-services:before{
    display: none;
  }
  .add-on-services .col-6{
    width: 100%;
  }

  #addon-options{margin-top:30px}
  .addon-services-box{ width:100% !important }
  .timer-box2{top: 32px !important;}
  .timer-box{top: 60px !important;}

  .tl-lawn-box {
    width: auto !important; /* avoid full-width stretch on mobile */
    margin-bottom: 20px;
  }
  .progressbar li{
    font-size: 12px !important;
    line-height: 16px !important;
  }
  .prevBtn{ text-align:center; }
}

.action-button {
  text-align: center;
}

/*** Mobile ****/
@media (min-width:768px) and (max-width:991px) {
  .addon-services-box{
    padding: 4px 13px;
  }

  #addon-options{margin-top:30px}

  .tl-lawn-box {
    width: 100% !important;
    border-right:0px !important;
    border-top: 2px solid rgba(81, 163, 163, 0.49);
  }
  .tl-lawn-box:first-child{ border-top:0px !important }
}

.summary-scroll-wrapper {
  max-height: none; /* default state */
  overflow-y: visible;
  transition: all 0.3s ease;
}

.summary-scroll-wrapper.scroll-enabled {
  max-height: 200px;  /* adjust as needed */
  overflow-y: auto;
  border: 1px solid #eee;
  padding-right: 5px;
  margin-bottom: 15px;
}

/* Optional: thin scrollbar */
.summary-scroll-wrapper.scroll-enabled::-webkit-scrollbar {
  width: 6px;
}
.summary-scroll-wrapper.scroll-enabled::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.dark-text-button {
  color: #000 !important; /* or use #0a2540 for dark navy */
}

.input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.input-group-prepend {
  background: #f4f7fa;
  border: 1px solid #000;
  border-right: none;
  padding: 1px 12px;
  border-radius: 10px 0 0 10px;
  font-size: 16px;
  color: #495057;
  display: flex;
  align-items: center;
  height: 39px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.input-group .form-control {
  border-radius: 0 10px 10px 0;
  border-left: none;
}

.signup_dd_fix{
  height: 39px !important;
  padding: 6px 10px;
  border: 1px solid #000;
  border-radius: 6px;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width=%2710%27 height=%277%27 viewBox=%270 0 10 7%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1l4 4 4-4%27 stroke=%27%23333%27 stroke-width=%271.5%27 fill=%27none%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 7px;
}

/* ===== Stripe trust badge ===== */

.tl-stripe-badge{
  max-width: 420px;
  margin: 0 auto 20px;
  text-align: center;
  font-family: inherit; /* use system */
}

.tl-stripe-badge .badge-main{
  width: 100%;
  height: auto;
}

.tl-stripe-badge .card-logos{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.tl-stripe-badge .card-logos img{
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(10%);
  transition: filter 0.3s;
}

.tl-stripe-badge .card-logos img:hover{
  filter: none;
}

#slot_msg {
  margin-top: 10px;
  font-size: 14px;
  color: #e60000
}

/* Express Checkout Styles */
.express-checkout-section {
  margin-bottom: 24px;
}

.express-checkout-divider {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.express-checkout-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e3e8ee;
}

.express-checkout-divider span {
  background: white;
  padding: 0 16px;
  font-size: 14px;
  color: #6b7280;
  position: relative;
  z-index: 1;
}

.express-checkout-container {
  margin-bottom: 20px;
}

.payment-divider {
  text-align: center;
  margin: 24px 0;
  position: relative;
}

.payment-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e3e8ee;
}

.payment-divider span {
  background: white;
  padding: 0 16px;
  font-size: 14px;
  color: #6b7280;
  position: relative;
  z-index: 1;
}

/* Payment Form Styles */
.payment-form {
  max-width: 500px;
  margin: 0 auto;
}

.payment-section {
  margin-bottom: 24px;
}

.card-container {
  margin-bottom: 16px;
}

.card-input {
  padding: 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: white;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card-input:focus-within {
  border-color: #51a3a3;
  box-shadow: 0 0 0 3px rgba(81, 163, 163, 0.1);
}

.payment-error {
  color: #dc2626;
  font-size: 14px;
  margin-top: 8px;
  padding: 8px 12px;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
}

/* Terms and Submit Section */
.terms-section {
  text-align: center;
  margin-top: 32px;
}

.terms-text {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.5;
}

.tl-pay-btn.reserve-btn {
  width: 100%;
  max-width: 300px;
}

.tl-pay-btn.reserve-btn:hover:not(:disabled) {
  background: #42a0a0;
  transform: translateY(-1px);
}

.tl-pay-btn.reserve-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

/* Security Note */
.security-note {
  text-align: center;
  margin-top: 24px;
}

.security-note p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Stripe Elements Customization */
.StripeElement {
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

/* Express Checkout Element Styling */
#express-checkout-element {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .payment-form {
    max-width: 100%;
    padding: 0 16px;
  }

  .express-checkout-divider span,
  .payment-divider span {
    font-size: 13px;
  }

  .tl-pay-btn.reserve-btn {
    padding: 14px 24px;
    font-size: 15px;
  }
  .msform input, .msform textarea, .msform select {
    padding: 8px 8px;
  }
}

/* Loading state for express checkout */
.express-checkout-container[data-loading="true"] {
  opacity: 0.6;
  pointer-events: none;
}

/* Hide express checkout section when not available */
.express-checkout-section[data-hidden="true"] {
  display: none;
}

/* Success Message Styles */
.reservation-success {
  text-align: center;
  max-width: 600px;
  margin: 40px auto;
  padding: 40px 20px;
}

.success-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.success-title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
  line-height: 1.2;
}

.success-logo {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.th-logo {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.success-content {
  max-width: 480px;
  margin: 0 auto;
}

.success-message {
  font-size: 18px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 24px;
  line-height: 1.5;
}

.success-details {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
}

.success-support {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 0;
  line-height: 1.6;
  font-weight: 500;
}

.success-logo img {
  max-width: 220px;
}

.success-logo {
  margin-bottom: 30px;
}

/* Responsive Design for Success Message */
@media (max-width: 768px) {
  .reservation-success {
    padding: 30px 16px;
    margin: 20px auto;
  }

  .success-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .success-message {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .success-details,
  .success-support {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .success-icon {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .success-title {
    font-size: 24px;
  }

  .success-message {
    font-size: 16px;
  }

  .success-details,
  .success-support {
    font-size: 14px;
  }
}

/* ===== Lawn size selector (radio-card) — FINAL ===== */

/* Nuke any default fieldset chrome just in case */
#tl-react-signup-form fieldset {
  border: 0 !important;
  padding: 0;
  margin: 0;
}

/* Grid container: fits inside your site’s 840px content width */
#tl-react-signup-form .tl-lawn-group {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  max-width: 840px;          /* ensures no overlap on desktop */
  margin: 0 auto 10px;       /* centered within page container */
  justify-items: center;     /* center fixed-width cards */
}

/* Fully hide the native radio UI to prevent the circle “blip” */
#tl-react-signup-form .tl-lawn-group input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  pointer-events: none !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Card: remove any border, fix width so 3 fit in 840px, lock height to kill CLS */
#tl-react-signup-form .tl-radio-card {
  display: block;
  background: #fff;
  border: 0;                               /* no thin border */
  border-radius: 16px;
  padding: 18px;
  cursor: pointer;
  width: 100%;
  max-width: 264px;                        /* (840 - 2*24) / 3 ≈ 264 */
  min-height: 280px;                       /* LOCKED height to prevent shifts */
  box-shadow: 0 6px 13px 5px rgba(0,0,0,0.06);
  transition: box-shadow .15s ease, transform .08s ease, background-color .15s ease;
  will-change: transform;
}

/* Strong, visible hover (restored) */
#tl-react-signup-form .tl-radio-card:hover {
  box-shadow: 0 8px 18px rgba(2,3,60,.18);
  transform: translateY(-2px);
}
#tl-react-signup-form .tl-radio-card:active { transform: translateY(0); }
#tl-react-signup-form .tl-radio-card:focus-within {
  outline: 3px solid rgba(10,75,120,.35);
  outline-offset: 2px;
}

/* Inner layout: fill the fixed-height card without jumping */
#tl-react-signup-form .tl-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;          /* stabilizes vertical spacing */
  align-items: center;
  text-align: center;
  gap: 10px;
}

#tl-react-signup-form .tl-card-title { font-size: 20px; font-weight: 700; margin: 0; color: #111; }
#tl-react-signup-form .tl-card-image { height: 96px; width: auto; }
#tl-react-signup-form .tl-card-range  { margin: 2px 0 8px; color: #000; font-size: 14px; }

/* CTA pill in each card — clearer hover color change */
#tl-react-signup-form .tl-card-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #f6ae2d;                     /* brand gold */
  color: #000;
  font-weight: 500;
  font-size: 16px;
  transition: background-color .3s ease, transform .2s ease;
}
#tl-react-signup-form .tl-radio-card:hover .tl-card-hint { background: #ee9f0f; }
#tl-react-signup-form .tl-card-hint:active { transform: translateY(0.5px); }

/* Responsive columns (no full-bleed cards on mobile) + tuned heights */
@media (max-width: 1024px) {
  #tl-react-signup-form .tl-lawn-group { grid-template-columns: repeat(2, 1fr); }
  #tl-react-signup-form .tl-radio-card { min-height: 260px; max-width: 320px; }
}
@media (max-width: 768px) {
  #tl-react-signup-form .tl-lawn-group { grid-template-columns: 1fr; gap: 16px; }
  #tl-react-signup-form .tl-radio-card { min-height: 240px; max-width: 320px; }
  #tl-react-signup-form .tl-card-image { height: 88px; }
}
@media (max-width: 389.98px) {
  #tl-react-signup-form .tl-radio-card { min-height: 228px; padding: 14px 12px; }
  #tl-react-signup-form .tl-card-image { height: 78px; }
}
/* --- CLS guard for React mount (prevents disclaimer jump) --- */
#tl-react-signup-form {
  display: block;
  min-height: 320px; /* desktop grid of 3 cards */
}

/* tablet: two columns, a bit taller */
@media (max-width: 1024px) {
  #tl-react-signup-form { min-height: 590px; }
}

/* mobile: 3 cards stacked, largest height */
@media (max-width: 768px) {
  #tl-react-signup-form { min-height: 850px; }
}

/* ==== Step buttons: disabled + busy (scoped) ==== */
#tl-react-signup-form .action-button:disabled,
#tl-react-signup-form #nextBtn:disabled,
#tl-react-signup-form #prevBtn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(10%);
  transform: none;
  box-shadow: none;
}

/* Busy via aria-busy */
#tl-react-signup-form .action-button[aria-busy="true"],
#tl-react-signup-form #nextBtn[aria-busy="true"],
#tl-react-signup-form #prevBtn[aria-busy="true"] {
  position: relative;
  pointer-events: none;
  /* reserve space only when busy so the label stays centered at rest */
  padding-right: calc(1em + 20px);   
}

/* Spinner on the right */
#tl-react-signup-form .action-button[aria-busy="true"]::after,
#tl-react-signup-form #nextBtn[aria-busy="true"]::after,
#tl-react-signup-form #prevBtn[aria-busy="true"]::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  animation: tl-spin 0.6s linear infinite;
  pointer-events: none; 
}

@keyframes tl-spin { to { transform: rotate(360deg); } }

/* ===== Optional: Busy text variant for Next button =====
   Enable by adding class "busy-text" to #nextBtn while aria-busy="true".
   This hides the original label, changes color, and overlays “Processing…”.
*/
#tl-react-signup-form #nextBtn.busy-text[aria-busy="true"] {
  background: #9ca3af;        /* similar to Reserve disabled style */
  color: transparent;         /* hide "Review" without layout shift */
  transform: none;
}
#tl-react-signup-form #nextBtn.busy-text[aria-busy="true"]::after {
  display: none;              /* no spinner in text mode */
}
#tl-react-signup-form #nextBtn.busy-text[aria-busy="true"]::before {
  content: "Processing…";
  position: absolute;
  left: 12px; right: 12px; top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #111;
  font-weight: 600;
}

/* ===== Review card (static Google testimonial) ===== */
.review-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 14px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

.google-badge-img {
  height: 18px;
  width: 18px;
  object-fit: contain;
  border-radius: 3px;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 6px;
}

.review-stars .star {
  width: 16px;
  height: 16px;
  fill: #f6ae2d; /* brand gold */
}

.review-stars .review-source {
  font-size: 13px;
  color: #6b7280;
}

.review-quote {
  margin: 6px 0 4px;
  font-size: 14px;
  color: #374151;
}

.review-author {
  font-size: 14px;
  color: #4b5563;
  font-weight: 500;
}

.review-note {
  margin-top: 8px;
  font-size: 13px;
  font-style: italic; 
  color: #6b7280;
}



/*# sourceMappingURL=signup-form.css.map*/