/* ── Cleanzy Booking Form Styles ── */
#cleanzy-wrap {
  font-family: 'Segoe UI', Arial, sans-serif;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px 60px;
  color: #1a1a1a;
}

/* Progress Bar */
#cz-progress-bar {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  margin-bottom: 24px;
  overflow: hidden;
}
#cz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border-radius: 3px;
  width: 7.69%; /* 1/13 */
  transition: width 0.4s ease;
}

/* Back Button */
#cz-back-btn {
  background: none;
  border: none;
  color: #2563eb;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
#cz-back-btn:hover { color: #1d4ed8; }

/* Layout */
#cz-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
#cz-form-area { flex: 1; min-width: 0; }

/* Steps */
.cz-step { display: none; }
.cz-step.active { display: block; animation: czFadeIn 0.3s ease; }
@keyframes czFadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

/* Headings */
.cz-step h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px;
  text-align: center;
}
.cz-sub {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  margin: 0 0 24px;
}

/* ── STEP 1 Hero ── */
.cz-hero { text-align: center; padding: 40px 20px; }
.cz-hero-icon { font-size: 64px; margin-bottom: 16px; }
.cz-hero h2 { font-size: 28px; margin-bottom: 8px; }
.cz-hero p  { color: #6b7280; margin-bottom: 24px; }
.cz-address-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  background: #fff;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.cz-address-row input {
  border: none;
  outline: none;
  font-size: 15px;
  flex: 1;
  color: #333;
}

/* ── Buttons ── */
.cz-btn-primary, .cz-btn-sec, .cz-btn-book {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.cz-btn-primary {
  background: #1e3a8a;
  color: #fff;
}
.cz-btn-primary:hover { background: #1d4ed8; }
.cz-btn-sec {
  background: #e5e7eb;
  color: #6b7280;
}
.cz-btn-sec:not([disabled]) {
  background: #1e3a8a;
  color: #fff;
}
.cz-btn-sec:not([disabled]):hover { background: #1d4ed8; }
.cz-btn-sec[disabled] { cursor: not-allowed; }
.cz-btn-book {
  background: #1e3a8a;
  color: #fff;
  margin-top: 20px;
  font-size: 18px;
  padding: 16px;
  max-width: 100%;
}
.cz-btn-book:hover { background: #1d4ed8; }
.cz-btn-book:disabled { background: #93c5fd; cursor: not-allowed; }

/* ── Service List ── */
.cz-service-list { display: flex; flex-direction: column; gap: 2px; }
.cz-svc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  transition: all 0.15s;
  font-size: 15px;
}
.cz-svc-item:hover { border-color: #2563eb; background: #eff6ff; }
.cz-svc-ico { font-size: 22px; width: 32px; text-align: center; }
.cz-svc-item span:nth-child(2) { flex: 1; }
.cz-arr { color: #9ca3af; font-size: 20px; font-weight: 300; }

/* ── Property Type ── */
.cz-prop-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}
.cz-prop-card {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 24px 32px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  transition: all 0.15s;
  font-size: 14px;
  font-weight: 600;
}
.cz-prop-card:hover, .cz-prop-card.selected {
  border-color: #2563eb;
  background: #eff6ff;
  color: #2563eb;
}
.cz-prop-ico { font-size: 40px; margin-bottom: 10px; }

/* ── List Items ── */
.cz-list { display: flex; flex-direction: column; gap: 2px; }
.cz-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  transition: all 0.15s;
  gap: 12px;
}
.cz-list-item:hover { border-color: #2563eb; background: #eff6ff; }
.cz-list-desc { font-size: 12px; color: #6b7280; margin-top: 2px; }

/* ── Bathrooms Grid ── */
.cz-bath-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.cz-bath-card {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s;
}
.cz-bath-card:hover, .cz-bath-card.selected {
  border-color: #2563eb;
  background: #eff6ff;
  color: #2563eb;
}
.cz-bath-ico { font-size: 28px; margin-bottom: 8px; }

/* ── Sq Footage Grid ── */
.cz-sqft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.cz-sqft-opt {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  transition: all 0.15s;
}
.cz-sqft-opt:hover, .cz-sqft-opt.selected {
  border-color: #2563eb;
  background: #eff6ff;
  color: #2563eb;
}

/* ── Flooring ── */
.cz-floor-grid {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cz-floor-opt {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  background: #fff;
  transition: all 0.15s;
}
.cz-floor-opt:hover, .cz-floor-opt.selected {
  border-color: #2563eb;
  background: #eff6ff;
  color: #2563eb;
}

/* ── How Heard ── */
.cz-hear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.cz-hear-opt {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  background: #fff;
  transition: all 0.15s;
}
.cz-hear-opt:hover, .cz-hear-opt.selected {
  border-color: #2563eb;
  background: #eff6ff;
  color: #2563eb;
}

/* ── Textarea ── */
#cz_notes {
  width: 100%;
  box-sizing: border-box;
  padding: 14px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  margin-bottom: 20px;
  color: #333;
}
#cz_notes:focus { outline: none; border-color: #2563eb; }

/* ── Date Time ── */
.cz-datetime-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  justify-content: center;
}
.cz-input-group { display: flex; flex-direction: column; gap: 6px; }
.cz-input-group label { font-size: 13px; font-weight: 600; color: #374151; }
.cz-input-group input {
  padding: 12px 14px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
}
.cz-input-group input:focus { outline: none; border-color: #2563eb; }

/* ── Full Inputs ── */
.cz-full-input {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 16px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  font-family: inherit;
}
.cz-full-input:focus { outline: none; border-color: #2563eb; }

/* ── Contact Form ── */
.cz-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cz-two-col input {
  padding: 13px 16px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}
.cz-two-col input:focus { outline: none; border-color: #2563eb; }
#cz_full_name { margin-top: 12px; }

.cz-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4b5563;
  cursor: pointer;
}
.cz-check-row input[type="checkbox"] { width: 16px; height: 16px; cursor: pointer; }

/* ── Messages ── */
.cz-msg {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
}
.cz-error   { background: #fef2f2; color: #dc2626; border: 1px solid #fca5a5; }
.cz-success { background: #f0fdf4; color: #16a34a; border: 1px solid #86efac; }

/* ── Thank You ── */
.cz-thankyou {
  text-align: center;
  padding: 60px 20px;
}
.cz-ty-icon { font-size: 72px; margin-bottom: 20px; }
.cz-thankyou h2 { font-size: 28px; color: #16a34a; margin-bottom: 12px; }
.cz-thankyou p { color: #6b7280; font-size: 16px; line-height: 1.6; }

/* ── Summary Sidebar ── */
#cz-summary {
  width: 240px;
  flex-shrink: 0;
}
#cz-summary-inner {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  top: 80px;
}
.cz-sum-service {
  font-size: 16px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 8px;
}
.cz-sum-detail {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 4px;
}
.cz-divider { border: none; border-top: 1px solid #e5e7eb; margin: 14px 0; }
.cz-sum-loc {
  font-size: 13px;
  color: #374151;
  margin-bottom: 6px;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  #cz-layout { flex-direction: column; }
  #cz-summary { width: 100%; }
  #cz-summary-inner { position: static; }
  .cz-two-col { grid-template-columns: 1fr; }
  .cz-hear-grid { grid-template-columns: repeat(2, 1fr); }
  .cz-sqft-grid { grid-template-columns: repeat(2, 1fr); }
  .cz-prop-grid { flex-direction: column; }
  .cz-datetime-row { flex-direction: column; align-items: center; }
}

/* ── Google Places Autocomplete Dropdown ── */
.cz-autocomplete-list {
  position: relative;
  z-index: 9999;
  background: #fff;
  border: 1px solid #d1d5db;
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  max-width: 400px;
  margin: -2px auto 0;
  display: none;
  overflow: hidden;
}
.cz-autocomplete-list.active {
  display: block;
}
.cz-autocomplete-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.12s;
}
.cz-autocomplete-item:last-child { border-bottom: none; }
.cz-autocomplete-item:hover, .cz-autocomplete-item.highlighted {
  background: #eff6ff;
  color: #1e3a8a;
}
.cz-autocomplete-item .cz-ac-icon {
  font-size: 16px;
  flex-shrink: 0;
  color: #6b7280;
}
.cz-autocomplete-item .cz-ac-main {
  font-weight: 600;
  color: #111;
}
.cz-autocomplete-item .cz-ac-secondary {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 1px;
}
.cz-autocomplete-powered {
  padding: 6px 12px;
  text-align: right;
  font-size: 11px;
  color: #9ca3af;
  background: #f9fafb;
}
/* Step 12 service address – full width dropdown */
#cz_service_address_suggestions {
  max-width: 100%;
}
