:root {
  --brand: #0ea5e9;
  --brand-2: #22d3ee;
  --brand-3: #0284c7;
  --text: #0b1220;
  --muted: #5b6b86;
  --bg: #f4f7fb;
  --card: rgba(255, 255, 255, 0.9);
  --card-strong: rgba(255, 255, 255, 0.98);
  --border: rgba(100, 116, 139, 0.25);
  --shadow: 0 18px 55px rgba(2, 6, 23, 0.12);
  --shadow-soft: 0 10px 28px rgba(2, 6, 23, 0.08);
  --ring: rgba(14, 165, 233, 0.35);
}

/* ---------- BASE ---------- */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  font-size: 0.94rem; /* ďż˝xďż˝ ĐłĐ»Đ°Đ˛Đ˝ďż˝9Đą scale Đ˛ŃĐµĐłĐľ UI */

  background:
    linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.42)
    ),
    url('/images/cleaners-light.jpg') center / cover fixed no-repeat;

  background-color: var(--bg);
}

/* ---------- GLASS ---------- */

.glass {
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.glass-strong {
  background: var(--card-strong);
  border: 1px solid rgba(148, 163, 184, 0.45);
  backdrop-filter: blur(18px);
}

.card {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

/* ---------- BUTTONS ---------- */

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  border-radius: 16px;
  font-weight: 800;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  box-shadow: 0 14px 32px rgba(0, 146, 255, .20);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn-soft {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 16px;
  font-weight: 800;
  transition: transform .15s ease, background .15s ease;
}

.btn-soft:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 0.06);
}

/* ---------- BADGES / INPUT ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(0, 146, 255, .09);
  border: 1px solid rgba(0, 146, 255, .16);
  color: rgba(15, 23, 42, .92);
  font-weight: 800;
  font-size: .78rem;
}

.input {
  width: 100%;
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(148,163,184,.55);
  padding: .75rem .9rem;
  font-weight: 600;
  outline: none;
}

.input:focus {
  border-color: rgba(0, 146, 255, .55);
  box-shadow: 0 0 0 6px rgba(0, 146, 255, .12);
}

.help {
  color: var(--muted);
  font-size: .85rem;
}

/* ---------- SECTION HEADERS ---------- */

.section-kicker {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(100, 116, 139, 0.95);
  font-weight: 800;
}

.section-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text);
  margin-top: .2rem;
}

/* ---------- EXTRAS PANEL ---------- */

.extra-panel {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 22px;
  padding: 18px;
}

.extra-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.extra-group {
  margin-top: 14px;
}

.extra-group-title {
  font-size: .82rem;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.75);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
}

.extra-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 16px;
  padding: .7rem .9rem;
  font-weight: 800;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.extra-card:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 146, 255, .35);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
}

.extra-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--text);
  flex: 1 1 220px;
  min-width: 0;
}

.extra-label > span {
  overflow-wrap: anywhere;
}

.extra-label svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
}

.extra-controls {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 1 auto;
  min-width: 0;
}

.extra-qty {
  width: 72px;
  border-radius: 12px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(148,163,184,.55);
  padding: .45rem .55rem;
  font-weight: 700;
}

.extra-qty.is-hidden {
  display: none;
}

.extra-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.extra-controls-double {
  gap: 8px 12px;
}

/* ---------- SERVICE CARDS (KEY PART) ---------- */

.type-card {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: 74px;              /* ďż˝S& ĐľĐ´Đ¸Đ˝Đ°ĐşĐľĐ˛Đ°ŃŹ Đ˛ďż˝9ŃĐľďż˝Đ° */
  padding: 10px 12px;            /* ďż˝S& ĐşĐľĐĽĐżĐ°Đşďż˝Đ˝ĐµĐµ */

  border-radius: 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(148,163,184,.35);

  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.type-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.10);
  border-color: rgba(0, 146, 255, .22);
}

.type-card.is-active {
  border-color: rgba(0, 146, 255, .45);
  box-shadow: 0 18px 50px rgba(0, 146, 255, .14);
}

/* LEFT SIDE */
.type-card .type-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;                  /* ďż˝xďż˝ Đ˛Đ°Đ¶Đ˝Đľ Đ´Đ»ŃŹ Đ´Đ»Đ¸Đ˝Đ˝ďż˝9ďż˝& ŃŹĐ·ďż˝9ĐşĐľĐ˛ */
}

.type-card svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
  flex-shrink: 0;
}

/* TEXT WRAP */
.type-card .type-left span {
  display: block;
  line-height: 1.15;
  word-break: break-word;
}

/* ---------- MISC ---------- */

.hr-soft {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(148,163,184,.55),
    transparent
  );
}

.kbd {
  font-family: ui-monospace, monospace;
  font-size: .75rem;
  padding: .15rem .45rem;
  border-radius: 10px;
  background: rgba(2, 6, 23, 0.05);
  border: 1px solid rgba(2, 6, 23, 0.08);
}

/* ---------- UX REFRESH OVERRIDES ---------- */

body {
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(34, 211, 238, 0.22), transparent 60%),
    radial-gradient(900px 600px at 90% 0%, rgba(14, 165, 233, 0.2), transparent 55%),
    radial-gradient(700px 420px at 20% 90%, rgba(2, 132, 199, 0.16), transparent 60%),
    linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.42)
    ),
    url('/images/cleaners-light.jpg') center / cover fixed no-repeat;
  background-color: var(--bg);
}

h1, h2, h3, .section-title {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: -0.015em;
}

*::selection {
  background: rgba(14, 165, 233, 0.18);
}

.glass {
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.glass-strong {
  background: var(--card-strong);
  border: 1px solid rgba(100, 116, 139, 0.3);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.card {
  border-radius: 22px;
  box-shadow: var(--shadow);
}

/* Slightly narrower overall page containers to reveal more background */
.max-w-6xl { max-width: 58.3rem; } /* another 10% smaller */
.max-w-7xl { max-width: 64.8rem; } /* another 10% smaller */

.btn-primary {
  box-shadow: 0 16px 34px rgba(14, 165, 233, .25);
}

.btn-primary:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.btn-primary:focus-visible,
.btn-soft:focus-visible,
.input:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.btn-soft {
  background: rgba(15, 23, 42, 0.035);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.btn-soft:hover {
  background: rgba(15, 23, 42, 0.07);
}

.badge {
  background: rgba(14, 165, 233, .1);
  border: 1px solid rgba(14, 165, 233, .22);
}

.input {
  border: 1px solid rgba(100,116,139,.35);
  padding: .8rem .95rem;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.input:focus {
  border-color: rgba(14, 165, 233, .55);
  box-shadow: 0 0 0 6px rgba(14, 165, 233, .12);
  transform: translateY(-1px);
}

.input::placeholder {
  color: rgba(100, 116, 139, 0.7);
}

.section-kicker {
  color: rgba(71, 85, 105, 0.92);
}

.section-title {
  font-size: 1.2rem;
}

.extra-panel {
  border: 1px solid rgba(100, 116, 139, 0.28);
}

.extra-card {
  border: 1px solid rgba(100, 116, 139, 0.28);
}

.extra-card:hover {
  border-color: rgba(14, 165, 233, .35);
}

.extra-label svg,
.type-card svg {
  color: var(--brand-3);
}

.type-card {
  border: 1px solid rgba(100,116,139,.3);
}

.type-card:hover {
  border-color: rgba(14, 165, 233, .28);
}

.type-card.is-active {
  border-color: rgba(14, 165, 233, .5);
  box-shadow: 0 18px 50px rgba(14, 165, 233, .16);
}

/* Keep service type rows visually centered across languages/text lengths */
.type-card .type-left {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  column-gap: 10px;
  width: 100%;
}

.type-card .type-left > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 38px;
}

.type-card .type-left > span > span:first-child {
  line-height: 1.2;
}

.type-card .type-left > span > span:last-child {
  line-height: 1.2;
}

.hr-soft {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(148,163,184,.5),
    transparent
  );
}

.kbd {
  background: rgba(2, 6, 23, 0.06);
  border: 1px solid rgba(2, 6, 23, 0.1);
}

.table-clean thead th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.table-clean tbody tr:hover {
  background: rgba(14, 165, 233, 0.04);
}

.table-clean td,
.table-clean th {
  padding-left: 0.2rem;
}

.reveal {
  animation: fadeUp .5s ease both;
}

.reveal-delayed {
  animation: fadeUp .7s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-google {
  background: transparent;
  border: 2px solid rgba(15, 23, 42, 0.35);
  border-radius: 999px;
  color: #111827;
  font-weight: 800;
  box-shadow: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.btn-google:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.5);
  box-shadow: none;
}

.btn-google:active {
  transform: translateY(0);
}

/* ---------- REDUCED MOTION ---------- */

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ---------- COMPACT SCALE (NO ZOOM) ---------- */

body {
  font-size: 0.9rem;
}

.text-6xl { font-size: 2.85rem; line-height: 1.05; }
.text-5xl { font-size: 2.35rem; line-height: 1.08; }
.text-4xl { font-size: 1.95rem; line-height: 1.1; }
.text-3xl { font-size: 1.6rem; line-height: 1.15; }
.text-2xl { font-size: 1.45rem; line-height: 1.2; }
.text-xl { font-size: 1.1rem; line-height: 1.25; }
.text-lg { font-size: 1.0rem; line-height: 1.4; }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.72rem; }

.btn-primary,
.btn-soft {
  padding: 0.6rem 0.95rem;
  border-radius: 12px;
  font-size: 0.9rem;
}

.btn-primary.text-lg,
.btn-soft.text-lg {
  font-size: 0.95rem;
  padding: 0.75rem 1.05rem;
}

.btn-primary.text-center,
.btn-soft.text-center {
  font-size: 0.95rem;
}

.input {
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
}

.badge {
  font-size: 0.68rem;
  padding: 0.35rem 0.65rem;
}

.card {
  border-radius: 24px;
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
}

.floating-btn:hover {
  transform: translateY(-1px);
}

.floating-btn.phone {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #fff;
  border: none;
}

.floating-btn.whatsapp {
  background: #22c55e;
  color: #fff;
  border: none;
}

.launch-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.18), rgba(34, 211, 238, 0.2));
  border: 1px solid rgba(2, 132, 199, 0.25);
  color: #0f172a;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.12);
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 24px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: #0284c7;
}

.booking-panel {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 20px;
  padding: 14px;
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.input-date,
.input-time {
  font-size: 0.95rem;
  font-weight: 700;
}

.input-date-native {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, 0.34);
  background:
    linear-gradient(135deg, rgba(240, 249, 255, 0.92), rgba(236, 254, 255, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 10px 24px rgba(14, 165, 233, 0.08);
  min-height: 50px;
  padding-left: 14px;
  padding-right: 46px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #0f172a;
}

.input-date-native::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.9;
}

.input-date-native:focus {
  border-color: rgba(14, 165, 233, 0.68);
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.12), 0 14px 28px rgba(14, 165, 233, 0.14);
}

.date-chip {
  border: 1px solid rgba(2, 132, 199, 0.25);
  background: rgba(240, 249, 255, 0.9);
  color: #0c4a6e;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
  transition: transform .15s ease, background .15s ease;
}

.date-chip:hover {
  transform: translateY(-1px);
  background: rgba(224, 242, 254, 1);
}

.pretty-date-picker {
  position: relative;
}

.pretty-date-trigger {
  width: 100%;
  min-height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(14, 165, 233, 0.34);
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.92), rgba(236, 254, 255, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 10px 24px rgba(14, 165, 233, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0.72rem 0.95rem;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 800;
}

.pretty-date-trigger svg {
  width: 18px;
  height: 18px;
  color: #0369a1;
}

.pretty-date-trigger:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.pretty-date-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  min-width: 280px;
  z-index: 40;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.18);
  padding: 10px;
}

.pretty-date-head {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 8px;
}

.pretty-date-month {
  text-align: center;
  font-weight: 900;
  color: #0f172a;
}

.pretty-date-nav {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #fff;
  color: #0f172a;
  font-size: 22px;
  line-height: 1;
}

.pretty-date-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pretty-date-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: 10px;
  margin-bottom: 6px;
}

.pretty-date-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pretty-date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.pretty-date-day {
  height: 34px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.88rem;
}

.pretty-date-day:hover {
  border-color: rgba(14, 165, 233, 0.45);
  background: rgba(224, 242, 254, 0.6);
}

.pretty-date-day.is-muted {
  color: #94a3b8;
}

.pretty-date-day.is-disabled {
  color: #cbd5e1;
  cursor: not-allowed;
}

.pretty-date-day.is-selected {
  border-color: rgba(2, 132, 199, 0.58);
  background: rgba(14, 165, 233, 0.2);
  color: #075985;
}

.pretty-date-day.has-discount {
  border-color: rgba(16, 185, 129, 0.45);
  background-image: linear-gradient(to bottom, rgba(16, 185, 129, 0.1), rgba(255, 255, 255, 0.8));
  position: relative;
}

.pretty-date-day.has-discount::after {
  content: '-' attr(data-discount) '%';
  position: absolute;
  right: 3px;
  bottom: 2px;
  font-size: 0.58rem;
  line-height: 1;
  color: #047857;
  font-weight: 800;
}

@media (min-width: 768px) {
  .floating-actions {
    right: 24px;
    bottom: 24px;
  }
}
