:root {
  color-scheme: light;
  --ink: #102235;
  --ink-soft: #4f6171;
  --muted: #7a8a98;
  --line: rgba(16, 34, 53, 0.1);
  --paper: #ffffff;
  --mist: #eef8f8;
  --aqua: #21b7aa;
  --aqua-dark: #087d78;
  --blue: #215d9c;
  --lime: #b7e364;
  --sun: #ffd36a;
  --danger: #d94d4d;
  --shadow: 0 24px 70px rgba(16, 34, 53, 0.12);
  --shadow-soft: 0 16px 44px rgba(16, 34, 53, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(33, 183, 170, 0.14), transparent 38%),
    linear-gradient(245deg, rgba(255, 211, 106, 0.2), transparent 30%),
    #f6fbfb;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(16, 34, 53, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 34, 53, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

a {
  color: inherit;
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(33, 183, 170, 0.22), transparent 62%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.topbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
}

.brand-wrap,
.nav-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand-wrap {
  gap: 14px;
}

.brand-logo {
  width: 108px;
  max-height: 54px;
  object-fit: cover;
  filter: drop-shadow(0 10px 16px rgba(16, 34, 53, 0.16));
}

.eyebrow {
  margin: 0;
  color: var(--aqua-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.accent {
  color: var(--blue);
}

.subtext {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.nav-links {
  gap: 8px;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 14px;
  text-decoration: none;
  font-weight: 800;
  color: var(--ink-soft);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(33, 183, 170, 0.1);
  transform: translateY(-1px);
}

.language-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(8, 125, 120, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.lang-button {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.lang-button.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.button-primary,
.button-secondary,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
  box-shadow: 0 18px 32px rgba(8, 125, 120, 0.24);
  cursor: pointer;
}

.button-secondary,
.button-outline {
  border: 1px solid rgba(8, 125, 120, 0.2);
  color: var(--aqua-dark);
  background: rgba(255, 255, 255, 0.84);
}

.button-primary:hover,
.button-secondary:hover,
.button-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(16, 34, 53, 0.12);
}

.button-primary:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.hero {
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 54px;
  padding: 68px 0 56px;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 14px 0 20px;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-visual {
  display: block;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 230px;
  max-height: 300px;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: none;
}

.best-seller-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 22px 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.72);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
}

.hero-highlights div,
.trust-strip div,
.service-card,
.process-step,
.testimonial-card,
.booking-form,
.booking-summary {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero-highlights div {
  padding: 16px;
  color: var(--ink-soft);
}

.hero-highlights strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.45rem;
}

.best-seller-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(232, 248, 246, 0.88)),
    var(--paper);
  box-shadow: var(--shadow);
}

.best-seller-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(183, 227, 100, 0.36), transparent 22%),
    radial-gradient(circle at 88% 0%, rgba(33, 93, 156, 0.18), transparent 28%);
  pointer-events: none;
}

.best-seller-panel::after {
  content: '';
  position: absolute;
  right: -56px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 34px solid rgba(33, 183, 170, 0.13);
  pointer-events: none;
}

.best-seller-head,
.best-seller-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-card-logo {
  width: 86px;
  object-fit: contain;
}

.best-seller-main {
  position: relative;
  z-index: 1;
  padding: 0 0 24px;
}

.best-seller-main h2 {
  max-width: 440px;
  margin: 12px 0 14px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.best-seller-main p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: var(--radius);
  padding: 0 14px;
  color: #3f3300;
  background: linear-gradient(135deg, var(--sun), #ffe7a3);
  box-shadow: 0 14px 26px rgba(198, 147, 26, 0.18);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.package-meter {
  position: relative;
  z-index: 1;
  height: 12px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(16, 34, 53, 0.08);
}

.package-meter span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--aqua), var(--lime));
  animation: package-fill 1.4s ease both;
}

.package-checklist {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
}

.package-checklist div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(16, 34, 53, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.package-checklist strong {
  color: var(--aqua-dark);
  font-size: 0.82rem;
}

.package-checklist span {
  color: var(--ink);
  font-weight: 800;
}

.best-seller-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(16, 34, 53, 0.08);
}

.best-seller-footer span {
  display: block;
  color: var(--ink-soft);
  font-weight: 800;
}

.best-seller-footer strong {
  display: block;
  margin-top: 2px;
  font-size: 2rem;
}

.best-seller-footer s {
  display: inline-block;
  margin-top: 2px;
  color: rgba(16, 34, 53, 0.42);
  font-weight: 900;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.hero-social-button {
  min-height: 50px;
  justify-content: center;
}

.hero-social-button.whatsapp {
  color: #ffffff;
  border-color: #168b4e;
  background: #168b4e;
}

.hero-social-button.instagram {
  color: #ffffff;
  border-color: #b02a72;
  background: #b02a72;
}

.section-intro,
.how-it-works,
.testimonials,
.booking-panel,
.results-gallery {
  padding: 72px 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.result-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  overflow: hidden;
  border: 1px solid rgba(16, 34, 53, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.result-pair figure {
  position: relative;
  min-width: 0;
  margin: 0;
}

.result-pair img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
}

.result-pair figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: var(--radius);
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(16, 34, 53, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading > p:not(.eyebrow) {
  color: var(--ink-soft);
  line-height: 1.7;
}

.booking-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.booking-promise span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(33, 183, 170, 0.2);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(16, 34, 53, 0.06);
  font-size: 0.9rem;
  font-weight: 900;
}

.service-grid,
.process-grid,
.testimonial-grid,
.booking-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.process-step,
.testimonial-card {
  position: relative;
  padding: 24px;
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover,
.service-card.active,
.service-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(33, 183, 170, 0.42);
  background: rgba(255, 255, 255, 0.95);
  outline: none;
}

.service-card.active::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 2px rgba(33, 183, 170, 0.36);
  pointer-events: none;
}

.service-card h3,
.process-step h4 {
  margin: 18px 0 0;
  font-size: 1.18rem;
}

.service-card p,
.process-step p {
  color: var(--ink-soft);
  line-height: 1.68;
}

.service-card span {
  margin-top: auto;
  color: var(--aqua-dark);
  font-weight: 900;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #ffffff;
}

.service-icon::before {
  content: '';
  width: 28px;
  height: 28px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}

.service-icon.car { background: linear-gradient(135deg, #0c8d8a, #19868d); }
.service-icon.home { background: linear-gradient(135deg, #296baf, #1f96a7); }
.service-icon.sofa { background: linear-gradient(135deg, #0d5c80, #0d8a86); }
.service-icon.garden { background: linear-gradient(135deg, #3d8f5f, #66b785); }

.service-icon.car::before { background-image: url('data:image/svg+xml,%3Csvg width="28" height="24" viewBox="0 0 28 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M4 18H2V14C2 12.8954 2.89543 12 4 12H5V8C5 6.89543 5.89543 6 7 6H21C22.1046 6 23 6.89543 23 8V12H24C25.1046 12 26 12.8954 26 14V18H24V20H22V18H6V20H4V18Z" stroke="white" stroke-width="2"/%3E%3Cpath d="M7 14H21" stroke="white" stroke-width="2"/%3E%3Cpath d="M8 22C9.10457 22 10 21.1046 10 20C10 18.8954 9.10457 18 8 18C6.89543 18 6 18.8954 6 20C6 21.1046 6.89543 22 8 22Z" fill="white"/%3E%3Cpath d="M20 22C21.1046 22 22 21.1046 22 20C22 18.8954 21.1046 18 20 18C18.8954 18 18 18.8954 18 20C18 21.1046 18.8954 22 20 22Z" fill="white"/%3E%3C/svg%3E'); }
.service-icon.home::before { background-image: url('data:image/svg+xml,%3Csvg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M3 11L12 3L21 11V20C21 20.5523 20.5523 21 20 21H15V15H9V21H4C3.44772 21 3 20.5523 3 20V11Z" stroke="white" stroke-width="2"/%3E%3C/svg%3E'); }
.service-icon.sofa::before { background-image: url('data:image/svg+xml,%3Csvg width="28" height="24" viewBox="0 0 28 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M4 12H24V17C24 18.1046 23.1046 19 22 19H20V21H18V19H10V21H8V19H6C4.89543 19 4 18.1046 4 17V12Z" stroke="white" stroke-width="2"/%3E%3Cpath d="M4 12V8C4 6.89543 4.89543 6 6 6H22C23.1046 6 24 6.89543 24 8V12" stroke="white" stroke-width="2"/%3E%3Cpath d="M9 6V4C9 3.44772 9.44772 3 10 3H18C18.5523 3 19 3.44772 19 4V6" stroke="white" stroke-width="2"/%3E%3C/svg%3E'); }
.service-icon.garden::before { background-image: url('data:image/svg+xml,%3Csvg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M14 2C12.3431 2 11 3.34315 11 5V11H17V5C17 3.34315 15.6569 2 14 2Z" stroke="white" stroke-width="2"/%3E%3Cpath d="M7 17C7 14.7909 8.79086 13 11 13H17C19.2091 13 21 14.7909 21 17V20H7V17Z" stroke="white" stroke-width="2"/%3E%3Cpath d="M13 20V24" stroke="white" stroke-width="2"/%3E%3Cpath d="M10 24H18" stroke="white" stroke-width="2"/%3E%3C/svg%3E'); }

.detail-pricing-panel {
  margin-top: 32px;
}

.package-heading {
  margin-bottom: 20px;
}

.package-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.package-showcase-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.package-showcase-card img {
  width: 100%;
  aspect-ratio: 1.35;
  display: block;
  object-fit: cover;
}

.package-showcase-card div {
  padding: 18px;
}

.package-showcase-card span {
  color: var(--aqua-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.package-showcase-card h3 {
  margin: 8px 0;
  font-size: 1.15rem;
}

.package-showcase-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.package-showcase-card.featured {
  border-color: rgba(33, 183, 170, 0.48);
  transform: translateY(-4px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 0 48px;
}

.trust-strip div {
  padding: 20px;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--ink-soft);
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--aqua), var(--blue));
  font-weight: 900;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card p {
  margin: 0 0 22px;
  color: var(--ink);
  line-height: 1.85;
}

.testimonial-card footer {
  color: var(--ink-soft);
  font-weight: 900;
}

.booking-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: start;
  margin-top: 24px;
}

.booking-form,
.booking-summary {
  padding: 28px;
}

.booking-form form,
.form-row {
  display: grid;
}

.booking-form form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.form-row {
  gap: 9px;
}

.booking-step-title {
  margin-top: 8px;
  padding: 18px 20px;
  border-left: 5px solid var(--aqua);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(33, 183, 170, 0.12), rgba(255, 255, 255, 0.76));
}

.booking-step-title:first-child {
  margin-top: 0;
}

.booking-step-title span {
  color: var(--aqua-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-step-title h3 {
  margin: 6px 0 4px;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.05;
}

.booking-step-title p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.form-row-wide,
.slot-list,
.booking-form .button-primary,
.form-note,
.booking-message {
  grid-column: 1 / -1;
}

.booking-wizard-nav {
  display: none;
}

label {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.booking-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-detailing-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(33, 183, 170, 0.24);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(33, 183, 170, 0.13), rgba(255, 255, 255, 0.92)),
    #ffffff;
  box-shadow: 0 18px 42px rgba(16, 34, 53, 0.08);
}

.booking-detailing-card > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
}

.booking-detailing-card strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
}

.booking-detailing-card p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.booking-detailing-card ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-detailing-card li {
  border: 1px solid rgba(16, 34, 53, 0.08);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.35;
}

.booking-service-option,
.option-button {
  position: relative;
  border: 1px solid rgba(16, 34, 53, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-service-option {
  min-height: 96px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.package-option {
  min-height: 156px;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: stretch;
  gap: 16px;
  padding: 12px;
}

.package-option-image {
  width: 100%;
  height: 100%;
  min-height: 128px;
  border-radius: var(--radius);
  object-fit: cover;
}

.package-option > div {
  align-self: center;
  padding-right: 8px;
}

.package-option strong {
  margin-bottom: 4px;
}

.package-option span {
  margin-top: 0;
}

.package-option em {
  margin-top: 8px;
}

.booking-service-option:hover,
.booking-service-option.selected,
.booking-service-option:focus-visible,
.option-button:hover,
.option-button.selected,
.option-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(33, 183, 170, 0.5);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(16, 34, 53, 0.1);
  outline: none;
}

.booking-service-option.selected::after,
.option-button.selected::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 2px rgba(33, 183, 170, 0.36);
  pointer-events: none;
}

.booking-service-option strong,
.booking-service-option small,
.booking-service-option em,
.option-button strong,
.option-button span,
.option-button em {
  display: block;
}

.booking-service-option strong,
.option-button strong {
  font-weight: 900;
}

.booking-service-option small,
.option-button span {
  margin-top: 4px;
  color: var(--ink-soft);
  line-height: 1.35;
}

.booking-service-option em,
.option-button em {
  color: var(--aqua-dark);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.service-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.45);
}

.service-dot.car { background: linear-gradient(135deg, #0c8d8a, #19868d); }
.service-dot.home { background: linear-gradient(135deg, #296baf, #1f96a7); }
.service-dot.sofa { background: linear-gradient(135deg, #0d5c80, #0d8a86); }
.service-dot.garden { background: linear-gradient(135deg, #3d8f5f, #66b785); }

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.car-size-option {
  min-height: 110px;
  padding: 22px;
}

.package-option .mini-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  color: #3f3300;
  background: var(--sun);
  font-size: 0.72rem;
  font-weight: 900;
}

.small-note {
  font-size: 0.9rem;
}

select,
input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 34, 53, 0.13);
  border-radius: var(--radius);
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--aqua);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(33, 183, 170, 0.13);
}

textarea {
  min-height: 112px;
  padding: 14px;
  resize: vertical;
  line-height: 1.55;
}

.date-input-wrapper {
  position: relative;
}

.calendar-toggle {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(33, 183, 170, 0.12);
  cursor: pointer;
}

.slot-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.slot-chip {
  min-height: 56px;
  border: 1px solid rgba(16, 34, 53, 0.08);
  border-radius: var(--radius);
  padding: 0 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(16, 34, 53, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.slot-chip:hover,
.slot-chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(33, 183, 170, 0.36);
  background: #ffffff;
  outline: none;
}

.slot-chip.selected {
  color: #ffffff;
  background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
  box-shadow: 0 16px 30px rgba(8, 125, 120, 0.24);
}

.slot-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
}

.booking-message {
  display: none;
  min-height: 46px;
  border-radius: var(--radius);
  padding: 14px 16px;
  color: #ffffff;
  font-weight: 800;
}

.booking-message.success {
  display: block;
  background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
}

.booking-message.error {
  display: block;
  background: var(--danger);
}

.summary-card h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(16, 34, 53, 0.08);
}

.summary-row span {
  color: var(--ink-soft);
}

.summary-row strong {
  text-align: right;
}

.summary-copy,
.form-note {
  color: var(--ink-soft);
  line-height: 1.7;
}

.summary-copy {
  margin: 22px 0 0;
}

.form-note {
  margin: 0;
  font-size: 0.95rem;
}

.contact-card {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(33, 183, 170, 0.13), rgba(183, 227, 100, 0.18));
}

.contact-card p {
  margin: 0;
  line-height: 1.7;
}

.booking-assurance {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.booking-assurance div {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(16, 34, 53, 0.08);
}

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

.booking-assurance span {
  margin-top: 4px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(16, 34, 53, 0.46);
  backdrop-filter: blur(14px);
}

.booking-modal.open {
  display: grid;
}

.booking-modal-card {
  position: relative;
  width: min(520px, 100%);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 32px 90px rgba(16, 34, 53, 0.28);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
  font-size: 1.8rem;
  font-weight: 900;
}

.booking-modal h2 {
  margin: 10px 0 10px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.booking-modal p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.modal-summary {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--mist);
}

.modal-summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.modal-summary span {
  color: var(--ink-soft);
}

.modal-summary strong {
  text-align: right;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.modal-actions .button-primary,
.modal-actions .button-secondary {
  min-height: 50px;
  justify-content: center;
  text-align: center;
}

.modal-whatsapp {
  color: #ffffff;
  background: #168b4e;
  border-color: #168b4e;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 28px 20px 40px;
  color: var(--ink-soft);
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes package-fill {
  from { transform: scaleX(0.16); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1060px) {
  .hero,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slot-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 16vw, 4rem);
  }

  .hero-highlights,
  .service-grid,
  .process-grid,
  .testimonial-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .best-seller-panel {
    padding: 16px;
  }

  .best-seller-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button-primary,
  .button-secondary,
  .button-outline {
    width: 100%;
  }

  .slot-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .booking-form form {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .booking-form form.wizard-enabled {
    gap: 18px;
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .wizard-enabled [data-booking-step] {
    display: none !important;
  }

  .wizard-enabled .booking-intro {
    display: none !important;
  }

  .wizard-enabled .booking-step-title.wizard-step-active,
  .wizard-enabled .form-row.wizard-step-active {
    display: grid !important;
  }

  .wizard-enabled button.wizard-step-active {
    display: inline-flex !important;
  }

  .wizard-enabled .form-note.wizard-step-active {
    display: block !important;
  }

  .wizard-enabled .booking-message.wizard-step-active.success,
  .wizard-enabled .booking-message.wizard-step-active.error {
    display: block !important;
  }

  .booking-wizard-nav:not([hidden]) {
    position: sticky;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 12;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(16, 34, 53, 0.12);
    border-radius: var(--radius);
    padding: 10px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 44px rgba(16, 34, 53, 0.2);
  }

  .booking-wizard-nav > span {
    color: var(--ink-soft);
    font-size: 0.86rem;
    font-weight: 900;
    text-align: center;
  }

  .wizard-back,
  .wizard-next {
    min-height: 48px;
    border-radius: var(--radius);
    padding: 0 16px;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
  }

  .wizard-back {
    border: 1px solid rgba(16, 34, 53, 0.14);
    color: var(--ink);
    background: #ffffff;
  }

  .wizard-back:disabled {
    opacity: 0.38;
    cursor: default;
  }

  .wizard-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--aqua-dark);
    color: #ffffff;
    background: var(--aqua-dark);
  }

  .wizard-message {
    grid-column: 1 / -1;
    min-height: 0;
    margin: 0;
    color: var(--danger);
    font-size: 0.9rem;
    font-weight: 800;
    text-align: center;
  }

  .booking-form,
  .booking-summary {
    padding: 18px;
  }

  .booking-summary {
    display: none;
  }

  .booking-promise {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-promise span {
    justify-content: center;
  }

  .booking-step-title {
    margin-top: 12px;
    padding: 18px 16px;
    border-left-width: 4px;
  }

  .booking-step-title h3 {
    font-size: 1.45rem;
    line-height: 1.12;
  }

  .booking-step-title p {
    font-size: 0.98rem;
  }

  .booking-service-grid,
  .option-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .booking-detailing-card {
    padding: 18px 16px;
  }

  .booking-detailing-card > div,
  .booking-detailing-card ul {
    grid-template-columns: 1fr;
  }

  .booking-detailing-card > div {
    text-align: center;
  }

  .booking-detailing-card .service-dot {
    margin: 0 auto;
  }

  .package-showcase-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-pair img {
    min-height: 190px;
  }

  .result-pair figcaption {
    left: 8px;
    bottom: 8px;
  }

  .booking-service-option {
    min-height: 112px;
    grid-template-columns: 40px 1fr;
    align-items: start;
    padding: 18px 16px;
  }

  .booking-service-option em {
    grid-column: 2;
    margin-top: 8px;
  }

  #packageOptions .package-option {
    display: flex !important;
    flex-direction: column;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 12px;
    padding: 14px;
  }

  #packageOptions .package-option-image {
    display: block;
    width: 100%;
    height: auto !important;
    aspect-ratio: 1.55;
    min-height: 0;
    max-height: 220px;
    object-fit: cover;
    flex: 0 0 auto;
  }

  #packageOptions .package-option > div {
    position: relative;
    z-index: 1;
    padding-right: 0;
  }

  #packageOptions .package-option .mini-pill {
    position: static;
    width: fit-content;
    margin-top: 10px;
  }

  .car-size-option {
    min-height: 96px;
    padding: 18px;
  }

  .slot-chip {
    min-height: 58px;
    padding: 0 14px;
    font-size: 1rem;
  }

  input,
  textarea,
  select {
    font-size: 16px;
  }

  .summary-row {
    display: grid;
    gap: 4px;
    align-items: start;
  }

  .summary-row strong {
    text-align: left;
  }

  .modal-summary div {
    display: grid;
    gap: 4px;
  }

  .modal-summary strong {
    text-align: left;
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }
}
