@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&display=swap");
@import url('font-awesome.css');
* {
  font-family: "Outfit", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --main-color: #17e5a5;
  --dark-color: #17e5a5;
  --step-color: #ced7e0;
  --step-size: 32px;
  --steps: 6;
  --progress-width: calc((var(--steps) - 1) / var(--steps) * 100%);
}

/* body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: lavender;
  color: #333;
} */

h1 {
  text-align: center;
  margin-bottom: 16px;
}

h3 {
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: clamp(1rem, 2vw + 1rem, 1.25rem);
}

label {
  display: inline-block;
  margin-bottom: 4px;
}

input,
textarea {
  outline-color: var(--main-color);
  border: 1px solid lightgray;
  padding: 8px 16px;
  border-radius: 4px;
  /* width: 100%; */
  font-size: 1rem;
  text-align: start;
}

input[type="tel"] {
  direction: inherit;
}

textarea {
  resize: none;
}

button {
  cursor: pointer;
  border: none;
  border-radius: 16px;
  padding: 8px 16px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 0.875rem;
  transition: 0.3s;
}

button:active,
button:hover {
  background-color: var(--dark-color);
}

button:disabled {
  opacity: 0.8;
}

button:focus {
  outline-color: #333;
}

button[type="submit"] {
  background-color: #333;
}

button[type="submit"]:hover,
button[type="submit"]:active {
  background-color: #444;
}

form {
  margin-block: auto;
}

/* form styles */

.form-wizard {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  /* width: min(500px, 90%); */
  box-shadow: 0 4px 16px rgba(167, 21, 84, 0.1);
  width: 100%;
  max-width: 100%;
}

.progress-container {
  position: relative;
}

.progress-container::before {
  content: "";
  height: 4px;
  width: var(--progress-width);
  background-color: var(--step-color);
  position: absolute;
  top: calc(var(--step-size) / 2);
  left: 50%;
  translate: -50% -50%;
}

.progress-container .progress {
  height: 4px;
  width: var(--progress-width);
  background-color: var(--main-color);
  position: absolute;
  top: calc(var(--step-size) / 2);
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}

/* if page is rtl adjust the transform origin */
html[dir="rtl"] .progress-container .progress {
  transform-origin: right;
}

.progress-container ol {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  counter-reset: step-number;
  position: relative;
  z-index: 3;
}

.progress-container li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--step-color);
  transition: 0.3s linear 0.3s;
  text-align: center;
  font-size: 0;
}

.progress-container li::before {
  counter-increment: step-number;
  content: counter(step-number);
  background-color: var(--step-color);
  width: var(--step-size);
  height: var(--step-size);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s linear 0.3s;
  font-size: 1rem;
}

@media (min-width: 480px) {
  .progress-container li {
    font-size: 1rem;
    gap: 8px;
  }
}

.progress-container li:where(.done, .current) {
  color: #333;
  font-weight: 500;
}

.progress-container li.done::before {
  background-color: var(--main-color);
}

.progress-container li.current::before {
  background-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(167, 21, 84, 0.25);
}

.steps-container {
  display: flex;
  overflow: hidden;
}

.step {
  flex: 1 0 100%;
  padding: 20px 8px;
  opacity: 0;
  transition: opacity 0.3s;
  height: fit-content;
  display: grid;
  gap: 8px;
   visibility: hidden;
}

.step.current {
  visibility: visible;
  opacity: 1;
}

.controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding-inline: 8px;
}

.controls button {
  flex: 1;
}

.completed {
  text-align: center;
}

.completed h3 {
  margin-bottom: 8px;
}

.completed svg {
  width: 100px;
  height: 100px;
  stroke: yellowgreen;
}

.completed:not([hidden]) ~ * {
  display: none;
}
 /* .features label {
        display: block;
        margin-bottom: 8px;
      } */

      .actions {
        margin-top: 25px;
        display: flex;
        justify-content: space-between;
      }

      button {
        padding: 10px 18px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
      }
      .next {
        background: #111;
        color: #fff;
      }
      .prev {
        background: #ccc;
      }

      .summary {
        background: #f1f1f1;
        padding: 15px;
        border-radius: 6px;
        margin-bottom: 20px;
      }
      .summary p {
        margin: 5px 0;
      }

      input,
      select {
        /* width: 100%; */
        padding: 10px;
        margin-bottom: 15px;
      }

      body {
        /* 	background-image: linear-gradient(270deg, #CCF9FF 0%, #D0FAFF80 100%) !important; */
      }
      .main-title span {
        color: #81b70b;
      }
      .title {
        /* margin-top: 20px; */
        text-align: center;
      }
      .title h2 {
        margin-bottom: 10px;
      }
      .title p {
        font-weight: 400;
        margin-bottom: 0;
      }
      .guide h3 {
        margin-bottom: 10px;
        font-size: 25px;
      }
      .guide .title {
        margin-bottom: 20px;
        text-align: left;
      }
      .steps h3 {
        margin-bottom: 10px;
        font-size: 25px;
        text-align: left;
      }
      .step-icon {
        width: 50px;
        height: 50px;
        color: #fff;
        background: var( --main-color);
        border-radius: 15px;
        text-align: center;
        display: flex;
        flex-shrink: 0;
        justify-content: center;
        align-items: center;
      }
      .step-icon i, .step-icon span {
        font-size: 20px;
      }
      .step-icon svg{
        width: 26px;
    fill: #fff;
      }
      .step-guide li {
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 10px;
      }

      .step-guide li::after {
        content: "";
        position: absolute;
        left: 25px;
        top: 50px;
        width: 2px;
        height: 100%;
        background-color: var( --main-color);
        z-index: 0;
      }

      .step-guide li:last-child::after {
        height: 0;
      }
      .step-guide li:hover .step-icon {
        transform: translate(0, 0) rotate(0) skew(0) skewY(0) scaleX(1.1)
          scaleY(1.1);
        transition-property: transform;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 0.15s;
        box-shadow:
          0 0 #0000,
          0 0 #0000,
          0 10px 15px -3px rgb(0 0 0 / 0.1),
          0 4px 6px -4px rgb(0 0 0 / 0.1);
      }
      .step-content .badge {
        background: rgba(0, 149, 153, 0.1);
        color: #fff;
        color: var( --main-color);
        padding: 4px 8px;
        border-radius: 20px;
        border: 1px solid var( --main-color);
        font-size: 14px;
        font-weight: 700;
      }
      .step-content h4 {
            margin-top: 5px;
    /* margin-bottom: 0px; */
    font-size: 20px;
      }
      .step-content p {
        font-weight: normal;
        margin-bottom: 0;
      }
      .equal-height {
        min-height: 157px;
      }
      .option-group {
        display: flex;
        gap: 20px;
        justify-content: space-around;
        margin: 20px 0 20px;
        text-align: center;
      }

      .option-group input {
        display: none;
      }
      .card-box {
        border: 1px solid #e5e7eb;
        border-radius: 25px;
        margin: 20px 0;
        padding: 20px;
      }

      .option-card {
        border: 2px solid #e5e7eb;
        border-radius: 16px;
        padding: 24px 16px;
        width: 33%;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }
      
      .option-card:hover {
        border-color: var(--main-color);
        box-shadow: 0 4px 12px rgba(0, 149, 153, 0.1);
      }
      
      .option-card img {
        width: 80px;
        height: 140px;
        object-fit: contain;
        margin-bottom: 8px;
      }
      
      .option-card h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
        color: #1f2937;
      }
      
      .option-card p {
        font-size: 0.9rem;
        color: #6b7280;
        margin: 0;
      }
      
      .option-group input:checked + .option-card {
        border-color: var(--main-color);
        border-width: 3px;
        background: #f0fffe;
        box-shadow: 0 6px 20px rgba(0, 149, 153, 0.15);
      }

      .option-group input:checked + .option-card::after {
        content: "✔";
        position: absolute;
        top: 12px;
        right: 12px;
        background: var(--main-color);
        color: #fff;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 16px;
      }
      @media (max-width: 640px) {
        .option-group {
          flex-direction: column;
          align-items: center;
        }
        .option-card {
          width: 100%;
        }
      }
      .features-group.step-options {
        display: none;
      }
      .features-group.step-options.is-active {
        display: grid;
      }
      .features-group {
        margin: 20px 0 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .feature-card {
        position: relative;
        display: flex !important;
        align-items: center;
        gap: 12px;
        padding: 10px 18px;
        border: 2px solid var(--main-color);
        border-radius: 14px;
        cursor: pointer;
        background: #f3f9ff;
        transition: 0.25s ease;
      }

      /* Hide default checkbox */
      .feature-card input {
        display: none;
      }

      /* Check icon */
      .check-icon {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--main-color);
        color: #fff;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      /* Text */
      .feature-text {
        font-size: 15px;
        font-weight: 500;
      }

      /* UNCHECKED state */
      .feature-card input:not(:checked) + .check-icon {
        background: transparent;
        border: 2px solid var(--main-color);
        color: transparent;
      }

      .feature-card input:not(:checked) ~ .feature-text {
        opacity: 0.6;
      }
      .quantity {
        font-family: Arial, sans-serif;
      }

      .quantity label {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
      }

      .quantity span {
        font-size: 14px;
        color: #666;
        display: block;
        margin-bottom: 10px;
      }

      .quantity-options {
        display: flex;
        gap: 15px;
      }
      @media (max-width: 640px) {
        .quantity-options {
          flex-direction: column;
        }
        .quantity-options label {
          width: 100%;
          text-align: center;
        }
      }

      .quantity-options label {
        background: #f0f0f0;
        padding: 10px 20px;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
        border: 1px solid transparent;
      }

      .quantity-options label {
        flex: 1 1 0;
        background: #f0f0f0;
        padding: 10px 20px;
        text-align: center;
        /* width: 200px; */
        font-size: 16px;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
        border: 1px solid transparent;
      }

      /* Hide radio */
      .quantity-options input[type="radio"] {
        display: none;
      }

      /* Checked state (THIS IS THE FIX) */
      .quantity-options label:has(input[type="radio"]:checked) {
        background: var(--main-color);
        color: white;
        border-color: var(--main-color);
      }

      /* Hover */
      .quantity-options label:hover {
        background: var(--main-color);
        color: white;
      }
      h1 span {
        color: var(--main-color);
      }
      .custom-date {
        display: none;
        margin-top: 10px;
      }
      .monitoring-options {
        margin-top: 12px;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .monitoring-option {
        border: 1px solid #e6e9ee;
        border-radius: 8px;
        padding: 12px;
        display: flex !important;
        align-items: center;
        cursor: pointer;
        transition:
          box-shadow 0.15s,
          border-color 0.15s;
      }
      .monitoring-option input[type="radio"] {
        margin-right: 12px;
        accent-color: var(--main-color);
      }
      .monitoring-option .option-text {
        display: flex;
        flex-direction: column;
      }
      .monitoring-option .option-text strong {
        font-weight: 600;
        display: block;
        margin-bottom: 4px;
      }
      .monitoring-option .option-text p {
        margin: 0;
        color: #6b7280;
        font-size: 0.95rem;
      }
      .monitoring-option.selected {
        border-color: var(--main-color);
        box-shadow: 0 0 0 4px rgba(107, 70, 255, 0.08);
      }
      .monitoring-option svg {
        width: 20px;
        height: 20px;
        margin-right: 12px;
        flex-shrink: 0;
      }

      /* Final step layout */
      /* .final-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
} */
      .card {
        background: #fff;
        border: 1px solid #e6e9ee;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
      }
      .personal-information .form-group {
        margin-bottom: 14px;
      }
      .form-label {
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
        color: #0f172a;
      }
      .form-input {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #e6e9ee !important;
        border-radius: 8px;
        background: #fff;
      }
      .small-note {
        color: #64748b;
        font-size: 0.95rem;
        font-weight: 400;
        display: block;
        margin-bottom: 12px;
      }

      .order-card {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .order-summary .summary-item {
        display: flex;
        font-weight: 400;
        justify-content: space-between;
        padding: 6px 0;
        color: #0f172a;
      }
      .badge {
        background: var(--main-color);
        color: #fff;
        padding: 4px 8px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 700;
      }

      .pricing-card {
        background: linear-gradient(
          180deg,
          rgba(107, 70, 255, 0.05),
          rgba(107, 70, 255, 0.03)
        );
        border: 1px solid rgba(107, 70, 255, 0.12);
        border-radius: 10px;
        padding: 16px;
      }
      .pricing-list {
        font-weight: 300;
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .pricing-list li {
        color: #334155;
        display: flex;
        gap: 8px;
        align-items: flex-start;
      }
      .pricing-list li::before {
        content: "✓";
        color: var(--main-color);
        font-weight: 700;
        margin-right: 6px;
      }

      /* .form-actions {
  display: flex;
	justify-content:end;
  margin-top: 18px;
} */
      .form-actions {
        position: absolute;
        margin-top: 18px;
        right: 0;
      }

      /* Mobile styles */
      @media (max-width: 767px) {
        .form-actions {
          position: relative;
          right: auto;
        }
      }

      .btn.btn-secondary {
        padding: 20px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        background: #fff;
        border: 1px solid #e6e9ee;
        color: #0f172a;
      }
      .btn.btn-primary {
        padding: 20px 35px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        background: var(--main-color);
        color: #fff;
      }
      /* 
@media (max-width: 900px) {
  .final-row {
    flex-direction: column;
  }
} */

      /* Delivery options: tab-like buttons and custom date */
      .delivery.card-box {
        padding: 20px;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
        border: 1px solid #eef2f7;
      }
      .delivery .delivery-options {
        display: flex;
        gap: 12px;
        margin-top: 14px;
      }
      .delivery .delivery-options label {
        flex: 1 1 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 16px;
        border-radius: 10px;
        border: 1px solid rgba(99, 102, 241, 0.12);
        background: #fff;
        color: #111827;
        font-size: medium;
        cursor: pointer;
        transition: all 160ms ease-in-out;
        font-weight: 600;
      }
      .delivery .delivery-options label:hover {
        transform: translateY(-2px);
      }
      .delivery .delivery-options label.selected {
        border-color: var(--main-color);
        box-shadow: 0 6px 18px rgba(107, 70, 255, 0.12);
        background: linear-gradient(180deg, #ffffff, #faf8ff);
      }
      .delivery .delivery-options input[type="radio"] {
        display: none;
      }
      .delivery .custom-date {
        margin-top: 14px;
        display: none;
      }
      .delivery .custom-date input[type="date"] {
        padding: 20px 20px;
        width: 200px;
        border: 1px solid #e6eef8;
        border-radius: 8px;
        background: #ffffff;
      }

      /* Small responsive tweak */
      @media (max-width: 640px) {
        .delivery .delivery-options {
          flex-direction: column;
        }
      }
      @media (max-width: 640px) {
        .mbl-spl {
          display: grid !important;
          align-items: center;
        }
      }

      .two-column-list {
        column-count: 2;
      }
      .card-box h5 {
        font-size: 20px;
        margin-bottom: 10px;
      }
      .card-box p {
        font-weight: 400;
        margin-bottom: 10px;
      }
      .uacf7-step.step-content button.uacf7-prev,
      .uacf7-step.step-content button.uacf7-next {
        border-radius: 50px !important;
        font-size: 18px;
        font-weight: 600;
      }
      .final-row {
        padding: 10px 0;
      }
      .atm-model:hover {
        --tw-shadow: 0 20px 60px -15px hsl(60 82% 43% / 0.2);
        --tw-shadow-colored: 0 20px 60px -15px var(--tw-shadow-color);
        box-shadow:
          0 0 #0000,
          0 0 #0000,
          var(--tw-shadow);
        /*     border-color: hsl(210 100% 50% / .3) !important; */
        border-color: hsl(60 82% 43% / 0.7) !important;
      }
      @media screen and (min-width: 1400px) {
        .elementor-4063 .elementor-element.elementor-element-cb16dc0,
        .elementor-4063 .elementor-element.elementor-element-5dfd3b8,
        .elementor-1575 .elementor-element.elementor-element-047e50c {
          --content-width: 1350px !important;
        }
      }
      .badge-container {
        background-color: #ffffff;
        padding: 10px 20px;
        display: inline-flex;
        align-items: center;
        border: 1px solid;
        gap: 5px;
        font-size: 14px;
        line-height: 20px;
        color: hsl(215 25% 15%);
        --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
        box-shadow:
          var(0 0 #0000, 0 0 #0000),
          var(0 0 #0000, 0 0 #0000),
          0 1px 2px 0 rgb(0 0 0 / 0.05);
        border-color: hsl(214 32% 91%);
        border-radius: 9999px;
        font-weight: 500;
      }
      .badge-container i {
        font-size: 1.2em;
      }
      .badge-container svg{
        width: 20px;
      }
      .hidden-submit {
        display: none !important;
      }
      .form-error {
        color: #dc2626;
        font-size: 13px;
        margin-top: 4px;
        display: block;
      }

      .features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 20px;
      }

      .features label {
        font-size: 16px;
        font-weight: 400;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 18px;
        border: 2px solid var(--main-color);
        background: #fff;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 0;
        color: #1f2937;
            position: relative;
    border-radius: 14px;
      }

      .features label:hover {
        background: #f0fffe;
        box-shadow: 0 2px 8px rgba(0, 149, 153, 0.15);
      }

      .features input[type="checkbox"] {
        display: none;
      }

      .features label::before {
        content: "✓";
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        background: var(--main-color);
        color: #fff;
        border-radius: 50%;
        font-size: 14px;
        font-weight: bold;
        flex-shrink: 0;
      }

      .features input[type="checkbox"]:not(:checked) + label::before {
        background: transparent;
         border: 2px solid hsl(212 26% 83%);
        content: "";
      }

      .features input[type="checkbox"]:not(:checked) + label {
        opacity: 0.6;
        border: 2px solid hsl(212 26% 83%);
      }


      @media (max-width: 768px) {
        .features {
          grid-template-columns: 1fr;
        }
      }

      .contact-step h2 {
        width: 100%;
      }

      /* .contact-container {
        display: flex;
        gap: 24px;
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 16px;
        box-sizing: border-box;
      } */

      .contact-form {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .contact-form h3 {
        margin-bottom: 12px;
        font-size: 1.1rem;
        color: #333;
        text-transform: none;
      }

      .contact-form input {
        padding: 10px 12px;
        border: 1px solid #e5e7eb;
        border-radius: 6px;
        font-size: 0.95rem;
      }

      .order-summary-container {
        flex: 1;
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 16px;
      }

      .order-summary-container h3 {
        margin-bottom: 16px;
        font-size: 1.1rem;
        color: #333;
      }

      .order-summary {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .summary-item {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #e5e7eb;
        font-size: 0.95rem;
      }

      .summary-item:last-child {
        border-bottom: none;
      }

      .summary-item .label {
        font-weight: 600;
        color: #555;
      }

      .summary-item span:last-child {
        /* color: var(--main-color); */
        font-weight: 500;
      }
      .contact-container {
  /* display: flex; */
  gap: 24px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  width: 100%;
}

/* prevent flex overflow */
.contact-container > * {
  min-width: 0;
}

/* mobile */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
  }

  .contact-form,
  .order-summary-container {
    width: 100%;
  }
}


      @media (max-width: 768px) {

        .contact-form,
        .order-summary-container {
          flex: none;
          width: 100%;
        }
      }
      .long-img{
        width: 50px;
        height: 60px;
      }
       .land-img{
        width: 63px;
        height: 63px;
      }
      .list-step i{
        font-size: 13px ;
    padding-right: 5px;
    font-weight: normal ;
      }