/* Extracted from Home view. */

:root {
  --green: #2f8f55;
  --green2: #39b54a;
  --deep: #071633;
  --navy: #0b214d;
  --mint: #eaf7ef;
  --cream: #fbf7ef;
  --text: #101828;
  --muted: #667085;
  --border: #dfe6ef;
  --white: #fff;
  --shadow: 0 18px 45px rgba(8, 22, 50, 0.1);
  --radius: 22px;
  --orange: #f4a261;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
section,
#booking {
  scroll-margin-top: 104px;
}
body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 21px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(47, 143, 85, 0.25);
  border: 0;
  cursor: pointer;
}
.btn.alt {
  background: white;
  color: var(--green);
  box-shadow: none;
  border: 1px solid rgba(47, 143, 85, 0.24);
}
header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 247, 239, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47, 143, 85, 0.15);
}
.nav {
  max-width: 1220px;
  margin: auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--deep);
  font-size: 23px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--green), #8ccfb7);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
}
.logo span {
  color: var(--green);
}
nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
}
.mobile-nav-actions {
  display: none;
}
.phone {
  font-weight: 900;
  color: var(--deep);
}
.phone small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero {
  width: 100%;
  max-width: none;
  margin: auto;
  min-height: calc(100svh - 74px);
  padding: clamp(42px, 6vh, 82px) clamp(22px, 3.2vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.92fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  align-content: center;
}
.hero > div:first-child {
  width: 100%;
  max-width: 850px;
}
.pill {
  display: inline-flex;
  background: var(--mint);
  color: var(--green);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 18px;
}
h1 {
  max-width: 820px;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.06;
  color: var(--deep);
  letter-spacing: -2px;
  margin-bottom: 22px;
}
.hero p {
  font-size: 19px;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 570px;
}
.stat {
  background: white;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.stat strong {
  display: block;
  font-size: 25px;
  color: var(--green);
}
.hero-card {
  background: white;
  border-radius: 36px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: hero-card-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}
.hero-card:before {
  content: '';
  position: absolute;
  width: 230px;
  height: 230px;
  background: var(--mint);
  border-radius: 50%;
  right: -70px;
  top: -70px;
}
.mock-img {
  min-height: 360px;
  height: clamp(360px, 55vh, 620px);
  border-radius: 28px;
  background: linear-gradient(145deg, #dff3ec, #fff);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  z-index: 1;
  display: block;
  background: var(--mint);
}
.mock-img .floating {
  z-index: 3;
}
.floating {
  position: absolute;
  background: white;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  font-weight: 800;
  color: var(--deep);
  animation: hero-float 5s ease-in-out infinite;
}
.f1 {
  left: 18px;
  top: 36px;
  animation-delay: 700ms;
}
.f2 {
  right: 18px;
  bottom: 34px;
  animation-delay: 1.4s;
}
.f3 {
  left: 28px;
  bottom: 98px;
  animation-delay: 2.1s;
}
@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-card-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero > div:first-child {
  animation: hero-copy-in 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  .hero > div:first-child,
  .hero-card,
  .floating {
    animation: none;
  }
}
section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 58px 22px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}
h2 {
  font-size: 38px;
  line-height: 1.1;
  color: var(--deep);
  letter-spacing: -1px;
}
.section-head p {
  max-width: 530px;
  color: var(--muted);
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: white;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(47, 143, 85, 0.08);
}
.icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--mint);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}
h3 {
  font-size: 22px;
  color: var(--deep);
  margin-bottom: 8px;
}
.card p,
.card li {
  color: var(--muted);
  font-size: 15px;
}
.card ul {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.card li:before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}
.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.price-card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.price-card.featured {
  background: var(--deep);
  color: white;
  transform: translateY(-8px);
}
.price-card.featured h3,
.price-card.featured .price {
  color: white;
}
.price-card.featured p,
.price-card.featured li {
  color: #d8eee7;
}
.price {
  font-size: 30px;
  font-weight: 900;
  color: var(--green);
  margin: 14px 0;
}
.booking-shell {
  background: white;
  border-radius: 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(7, 22, 51, 0.08);
}
.booking-top {
  background: linear-gradient(90deg, var(--deep), #020817);
  color: white;
  padding: 26px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.booking-top h2 {
  color: white;
  font-size: 32px;
}
.booking-top p {
  color: #dbe7ff;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 22px 30px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.step {
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 20px;
  width: 35%;
  height: 1px;
  background: #aab5c8;
}
.circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #8792a5;
  font-weight: 900;
}
.step.done .circle,
.step.active .circle {
  background: var(--green);
}
.step strong {
  display: block;
  font-size: 14px;
}
.step small {
  color: var(--muted);
  font-size: 12px;
}
.booking-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 30px;
  padding: 30px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.selector-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.tab {
  border: 1px solid var(--border);
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
}
.tab input {
  accent-color: var(--green);
}
.tab.active {
  border-color: var(--green);
  background: var(--mint);
}
.panel {
  display: none;
}
.panel.active {
  display: block;
}
.vat-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 15px;
  background: white;
  font-weight: 800;
  color: #24324d;
  margin-bottom: 18px;
}
.vat-badge span {
  background: var(--green);
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 13px;
}
.task-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}
.category {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(10, 30, 70, 0.04);
}
.cat-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.cat-title .cat-icon {
  font-size: 25px;
}
.task {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}
.task input {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
  cursor: pointer;
}
.task .price2 {
  font-weight: 900;
  color: #061633;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.choice {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  background: #fbfffd;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.choice input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--green);
}
.choice strong {
  display: block;
  color: var(--deep);
}
.choice span {
  font-size: 13px;
  color: var(--muted);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid #d8e3df;
  background: #fbfffd;
}
.full {
  grid-column: 1/-1;
}
.extras {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.mini-title {
  font-weight: 900;
  color: var(--deep);
  margin: 18px 0 8px;
}
.note {
  margin-top: 16px;
  border: 1px solid #cfe0ff;
  background: #f2f7ff;
  border-radius: 10px;
  padding: 14px;
  color: #263b63;
  font-size: 14px;
}
aside {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  height: max-content;
  position: sticky;
  top: 96px;
  overflow: hidden;
}
.summary-head {
  padding: 22px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.summary-heading {
  min-width: 0;
}
.summary-eyebrow {
  display: block;
  margin-bottom: 3px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.summary-head h3 {
  font-size: 18px;
  margin: 0;
  line-height: 1.25;
}
.summary-heading p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.count {
  flex: 0 0 30px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.selected {
  padding: 16px 20px;
  min-height: 145px;
}
.selected-item {
  display: grid;
  grid-template-columns: 1fr auto 24px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fbfcfe;
  font-size: 14px;
}
.remove {
  border: 0;
  background: #f2f4f7;
  font-size: 20px;
  color: #6f7890;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: 0.18s ease;
}
.remove:hover {
  background: #fee2e2;
  color: #b42318;
  transform: scale(1.05);
}
.empty {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  padding: 20px 0;
}
.totals {
  padding: 18px 20px;
  border-top: 1px solid var(--border);
}
.row {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  color: #26334d;
}
.totals > .row {
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
}
.totals > .row > span {
  flex: 1 1 auto;
  white-space: nowrap;
}
.totals > .row > strong {
  flex: 0 0 auto;
  white-space: nowrap;
  text-align: center;
}
.total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 14px;
  font-size: 22px;
  font-weight: 900;
  color: var(--green);
}
.green-note {
  margin: 18px 0;
  padding: 14px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: #f3fbf4;
  color: #1a6330;
  font-weight: 800;
}
.green-note small {
  display: block;
  color: #42624a;
  font-weight: 500;
  margin-top: 3px;
}
.continue,
.download {
  width: 100%;
  background: linear-gradient(90deg, var(--green), var(--green2));
  color: white;
  border: 0;
  border-radius: 10px;
  padding: 15px;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
}
.booking-form {
  display: none;
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  background: #fbfcfe;
}
.booking-form.is-visible {
  display: block;
}
.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 7px 0 12px;
}
.secure {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding: 18px;
  background: #fbfcfe;
  border-top: 1px solid var(--border);
}
.benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.benefit {
  display: flex;
  gap: 12px;
  align-items: center;
  background: white;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(8, 22, 50, 0.05);
}
.bicon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e6f6e9;
  display: grid;
  place-items: center;
}
.benefit strong {
  font-size: 14px;
}
.benefit small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}
footer {
  background: #102820;
  color: #d8eee7;
  margin-top: 50px;
}
.home-cta {
  max-width: 1220px;
  margin: 50px auto 0;
  padding: 0 22px 58px;
}
.home-cta__content {
  padding: 42px 48px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--deep), #0d3a2a);
  box-shadow: var(--shadow);
  color: #fff;
  text-align: center;
}
.home-cta__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #bce8cf;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.home-cta h2 {
  color: #fff;
  font-size: 34px;
  margin: 0 auto 10px;
}
.home-cta p {
  max-width: 650px;
  margin: 0 auto;
  color: #d8eee7;
}
.home-cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.home-cta__actions .btn.alt {
  color: var(--deep);
}
.foot {
  max-width: 1220px;
  margin: auto;
  padding: 36px 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.foot strong {
  color: white;
}

.clean-block {
  margin: 18px 0 20px;
}
.clean-block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--deep);
  margin-bottom: 10px;
}
.mobile-collapse-toggle {
  display: none;
}
.option-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 12px;
}
.option-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px;
  background: #fff;
  cursor: pointer;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 88px;
  transition: 0.18s ease;
}
.option-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(8, 22, 50, 0.07);
}
.option-card input {
  margin-top: 4px;
  accent-color: var(--green);
}
.option-card strong {
  display: block;
  color: var(--deep);
  font-size: 15px;
}
.option-card span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}
.option-card .emoji {
  font-size: 24px;
  line-height: 1;
}
.option-card:has(input:checked) {
  border-color: var(--green);
  background: var(--mint);
  box-shadow: 0 10px 24px rgba(47, 143, 85, 0.11);
}
.clean-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 10px;
}
.clean-extra {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.clean-extra input {
  accent-color: var(--green);
}
.clean-extra strong {
  font-size: 14px;
  color: var(--deep);
}
.clean-extra small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.clean-extra .price2 {
  font-weight: 900;
  color: var(--deep);
}
.clean-extra:has(input:checked) {
  border-color: var(--green);
  background: #f3fbf4;
}
.helper-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 15px 0;
}
.helper {
  border: 1px dashed #cfe0d7;
  background: #fbfffd;
  border-radius: 14px;
  padding: 12px;
  color: #315347;
  font-size: 13px;
}
.helper strong {
  display: block;
  color: var(--green);
  font-size: 14px;
}
@media (max-width: 1050px) {
  .hero,
  .booking-body {
    grid-template-columns: 1fr;
  }
  .task-grid {
    grid-template-columns: 1fr;
  }
  aside {
    position: static;
  }
  .grid3,
  .pricing {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .step::after {
    display: none;
  }
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

.included {
  margin-top: 10px;
  background: #f8fbf9;
  border: 1px solid #e1ece7;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12.5px;
  color: var(--deep);
}
.included summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--green);
  list-style: none;
}
.included summary::-webkit-details-marker {
  display: none;
}
.included summary:after {
  content: ' +';
  font-weight: 900;
}
.included[open] summary:after {
  content: ' -';
}
.included ul {
  margin: 8px 0 0;
  padding-left: 0;
  display: grid;
  gap: 4px;
}
.included li {
  list-style: none;
  color: #315347;
}
.included li:before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  margin-right: 6px;
}
.included .not {
  margin-top: 8px;
  color: #7a4b2c;
}
.included .not:before {
  content: 'Not included: ';
  font-weight: 900;
}
.option-card .service-copy {
  flex: 1;
}
.clean-extra .extra-copy {
  min-width: 0;
}
.clean-extra .included {
  grid-column: 2 / 4;
  margin-top: 6px;
}
.estimate-time {
  display: inline-block;
  margin-top: 7px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eaf6f1;
  color: var(--green);
  font-weight: 800;
  font-size: 11.5px;
}
@media (max-width: 700px) {
  .option-cards,
  .clean-extra-grid,
  .helper-strip {
    grid-template-columns: 1fr;
  }
  nav,
  .phone {
    display: none;
  }
  .hero {
    min-height: calc(100svh - 66px);
    padding-top: 44px;
  }
  .hero,
  .booking-body,
  section {
    padding-left: 18px;
    padding-right: 18px;
  }
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 30px;
  }
  .grid3,
  .pricing,
  .choice-grid,
  .extras,
  .form-grid,
  .stats,
  .steps,
  .benefits {
    grid-template-columns: 1fr;
  }
  .booking-top {
    display: block;
  }
  .header-actions .btn {
    padding: 10px 14px;
  }
  .selected-item {
    grid-template-columns: 1fr;
  }
  .remove {
    justify-self: end;
  }
}

/* Services section component overrides */
#services {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-top: 72px;
  padding-bottom: 72px;
}

#services .section-head {
  align-items: flex-start;
}

#services .section-head h2 {
  flex: 0 0 auto;
}

#services .section-head p {
  margin: 4px 0 0;
}

#services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  width: 100%;
}

#services .service-card {
  position: relative;
  min-width: 0;
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(47, 143, 85, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

#services .service-card:hover {
  border-color: rgba(47, 143, 85, 0.3);
  box-shadow: 0 22px 45px rgba(8, 22, 50, 0.14);
  transform: translateY(-4px);
}

#services .icon {
  flex: 0 0 auto;
  margin-bottom: 20px;
}

#services .service-card h3 {
  margin-bottom: 8px;
}

#services .service-card p {
  min-height: 48px;
  margin-bottom: 0;
}

#services .service-card ul {
  margin-top: auto;
  padding-top: 18px;
}

#services .service-card li {
  line-height: 1.45;
}

@media (max-width: 760px) {
  #services {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  #services .section-head {
    display: block;
  }

  #services .section-head p {
    margin-top: 12px;
  }

  #services .service-card {
    min-height: 0;
    padding: 22px;
  }

  #services .service-card p {
    min-height: 0;
  }
}

/* Mobile friendly upgrade */
.mobile-total-bar {
  display: none;
}
.mobile-menu-btn {
  display: none;
  background: white;
  border: 1px solid rgba(47, 143, 85, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--deep);
  font-weight: 900;
}
@media (max-width: 760px) {
  body {
    padding-bottom: 86px;
    background: #fff;
  }
  .nav {
    padding: 12px 16px;
  }
  .logo {
    font-size: 20px;
  }
  .logo-mark {
    width: 36px;
    height: 36px;
  }
  .mobile-menu-btn {
    display: inline-flex;
  }
  .header-actions .btn {
    display: none;
  }
  nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 66px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 14px;
    flex-direction: column;
    gap: 6px;
    z-index: 50;
  }
  nav.open {
    display: flex;
  }
  nav a {
    padding: 12px;
    border-radius: 12px;
    color: var(--deep);
    font-weight: 800;
  }
  nav a:hover {
    background: var(--mint);
  }
  .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
  }
  .mobile-nav-actions .btn {
    width: 100%;
    padding: 12px 10px;
    font-size: 13px;
    text-align: center;
  }
  .hero {
    min-height: calc(100svh - 66px);
    padding: 34px 16px 26px;
    gap: 22px;
  }
  .pill {
    font-size: 12px;
    margin-bottom: 12px;
  }
  h1 {
    font-size: 34px;
    letter-spacing: -1.2px;
  }
  .hero p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .hero-actions .btn {
    width: 100%;
    padding: 15px;
  }
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .stat {
    padding: 12px;
    border-radius: 14px;
  }
  .stat strong {
    font-size: 18px;
  }
  .stat span {
    font-size: 12px;
  }
  .hero-card {
    border-radius: 24px;
    padding: 14px;
  }
  .mock-img {
    min-height: 210px;
    height: 210px;
    border-radius: 18px;
  }
  .hero-video {
    border-radius: 18px;
  }
  .floating {
    font-size: 12px;
    padding: 9px 10px;
    border-radius: 12px;
  }
  .f1 {
    top: 18px;
  }
  .f2 {
    bottom: 18px;
  }
  .f3 {
    bottom: 66px;
  }
  section {
    padding: 34px 16px;
  }
  .section-head {
    margin-bottom: 18px;
  }
  .section-head p {
    font-size: 15px;
  }
  .card,
  .price-card {
    padding: 20px;
    border-radius: 20px;
  }
  .pricing .price-card.featured {
    transform: none;
  }
  .price {
    font-size: 24px;
  }
  .booking-shell {
    border-radius: 24px;
    margin-left: -2px;
    margin-right: -2px;
  }
  .booking-top {
    padding: 22px 18px;
  }
  .booking-top h2 {
    font-size: 26px;
  }
  .booking-top p {
    font-size: 14px;
  }
  .steps {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 14px 16px;
    scroll-snap-type: x mandatory;
  }
  .step {
    min-width: 180px;
    background: #fbfcfe;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px;
    scroll-snap-align: start;
  }
  .circle {
    width: 30px;
    height: 30px;
  }
  .step small {
    display: none;
  }
  .booking-body {
    padding: 16px;
    gap: 16px;
  }
  .selector-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 14px 0;
  }
  .tab {
    justify-content: center;
    padding: 13px 10px;
    border-radius: 14px;
    font-size: 14px;
  }
  .vat-badge {
    width: 100%;
    justify-content: center;
  }
  .clean-block {
    margin: 16px 0;
  }
  .clean-block-title {
    font-size: 18px;
    background: #f7faf8;
    border: 1px solid var(--border);
    padding: 12px 14px;
    border-radius: 14px;
    justify-content: space-between;
  }
  .mobile-collapse-toggle {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--deep);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition:
      transform 160ms ease,
      background-color 160ms ease;
  }
  .mobile-collapse-toggle[aria-expanded='true'] {
    background: var(--mint);
    color: var(--green);
    transform: rotate(180deg);
  }
  .mobile-collapsible-content {
    display: none;
    padding-top: 12px;
  }
  .mobile-collapsible-content.is-open {
    display: block;
  }
  .option-cards {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .option-card {
    min-height: auto;
    padding: 14px;
    border-radius: 14px;
  }
  .option-card .emoji {
    font-size: 20px;
    min-width: 38px;
    text-align: center;
    background: var(--mint);
    border-radius: 10px;
    padding: 7px 4px;
  }
  .option-card strong {
    font-size: 15px;
  }
  .option-card span {
    font-size: 12px;
  }
  .helper-strip {
    display: none;
  }
  .clean-extra-grid,
  .task-grid {
    grid-template-columns: 1fr !important;
  }
  .clean-extra {
    grid-template-columns: 22px 1fr auto;
    padding: 13px;
    border-radius: 14px;
  }
  .category {
    padding: 16px;
    border-radius: 16px;
  }
  .task {
    grid-template-columns: 22px 1fr;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f6;
  }
  .task:last-child {
    border-bottom: 0;
  }
  .task .price2 {
    grid-column: 2;
    color: var(--green);
  }
  aside {
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(8, 22, 50, 0.08);
  }
  .summary-head {
    padding: 16px;
  }
  .summary-head {
    align-items: flex-start;
  }
  .summary-heading p {
    max-width: 230px;
  }
  .selected {
    padding: 12px 16px;
    min-height: 110px;
  }
  .totals {
    padding: 16px;
  }
  .total {
    font-size: 20px;
  }
  .green-note {
    font-size: 14px;
  }
  .continue {
    padding: 16px;
  }
  .booking-form {
    padding: 16px;
  }
  .booking-form input,
  .booking-form textarea,
  .booking-form select {
    padding: 14px;
    border-radius: 12px;
  }
  .benefits {
    grid-template-columns: 1fr !important;
  }
  .benefit {
    padding: 14px;
  }
  .foot {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 16px;
    text-align: left;
  }
  .home-cta {
    margin-top: 28px;
    padding: 0 16px 34px;
  }
  .home-cta__content {
    padding: 30px 20px;
    border-radius: 22px;
  }
  .home-cta h2 {
    font-size: 27px;
  }
  .home-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .home-cta__actions .btn {
    width: 100%;
  }
  .mobile-total-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -12px 30px rgba(8, 22, 50, 0.14);
    z-index: 80;
    padding: 10px 14px;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-total-bar .mt-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
  }
  .mobile-total-bar .mt-price {
    font-size: 19px;
    color: var(--green);
    font-weight: 900;
    line-height: 1;
  }
  .mobile-total-bar button {
    background: linear-gradient(90deg, var(--green), var(--green2));
    color: #fff;
    border: 0;
    border-radius: 14px;
    padding: 13px 18px;
    font-weight: 900;
    min-width: 130px;
  }
}
@media (max-width: 380px) {
  h1 {
    font-size: 30px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .selector-tabs {
    grid-template-columns: 1fr;
  }
  .mobile-total-bar button {
    min-width: 112px;
    padding: 12px;
  }
}

/* Keep the hero visible on mobile before the booking configurator. */
@media (max-width: 700px) {
  #pricing {
    display: none !important;
  }
  header {
    position: sticky;
    top: 0;
  }
  main {
    padding-top: 0;
  }
  #booking {
    padding-top: 12px;
    margin-top: 0;
  }
  .booking-shell {
    box-shadow: none;
    border-radius: 20px;
  }
  .booking-top {
    border-radius: 0;
    padding-top: 18px;
  }
  .booking-top .pill {
    display: none;
  }
  .booking-top h2 {
    font-size: 25px;
    line-height: 1.15;
  }
  .booking-top p {
    margin-top: 8px;
  }
  .booking-top .btn {
    display: none;
  }
  body {
    background: #fff;
  }
}

@media (max-width: 1050px) {
  #services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  #services .services-grid {
    grid-template-columns: 1fr;
  }
}

.info-btn {
  border: 1px solid rgba(47, 143, 85, 0.25);
  background: #fff;
  color: var(--green);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-left: auto;
}
.info-mini {
  margin-left: 8px;
  border: 1px solid #cfd8df;
  background: #fff;
  color: #667085;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-weight: 900;
  cursor: pointer;
  vertical-align: middle;
  display: inline-grid;
  place-items: center;
  font-size: 14px;
  line-height: 1;
}
.info-mini:hover,
.info-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--mint);
}
.info-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.info-modal.open {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 22, 51, 0.62);
}
.modal-card {
  position: relative;
  z-index: 1;
  background: #fff;
  width: min(520px, 100%);
  max-height: 88vh;
  overflow: auto;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  animation: modalIn 0.18s ease-out;
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  border: 0;
  background: #f2f4f7;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  color: var(--deep);
}
.modal-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: var(--mint);
  display: grid;
  place-items: center;
  font-size: 31px;
  margin-bottom: 12px;
}
.modal-card h3 {
  font-size: 26px;
  margin: 0 46px 6px 0;
  color: var(--deep);
}
.modal-price {
  display: inline-flex;
  margin: 6px 0 18px;
  background: #f4f8f6;
  color: var(--green);
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 900;
  font-size: 13px;
}
.modal-card h4 {
  margin: 14px 0 8px;
  color: var(--deep);
}
.modal-list {
  display: grid;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.modal-list li {
  background: #f8fbf9;
  border: 1px solid #e4eee9;
  border-radius: 12px;
  padding: 10px 12px;
  color: #24493a;
}
.modal-list li:before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}
.not-title {
  color: #8a3d2b !important;
}
.modal-not {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  padding: 12px;
  color: #7c2d12;
}
.modal-action {
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--green), var(--green2));
  color: #fff;
  border: 0;
  border-radius: 14px;
  padding: 14px;
  font-weight: 900;
  cursor: pointer;
}
@keyframes modalIn {
  from {
    transform: translateY(14px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@media (max-width: 700px) {
  .modal-card {
    border-radius: 24px;
    padding: 22px;
    max-height: 84vh;
  }
  .modal-card h3 {
    font-size: 22px;
  }
  .info-btn {
    width: 30px;
    height: 30px;
  }
  .info-mini {
    width: 28px;
    height: 28px;
  }
}

.option-card {
  display: grid !important;
  grid-template-columns: auto auto 1fr auto !important;
  align-items: center !important;
}
.option-card .service-copy {
  min-width: 0;
}
.option-card .info-btn {
  margin-left: auto;
}
.clean-extra {
  grid-template-columns: 22px 1fr auto auto !important;
}
.clean-extra .info-mini {
  justify-self: end;
}

/* Final UX: only the small ! icon opens details */
.option-card {
  display: grid !important;
  grid-template-columns: auto auto 1fr auto !important;
  align-items: center !important;
}
.option-card .service-copy {
  min-width: 0;
}
.option-card .info-btn {
  margin-left: auto;
}
.clean-extra {
  grid-template-columns: 22px 1fr auto auto !important;
}
.clean-extra .info-mini {
  justify-self: end;
}
.info-btn::after,
.info-mini::after {
  content: '';
}

/* Compact square metre selector */
.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 4px;
}
.size-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  color: var(--deep);
  transition: 0.18s ease;
  box-shadow: 0 6px 16px rgba(8, 22, 50, 0.035);
}
.size-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 143, 85, 0.45);
  box-shadow: 0 10px 22px rgba(8, 22, 50, 0.07);
}
.size-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.size-pill span {
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}
.size-pill small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}
.size-pill:has(input:checked) {
  background: var(--mint);
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 10px 24px rgba(47, 143, 85, 0.12);
}
.size-pill:has(input:checked)::before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.size-pill:has(input:checked) small {
  color: var(--green);
}
@media (max-width: 760px) {
  .size-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .size-pill {
    min-height: 44px;
    padding: 8px 10px;
    border-radius: 13px;
    justify-content: flex-start;
  }
  .size-pill span {
    font-size: 13px;
  }
  .size-pill small {
    font-size: 10.5px;
    margin-left: auto;
  }
}
@media (max-width: 380px) {
  .size-pills {
    grid-template-columns: 1fr;
  }
  .size-pill {
    justify-content: flex-start;
  }
}

/* Smart availability calendar */
.availability-box {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.availability-head {
  padding: 16px 18px;
  background: #f7faf8;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.availability-head h4 {
  margin: 0;
  color: var(--deep);
  font-size: 17px;
}
.duration-badge {
  background: var(--mint);
  color: var(--green);
  border: 1px solid #cfe8d8;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}
.availability-body {
  padding: 16px;
}
.availability-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.45;
}
.date-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(88px, 1fr));
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.date-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  min-width: 88px;
  transition: 0.18s;
}
.date-card:hover {
  border-color: #9fd7b1;
  transform: translateY(-1px);
}
.date-card.active {
  background: var(--mint);
  border-color: var(--green);
  box-shadow: 0 8px 20px rgba(47, 143, 85, 0.12);
}
.date-card.unavailable {
  opacity: 0.42;
  cursor: not-allowed;
  background: #f6f7f9;
}
.date-card strong {
  display: block;
  color: var(--deep);
  font-size: 13px;
}
.date-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.date-card small {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 900;
  color: var(--green);
}
.date-card.unavailable small {
  color: #98a2b3;
}
.slot-title {
  margin: 16px 0 8px;
  font-weight: 900;
  color: var(--deep);
  font-size: 14px;
}
.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.time-slot {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 10px 13px;
  cursor: pointer;
  font-weight: 900;
  color: var(--deep);
  transition: 0.18s;
}
.time-slot:hover {
  border-color: var(--green);
  background: #f8fcf9;
}
.time-slot.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.time-slot[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  background: #f4f5f7;
}
.slot-sub {
  display: block;
  font-size: 10px;
  font-weight: 700;
  opacity: 0.8;
  margin-top: 2px;
}
.availability-empty {
  padding: 14px;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 13px;
}
.availability-confirm {
  margin-top: 12px;
  padding: 12px 14px;
  background: #f3fbf5;
  border: 1px solid #bfe6cc;
  border-radius: 12px;
  color: #1c6d38;
  font-size: 13px;
  font-weight: 800;
}
.capacity-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
}
.capacity-legend span:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
}
.capacity-legend .good:before {
  background: var(--green);
}
.capacity-legend .limited:before {
  background: #f59e0b;
}
.capacity-legend .full:before {
  background: #cbd5e1;
}
@media (max-width: 760px) {
  .availability-body {
    padding: 13px;
  }
  .date-strip {
    grid-template-columns: repeat(7, 84px);
  }
  .time-slot {
    flex: 1 0 calc(33.333% - 8px);
    text-align: center;
    padding: 10px 7px;
  }
  .availability-head {
    padding: 14px;
  }
  .availability-head h4 {
    font-size: 16px;
  }
}

/* Service request workflow */
.request-status {
  display: none;
  margin-top: 14px;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  background: #f8fafc;
  font-size: 13px;
  line-height: 1.55;
}
.request-status.show {
  display: block;
}
.request-status.pending {
  background: #fff7e6;
  border-color: #fde1a5;
  color: #8a5a05;
}
.request-status.confirmed {
  background: #f3fbf5;
  border-color: #bfe6cc;
  color: #1c6d38;
}
.request-status.modified {
  background: #eef4ff;
  border-color: #c7d7fe;
  color: #2949a3;
}
.request-status.rejected {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #b42318;
}
.request-status strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.request-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.request-actions button {
  border: 1px solid currentColor;
  background: transparent;
  border-radius: 10px;
  padding: 8px 10px;
  font-weight: 900;
  cursor: pointer;
}
.request-id {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  opacity: 0.85;
}

/* Automatic CRM customer recognition */
.customer-recognition {
  display: none;
  margin: 8px 0 12px;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid #bfe6cc;
  background: #f2fbf5;
  color: #1c6d38;
}
.customer-recognition.show {
  display: block;
}
.customer-recognition strong {
  display: block;
}
.customer-recognition small {
  display: block;
  margin-top: 3px;
  color: #42624a;
}
.discount-row {
  color: #1c6d38;
  font-weight: 900;
}
.discount-row strong {
  color: #1c6d38;
}
.recognized-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e9f7ee;
  color: #2f8f55;
  font-weight: 900;
  font-size: 12px;
}

/* Extracted from Home view. */

.promo-box {
  margin: 14px 0;
  padding: 14px;
  border: 1px dashed #b9c8d8;
  border-radius: 14px;
  background: #fbfcfe;
}
.promo-box label {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--deep);
  margin-bottom: 8px;
}
.promo-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.promo-entry input {
  margin: 0 !important;
  text-transform: uppercase;
}
.promo-entry button {
  border: 0;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
}
.promo-msg {
  font-size: 12px;
  margin-top: 8px;
  color: var(--muted);
}
.promo-msg.ok {
  color: var(--green);
  font-weight: 900;
}
.promo-msg.bad {
  color: #b42318;
  font-weight: 900;
}
.promo-remove {
  border: 0;
  background: transparent;
  color: #b42318;
  font-weight: 900;
  cursor: pointer;
  margin-left: 8px;
}
.promo-row {
  color: #1c6d38;
  font-weight: 900;
}

.totals > .promo-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  gap: 12px;
}

.totals > .promo-row > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.totals > .promo-row > strong {
  min-width: 0;
  max-width: 45%;
  overflow-wrap: anywhere;
  text-align: right;
}

/* Extracted from Home view. */

.brand-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.brand-logo img {
  display: block;
  width: 240px;
  height: 90px;
  object-fit: contain;
  object-position: left center;
  filter: none;
}
@media (max-width: 900px) {
  .brand-logo img {
    width: 210px;
    height: 72px;
  }
}
@media (max-width: 760px) {
  .nav {
    gap: 10px;
  }
  .brand-logo img {
    width: 165px;
    height: 56px;
  }
  .header-actions {
    margin-left: auto;
  }
}
@media (max-width: 390px) {
  .brand-logo img {
    width: 150px;
    height: 50px;
  }
}

/* Keep the complete desktop header on one horizontal line. */
@media (min-width: 1051px) {
  .home-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
  }

  .Fixik-home {
    padding-top: 96px;
  }

  .nav {
    width: 100%;
    max-width: none;
    flex-wrap: nowrap;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 34px;
    padding-right: 34px;
  }

  .nav > nav {
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
  }

  .header-actions {
    flex: 0 0 auto;
    flex-wrap: nowrap;
  }
}

@media (max-width: 1050px) {
  .home-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
  }

  .Fixik-home {
    padding-top: 72px;
  }
}

/* Clean, readable service details modal with Safari backdrop blur support. */
.info-modal {
  isolation: isolate;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.modal-backdrop {
  z-index: 0;
  background: rgba(7, 22, 51, 0.48);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.modal-card {
  display: block;
  z-index: 2 !important;
  width: min(560px, 100%);
  max-height: min(720px, 88vh);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #fff;
  filter: none;
  opacity: 1;
  border-radius: 24px;
  padding: 30px;
  box-shadow:
    0 28px 80px rgba(7, 22, 51, 0.28),
    0 4px 18px rgba(7, 22, 51, 0.12);
}

.info-modal.open .modal-card {
  display: block;
}

.modal-card h3 {
  max-width: calc(100% - 42px);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.modal-close {
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

.modal-list li,
.modal-not {
  line-height: 1.45;
  overflow-wrap: anywhere;
}

@media (max-width: 700px) {
  .info-modal {
    align-items: flex-end;
    padding: 10px;
  }

  .modal-card {
    width: 100%;
    max-height: 86vh;
    border-radius: 24px 24px 18px 18px;
    padding: 24px 20px 20px;
  }
}

/* Safari-safe service mode selector. */
.selector-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 5px;
  border: 1px solid #d8e3df;
  border-radius: 18px;
  background: #eef5f1;
  box-shadow: inset 0 1px 2px rgba(8, 22, 50, 0.04);
}

.selector-tabs .tab {
  position: relative;
  min-width: 0;
  min-height: 48px;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 12px 14px;
  color: var(--muted);
  background: transparent;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.selector-tabs .tab input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  white-space: nowrap;
}

.selector-tabs .tab.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 16px rgba(47, 143, 85, 0.22);
}

.selector-tabs .tab:not(.active):hover {
  background: rgba(255, 255, 255, 0.7);
  color: var(--deep);
}

.selector-tabs .tab:active {
  transform: translateY(1px);
}

.selector-tabs .tab:focus-within {
  outline: 3px solid rgba(47, 143, 85, 0.2);
  outline-offset: 2px;
}

@media (max-width: 390px) {
  .selector-tabs .tab {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 13px;
  }
}

/* Extracted from Home view. */

.contact-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 64px 22px;
}
.contact-hero {
  background: linear-gradient(135deg, #071633, #0d3a2a);
  border-radius: 32px;
  padding: 42px;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.contact-hero:after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(57, 181, 74, 0.16);
  right: -70px;
  top: -90px;
}
.contact-hero h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 40px;
}
.contact-hero p {
  color: #dce9e2;
  max-width: 700px;
  font-size: 17px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
}
.contact-info,
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.contact-info {
  padding: 24px;
}
.contact-form-card {
  padding: 26px;
}
.contact-info h3,
.contact-form-card h3 {
  margin: 0 0 8px;
}
.contact-info > p,
.contact-form-card > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}
.contact-list {
  display: grid;
  gap: 12px;
}
.contact-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fbfcfe;
}
.contact-item .contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--mint);
  font-size: 21px;
}
.contact-item strong {
  display: block;
  color: var(--deep);
}
.contact-item span,
.contact-item a {
  color: var(--muted);
  font-size: 14px;
}
.contact-hours {
  margin-top: 16px;
  padding: 16px;
  border-radius: 16px;
  background: #f3fbf5;
  border: 1px solid #bfe6cc;
}
.contact-hours h4 {
  margin: 0 0 8px;
  color: #1c6d38;
}
.contact-hours-content {
  color: #315347;
  font-size: 14px;
  line-height: 1.6;
  white-space: normal;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
  font-size: 14px;
}
.contact-map {
  margin-top: 16px;
  min-height: 190px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 28% 35%, rgba(47, 143, 85, 0.2), transparent 14%),
    radial-gradient(circle at 70% 58%, rgba(31, 79, 143, 0.16), transparent 16%),
    linear-gradient(135deg, #eef4f1, #f8fafc);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--deep);
  font-weight: 900;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form-grid .full {
  grid-column: 1/-1;
}
.contact-form-grid label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 6px;
}
.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fbfffd;
}
.contact-form-grid textarea {
  min-height: 135px;
  resize: vertical;
}
.contact-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0;
  color: var(--muted);
  font-size: 12px;
}
.contact-consent input {
  margin-top: 3px;
  accent-color: var(--green);
}
.contact-submit {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 15px;
  background: linear-gradient(90deg, var(--green), var(--green2));
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.contact-success {
  display: none;
  margin-top: 14px;
  padding: 13px 14px;
  border-radius: 14px;
  background: #f3fbf5;
  border: 1px solid #bfe6cc;
  color: #1c6d38;
  font-weight: 800;
}
.contact-success.show {
  display: block;
}
.contact-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.quick-card {
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 8px 20px rgba(8, 22, 50, 0.05);
}
.quick-card strong {
  display: block;
  color: var(--deep);
  margin-bottom: 4px;
}
.quick-card span {
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 850px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-quick-actions {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .contact-section {
    padding: 34px 16px 120px;
  }
  .contact-hero {
    padding: 26px 20px;
    border-radius: 22px;
  }
  .contact-hero h2 {
    font-size: 30px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-grid .full {
    grid-column: auto;
  }
  .contact-info,
  .contact-form-card {
    padding: 18px;
    border-radius: 20px;
  }
  .contact-map {
    min-height: 150px;
  }
}

/* Extracted from Home view. */

/* Desktop: make the complete selected-services card follow the page scroll */
@media (min-width: 1051px) {
  /* overflow:hidden on this parent blocks position:sticky */
  .booking-shell {
    overflow: visible !important;
  }

  .booking-body {
    align-items: start !important;
    overflow: visible !important;
  }

  .booking-body > aside {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 96px !important;
    align-self: start !important;
    height: fit-content !important;
    max-height: none !important;
    overflow: visible !important;
    z-index: 10;
  }
}

/* Keep the existing tablet/mobile layout */
@media (max-width: 1050px) {
  .booking-shell {
    overflow: hidden;
  }

  .booking-body > aside {
    position: static !important;
    top: auto !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

/* Extracted from Home view. */

.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.06);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}
.lang-btn.active {
  background: var(--deep);
  color: #fff;
}
@media (max-width: 700px) {
  .language-switcher {
    margin-left: auto;
  }
  .lang-btn {
    padding: 7px 9px;
  }
  .header-actions {
    gap: 8px;
  }
}

/* Cross-browser layout safeguards for translated labels and price values. */
html,
body {
  min-width: 0;
  overflow-x: hidden;
}

header {
  -webkit-backdrop-filter: blur(14px);
}

.nav,
.header-actions,
.booking-body,
.booking-body > section,
.booking-body > aside,
.option-card,
.service-copy,
.selected-item,
.totals,
.row,
.total {
  min-width: 0;
}

.header-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.option-card.is-selected,
.size-pill.is-selected {
  border-color: var(--green);
  background: var(--mint);
  box-shadow: 0 10px 24px rgba(47, 143, 85, 0.11);
}

.size-pill.is-selected::before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.size-pill.is-selected small {
  color: var(--green);
}

.clean-extra.is-selected {
  border-color: var(--green);
  background: #f3fbf4;
}

.totals > .row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 16px;
  min-height: 28px;
  margin: 8px 0;
}

.totals > .row > span {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.totals > .row > strong,
.total > span:last-child,
.selected-item > strong {
  min-width: 0;
  max-width: none;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  flex-shrink: 0;
  text-align: right;
}

.totals > .discount-row,
.totals > .promo-row {
  display: grid !important;
  min-height: 34px;
  margin: 10px 0;
  padding: 7px 10px;
  border-radius: 9px;
  background: #f3fbf4;
}

.totals > .discount-row {
  color: #1c6d38;
}

.totals > .promo-row {
  color: #1c6d38;
}

.totals > .discount-row > strong,
.totals > .promo-row > strong {
  color: inherit;
}

.totals > .row + .promo-box {
  margin-top: 14px;
}

.totals > .promo-box + .row {
  margin-top: 14px;
}

.total > span:first-child {
  min-width: 0;
}

.totals > .total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 16px;
}

.price,
.price2,
.mobile-total-bar .mt-price {
  max-width: 100%;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.clean-extra .price2,
.task .price2 {
  text-align: right;
}

.info-btn {
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 700px) {
  .booking-form .mobile-request-submit {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav > nav {
    order: 3;
    flex-basis: 100%;
  }
}

@media (max-width: 700px) {
  .header-actions {
    flex-wrap: nowrap;
    min-width: 0;
  }

  .language-switcher {
    flex: 0 0 auto;
  }

  .booking-body > section {
    width: 100%;
  }

  .totals > .row > strong,
  .total > span:last-child {
    max-width: none;
  }

  .promo-entry {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 390px) {
  .nav {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-actions {
    gap: 5px;
  }

  .language-switcher .lang-btn {
    padding-left: 7px;
    padding-right: 7px;
  }

  .totals > .row {
    gap: 8px;
  }
}

@media (min-width: 1051px) {
  .nav {
    width: 100%;
    max-width: none;
    flex-wrap: nowrap;
  }

  .nav > nav {
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  .header-actions {
    flex: 0 0 auto;
    flex-wrap: nowrap;
  }
}

.booking-confirmation-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 220;
  align-items: center;
  justify-content: center;
  padding: 18px;
  isolation: isolate;
}

.booking-confirmation-modal.open {
  display: flex;
}

.booking-confirmation-backdrop {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(7, 22, 51, 0.48);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.booking-confirmation-card {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(7, 22, 51, 0.28);
  text-align: center;
  animation: modalIn 0.18s ease-out;
}

.booking-confirmation-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #e8f7ed;
  color: var(--green);
  font-size: 34px;
  font-weight: 900;
}

.booking-confirmation-eyebrow {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-confirmation-card h3 {
  margin: 6px 42px 8px;
  color: var(--deep);
  font-size: 26px;
  line-height: 1.2;
}

.booking-confirmation-card > p {
  color: var(--muted);
  line-height: 1.5;
}

.booking-confirmation-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 22px 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8fbf9;
}

.booking-confirmation-details div {
  min-width: 0;
}

.booking-confirmation-details span,
.booking-confirmation-details strong {
  display: block;
}

.booking-confirmation-details span {
  color: var(--muted);
  font-size: 11px;
}

.booking-confirmation-details strong {
  margin-top: 3px;
  color: var(--deep);
  font-size: 13px;
  overflow-wrap: anywhere;
}

@media (max-width: 600px) {
  .booking-confirmation-modal {
    align-items: flex-end;
    padding: 10px;
  }

  .booking-confirmation-card {
    width: 100%;
    padding: 28px 20px 20px;
    border-radius: 24px 24px 18px 18px;
  }

  .booking-confirmation-card h3 {
    margin-left: 28px;
    margin-right: 28px;
    font-size: 23px;
  }
}

/* Keep the consent control compact instead of inheriting full-width form input styles. */
.contact-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  column-gap: 10px;
  width: 100%;
}

.contact-consent input[type='checkbox'] {
  width: 18px !important;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  margin: 3px 0 0;
  padding: 0;
  flex: none;
  accent-color: var(--green);
}

.contact-consent span {
  min-width: 0;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

/* Use the same section grid and heading rhythm for Services and Starter Pricing. */
#services,
#pricing {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding: 72px 22px;
}

#services .section-head,
#pricing .section-head {
  align-items: flex-start;
  margin-bottom: 28px;
}

#services .section-head p,
#pricing .section-head p {
  margin: 4px 0 0;
}

#services .services-grid,
#pricing .pricing {
  width: 100%;
}

@media (max-width: 760px) {
  #services,
  #pricing {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}

@media (max-width: 700px) {
  #pricing {
    display: none !important;
  }

  #services {
    padding: 34px 16px;
  }
}
