:root {
  --blue: #0b6bcb;
  --blue-deep: #0a4f96;
  --white: #ffffff;
  --text: #1f2937;
  --text-strong: #111827;
  --text-muted: #667085;
  --ink: #111827;
  --ink-soft: #667085;
  --foam: #ffffff;
  --mist: #ffffff;
  --sea: #0b6bcb;
  --sea-deep: #0a4f96;
  --sky: #0b6bcb;
  --line: #0b6bcb;
  --star: #0b6bcb;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Noto Sans Arabic", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #ffffff;
  line-height: 1.55;
  overflow-x: hidden;
}

main,
.footer {
  position: relative;
  z-index: 2;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.steam {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.waves {
  pointer-events: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46vh;
  z-index: 1;
  overflow: hidden;
  perspective: 1000px;
  perspective-origin: 50% 100%;
}

.waves__layer {
  position: absolute;
  left: -15%;
  width: 130%;
  height: 100%;
  bottom: 0;
  background-repeat: repeat-x;
  background-size: 1000px 100%;
  transform-origin: 50% 100%;
  will-change: transform, background-position;
}

.waves__layer--1 {
  bottom: -8%;
  height: 78%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 220' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%230066cc'/%3E%3Cstop offset='100%25' stop-color='%23004c99'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23g)' d='M0 90 Q150 30 300 90 T600 90 T900 90 T1200 90 V220 H0 Z'/%3E%3C/svg%3E");
  transform: translate3d(0, 0, -120px) rotateX(22deg);
  animation: waveFar 10s ease-in-out infinite;
  filter: drop-shadow(0 -10px 18px rgba(0, 102, 204, 0.45));
}

.waves__layer--2 {
  bottom: 0;
  height: 64%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 220' preserveAspectRatio='none'%3E%3Cpath fill='%23004c99' d='M0 100 Q150 45 300 100 T600 100 T900 100 T1200 100 V220 H0 Z'/%3E%3C/svg%3E");
  transform: translate3d(0, 0, -55px) rotateX(16deg);
  animation: waveMid 7.5s ease-in-out infinite reverse;
  filter: drop-shadow(0 -8px 14px rgba(0, 76, 153, 0.5));
}

.waves__layer--3 {
  bottom: 8%;
  height: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 220' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 110 Q150 60 300 110 T600 110 T900 110 T1200 110 V220 H0 Z'/%3E%3C/svg%3E");
  transform: translate3d(0, 0, 0) rotateX(10deg);
  animation: waveNear 5.8s ease-in-out infinite;
  filter: drop-shadow(0 -6px 12px rgba(255, 255, 255, 0.7));
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 70;
}

.progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0b6bcb, #25d366, #0b6bcb);
  background-size: 200% 100%;
  animation: progressShine 2.8s linear infinite;
  box-shadow: 0 0 10px rgba(11, 107, 203, 0.45);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
}

.nav.is-scrolled {
  background: #ffffff;
  box-shadow: 0 2px 0 #0066cc;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  z-index: 2;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(15, 39, 68, 0.35);
  flex-shrink: 0;
}

.nav__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 2px;
}

.nav.is-scrolled .nav__brand {
  color: var(--text-strong);
  text-shadow: none;
}

.nav__tools {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 3;
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(15, 39, 68, 0.25);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: #fff;
}

.nav.is-scrolled .nav__toggle {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.nav.is-scrolled .nav__toggle span {
  background: var(--ink);
}

.nav__panel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  margin-right: 0.75rem;
}

.nav__links {
  display: flex;
  gap: 1.1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.nav__links a {
  text-shadow: none;
}

.nav__links a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav.is-scrolled .nav__links {
  color: var(--text-muted);
}

.nav.is-scrolled .nav__links a {
  text-shadow: none;
}

.nav.is-scrolled .nav__links a:hover {
  color: var(--text-strong);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang {
  display: inline-flex;
  border: 2px solid #ffffff;
  border-radius: 999px;
  overflow: hidden;
  background: #0066cc;
}

.lang__btn {
  border: 0;
  background: transparent;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
}

.lang__btn.is-active {
  background: #ffffff;
  color: var(--text-muted);
}

.nav.is-scrolled .lang {
  border-color: var(--text-muted);
  background: #ffffff;
}

.nav.is-scrolled .lang__btn {
  color: var(--text-muted);
}

.nav.is-scrolled .lang__btn.is-active {
  background: #0066cc;
  color: #ffffff;
}

.nav__wa {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid #ffffff;
  animation: softPulse 2.8s ease-in-out infinite;
}

.nav.is-scrolled .nav__wa {
  border-color: #128c7e;
  background: #25d366;
  color: #ffffff;
}

a[href*="wa.me"].btn,
a[href*="api.whatsapp.com"].btn,
.btn--whatsapp {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

a[href*="wa.me"].btn:hover,
a[href*="api.whatsapp.com"].btn:hover,
.btn--whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #ffffff;
}

a[href*="wa.me"].btn--ghost,
a[href*="api.whatsapp.com"].btn--ghost {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.38) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
  z-index: 1;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(11, 107, 203, 0.18);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn--primary {
  background: #0066cc;
  color: #ffffff;
  border-color: var(--text-muted);
}

.btn--primary:hover {
  background: #004c99;
  border-color: var(--text-strong);
}

.btn--ghost {
  background: #ffffff;
  border-color: var(--text-muted);
  color: var(--text-muted);
}

.btn--xl {
  padding: 1rem 1.6rem;
  font-size: 1.05rem;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 0.65rem;
  display: inline-block;
  position: relative;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #0b6bcb, #25d366);
  transition: width 0.7s var(--ease);
}

.is-in > .eyebrow::after,
.section__head.is-in .eyebrow::after,
[data-reveal].is-in .eyebrow::after {
  width: 2.5rem;
}

.section__head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section__head h2,
.prices__panel h2,
.rate__intro h2,
.visit__copy h2,
.plan__intro h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--text-strong);
}

.section__head p:last-child,
.prices__panel > p:not(.eyebrow),
.rate__intro > p:not(.eyebrow),
.visit__copy > p:not(.eyebrow),
.plan__intro > p:not(.eyebrow) {
  color: var(--text-muted);
  max-width: 36rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__room {
  position: absolute;
  inset: 0;
  background: #0066cc;
  transform: translate3d(0, var(--parallax, 0px), 0);
  will-change: transform;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: heroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero__wash {
  display: none;
}

.hero__linen {
  display: none;
}

.hero__mist {
  display: none;
}

.hero__linen {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.1) 0 28px,
      rgba(255, 255, 255, 0.02) 28px 56px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 46px,
      rgba(255, 255, 255, 0.07) 46px 48px
    );
  mix-blend-mode: soft-light;
  animation: linenDrift 18s linear infinite;
}

.hero__mist {
  position: absolute;
  inset: -10% 0 20%;
  background:
    radial-gradient(ellipse at 28% 42%, rgba(255, 255, 255, 0.6), transparent 50%),
    radial-gradient(ellipse at 72% 55%, rgba(255, 255, 255, 0.38), transparent 45%);
  animation: mistFloat 10s ease-in-out infinite alternate;
}

.washer {
  position: absolute;
  right: 5%;
  left: auto;
  bottom: 14%;
  top: auto;
  width: min(26vw, 220px);
  opacity: 0.88;
  z-index: 1;
  animation: washerFloat 4.8s ease-in-out infinite;
  filter: drop-shadow(0 18px 28px rgba(10, 79, 150, 0.28));
  transition: left 0.45s var(--ease), right 0.45s var(--ease);
}

html[dir="rtl"] .washer {
  right: auto;
  left: 5%;
}

.washer__body {
  background: #ffffff;
  border-radius: 22px;
  padding: 1rem 1rem 1.2rem;
  border: 3px solid #0066cc;
  box-shadow: 0 8px 24px rgba(11, 107, 203, 0.12);
}

.washer__panel {
  display: flex;
  gap: 0.45rem;
  justify-content: flex-end;
  margin-bottom: 0.85rem;
}

.washer__panel i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0066cc;
  display: block;
}

.washer__panel i:nth-child(2) {
  background: #0066cc;
  animation: panelBlink 1.4s ease-in-out infinite;
}

.washer__panel i:nth-child(3) {
  background: #0066cc;
}

.washer__door {
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 10%;
  background: #ffffff;
  border: 4px solid #0066cc;
}

.washer__glass {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #0066cc;
}

.washer__drum {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 2px dashed #ffffff;
  display: grid;
  place-items: center;
  animation: drumSpin 2.8s linear infinite;
  z-index: 2;
}

.washer__logo {
  width: 62%;
  height: 62%;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 8%;
  box-shadow: 0 0 0 3px #ffffff;
}

.washer__water {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: #ffffff;
  opacity: 0.22;
  animation: waterWave 2.2s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.washer__water::before {
  content: "";
  position: absolute;
  inset: -18% 8% auto;
  height: 28%;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.5;
  animation: bubbleBob 1.8s ease-in-out infinite;
}

.washer__feet {
  display: flex;
  justify-content: space-between;
  padding: 0 1.2rem;
}

.washer__feet b {
  width: 18%;
  height: 10px;
  border-radius: 0 0 6px 6px;
  background: #0066cc;
  display: block;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 7rem 1.5rem 4.5rem;
  max-width: 44rem;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero__lede {
  font-size: 1.05rem;
  max-width: 30rem;
  color: #ffffff;
  margin-bottom: 1.6rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .btn--ghost {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.hero .btn--primary {
  background: #ffffff;
  color: var(--text-muted);
  border-color: #ffffff;
}

.hero a[href*="wa.me"].btn--primary,
.hero a[href*="api.whatsapp.com"].btn--primary {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

.hero a[href*="wa.me"].btn--primary:hover,
.hero a[href*="api.whatsapp.com"].btn--primary:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: riseIn 0.8s var(--ease) forwards;
}

.reveal:nth-child(2) { animation-delay: 0.1s; }
.reveal:nth-child(3) { animation-delay: 0.2s; }
.reveal:nth-child(4) { animation-delay: 0.3s; }

.strip {
  overflow: hidden;
  border-block: 3px solid #0066cc;
  background: #0066cc;
  padding: 0.85rem 0;
}

.strip__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  animation: marquee 22s linear infinite;
}

.results {
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.results__layout {
  display: grid;
  gap: 1.25rem;
}

.ba {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid #0066cc;
  aspect-ratio: 16 / 10;
  background: #0a4f96;
  user-select: none;
  touch-action: none;
}

.ba__after,
.ba__before {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ba__after {
  position: absolute;
  inset: 0;
}

.ba__before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid #ffffff;
}

.ba__before {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
}

.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #ffffff;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.ba__handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  background: #0b6bcb;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  animation: handlePulse 2.2s ease-in-out infinite;
}

.ba__handle span::before,
.ba__handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: translateY(-50%);
}

.ba__handle span::before {
  left: 10px;
  border-right: 8px solid #ffffff;
}

.ba__handle span::after {
  right: 10px;
  border-left: 8px solid #ffffff;
}

.ba__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

.ba__label {
  position: absolute;
  top: 0.85rem;
  z-index: 2;
  background: #0b6bcb;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 2px solid #ffffff;
  pointer-events: none;
}

.ba__label--before { left: 0.85rem; }
.ba__label--after { right: 0.85rem; }

.results__rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.results__card {
  border: 3px solid #0066cc;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.results__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(11, 107, 203, 0.18);
}

.results__card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

.results__card:hover img {
  transform: scale(1.06);
}

.results__cap {
  padding: 0.85rem 0.95rem 1rem;
  border-top: 3px solid #0066cc;
}

.results__cap h3 {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.results__cap p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.work,
.services,
.flow,
.rate,
.visit,
.contact {
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.work__stage {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}

.work__spin {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.work__ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 3px dashed #0066cc;
  animation: ringSpin 28s linear infinite;
  pointer-events: none;
}

.work__orbit {
  position: absolute;
  inset: 0;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.work__thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin: -32px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  background: #0066cc;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 0 0 3px #0066cc;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.work__thumb img,
.work__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.work__thumb.is-active {
  box-shadow: 0 0 0 4px #25d366;
  transform: scale(1.12);
}

.work__thumb:focus-visible {
  outline: 3px solid #004c99;
  outline-offset: 3px;
}

.work__circle {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #0066cc;
  background: #004c99;
  z-index: 2;
}

.work__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work__info {
  display: grid;
  gap: 0.85rem;
  padding: 1.4rem 1.5rem;
  border: 3px solid #0066cc;
  border-radius: 18px;
  background: #ffffff;
  min-height: 280px;
}

.work__tag {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
}

.work__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--text-strong);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.work__desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.work__benefit {
  margin-top: 0.35rem;
  padding: 1rem 1.1rem;
  background: #0066cc;
  color: #ffffff;
  border-radius: 14px;
}

.work__benefit-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.35rem;
  opacity: 0.9;
}

.work__benefit-text {
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 600;
}

.work__dots {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.4rem;
}

.work__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #cce0f5;
  cursor: pointer;
  padding: 0;
}

.work__dot.is-active {
  background: #0066cc;
  transform: scale(1.25);
}

@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.clothes {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
}

.clothes__item {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 3px solid #0066cc;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}

.clothes__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(11, 107, 203, 0.2);
  border-color: #0b6bcb;
}

.clothes__item--tall {
  grid-column: span 4;
  grid-row: span 2;
}

.clothes__item--wide {
  grid-column: span 6;
}

.clothes__media {
  position: relative;
  overflow: hidden;
  background: #0066cc;
  aspect-ratio: 1;
}

.clothes__item--tall .clothes__media {
  aspect-ratio: 3 / 4;
  flex: 1;
}

.clothes__item--wide .clothes__media {
  aspect-ratio: 16 / 10;
}

.clothes__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.clothes__item:hover .clothes__media img {
  transform: scale(1.08);
}

.clothes__tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: #0066cc;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border: 2px solid #ffffff;
  border-radius: 999px;
  transition: transform 0.3s var(--ease);
}

.clothes__item:hover .clothes__tag {
  transform: translateY(-2px) scale(1.04);
}

.clothes__meta {
  padding: 0.95rem 1rem 1.1rem;
  background: #ffffff;
  border-top: 3px solid #0066cc;
}

.clothes__meta h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-strong);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.clothes__meta p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.services__list {
  display: none;
}

.prices {
  padding: 2rem 1.5rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.prices__panel {
  padding: 2.5rem 0;
  border-top: 3px solid #0066cc;
  border-bottom: 3px solid #0066cc;
}

.flow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  padding: 1.15rem 1.1rem;
  border-radius: 18px;
  border: 2px solid transparent;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 107, 203, 0.35);
  box-shadow: 0 16px 32px rgba(11, 107, 203, 0.12);
}

.step__index {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0066cc;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  transition: transform 0.35s var(--ease), background 0.35s ease, box-shadow 0.35s ease;
}

.step:hover .step__index {
  transform: scale(1.12);
  background: linear-gradient(145deg, #0b6bcb, #0a4f96);
  box-shadow: 0 8px 16px rgba(11, 107, 203, 0.3);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--text-strong);
}

.step p {
  color: var(--text-muted);
}

.delivery {
  padding: 2rem 1.5rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.delivery__frame {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 0;
  border: 3px solid #0066cc;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  min-height: 340px;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.delivery__frame:hover {
  box-shadow: 0 20px 44px rgba(11, 107, 203, 0.16);
  transform: translateY(-4px);
}

.delivery__visual {
  position: relative;
  min-height: 320px;
  background: #004c99;
}

.delivery__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: 48% 58%;
  display: block;
  transition: transform 0.7s var(--ease);
}

.delivery__frame:hover .delivery__visual img {
  transform: scale(1.04);
}

.delivery__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 2rem 1.75rem;
  background: #0066cc;
  color: #ffffff;
}

.delivery__copy .eyebrow {
  color: #ffffff;
  opacity: 0.9;
}

.delivery__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
}

.delivery__copy > p:not(.eyebrow) {
  color: #ffffff;
  max-width: 28rem;
  line-height: 1.55;
}

.delivery__copy .btn--primary {
  align-self: flex-start;
  margin-top: 0.4rem;
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

.delivery__copy .btn--primary:hover {
  background: #1ebe57;
  border-color: #1ebe57;
}

.plan {
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  align-items: start;
}

.plan__intro {
  grid-column: 1 / -1;
  max-width: 40rem;
}

.plan__form {
  position: relative;
  display: grid;
  gap: 1.15rem;
  padding: 1.55rem 1.45rem 1.45rem;
  border: 2px solid rgba(11, 107, 203, 0.35);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #eaf4ff 0%, #ffffff 38%, #ffffff 100%);
  box-shadow: 0 14px 36px rgba(11, 107, 203, 0.12);
  overflow: hidden;
}

.plan__form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #0b6bcb, #25d366, #0b6bcb);
}

.plan__form::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -40px;
  top: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 107, 203, 0.14), transparent 70%);
  pointer-events: none;
}

.plan__form-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.15rem;
  position: relative;
  z-index: 1;
}

.plan__form-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #0b6bcb, #0a4f96);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 8px 16px rgba(11, 107, 203, 0.25);
  flex-shrink: 0;
}

.plan__form-icon--star {
  background: linear-gradient(145deg, #f5b301, #e09a00);
  box-shadow: 0 8px 16px rgba(245, 179, 1, 0.28);
  color: #fff;
}

.plan__form-head strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}

.plan__form-head span {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.plan__note {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(11, 107, 203, 0.06);
  border: 1px solid rgba(11, 107, 203, 0.12);
  position: relative;
  z-index: 1;
}

.plan__error {
  font-size: 0.9rem;
  font-weight: 600;
  color: #b42318;
  margin: 0;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  background: #fff1f0;
  border: 1px solid #ffcdc7;
}

.field__error {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #b42318;
  margin-top: 0.15rem;
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #d92d20;
  background: #fff8f7;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.12);
}

.field.is-invalid span {
  color: #b42318;
}

.plan__ok {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f7a3c;
  margin: 0;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  background: #eaf8ef;
  border: 1px solid #b7e4c7;
}

.plan__form .btn--primary {
  background: linear-gradient(135deg, #25d366, #1ebe57);
  border-color: transparent;
  color: #ffffff;
  justify-self: stretch;
  width: 100%;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.28);
  position: relative;
  z-index: 1;
}

.plan__form .btn--primary:hover {
  background: linear-gradient(135deg, #1ebe57, #18a64c);
  border-color: transparent;
}

.plan__form .btn--primary:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.plan__public {
  border: 2px solid rgba(11, 107, 203, 0.35);
  border-radius: 22px;
  background: linear-gradient(145deg, #0b6bcb 0%, #0a4f96 100%);
  padding: 1.35rem 1.25rem 1.25rem;
  display: grid;
  gap: 0.85rem;
  align-content: start;
  min-height: 280px;
  max-height: 420px;
  box-shadow: 0 14px 36px rgba(11, 107, 203, 0.18);
  position: relative;
  overflow: hidden;
}

.plan__public::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  left: -30px;
  bottom: -40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.plan__public::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -20px;
  top: -20px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.2);
  pointer-events: none;
}

.plan__public h3 {
  font-family: var(--font-display);
  color: #ffffff;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.plan__names {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  overflow-y: auto;
  max-height: 240px;
  position: relative;
  z-index: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}

.plan__names li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  backdrop-filter: blur(4px);
}

.plan__names li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25);
  flex-shrink: 0;
}

.rate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.rate__form {
  position: relative;
  display: grid;
  gap: 1.15rem;
  padding: 1.45rem 1.35rem;
  border: 2px solid rgba(11, 107, 203, 0.35);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #eaf4ff 0%, #ffffff 42%, #ffffff 100%);
  box-shadow: 0 14px 36px rgba(11, 107, 203, 0.12);
  overflow: hidden;
}

.rate__form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #0b6bcb, #5aa8ef, #0b6bcb);
}

.stars__row {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  background: rgba(11, 107, 203, 0.06);
  border: 1px solid rgba(11, 107, 203, 0.1);
  width: fit-content;
}

.stars__btn {
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  color: #b7d4f2;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}

.stars__btn:hover,
.stars__btn.is-on {
  color: #f5b301;
  transform: scale(1.1);
}

.stars__hint {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.field {
  display: grid;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-strong);
  position: relative;
  z-index: 1;
}

.field span {
  letter-spacing: 0.01em;
}

.field input,
.field textarea {
  width: 100%;
  border: 1.5px solid rgba(11, 107, 203, 0.28);
  background: #f7fbff;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  color: var(--text-strong);
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #94a3b8;
}

.field input:hover,
.field textarea:hover {
  border-color: rgba(11, 107, 203, 0.5);
  background: #ffffff;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #0b6bcb;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(11, 107, 203, 0.15);
}

.rate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.rate__form .btn--primary {
  background: linear-gradient(135deg, #0b6bcb, #0a4f96);
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(11, 107, 203, 0.25);
}

.rate__form .btn--primary:hover {
  background: linear-gradient(135deg, #0a5fb5, #08407a);
  border-color: transparent;
}

.rate__fine {
  font-size: 0.82rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.visit {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: stretch;
}

.hours {
  margin: 1.25rem 0 1.5rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 2px solid #0066cc;
  max-width: 22rem;
  color: var(--text-strong);
}

.visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.visit__map {
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid #0066cc;
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.contact {
  padding-bottom: 4rem;
}

.contact__panel {
  max-width: 36rem;
  padding: 1.5rem;
  background: #0066cc;
  color: #ffffff;
  border-radius: 16px;
}

.contact__panel .eyebrow,
.contact__panel h2,
.contact__panel p {
  color: #ffffff;
}

.contact__phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 1.1rem 0 1.4rem;
  color: #ffffff;
}

.contact .btn--primary {
  background: #ffffff;
  color: var(--text-muted);
  border-color: #ffffff;
}

.contact .btn--ghost {
  margin-top: 0.75rem;
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.contact .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: #ffffff;
}

.contact a[href*="wa.me"].btn--primary,
.contact a[href*="api.whatsapp.com"].btn--primary {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

.contact a[href*="wa.me"].btn--primary:hover,
.contact a[href*="api.whatsapp.com"].btn--primary:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #ffffff;
}

.footer {
  padding: 2rem 1.5rem 6rem;
  text-align: center;
  color: #ffffff;
  font-size: 0.92rem;
  border-top: 0;
  background: #0066cc;
}

.footer a {
  color: #ffffff;
  font-weight: 700;
}

.fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 55;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

[data-reveal="left"] {
  transform: translateX(-20px);
}

[data-reveal="right"] {
  transform: translateX(20px);
}

[data-reveal="left"].is-in,
[data-reveal="right"].is-in {
  transform: none;
}

.plan__form[data-reveal].is-in,
.rate__form[data-reveal].is-in,
.plan__public[data-reveal].is-in {
  animation: none;
}

.float-wa {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 55;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  animation: softPulse 2.6s ease-in-out infinite;
  transition: transform 0.25s var(--ease);
}

.float-wa:hover {
  transform: scale(1.08) translateY(-2px);
  color: #ffffff;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: #004c99;
  opacity: 0.85;
}

.modal__dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.25rem;
  border: 3px solid #0066cc;
}

.modal__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.modal__close {
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  color: var(--text-muted);
}

.modal__tools {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.search input {
  width: 100%;
  border: 2px solid #0066cc;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  background: #fff;
  color: var(--text-strong);
}

.modal__delivery {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.table-wrap {
  overflow: auto;
  border: 2px solid #0066cc;
  border-radius: 12px;
  background: #fff;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 720px;
}

.price-table th,
.price-table td {
  padding: 0.65rem 0.7rem;
  border-bottom: 1px solid #0066cc;
  text-align: left;
  white-space: nowrap;
  color: var(--text-strong);
}

.price-table th {
  background: #0066cc;
  color: #ffffff;
  position: sticky;
  top: 0;
  font-size: 0.78rem;
}

.price-table td.empty {
  color: var(--text-muted);
}

.modal__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.modal__phone {
  font-weight: 700;
  color: var(--blue-deep);
}

body.modal-open {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroKenBurns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.6%, -1.2%, 0); }
}

@keyframes washerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes softPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

@keyframes progressShine {
  from { background-position: 0% 50%; }
  to { background-position: 200% 50%; }
}

@keyframes handlePulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(11, 107, 203, 0.35); }
  50% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 8px rgba(11, 107, 203, 0); }
}

@keyframes cardSettle {
  from { transform: translateY(18px) scale(0.98); }
  to { transform: none; }
}

@keyframes linenDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 0, 0 48px; }
}

@keyframes mistFloat {
  from { transform: translateY(0) scale(1); opacity: 0.85; }
  to { transform: translateY(-18px) scale(1.04); opacity: 1; }
}

@keyframes waveFar {
  0% {
    background-position: 0 0;
    transform: translate3d(0, 8px, -120px) rotateX(22deg) scaleY(1);
  }
  50% {
    background-position: 180px 0;
    transform: translate3d(-30px, -4px, -120px) rotateX(24deg) scaleY(1.08);
  }
  100% {
    background-position: 360px 0;
    transform: translate3d(-60px, 6px, -120px) rotateX(20deg) scaleY(0.98);
  }
}

@keyframes waveMid {
  0% {
    background-position: 0 0;
    transform: translate3d(0, 4px, -55px) rotateX(16deg) scaleY(1);
  }
  50% {
    background-position: -220px 0;
    transform: translate3d(24px, -8px, -55px) rotateX(18deg) scaleY(1.1);
  }
  100% {
    background-position: -440px 0;
    transform: translate3d(48px, 2px, -55px) rotateX(14deg) scaleY(1);
  }
}

@keyframes waveNear {
  0% {
    background-position: 0 0;
    transform: translate3d(0, 0, 0) rotateX(10deg) scaleY(1);
  }
  50% {
    background-position: 260px 0;
    transform: translate3d(-36px, -12px, 0) rotateX(12deg) scaleY(1.12);
  }
  100% {
    background-position: 520px 0;
    transform: translate3d(-72px, 4px, 0) rotateX(9deg) scaleY(0.97);
  }
}

@keyframes drumSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes waterWave {
  0%, 100% { height: 40%; }
  50% { height: 48%; }
}

@keyframes bubbleBob {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.35; }
  50% { transform: translateY(-10px) scale(1.08); opacity: 0.55; }
}

@keyframes panelBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .flow__steps,
  .rate,
  .plan,
  .visit,
  .work__stage,
  .delivery__frame {
    grid-template-columns: 1fr;
  }

  .results {
    padding-left: 0;
    padding-right: 0;
  }

  .results .section__head {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .ba {
    margin: 0 1.25rem;
    aspect-ratio: 5 / 4;
    border-radius: 16px;
  }

  .results__rail {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.15rem 1.25rem 0.85rem;
    scrollbar-width: none;
  }

  .results__rail::-webkit-scrollbar {
    display: none;
  }

  .results__card {
    flex: 0 0 min(78vw, 290px);
    scroll-snap-align: center;
  }

  .clothes {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .clothes::-webkit-scrollbar {
    display: none;
  }

  .clothes__item,
  .clothes__item--tall,
  .clothes__item--wide {
    grid-column: auto;
    grid-row: auto;
    flex: 0 0 min(78vw, 290px);
    scroll-snap-align: center;
  }

  .clothes__item--tall .clothes__media {
    aspect-ratio: 1;
  }

  .delivery__visual img {
    min-height: 240px;
    object-position: 50% 60%;
  }

  .work__spin {
    width: min(100%, 360px);
  }

  .washer {
    opacity: 0.65;
    width: min(30vw, 120px);
    bottom: 7%;
    right: 3%;
    left: auto;
    z-index: 0;
    pointer-events: none;
  }

  html[dir="rtl"] .washer {
    right: auto;
    left: 3%;
  }
}

@media (max-width: 760px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__panel {
    position: fixed;
    inset: 0;
    margin: 0;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1;
  }

  body.nav-open .nav__panel {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open .nav__links,
  body.nav-open .nav__links a {
    color: var(--text-strong);
    text-shadow: none;
  }

  .nav__tools {
    position: relative;
    z-index: 4;
  }

  .nav.is-scrolled .lang {
    border-color: #0b6bcb;
    background: #0b6bcb;
  }

  .nav.is-scrolled .lang__btn {
    color: rgba(255, 255, 255, 0.85);
  }

  .nav.is-scrolled .lang__btn.is-active {
    background: #ffffff;
    color: #0b6bcb;
  }

  .nav__links {
    flex-direction: column;
    align-items: center;
    font-size: 1.25rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__content {
    padding: 6.5rem 1.25rem 5.5rem;
    max-width: 100%;
  }

  .hero__cta {
    position: relative;
    z-index: 3;
    max-width: 78%;
  }

  .washer {
    width: min(28vw, 110px);
    bottom: 6%;
    right: 3%;
    left: auto;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
  }

  html[dir="rtl"] .washer {
    right: auto;
    left: 3%;
  }

  .services,
  .flow,
  .rate,
  .visit,
  .contact,
  .work,
  .prices {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .delivery {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .plan {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .work__video {
    max-height: 520px;
  }

  .clothes__item,
  .clothes__item--tall,
  .clothes__item--wide {
    grid-column: auto;
  }

  .results__card {
    flex-basis: min(85vw, 320px);
  }
}

/* Mobile / touch: cut expensive paint & continuous animations */
@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  .steam {
    display: none;
  }

  .waves {
    height: 22vh;
    perspective: none;
  }

  .waves__layer {
    will-change: auto;
    animation: none !important;
    filter: none !important;
    transform: none !important;
  }

  .waves__layer--1,
  .waves__layer--3 {
    display: none;
  }

  .waves__layer--2 {
    bottom: 0;
    height: 100%;
    opacity: 0.85;
  }

  .progress__bar,
  .nav__wa,
  .float-wa,
  .ba__handle span,
  .hero__photo,
  .washer,
  .washer__panel i,
  .work__ring,
  .strip__track {
    animation: none !important;
  }

  .hero__room {
    transform: none !important;
    will-change: auto;
  }

  .hero__photo {
    transform: scale(1.02);
    will-change: auto;
  }

  .washer {
    filter: none;
    opacity: 0.6;
    width: min(28vw, 110px);
    bottom: 6%;
    right: 3%;
    left: auto;
    pointer-events: none;
  }

  html[dir="rtl"] .washer {
    right: auto;
    left: 3%;
  }

  .btn::after {
    display: none;
  }

  .btn:hover,
  .clothes__item:hover,
  .results__card:hover,
  .step:hover,
  .delivery__frame:hover {
    transform: none;
    box-shadow: none;
  }

  .clothes__item:hover .clothes__media img,
  .results__card:hover img,
  .delivery__frame:hover .delivery__visual img {
    transform: none;
  }

  [data-reveal] {
    transform: translateY(14px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .work,
  .results,
  .services,
  .flow,
  .delivery,
  .plan,
  .rate,
  .visit,
  .contact,
  .prices {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
  }

  .plan__names li {
    backdrop-filter: none;
  }

  .float-wa {
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__linen,
  .hero__mist,
  .hero__photo,
  .washer,
  .washer__drum,
  .washer__water,
  .washer__water::before,
  .washer__panel i,
  .waves__layer,
  .work__ring,
  .strip__track,
  .progress__bar,
  .nav__wa,
  .float-wa,
  .ba__handle span,
  .reveal {
    animation: none !important;
  }

  .reveal,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .btn::after {
    display: none;
  }
}

html[dir="rtl"] .hero__content,
html[dir="rtl"] .section__head,
html[dir="rtl"] .prices__panel,
html[dir="rtl"] .rate__intro,
html[dir="rtl"] .visit__copy,
html[dir="rtl"] .contact__panel,
html[dir="rtl"] .work__info,
html[dir="rtl"] .delivery__copy,
html[dir="rtl"] .plan__intro,
html[dir="rtl"] .plan__form,
html[dir="rtl"] .plan__public {
  text-align: right;
}

html[dir="rtl"] .work__dots {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

html[dir="rtl"] .service {
  grid-template-columns: 1fr 3.5rem;
}

html[dir="rtl"] .service__num {
  order: 2;
  text-align: left;
}

html[dir="rtl"] body {
  font-family: "Noto Sans Arabic", var(--font-body);
}
