.repair-flow { max-width: 800px; margin: 0 auto; font-family: 'Inter', sans-serif; }

.steps-indicator { display: flex; justify-content: center;  margin-bottom: 2rem; }
.step-item { display: flex; align-items: center; }
.step-item div:first-child { width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 500; transition: all 0.3s; }
.step-item div:last-child { height: 2px; width:50px; flex-grow: 1; margin: 0 0.25rem; transition: all 0.3s; }
.bg-primary { background-color: #3b82f6; color: #ffffff; }
.text-primary-foreground { color: #ffffff; }
.bg-secondary { background-color: #e2e8f0; color: #6b7280; }
.text-muted-foreground { color: #6b7280; }

.step { display: none; }
.step.is-active { display: block; }

.step h2, .step h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }
.step-item.active div:last-child {
    background: #3b82f6;
}
.step .grid.model {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.step .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }

.step button { display: flex; justify-content: space-between; align-items: center; padding: 1rem; border-radius: 1rem; border: 1px solid #d1d5db; background-color: #f9fafb; cursor: pointer; transition: all 0.2s; text-align: left; font-size: 1rem;color:#222;    flex-direction: column;
    justify-content: center;
    align-items: start; gap:10px;}
    .catNameModel {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6a7181;
    text-transform: capitalize;
}
.catName {
        line-height: 28px;
    font-size: 22px;
    font-weight: 500;
    white-space: break-spaces;
}
.catNameModel svg {
    width: 15px;
    height: 15px;
}
.step button:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    color: inherit;
    background: transparent;
    border-width: 1px;
}

.price { font-size: 1.5rem; font-weight: 700; margin: 0.5rem 0; }
.time, .description { margin: 0.25rem 0; }

.cta { display: inline-block; margin-top: 1rem; background-color: #3b82f6; color: #fff; padding: 0.75rem 1.5rem; border-radius: 0.75rem; text-decoration: none; font-weight: 600; transition: background-color 0.2s; }
.cta:hover { background-color: #2563eb; }
.grid.services {
    display: flex;
    flex-direction: column;
}
.rightText {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    color: #3b82f6;
}
.services button {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.services button div {
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
    max-width: 650px;
    white-space: normal;
    line-height: 20px;
}
.services button div.time svg {
    width: 15px;
    height: 15px;
    color: #3b82f6;
}
.services button div.time p {
    margin-bottom: 0;
    color: #3b82f6;
    margin-top: 1px;
}
.services button div.time {
    color: #3b82f6;
    flex-direction: row !important;
    align-items: center !important;
    font-size: 14px;
    color: #6a7181;
    text-transform: capitalize;
    gap: 5px;
}
button.back-btn {
    border: unset !important;
    background: transparent;
    margin-top: 20px;
    padding: 0;
    /* width: 200px; */
    flex-direction: row;
    align-items: center;
    gap: 5px;
    color: #787878;
}
@keyframes fade-in { 0% { opacity: 0; transform: translateY(10px); } 100% { opacity: 1; transform: translateY(0); } }


:root {
  --bg-card: #ffffff;
  --border: #e5e7eb;
  --secondary: #f9fafb;
  --primary: #16a34a;
  --muted: #6b7280;
  --foreground: #111827;
}

/* Layout */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: .5rem; }
.gap-4 { gap: 1rem; }
.text-center { text-align: center; }

/* Spacing */
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-inline: .75rem; }
.py-1 { padding-block: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-1 { margin-top: .25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.pt-6 { padding-top: 1.5rem; }

/* Card */
.bg-card { background: var(--bg-card); }
.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.shadow-card { box-shadow: 0 20px 40px rgba(0,0,0,.08); }

/* Typography */
.font-bold { font-weight: 700; }
.text-sm { font-size: .875rem; }
.text-lg { font-size: 1.125rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-primary { color: var(--primary); }
.text-muted-foreground { color: var(--muted); }

/* Status pill */
.status-pill {
  background: rgba(22,163,74,.1);
  color: var(--primary);
  font-size: .875rem;
  font-weight: 600;
  border-radius: 25px;
    max-width: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.btn {
  height: 56px;
  border-radius: .75rem;
  font-size: 1.125rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-decoration: none;
  transition: all .2s ease;
}

.btn-primary {
  background: #10b981;
  color: #fff;
}

.btn-primary:hover {
  background: #059669;
}

.btn-dark {
  background: var(--foreground);
  color: #fff;
}

.btn-dark:hover {
  opacity: .9;
}

/* Link button */
.link-btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--primary);
  font-size: .875rem;
  cursor: pointer;
}

.link-btn:hover {
  text-decoration: underline;
}

/* Responsive */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:p-10 { padding: 2.5rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-5xl { font-size: 3rem; }
}
.bookbtns {
    display: flex;
    gap: 10px;
}
.bookbtns a {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-basis: 0%;
    flex-grow: 1;
    flex-shrink: 1;
    width: 319px;
    height: 56px;
    padding-left: 40px;
    padding-right: 40px;
    column-gap: 8px;
    row-gap: 8px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    font-feature-settings: "cv01", "ss01", "ss02";
    font-variation-settings: normal;
    color: rgb(255, 255, 255);
    background-color: rgb(16, 184, 129);
    text-size-adjust: 100%;
    text-decoration: none;
    text-decoration-color: rgb(255, 255, 255);
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    white-space: nowrap;
    text-wrap-mode: nowrap;
    white-space-collapse: collapse;
    border: 0 solid rgb(226, 228, 233);
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    cursor: pointer;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-duration: 0.2s;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.bookbtns a.walk{
    background-color: #14181f;
}
.bookbtns a:hover {
  box-shadow:
    rgba(0, 0, 0, 0.15) 0px 15px 25px -5px,
    rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
  transform: translateY(-1px);
  color: #fff;
  opacity: 0.9;
}
