/* ============================================================
   MKC Cleaning Services — Booking Page Stylesheet v5
   Premium Cards · Welcome Back · Discount Timers · Checkout Flow
   ============================================================ */

/* ════════════════════════════════════════════════════════════
   WELCOME BACK BANNER
   ════════════════════════════════════════════════════════════ */
.wb-section {
  background: linear-gradient(135deg, #EEF2FF 0%, #F0FFF4 100%);
  border-bottom: 1px solid #C6F6D5;
  padding: 1.25rem 0;
  animation: wbSlideIn .4s ease;
}
@keyframes wbSlideIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}
@keyframes wbSlideOut {
  to   { opacity: 0; transform: translateY(-12px); }
}

.wb-card {
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid #C6F6D5;
  box-shadow: 0 4px 24px rgba(56,161,105,.1);
  padding: 1.25rem 1.5rem;
  overflow: hidden;
}

.wb-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.wb-avatar {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #276749, #38A169);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
}

.wb-welcome-text { flex: 1; }
.wb-title { font-size: 1.05rem; font-weight: 700; color: #1A202C; }
.wb-title span { color: #276749; }
.wb-sub   { font-size: .8rem; color: #718096; margin-top: .2rem; }

.wb-dismiss {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  background: #F7FAFC;
  font-size: 1rem;
  cursor: pointer;
  color: #718096;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
}
.wb-dismiss:hover { background: #E53E3E; color: #fff; border-color: #E53E3E; }

.wb-orders-row {
  display: flex;
  gap: .75rem;
  overflow-x: auto;
  padding-bottom: .25rem;
}
.wb-orders-row::-webkit-scrollbar { height: 4px; }
.wb-orders-row::-webkit-scrollbar-thumb { background: #C6F6D5; border-radius: 2px; }

.wb-order-chip {
  flex-shrink: 0;
  background: linear-gradient(135deg, #F0FFF4, #EBF8FF);
  border: 1.5px solid #C6F6D5;
  border-radius: 12px;
  padding: .7rem 1rem;
  min-width: 160px;
}
.wbo-ref  { font-size: .72rem; font-weight: 700; color: #276749; font-family: monospace; }
.wbo-svc  { font-size: .8rem; font-weight: 600; color: #1A202C; margin: .2rem 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 150px; }
.wbo-date { font-size: .72rem; color: #718096; }
.wbo-price{ font-size: .82rem; font-weight: 700; color: #1B3A8C; margin-top: .25rem; }
.wbo-unit { font-size: .68rem; font-weight: 500; }

/* ════════════════════════════════════════════════════════════
   PREMIUM CATEGORY CARDS — Noon / Amazon / Temu Style
   ════════════════════════════════════════════════════════════ */
.pcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 1024px) { .pcard-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .pcard-grid { grid-template-columns: 1fr; } }

/* ── Card shell ── */
.pcard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid #E8EEF8;
  box-shadow: 0 2px 14px rgba(27,58,140,.07);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: default;
  position: relative;
}
.pcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(27,58,140,.16);
  border-color: #1B3A8C;
}

/* ── Media section (image / video carousel) ── */
.pcard-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #EDF2F7;
  flex-shrink: 0;
}

/* Carousel items — JS activates via .active class */
.pcard-mitem {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
}
.pcard-mitem.active {
  opacity: 1;
  pointer-events: auto;
}
.pcard-mitem img,
.pcard-mitem video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.pcard:hover .pcard-mitem.active img,
.pcard:hover .pcard-mitem.active video {
  transform: scale(1.05);
}

/* Carousel dot nav (injected by JS for multi-item cards) */
.pcard-carr-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 5;
}
.pcard-cdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 0;
  transition: all .25s;
}
.pcard-cdot.active { background: #fff; width: 14px; border-radius: 3px; }

/* ── Noon-style discount circle badge ── */
.pcard-disc-ring {
  position: absolute;
  bottom: 12px;
  left: 14px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, #E53E3E, #C53030);
  border: 3px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  box-shadow: 0 4px 14px rgba(229,62,62,.45);
  z-index: 4;
}
.disc-pct {
  font-size: .9rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.5px;
}
.disc-off {
  font-size: .52rem;
  font-weight: 800;
  color: rgba(255,255,255,.9);
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ── Top-right label badge ── */
.pcard-label {
  position: absolute;
  top: 12px; right: 12px;
  font-size: .66rem;
  font-weight: 800;
  padding: .3rem .7rem;
  border-radius: 50px;
  letter-spacing: .3px;
  z-index: 4;
}
.pcard-lbl-pop   { background: linear-gradient(135deg,#FF6B35,#F7931E); color: #fff; }
.pcard-lbl-value { background: linear-gradient(135deg,#805AD5,#553C9A); color: #fff; }
.pcard-lbl-new   { background: linear-gradient(135deg,#0BC5EA,#0987A0); color: #fff; }

/* ── Live arrival pill ── */
.pcard-arrival {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  align-items: center;
  gap: .35rem;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .67rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 50px;
  z-index: 4;
}
.pcard-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #68D391;
  animation: pdotPulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pdotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.3); }
}

/* ── Star rating row ── */
.pcard-stars-row {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .65rem 1rem .5rem;
  background: #FAFBFF;
  border-bottom: 1px solid #EDF2F7;
  flex-shrink: 0;
}
.pcard-stars       { color: #F59E0B; font-size: .85rem; letter-spacing: 1px; line-height: 1; }
.pcard-rating-val  { font-size: .78rem; font-weight: 800; color: #1A202C; }
.pcard-rev-cnt     { font-size: .72rem; color: #718096; }
.pcard-verified {
  margin-left: auto;
  font-size: .65rem;
  font-weight: 700;
  color: #276749;
  background: #F0FFF4;
  border: 1px solid #C6F6D5;
  padding: .15rem .5rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* ── Card body ── */
.pcard-body {
  padding: .9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}

.pcard-name {
  font-size: 1rem;
  font-weight: 800;
  color: #1A202C;
  margin: 0;
  line-height: 1.3;
}
.pcard-tagline {
  font-size: .75rem;
  color: #718096;
  margin: 0;
  line-height: 1.4;
}

/* ── Features list ── */
.pcard-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .22rem;
  flex: 1;
}
.pcard-feats li {
  font-size: .74rem;
  color: #4A5568;
  font-weight: 500;
  padding-left: 1.2rem;
  position: relative;
}
.pcard-feats li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #38A169;
  font-weight: 900;
  font-size: .8rem;
}

/* ── Price block (Amazon/Noon style) ── */
.pcard-price-block {
  background: linear-gradient(135deg, #F7FAFF, #EFF6FF);
  border: 1px solid #DBEAFE;
  border-radius: 10px;
  padding: .65rem .85rem;
}
.pcard-price-top {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.pcard-price-now {
  font-size: 1.45rem;
  font-weight: 900;
  color: #1B3A8C;
  line-height: 1;
}
.pcard-price-unit-sm {
  font-size: .72rem;
  color: #718096;
  font-weight: 500;
}
.pcard-save-chip {
  margin-left: auto;
  background: linear-gradient(135deg, #276749, #38A169);
  color: #fff;
  font-size: .63rem;
  font-weight: 800;
  padding: .22rem .55rem;
  border-radius: 50px;
  white-space: nowrap;
}
.pcard-price-bottom {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: .28rem;
}
.pcard-was-lbl  { font-size: .67rem; color: #A0AEC0; }
.pcard-price-was {
  font-size: .77rem;
  color: #A0AEC0;
  text-decoration: line-through;
}

/* ── Temu-style countdown timer ── */
.pcard-timer-wrap {
  background: linear-gradient(135deg, #1A202C, #2D3748);
  border-radius: 10px;
  padding: .55rem .85rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.ptw-label {
  font-size: .66rem;
  font-weight: 700;
  color: #FBB040;
  white-space: nowrap;
  flex-shrink: 0;
}
.ptw-blocks {
  display: flex;
  align-items: center;
  gap: .18rem;
  margin-left: auto;
}
.ptw-blk {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #E53E3E;
  border-radius: 5px;
  padding: .2rem .32rem;
  min-width: 30px;
}
.ptw-num {
  font-family: 'Courier New', monospace;
  font-size: .82rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ptw-unit {
  font-size: .46rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-top: .08rem;
}
.ptw-sep {
  font-size: .85rem;
  font-weight: 900;
  color: #FBB040;
  line-height: 1;
  align-self: flex-start;
  margin-top: .15rem;
  padding: 0 .05rem;
}

/* ── Trust micro row ── */
.pcard-trust-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: .42rem .5rem;
  background: #F0FFF4;
  border: 1px solid #C6F6D5;
  border-radius: 8px;
}
.pcard-trust-row span {
  font-size: .63rem;
  font-weight: 600;
  color: #276749;
  white-space: nowrap;
}

/* ── Book Now button ── */
.pcard-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .88rem 1rem;
  background: linear-gradient(135deg, #1B3A8C, #2D52B5);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .3px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.pcard-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #38A169, #276749);
  opacity: 0;
  transition: opacity .3s ease;
}
.pcard-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,58,140,.35); }
.pcard-btn:hover::after { opacity: 1; }
.pcard-btn > * { position: relative; z-index: 1; }
.pcard-btn:active { transform: scale(.97); }

/* ════════════════════════════════════════════════════════════
   CHECKOUT FLOW — Full-page, replaces landing on service click
   ════════════════════════════════════════════════════════════ */

.co-flow {
  min-height: 100vh;
  background: #F4F6FA;
  display: flex;
  flex-direction: column;
}

/* ── Top Bar ─────────────────────────────────────────────── */
.co-topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 1rem;
  height: 56px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.co-back-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-medium);
  padding: .4rem .3rem;
  transition: color .2s;
}
.co-back-btn:hover { color: var(--primary); }

.co-topbar-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  justify-self: center;
}

.co-stepdots {
  display: flex;
  align-items: center;
  gap: 0;
  justify-self: end;
}

.co-sdot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #CBD5E0;
  background: #fff;
  font-size: .7rem;
  font-weight: 700;
  color: #A0AEC0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
  flex-shrink: 0;
}
.co-sdot.active { border-color: var(--primary); background: var(--primary); color: #fff; }
.co-sdot.done   { border-color: var(--accent);  background: var(--accent);  color: #fff; }
.co-sdot.done::after { content: '✓'; font-size: .68rem; }
.co-sdot.done { font-size: 0; }

.co-sline {
  width: 24px;
  height: 2px;
  background: #E2E8F0;
  transition: background .3s ease;
}
.co-sline.done { background: var(--accent); }

/* ── Step Labels ─────────────────────────────────────────── */
.co-steplabels {
  display: flex;
  justify-content: space-around;
  background: #fff;
  border-bottom: 1px solid #EDF2F7;
  padding: .3rem 0 .4rem;
}
.co-slbl {
  font-size: .65rem;
  font-weight: 600;
  color: #A0AEC0;
  text-transform: uppercase;
  letter-spacing: .6px;
  flex: 1;
  text-align: center;
  padding: .15rem 0;
  border-bottom: 2px solid transparent;
  transition: all .25s;
}
.co-slbl.active { color: var(--primary); border-color: var(--primary); }
.co-slbl.done   { color: var(--accent); }

/* ── Step Panel ──────────────────────────────────────────── */
.co-step {
  display: none;
  flex-direction: column;
  flex: 1;
}
.co-step.active { display: flex; }

.co-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1rem 6rem; /* bottom pad = sticky footer height */
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ── Service Tag ─────────────────────────────────────────── */
.co-service-tag {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: 14px;
  padding: .85rem 1.1rem;
  margin-bottom: 1.5rem;
}
.co-svc-icon {
  font-size: 1.65rem;
  flex-shrink: 0;
  line-height: 1;
}
.co-svc-name {
  font-size: .95rem;
  font-weight: 700;
}
.co-svc-sub {
  font-size: .73rem;
  opacity: .78;
  margin-top: .1rem;
}

/* ── Section Headings ────────────────────────────────────── */
.co-sec-hd {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .9rem;
}
.co-sec-hd [data-lucide] { color: var(--accent); }

/* ── Package Cards (Radio Style) ─────────────────────────── */
.co-pkgs {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.co-pkg {
  position: relative;
  background: #fff;
  border: 2px solid #E2E8F0;
  border-radius: 14px;
  padding: .9rem 1rem;
  cursor: pointer;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: .75rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.co-pkg:hover {
  border-color: #B2D8EE;
  box-shadow: 0 2px 14px rgba(27,58,140,.08);
}
.co-pkg.selected {
  border-color: var(--primary);
  background: #EEF2FF;
  box-shadow: 0 4px 18px rgba(27,58,140,.14);
}
.co-pkg.recommended { border-color: var(--accent); }
.co-pkg.recommended:not(.selected) { background: #FAFFFE; }

.co-pkg-rec {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  padding: .18rem .65rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
}
.co-pkg.bestValue .co-pkg-rec { background: var(--accent); }

.co-pkg-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #CBD5E0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.co-pkg.selected .co-pkg-radio {
  border-color: var(--primary);
  background: var(--primary);
}
.co-pkg.selected .co-pkg-radio::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  display: block;
}

.co-pkg-body { min-width: 0; }
.co-pkg-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .18rem;
}
.co-pkg-desc {
  font-size: .72rem;
  color: var(--text-light);
  margin-bottom: .35rem;
}
.co-pkg-feats {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .5rem;
}
.co-pkg-feat {
  font-size: .65rem;
  color: #38A169;
  font-weight: 600;
}

.co-pkg-price {
  text-align: right;
  flex-shrink: 0;
}
.co-pkg-price-now {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.co-pkg-price-aed {
  font-size: .65rem;
  color: var(--text-light);
}
.co-pkg-price-orig {
  font-size: .72rem;
  color: #A0AEC0;
  text-decoration: line-through;
  margin-top: .1rem;
}
.co-pkg-off {
  display: inline-block;
  background: #FFF5F5;
  color: #E53E3E;
  font-size: .6rem;
  font-weight: 800;
  padding: .1rem .3rem;
  border-radius: 4px;
  margin-top: .1rem;
}

/* Shake animation for missing package */
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}

/* Spinner for submit button */
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Form Fields ─────────────────────────────────────────── */
.co-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: .2rem;
}

.co-field { margin-bottom: .9rem; }

.co-lbl {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .32rem;
}
.co-req { color: #E53E3E; }

.co-inp {
  width: 100%;
  padding: .72rem .9rem;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: .87rem;
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.co-inp:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,58,140,.09); }
.co-inp.error { border-color: #FC8181; }
.co-inp.co-autofill {
  background: #F0FFF4;
  border-color: #68D391;
  color: #276749;
}

select.co-inp {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  padding-right: 2.2rem;
}

.co-textarea { resize: vertical; min-height: 72px; }

.co-err {
  font-size: .72rem;
  color: #E53E3E;
  margin-top: .22rem;
  display: none;
}
.co-err.visible { display: block; }

/* Phone input */
.co-phone {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.co-phone:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,58,140,.09); }
.co-phone-pfx {
  padding: .72rem .8rem;
  background: #F7FAFC;
  border-right: 1.5px solid #E2E8F0;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-medium);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.co-phone .co-inp {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding-left: .75rem;
}

.co-autobadge {
  font-size: .58rem;
  background: #C6F6D5;
  color: #276749;
  padding: .12rem .38rem;
  border-radius: 4px;
  font-weight: 700;
  margin-left: .3rem;
}

/* ── Map ─────────────────────────────────────────────────── */
.co-map-hint {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--text-light);
  margin-bottom: .75rem;
  background: #EBF8FF;
  border: 1px solid #BEE3F8;
  border-radius: 8px;
  padding: .5rem .75rem;
}

.co-map {
  width: 100%;
  height: 310px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #E2E8F0;
  background: #E8EDF2;
  margin-bottom: .75rem;
  position: relative;
}

.co-map-detected {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #F0FFF4;
  border: 1px solid #68D391;
  border-radius: 9px;
  padding: .55rem .85rem;
  font-size: .78rem;
  color: #276749;
  font-weight: 600;
  margin-bottom: .75rem;
  animation: fadeIn .4s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ── Order Summary Card ──────────────────────────────────── */
.co-summary-card {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

.co-sc-head {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .85rem;
}
.co-sc-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  flex-shrink: 0;
}
.co-sc-headtext { flex: 1; }
.co-sc-title {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}
.co-sc-sub {
  font-size: .73rem;
  color: rgba(255,255,255,.7);
  margin-top: .1rem;
}
.co-sc-off-badge {
  background: #E53E3E;
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  padding: .25rem .6rem;
  border-radius: 20px;
  flex-shrink: 0;
}

.co-sc-body { padding: .25rem 1.25rem; }
.co-sc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: .6rem 0;
  border-bottom: 1px solid #F7FAFC;
  font-size: .83rem;
  gap: .5rem;
}
.co-sc-row:last-child { border-bottom: none; }
.co-sc-row > span {
  color: var(--text-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .3rem;
  min-width: 90px;
}
.co-sc-row > strong {
  color: var(--text-dark);
  font-weight: 600;
  text-align: right;
}

.co-sc-total {
  background: linear-gradient(135deg, #EEF2FF, #E8FDF9);
  padding: .9rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  border-top: 1px solid #E2E8F0;
}
.co-sc-total-lbl {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.co-sc-prices { text-align: right; }
.co-sc-orig {
  font-size: .78rem;
  color: #A0AEC0;
  text-decoration: line-through;
  display: block;
}
.co-sc-disc {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

/* ── Trust Strip (step 3) ────────────────────────────────── */
.co-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .85rem;
  margin-top: 1.25rem;
  padding: .75rem 1rem;
  background: #F0FFF4;
  border-radius: 10px;
  border: 1px solid #C6F6D5;
}
.co-trust-strip span {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .73rem;
  color: #276749;
  font-weight: 600;
}

/* ── Footer (Sticky Bottom) ──────────────────────────────── */
.co-foot {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #E2E8F0;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,.07);
  z-index: 50;
}

.co-price-preview {
  flex: 1;
  min-width: 0;
}
.cpp-hint {
  font-size: .73rem;
  color: #A0AEC0;
  font-style: italic;
}
.cpp-svc {
  font-size: .65rem;
  color: var(--text-light);
  margin-bottom: .08rem;
}
.cpp-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.cpp-orig {
  font-size: .72rem;
  color: #A0AEC0;
  text-decoration: line-through;
  margin-left: .3rem;
}
.cpp-save {
  font-size: .68rem;
  color: #38A169;
  font-weight: 700;
}

.co-btn-next {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: .78rem 1.35rem;
  border-radius: 11px;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.co-btn-next:hover { background: var(--primary-light); transform: translateY(-1px); }

.co-btn-prev {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  color: var(--text-medium);
  border: 1.5px solid #E2E8F0;
  padding: .74rem 1rem;
  border-radius: 11px;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.co-btn-prev:hover { border-color: var(--primary); color: var(--primary); }

.co-btn-submit {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: linear-gradient(135deg, #1B3A8C, #00C9B1);
  color: #fff;
  border: none;
  padding: .85rem 1.25rem;
  border-radius: 11px;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.co-btn-submit:hover { opacity: .9; transform: translateY(-1px); }
.co-btn-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* ── Success Screen ──────────────────────────────────────── */
.co-success {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 4rem;
  text-align: center;
  background: #fff;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .co-row { grid-template-columns: 1fr; gap: 0; }
  .co-topbar { padding: 0 .75rem; }
  .co-scroll { padding: 1rem .85rem 6.5rem; }
  .co-map { height: 260px; }
  .co-btn-next { padding: .76rem 1rem; font-size: .83rem; }
  .co-pkg { grid-template-columns: 20px 1fr auto; padding: .8rem .85rem; }
  .co-pkg-price-now { font-size: 1rem; }
}
@media (min-width: 680px) {
  .co-scroll { padding: 1.75rem 1.5rem 6rem; }
  .co-topbar { padding: 0 1.5rem; }
  .co-foot { padding: .85rem 1.5rem; }
}

/* ════════════════════════════════════════════════════════════
   END OF CHECKOUT FLOW STYLES
   ════════════════════════════════════════════════════════════ */

/* ============================================================
   MKC Cleaning Services — Booking Page Stylesheet v3
   Premium Design · Model Photos · Countdown Timer
   ============================================================ */

/* ---- Nav Logo Image ---- */
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-logo { display: flex; align-items: center; }

/* ---- Flash Sale Banner ---- */
.flash-sale-banner {
  background: linear-gradient(135deg, #1B3A8C 0%, #2D52B5 60%, #1a3580 100%);
  color: #fff;
  padding: .85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: sticky;
  top: 72px;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(27,58,140,.25);
}
.flash-icon { font-size: 1.3rem; flex-shrink: 0; }
.flash-text { flex: 1; min-width: 200px; }
.flash-text strong { display: block; font-size: .95rem; font-weight: 700; }
.flash-text span   { font-size: .78rem; opacity: .82; }
.flash-meta { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.flash-ends { font-size: .75rem; opacity: .75; white-space: nowrap; }

.countdown-timer { display: flex; align-items: center; gap: .35rem; }
.timer-block {
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  padding: .3rem .6rem;
  text-align: center;
  min-width: 50px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.15);
}
.timer-block span  { font-size: 1.35rem; font-weight: 800; display: block; line-height: 1; font-variant-numeric: tabular-nums; }
.timer-block small { font-size: .58rem; opacity: .72; text-transform: uppercase; letter-spacing: .5px; }
.timer-sep { font-size: 1.3rem; font-weight: 800; opacity: .5; }

/* ---- Booking Hero ---- */
.booking-hero {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--primary-dark);
  padding: 0;
  margin-top: 0;
}
.booking-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
}
.booking-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,20,60,.82) 0%, rgba(10,20,60,.5) 60%, rgba(0,0,0,.2) 100%);
  z-index: 1;
}
.booking-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 5% 3rem;
  max-width: 640px;
}
.booking-hero-content h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
  line-height: 1.2;
}
.booking-hero-content p  { font-size: .95rem; color: rgba(255,255,255,.78); max-width: 440px; }
.hero-trust-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.trust-pill {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: .28rem .7rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: .3rem;
  backdrop-filter: blur(4px);
}

/* ---- Category Cards (Photo Background) ---- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.category-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  height: 260px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  transition: transform .3s ease, box-shadow .3s ease;
  display: block;
}
.category-card:hover { transform: translateY(-7px); box-shadow: 0 20px 50px rgba(0,0,0,.22); }
.category-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .45s ease;
}
.category-card:hover .category-card-img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,15,50,.88) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
}
.category-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.1rem 1.2rem 1.25rem;
  color: #fff;
  z-index: 2;
}
.category-card-name { font-size: 1.05rem; font-weight: 700; margin-bottom: .18rem; }
.category-card-tagline { font-size: .74rem; opacity: .82; margin-bottom: .6rem; }
.category-price-row { display: flex; align-items: center; gap: .45rem; flex-wrap: wrap; }
.cat-price-now  { font-size: 1.15rem; font-weight: 800; color: #00C9B1; }
.cat-price-old  { font-size: .78rem; text-decoration: line-through; opacity: .55; }
.cat-price-unit { font-size: .72rem; opacity: .7; }

/* Category badges */
.cat-badge-arrival {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: rgba(0,201,177,.92);
  color: #fff; font-size: .68rem; font-weight: 700;
  padding: .22rem .6rem; border-radius: 20px;
  display: flex; align-items: center; gap: .3rem;
}
.arrival-dot { width: 7px; height: 7px; background: #fff; border-radius: 50%; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.cat-badge-off {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  background: #E53E3E; color: #fff;
  font-size: .68rem; font-weight: 800;
  padding: .22rem .6rem; border-radius: 20px;
}
.cat-badge-popular {
  position: absolute; top: 40px; right: 12px; z-index: 3;
  background: #F6AD55; color: #744210;
  font-size: .65rem; font-weight: 800;
  padding: .2rem .5rem; border-radius: 20px;
}
.cat-badge-value {
  position: absolute; top: 40px; right: 12px; z-index: 3;
  background: #00C9B1; color: #fff;
  font-size: .65rem; font-weight: 800;
  padding: .2rem .5rem; border-radius: 20px;
}

/* ---- Trust Bar ---- */
.booking-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.5rem;
  margin-top: .5rem;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--text-medium); font-weight: 500;
}

/* ---- Success Screen ---- */
.success-check {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.checkmark-svg {
  width: 72px; height: 72px;
}
.checkmark-circle {
  stroke: #00C9B1; stroke-width: 2;
  stroke-dasharray: 166; stroke-dashoffset: 166;
  animation: stroke .6s cubic-bezier(.65,0,.45,1) forwards;
}
.checkmark-path {
  stroke: #00C9B1; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 48; stroke-dashoffset: 48;
  animation: stroke .3s cubic-bezier(.65,0,.45,1) .6s forwards;
}
@keyframes stroke { 100%{stroke-dashoffset:0} }
.success-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-top: 1.25rem; }
.btn-wa { background: #25D366; color: #fff; display: inline-flex; align-items: center; gap: .5rem; }
.btn-wa:hover { background: #20bd5a; transform: translateY(-2px); }

/* ---- Sidebar Tips with Icons ---- */
.sidebar-tip {
  display: flex; align-items: flex-start; gap: .6rem;
  background: var(--bg-section); border-radius: 10px;
  padding: .75rem .9rem; margin-bottom: .5rem;
  font-size: .8rem; color: var(--text-medium);
}
.sidebar-tip i { flex-shrink: 0; margin-top: .1rem; }

/* ---- Step Circle with Lucide icons ---- */
.step-circle i { display: block; }
.step.active .step-circle i    { color: var(--white); }
.step.completed .step-circle i { color: var(--white); }
.step-circle [data-lucide]     { width: 16px; height: 16px; }

/* ---- Booking Hero ---- */
.booking-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.booking-hero-content { position: relative; z-index: 1; }
.booking-hero h1 { font-size: clamp(1.8rem,4.5vw,2.8rem); font-weight:800; color:var(--white); margin-bottom:.5rem; }
.booking-hero p  { font-size:1rem; color:rgba(255,255,255,.72); max-width:480px; margin:0 auto; }

/* ---- Step Progress ---- */
.booking-progress {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 1.25rem 0;
  position: sticky; top:0; z-index:100;
}
.stepper {
  display:flex; align-items:center; justify-content:center;
  max-width: 640px; margin: 0 auto;
}
.step { display:flex; align-items:center; gap:.55rem; flex:1; justify-content:center; position:relative; }
.step:not(:last-child)::after {
  content:''; position:absolute; right:-50%; width:100%; height:2px;
  background:var(--border); top:19px; z-index:0; transition:background var(--transition);
}
.step.active:not(:last-child)::after, .step.completed:not(:last-child)::after { background:var(--accent); }
.step-circle {
  width:38px; height:38px; border-radius:50%; background:var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; font-weight:700; color:var(--text-light);
  transition:all var(--transition); position:relative; z-index:1; flex-shrink:0;
}
.step.active .step-circle    { background:var(--primary); color:var(--white); box-shadow:0 0 0 4px rgba(27,58,140,.18); }
.step.completed .step-circle { background:var(--accent); color:var(--white); }
.step-label { font-size:.7rem; font-weight:600; color:var(--text-light); text-transform:uppercase; letter-spacing:.5px; }
.step.active .step-label, .step.completed .step-label { color:var(--primary); }

/* ============================================================
   PHASE 0 — Category Landing  ("What are you looking for?")
   ============================================================ */
.category-landing {
  padding: 60px 0 80px;
  background: var(--bg-section);
  min-height: 80vh;
}
.category-landing-header { margin-bottom: 2.5rem; }
.category-landing-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: .3rem;
}
.category-landing-sub { font-size: .92rem; color: var(--text-medium); }

/* Promo Banner */
.promo-banner {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border: 1.5px solid #F59E0B;
  border-radius: 12px;
  padding: .85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
  font-size: .88rem;
  color: #92400E;
}
.promo-banner strong { color: #78350F; }
.promo-icon { font-size: 1.3rem; flex-shrink: 0; }

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.category-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all .3s ease;
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  position: relative;
}
.category-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,201,177,.2);
}

/* Illustration area */
.category-img-wrap {
  height: 170px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.cat-bg-1  { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); }
.cat-bg-2  { background: linear-gradient(135deg, #F0FDF4, #DCFCE7); }
.cat-bg-3  { background: linear-gradient(135deg, #FFF7ED, #FED7AA); }
.cat-bg-4  { background: linear-gradient(135deg, #FDF4FF, #F3E8FF); }
.cat-bg-5  { background: linear-gradient(135deg, #F0F9FF, #BAE6FD); }
.cat-bg-6  { background: linear-gradient(135deg, #FFF1F2, #FFE4E6); }

.category-illustration {
  font-size: 5.5rem;
  user-select: none;
  transition: transform .3s ease;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.1));
}
.category-card:hover .category-illustration { transform: scale(1.1) rotate(-4deg); }

/* "~45 mins" arrival badge */
.arrival-badge {
  position: absolute;
  bottom: 10px; left: 12px;
  background: rgba(255,255,255,.96);
  border-radius: 8px;
  padding: .28rem .65rem;
  display: flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 700;
  color: #16A34A;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.arrival-dot { width:7px; height:7px; border-radius:50%; background:#16A34A; flex-shrink:0; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(22,163,74,.4); }
  50%      { box-shadow: 0 0 0 4px rgba(22,163,74,0); }
}

/* Popular / Hot badge */
.hot-badge {
  position: absolute; top: 10px; right: 10px;
  background: #EF4444; color: white;
  font-size: .62rem; font-weight: 800;
  padding: .25rem .6rem; border-radius: 6px;
  text-transform: uppercase; letter-spacing: .5px;
}
.new-badge-cat {
  position: absolute; top: 10px; right: 10px;
  background: var(--primary); color: white;
  font-size: .62rem; font-weight: 800;
  padding: .25rem .6rem; border-radius: 6px;
  text-transform: uppercase; letter-spacing: .5px;
}

.category-info { padding: 1rem 1.1rem 1.3rem; }
.category-name { font-size: .97rem; font-weight: 700; color: var(--text-dark); margin-bottom: .2rem; }
.category-tagline { font-size: .78rem; color: var(--text-light); }
.category-price-hint {
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: .4rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.category-price-hint .hint-original {
  font-size: .75rem;
  color: #9CA3AF;
  text-decoration: line-through;
  font-weight: 400;
}

/* ============================================================
   PHASE 1 — Package Selection
   ============================================================ */
.booking-main { padding: 50px 0 80px; background: var(--bg-section); min-height: 70vh; }

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.75rem;
  align-items: start;
}

.step-panel { display:none; animation: slideIn .4s ease; }
.step-panel.active { display: block; }
@keyframes slideIn {
  from { opacity:0; transform:translateX(16px); }
  to   { opacity:1; transform:none; }
}

.panel-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

/* Back button */
.back-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .84rem; font-weight: 600; color: var(--text-medium);
  cursor: pointer; margin-bottom: 1.5rem;
  background: none; border: none; padding: 0;
  font-family: 'Poppins', sans-serif;
  transition: color var(--transition);
}
.back-btn:hover { color: var(--primary); }

.panel-title { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: .3rem; }
.panel-subtitle { font-size: .87rem; color: var(--text-medium); margin-bottom: 2rem; }

/* ---- Package Cards ---- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.package-card {
  border: 2px solid var(--border);
  border-radius: 15px;
  padding: 1.4rem;
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
  background: var(--white);
  overflow: hidden;
}
.package-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,201,177,.15); }
.package-card.selected { border-color: var(--primary); background: #F0F4FF; box-shadow: 0 0 0 3px rgba(27,58,140,.12); }
.package-card.recommended { border-color: var(--accent); }

/* Discount ribbon on card */
.discount-ribbon {
  position: absolute; top:0; right:0;
  background: linear-gradient(135deg, #EF4444, #DC2626);
  color: white; font-size: .62rem; font-weight: 800;
  padding: .32rem .7rem;
  border-radius: 0 15px 0 10px;
  letter-spacing: .4px; text-transform: uppercase;
}
.best-value-ribbon {
  position: absolute; top:0; right:0;
  background: linear-gradient(135deg, #0D9488, #059669);
  color: white; font-size: .62rem; font-weight: 800;
  padding: .32rem .7rem;
  border-radius: 0 15px 0 10px;
  letter-spacing: .4px; text-transform: uppercase;
}

.package-name { font-size: .97rem; font-weight: 800; color: var(--text-dark); margin-bottom: .35rem; margin-top: .2rem; }
.package-desc { font-size: .78rem; color: var(--text-medium); margin-bottom: .8rem; line-height: 1.6; }

.package-features { margin-bottom: .9rem; display:flex; flex-direction:column; gap:.3rem; }
.package-features li {
  font-size: .78rem; color: var(--text-medium);
  display:flex; align-items:flex-start; gap:.4rem;
}
.package-features li::before { content:'✓'; color:var(--accent); font-weight:800; flex-shrink:0; margin-top:.1rem; }

.package-pricing {
  display:flex; align-items:baseline; gap:.5rem;
  flex-wrap:wrap; margin-top:.5rem;
}
.pkg-original   { font-size:.85rem; color:#9CA3AF; text-decoration:line-through; font-weight:500; }
.pkg-discounted { font-size:1.35rem; font-weight:800; color:var(--primary); line-height:1; }
.pkg-aed        { font-size:.78rem; color:var(--text-medium); }
.pkg-save-badge {
  background:#FFF1F2; color:#EF4444;
  font-size:.66rem; font-weight:800;
  padding:.18rem .5rem; border-radius:5px;
  letter-spacing:.3px;
}

/* ---- Date/Time ---- */
.datetime-section { margin-top:1.75rem; padding-top:1.75rem; border-top:1px solid var(--border); }
.datetime-title { font-size:.95rem; font-weight:700; color:var(--text-dark); margin-bottom:1rem; }
.datetime-row   { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }

/* ---- Address Form ---- */
.form-group { margin-bottom: 1.15rem; }
.form-row   { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-label { display:block; font-size:.83rem; font-weight:600; color:var(--text-dark); margin-bottom:.36rem; }
.form-label .required { color:var(--accent); margin-left:2px; }
.form-input, .form-select, .form-textarea {
  width:100%; padding:.7rem 1rem;
  border:2px solid var(--border); border-radius:11px;
  font-family:'Poppins',sans-serif; font-size:.88rem; color:var(--text-dark);
  background:var(--white);
  transition:border-color var(--transition), box-shadow var(--transition);
  outline:none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(27,58,140,.1);
}
.form-input.error, .form-select.error { border-color:#EF4444; }
.form-error { font-size:.75rem; color:#EF4444; margin-top:.26rem; display:none; }
.form-error.visible { display:block; }
.form-select {
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 11px center; padding-right:2.4rem;
}
.form-textarea { min-height:88px; resize:vertical; }
.phone-input-wrap { position:relative; }
.phone-prefix { position:absolute; left:1rem; top:50%; transform:translateY(-50%); font-size:.88rem; font-weight:600; color:var(--text-medium); pointer-events:none; }
.phone-input-wrap .form-input { padding-left:3.8rem; }

/* ---- Step Nav ---- */
.step-nav {
  display:flex; justify-content:space-between; align-items:center;
  margin-top:1.75rem; padding-top:1.5rem; border-top:1px solid var(--border);
}
.btn-step {
  display:inline-flex; align-items:center; gap:.4rem;
  padding:.75rem 1.85rem; border-radius:50px;
  font-family:'Poppins',sans-serif; font-size:.9rem; font-weight:600;
  cursor:pointer; border:none; transition:all var(--transition);
}
.btn-back   { background:transparent; color:var(--text-medium); border:2px solid var(--border); }
.btn-back:hover { border-color:var(--primary); color:var(--primary); }
.btn-next   { background:var(--primary); color:var(--white); box-shadow:0 4px 15px rgba(27,58,140,.28); }
.btn-next:hover  { background:var(--primary-light); transform:translateY(-2px); }
.btn-submit { background:linear-gradient(135deg,var(--accent),var(--accent-dark)); color:var(--white); box-shadow:0 4px 20px rgba(0,201,177,.4); padding:.85rem 2.5rem; }
.btn-submit:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(0,201,177,.5); }

/* ---- Sidebar Summary ---- */
.booking-summary {
  background:var(--white); border-radius:18px;
  border:1px solid var(--border); box-shadow:var(--shadow-sm);
  position:sticky; top:88px; overflow:hidden;
}
.summary-header { background:linear-gradient(135deg,var(--primary-dark),var(--primary)); padding:1.3rem 1.4rem; }
.summary-header h3 { font-size:.92rem; font-weight:700; color:var(--white); }
.summary-header p  { font-size:.76rem; color:rgba(255,255,255,.6); }
.summary-body { padding:1.2rem 1.4rem; }
.summary-row {
  display:flex; align-items:flex-start; justify-content:space-between;
  padding:.55rem 0; border-bottom:1px dashed var(--border); font-size:.81rem;
}
.summary-row:last-child { border-bottom:none; }
.summary-row-label { color:var(--text-light); display:flex; align-items:center; gap:.35rem; flex-shrink:0; margin-right:.5rem; }
.summary-row-value { font-weight:600; color:var(--text-dark); text-align:right; font-size:.83rem; }

.summary-price-box {
  background:linear-gradient(135deg,#F0F4FF,#E8FDF9);
  border-radius:12px; padding:.9rem 1rem; margin-top:.75rem;
  border:1px solid rgba(27,58,140,.08);
}
.summary-price-label { font-size:.75rem; color:var(--text-medium); font-weight:600; margin-bottom:.3rem; }
.summary-original   { font-size:.82rem; color:#9CA3AF; text-decoration:line-through; }
.summary-discounted { font-size:1.4rem; font-weight:800; color:var(--primary); line-height:1.1; }
.summary-you-save   { font-size:.75rem; color:#16A34A; font-weight:600; margin-top:.2rem; }

.sidebar-tip {
  background:var(--bg-section); border-radius:10px;
  padding:.8rem 1rem; margin-top:.75rem;
  font-size:.77rem; color:var(--text-medium);
  display:flex; gap:.5rem; line-height:1.6;
}

/* ---- Order Review in Step 3 ---- */
.order-review-box {
  background:var(--bg-light); border:1px solid var(--border);
  border-radius:12px; padding:1.2rem; margin-top:1.2rem;
}
.order-review-title { font-size:.83rem; font-weight:700; color:var(--primary); margin-bottom:.75rem; }
.orv-row { display:flex; justify-content:space-between; align-items:baseline; padding:.35rem 0; border-bottom:1px dashed var(--border); font-size:.83rem; }
.orv-row:last-child { border-bottom:none; }
.orv-label { color:var(--text-light); }
.orv-value { font-weight:600; color:var(--text-dark); }
.orv-price-row { margin-top:.5rem; padding:.65rem .75rem; background:var(--white); border-radius:8px; border:1px solid var(--border); display:flex; justify-content:space-between; align-items:center; }
.orv-price-discounted { font-size:1.2rem; font-weight:800; color:var(--primary); }
.orv-price-original   { font-size:.82rem; color:#9CA3AF; text-decoration:line-through; }

/* ---- Success ---- */
.success-screen { display:none; text-align:center; padding:4rem 2rem; }
.success-screen.active { display:block; }
.success-icon {
  width:96px; height:96px;
  background:linear-gradient(135deg,var(--accent),#059669);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:2.5rem; margin:0 auto 2rem;
  animation:scaleIn .5s ease;
  box-shadow:0 10px 40px rgba(0,201,177,.4);
}
@keyframes scaleIn { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.success-title   { font-size:1.7rem; font-weight:800; color:var(--primary); margin-bottom:.6rem; }
.success-message { font-size:.95rem; color:var(--text-medium); max-width:400px; margin:0 auto 1.75rem; line-height:1.75; }
.success-ref     { display:inline-block; background:var(--bg-light); border:1px solid var(--border); border-radius:10px; padding:.7rem 1.5rem; font-size:.9rem; font-weight:700; color:var(--primary); margin-bottom:2rem; }

/* ---- Responsive ---- */
@media(max-width:1024px) {
  .booking-layout      { grid-template-columns:1fr; }
  .booking-summary     { position:static; }
  .category-grid       { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:640px) {
  .category-grid       { grid-template-columns:1fr; }
  .packages-grid       { grid-template-columns:1fr; }
  .form-row            { grid-template-columns:1fr; }
  .datetime-row        { grid-template-columns:1fr; }
  .panel-card          { padding:1.25rem; }
  .step-info           { display:none; }
}
