/* ============================================================
   MINT Detailing — Booking wizard (matches site dark branding)
   Palette/fonts mirror assets/css/style.css :root
   ============================================================ */
:root{
  --bk-mint:#62C2AE;
  --bk-mint-light:#8FD6C7;
  --bk-mint-deep:#3E9484;
  --bk-black:#121212;
  --bk-card:#1E1E1E;
  --bk-line:#2B2B2B;
  --bk-white:#FFFFFF;
  --bk-text:#DDE0E0;
  --bk-muted:#A8ADAD;
}
*{box-sizing:border-box}

body{
  background-color:var(--bk-black);
  background-image:url(../images/banner-bg-img.jpg);
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  color:var(--bk-text);
  font-family:"Inter",sans-serif;
}
body::before{
  content:"";position:fixed;inset:0;
  background:rgba(10,10,10,.72);
  z-index:0;pointer-events:none;
}

.booking-shell{position:relative;z-index:1;display:flex;flex-direction:column;min-height:100vh}
.booking-header{padding:34px 16px 6px;text-align:center}
.booking-footer{padding:28px 16px 40px;text-align:center}
.booking-logo{height:64px;width:auto}

.booking-main{display:flex;align-items:flex-start;justify-content:center;padding:24px 16px 0}

.booking-card{
  background:var(--bk-card);
  width:100%;max-width:720px;
  border:1px solid var(--bk-line);
  border-radius:22px;
  box-shadow:0 24px 60px rgba(0,0,0,.45);
  padding:38px;
}

/* Persistent title */
.booking-title{
  font-family:"Inter",sans-serif;
  font-size:26px;line-height:32px;letter-spacing:.2px;
  color:var(--bk-white);font-weight:600;
  margin:0 0 20px;text-align:center;
}

/* Progress */
.booking-progress{height:6px;background:#2b2b2b;border-radius:99px;overflow:hidden}
.booking-progress-bar{height:100%;width:16.66%;background:var(--bk-mint);transition:width .35s ease}
.booking-stepcount{
  color:var(--bk-muted);font-size:13px;letter-spacing:.04em;
  text-transform:uppercase;font-weight:600;margin:12px 0 22px;
}

/* Steps */
.booking-step{display:none}
.booking-step.is-active{display:block;animation:bkfade .3s ease}
@keyframes bkfade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.booking-step h2{
  font-family:"Anton",sans-serif;
  font-size:34px;line-height:40px;letter-spacing:.5px;
  color:var(--bk-white);margin:0 0 8px;font-weight:700;
}
.muted{color:var(--bk-muted);font-size:15px;margin-bottom:20px}
.booking-step h2 + .muted{margin-top:6px}

/* Form fields */
.booking-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:18px}
.booking-grid .full{grid-column:1/-1}
.booking-grid label,.coupon-row{
  display:flex;flex-direction:column;gap:8px;
  font-size:13px;font-weight:600;letter-spacing:.02em;color:var(--bk-muted);
}
.booking-grid input,.coupon-row input,#bookingForm select{
  padding:14px 16px;
  background:#171717;
  border:1px solid var(--bk-line);
  border-radius:10px;
  color:var(--bk-white);
  font-size:15px;font-family:"Inter",sans-serif;font-weight:500;
  width:100%;
}
.booking-grid input::placeholder,.coupon-row input::placeholder{color:#6b7170}
#bookingForm input:focus,#bookingForm select:focus{
  outline:none;border-color:var(--bk-mint);
  box-shadow:0 0 0 3px rgba(98,194,174,.22);
}
.field-error{border-color:#ff5f5f!important;box-shadow:0 0 0 3px rgba(255,95,95,.18)!important}

/* Option cards (services + add-ons) */
.booking-options{display:flex;flex-direction:column;gap:14px;margin-top:18px}
.opt-card{
  display:flex;align-items:center;gap:14px;
  border:2px solid var(--bk-line);border-radius:14px;
  padding:18px 20px;cursor:pointer;background:#171717;
  transition:border-color .15s,background .15s;
}
.opt-card:hover{border-color:var(--bk-mint-deep)}
.opt-card input{accent-color:var(--bk-mint);width:20px;height:20px;flex:0 0 auto}
.opt-card .opt-title{flex:1;font-weight:600;color:var(--bk-white);font-size:16px}
.opt-card .opt-price{color:var(--bk-mint);font-weight:700;font-size:16px}
.opt-card .opt-badge{
  display:inline-block;margin-left:8px;padding:3px 10px;
  background:var(--bk-mint);color:var(--bk-black);
  font-size:11px;font-weight:700;letter-spacing:.4px;text-transform:uppercase;
  border-radius:999px;vertical-align:2px;white-space:nowrap;
}
.opt-card:has(input:checked){border-color:var(--bk-mint);background:rgba(98,194,174,.10)}

/* Coupon */
.coupon-row{flex-direction:row;align-items:center;gap:12px;margin-top:22px;flex-wrap:wrap}
.coupon-row input{flex:1;min-width:170px}
.coupon-msg{font-size:14px;font-weight:600}
.coupon-msg.ok{color:var(--bk-mint)}
.coupon-msg.bad{color:#ff7a7a}

/* Buttons — own namespace (bk-btn) to avoid Bootstrap's .btn-primary (#007bff).
   States are spelled out so Bootstrap's :hover/:focus/:active can't override. */
.booking-shell .bk-btn,
.booking-shell .bk-btn:hover,
.booking-shell .bk-btn:focus,
.booking-shell .bk-btn:active{
  background:var(--bk-mint);color:var(--bk-black);
  border:none;height:54px;line-height:54px;padding:0 30px;
  border-radius:10px;font-weight:700;font-size:16px;
  cursor:pointer;text-decoration:none;display:inline-block;
  box-shadow:none;outline:none;
  transition:all .3s ease;
}
.booking-shell .bk-btn:hover,
.booking-shell .bk-btn:focus{background:var(--bk-mint-light);color:var(--bk-black)}

.booking-shell .bk-btn-alt,
.booking-shell .bk-btn-alt:hover,
.booking-shell .bk-btn-alt:focus,
.booking-shell .bk-btn-alt:active{
  background:transparent;color:var(--bk-white);
  border:1px solid var(--bk-line);height:54px;line-height:52px;
  padding:0 26px;border-radius:10px;font-weight:600;font-size:15px;cursor:pointer;
  box-shadow:none;outline:none;
  transition:all .3s ease;
}
.booking-shell .bk-btn-alt:hover:not(:disabled),
.booking-shell .bk-btn-alt:focus:not(:disabled){border-color:var(--bk-mint);color:var(--bk-mint)}
.booking-shell .bk-btn-alt:disabled{opacity:.35;cursor:not-allowed}

/* Nav row */
.booking-nav{display:flex;align-items:center;gap:14px;margin-top:32px;flex-wrap:wrap}
.booking-nav .bk-btn{margin-left:auto}
.live-total{color:var(--bk-muted);font-size:14px;font-weight:600}
.live-total strong{color:var(--bk-mint);font-size:16px}

/* Calendar */
.calendar{border:1px solid var(--bk-line);border-radius:14px;padding:18px;background:#171717;margin-top:18px}
.cal-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
.cal-head span{font-family:"Anton",sans-serif;letter-spacing:.5px;color:var(--bk-white);font-size:20px}
.cal-nav{
  border:none;background:rgba(98,194,174,.14);color:var(--bk-mint);
  width:38px;height:38px;border-radius:50%;font-size:22px;line-height:1;cursor:pointer;
  transition:background .15s;
}
.cal-nav:hover{background:rgba(98,194,174,.28)}
.cal-dow,.cal-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:6px;text-align:center}
.cal-dow{color:var(--bk-muted);font-size:12px;font-weight:600;margin-bottom:8px}
.cal-day{
  padding:11px 0;border-radius:10px;cursor:pointer;
  border:1px solid transparent;color:var(--bk-text);font-weight:600;font-size:14px;
  user-select:none;transition:background .12s,color .12s;
}
.cal-day.empty{cursor:default}
.cal-day.disabled{color:#4a4f4e;cursor:not-allowed}
.cal-day:not(.disabled):not(.empty):hover{background:rgba(98,194,174,.16);color:var(--bk-white)}
.cal-day.selected{background:var(--bk-mint);color:var(--bk-black);font-weight:700}

/* Selected-day list with morning/afternoon toggles */
.slot-list{margin-top:18px;display:flex;flex-direction:column;gap:10px}
.slot-row{
  display:flex;align-items:center;justify-content:space-between;
  border:1px solid var(--bk-line);border-radius:12px;padding:12px 16px;background:#171717;
}
.slot-row > span{color:var(--bk-white);font-weight:600}
.slot-row .periods{display:flex;gap:8px}
.slot-row .periods button{
  border:1px solid var(--bk-line);background:transparent;color:var(--bk-text);
  border-radius:99px;padding:7px 16px;cursor:pointer;font-size:13px;font-weight:600;
  transition:all .15s;
}
.slot-row .periods button:hover{border-color:var(--bk-mint)}
.slot-row .periods button.active{background:var(--bk-mint);color:var(--bk-black);border-color:var(--bk-mint)}

/* Review */
.review{display:flex;flex-direction:column;gap:2px;margin-top:18px}
.review .r-row{
  display:flex;justify-content:space-between;gap:18px;
  border-bottom:1px solid var(--bk-line);padding:11px 0;
}
.review .r-row span:first-child{color:var(--bk-muted);font-weight:600}
.review .r-row span:last-child{color:var(--bk-white);text-align:right}
.estimate-line{margin-top:22px;font-size:18px;color:var(--bk-text)}
.estimate-line strong{color:var(--bk-mint);font-family:"Anton",sans-serif;font-size:24px;letter-spacing:.5px}

/* Thank you */
.booking-thanks{text-align:center;padding:28px 0}
.booking-thanks h2{margin-top:10px}
.thanks-icon{width:68px;margin-bottom:14px}
.booking-thanks p{color:var(--bk-text);max-width:440px;margin:0 auto 26px}

/* "What happens next" card on the thank-you step */
.thanks-next{
  text-align:left;max-width:480px;margin:0 auto 26px;
  background:#171717;border:1px solid var(--bk-line);border-radius:14px;
  padding:22px 24px;
}
.thanks-next h3{
  font-family:"Anton",sans-serif;font-size:17px;letter-spacing:.5px;
  color:var(--bk-mint);margin:0 0 14px;
}
.thanks-next ol{margin:0 0 14px;padding-left:20px}
.thanks-next ol li{
  color:var(--bk-text);font-size:14.5px;line-height:1.55;margin-bottom:10px;
}
.thanks-next ol li::marker{color:var(--bk-mint);font-weight:700}
.thanks-next ol li strong{color:var(--bk-white)}
.thanks-next .thanks-help{
  color:var(--bk-muted);font-size:13.5px;margin:0;max-width:none;text-align:left;
}
.thanks-next .thanks-help a{color:var(--bk-mint);text-decoration:none;font-weight:600}

@media(max-width:560px){
  .booking-grid{grid-template-columns:1fr}
  .booking-card{padding:24px}
  .booking-step h2{font-size:28px;line-height:34px}
  .booking-nav{gap:10px}
  .booking-nav .live-total{order:3;width:100%;text-align:center}
  /* three time-of-day pills can't sit beside the date on a phone — stack them */
  .slot-row{flex-direction:column;align-items:stretch;gap:10px}
  .slot-row .periods{width:100%}
  .slot-row .periods button{flex:1;padding:9px 0;font-size:13px}
}
