/* ==================== MAINTENANCE PAGE ==================== */

/* General Care subtitle (eyebrow inside .about-us-blur-box) */
.about-us-subtitle {
  font-family: var(--font-main);
  margin-bottom: 18px;
  color: #f9f8f6;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
.page-template-template-maintenance .about-us-title {
  margin-bottom: 12px !important;
}
.page-template-template-maintenance .about-us-desc {
  color: #f9f8f6;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 300 !important;
  line-height: 24px;
}
.page-template-template-maintenance .service-hero-subtitle {
  color: #cdcbc7;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.title-highlighted {
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* Intro Text + Video Section */
.maintenance-intro-section {
  background: #f7f7f5;
  padding: 90px 0;
}

.maintenance-intro-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  max-width: 460px;
}

.maintenance-intro-text p {
  margin-bottom: 20px;
}

.maintenance-intro-text p:last-child {
  margin-bottom: 0;
}

.maintenance-intro-text h2,
.maintenance-intro-text h3 {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.maintenance-intro-text h2 {
  font-size: 1.75rem;
}

.maintenance-intro-text h3 {
  font-size: 1.35rem;
}

.maintenance-intro-text a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.maintenance-intro-text a:hover {
  color: #45a049;
}

/* Video container */
.maintenance-intro-video {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  background: #000;
}

.maintenance-video-player {
  position: relative;
  width: 100%;
}

.maintenance-video-player::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 1;
}

.maintenance-video-player.is-paused::before {
  opacity: 1;
  visibility: visible;
}

.maintenance-video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}

.maintenance-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 2;
}

.maintenance-video-play svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: transform 0.25s ease;
}

.maintenance-video-player.is-paused .maintenance-video-play {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.maintenance-video-play:hover svg path,
.maintenance-video-play:focus-visible svg path {
  fill-opacity: 0.6;
}

.maintenance-video-play:hover svg {
  transform: scale(1.06);
}

.maintenance-video-play:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  border-radius: 50%;
}

.maintenance-video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
}

.maintenance-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .maintenance-intro-section {
    padding: 70px 0;
  }

  .maintenance-intro-text {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .maintenance-intro-section {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .maintenance-intro-section {
    padding: 40px 0;
  }

  .maintenance-intro-text {
    font-size: 0.95rem;
  }
}

/* ==================== CLEANING PROCEDURES SECTION ==================== */

.cleaning-procedures-section {
  position: relative;
  background-color: #f7f7f5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}

.cleaning-procedures-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  margin-bottom: 17px;
}

.cleaning-procedures-titles {
  flex: 1;
  text-align: center;
}

.cleaning-procedures-titles .main-section-title {
  margin-bottom: 6px;
}

.cleaning-procedures-subtitle {
  color: #767676;
  font-family: Inter, var(--font-main);
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

.cleaning-procedures-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  right: 0;
  bottom: 12px;
}

.cp-nav {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dedacf;
  color: #4d403a;
  border: 0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.cp-nav:hover {
  background: var(--primary-color);
  color: #262626;
}

.cp-nav:focus-visible {
  outline: 2px solid #4d403a;
  outline-offset: 2px;
}

.cp-nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cleaning-procedures-divider {
  position: relative;
  margin-bottom: 20px;
  display: block;
  width: 100%;
}
.cleaning-procedures-divider:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(222, 218, 207, 0) -13%,
    rgba(222, 218, 207, 1) 50%,
    rgba(222, 218, 207, 0) 111%
  );
  z-index: 1;
  margin-bottom: 20px;
  width: 100%;
}

/* Slider + Cards */
.cleaningSwiper,
.stainTypesSwiper {
  width: 100%;
  overflow: hidden;
  margin-top: 80px;
  margin-bottom: 20px;
}

.cp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cp-card-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.cp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cp-card-image .content-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.cp-card-title {
  color: #4d403a;
  text-align: center;
  font-family: Inter, var(--font-main);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0;
}

.cp-card-description {
  font-family: Inter, var(--font-main);
  color: #767676;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  margin: 15px 0 0;
}

/* Responsive */
@media (max-width: 991px) {
  .cleaning-procedures-section {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .cleaning-procedures-section {
    padding: 50px 0;
  }

  .cleaning-procedures-header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cleaning-procedures-nav {
    position: static;
    justify-content: center;
  }

  .cleaning-procedures-divider {
    margin-bottom: 28px;
  }

  .cp-card-image {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .cleaning-procedures-section {
    padding: 40px 0;
  }

  .cp-card-image {
    height: 200px;
  }
}

/* ==================== STAINS SECTION (zig-zag) ==================== */

.stains-section {
  background-color: #f7f7f5;
  padding: 136px 0 136px;
}

.stains-section-header {
  text-align: center;
  margin-bottom: 80px;
}
.stains-section .stains-section-header .category-divider {
  max-width: 608px;
  width: 100%;
}
.stains-section-header .main-section-title {
  margin-bottom: 14px;
}

.stains-cards {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Scroll-reveal animation: 1st card visible, subsequent cards fade-up on enter */
.stains-card.js-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
  will-change: opacity, transform;
}

.stains-card.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .stains-card.js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.stains-card {
  display: grid;
  grid-template-columns: 60% 40%;
  border: 1px solid var(--Gray-200, #eaecf0);
  background: #f9f8f6;

  /* Shadow/lg */
  box-shadow:
    0 12px 16px -4px rgba(16, 24, 40, 0.08),
    0 4px 6px -2px rgba(16, 24, 40, 0.03);
  overflow: hidden;
  min-height: 385px;
}
.stains-card.is-reversed {
  grid-template-columns: 1fr 2fr;
}

.stains-card.is-reversed .stains-card-content {
  order: 2;
}

.stains-card.is-reversed .stains-card-image {
  order: 1;
}

.stains-card-content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.stains-card-content .category-divider {
  margin: 6px 0 14px !important;
  width: 100%;
}

.stains-card-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
}

.stains-card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.stains-card-title {
  color: #262626;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  font-family: Inter, var(--font-main);
  margin: 14px 0 12px;
}

.stains-card-description {
  color: #767676;
  font-family: Inter, var(--font-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  margin: 0;
}

.stains-card-image {
  width: 100%;
  height: 100%;
  min-height: 385px;
  overflow: hidden;
}
.stains-icon-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  gap: 24px;
}
.stains-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .stains-section {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .stains-section {
    padding: 50px 0;
  }

  .stains-card,
  .stains-card.is-reversed {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .stains-card.is-reversed .stains-card-content,
  .stains-card .stains-card-content {
    order: 2;
  }

  .stains-card.is-reversed .stains-card-image,
  .stains-card .stains-card-image {
    order: 1;
    min-height: 200px;
  }

  .stains-card-content {
    padding: 24px 22px;
  }
}

@media (max-width: 576px) {
  .stains-section {
    padding: 40px 0;
  }

  .stains-section-header {
    margin-bottom: 32px;
  }
}

/* ==================== TYPES OF STAINS SECTION (slider) ==================== */

.stain-types-section {
  position: relative;
  background-color: #f7f7f5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}

.stain-types-section .swiper-slide {
  height: auto;
  margin-bottom: 20px;
}

.stain-type-card {
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border: 1px solid var(--Gray-200, #eaecf0);
  background: #f9f8f6;
  box-shadow:
    0 12px 16px -4px rgba(16, 24, 40, 0.08),
    0 4px 6px -2px rgba(16, 24, 40, 0.03);
}

.stain-type-card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.stain-type-card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.stain-type-card .category-divider {
  margin: 13px auto 20px !important;
  width: 100%;
  max-width: 160px;
}

.stain-type-card-title {
  color: #4d403a;
  text-align: center;

  font-family: Inter, var(--font-main);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 9px;
}

.stain-type-card-subtitle {
  color: #4d403a;
  text-align: center;
  font-family: Inter, var(--font-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0 0 8px;
}

.stain-type-card-description {
  color: #767676;
  text-align: center;
  font-family: Inter, var(--font-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  margin: 0;
}

/* Inner warning notice box (e.g. "DO NOT MIX BLEACH AND AMMONIA!") */
.stain-type-card-warning {
  margin-top: 24px;
  padding: 22px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--Gray-200, #eaecf0);
  background: #f9f8f6;
  box-shadow:
    0 12px 16px -4px rgba(16, 24, 40, 0.08),
    0 4px 6px -2px rgba(16, 24, 40, 0.03);
}

.stain-type-card-warning-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.stain-type-card-warning-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.stain-type-card-warning-text {
  color: #4d403a;
  text-align: center;
  font-family: Inter, var(--font-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}

.stain-type-card-warning-text p {
  margin: 0;
}

.stain-type-card-warning-text p + p {
  margin-top: 4px;
}

@media (max-width: 991px) {
  .stain-types-section {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .stain-types-section {
    padding: 50px 0;
  }

  /* Let each card take its natural content height (don't stretch to tallest slide) */
  .stainTypesSwiper .swiper-wrapper {
    align-items: flex-start;
  }

  .stain-types-section .swiper-slide {
    height: auto;
  }

  .stain-type-card {
    padding: 26px 22px;
    height: auto;
  }

  .stain-type-card-warning {
    padding: 18px 16px;
  }

  .stain-type-card-warning-text {
    font-size: 13px;
    line-height: 20px;
  }
}

@media (max-width: 576px) {
  .stain-types-section {
    padding: 40px 0;
  }
}

/* ==================== POULTICES SECTION (full-width zig-zag) ==================== */

.poultices-section {
  background-color: #f7f7f5;
  padding: 90px 0;
}

.poultices-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.poultices-section-header .main-section-title {
  margin-bottom: 14px;
}

.poultice-rows {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.poultice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 96px;
}

.poultice-row.is-reversed .poultice-content-side {
  order: 2;
}

.poultice-row.is-reversed .poultice-image {
  order: 1;
}

/* Content cell: pushes inner content toward the page-container edge */
.poultice-content-side {
  display: flex;
  align-items: center;
  padding: 30px 50px;
}

.poultice-row:not(.is-reversed) .poultice-content-side {
  justify-content: flex-end; /* hug the inner gutter near viewport center */
}

.poultice-row.is-reversed .poultice-content-side {
  justify-content: flex-start;
}

.poultice-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: start;
  max-width: 596px;
  width: 100%;
}

.poultice-number {
  width: 97px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.poultice-number img {
  max-width: 100%;
  height: auto;
  display: block;
}

.poultice-text {
  min-width: 0;
}
.poultices-section .category-divider {
  width: 100%;
  max-width: 608px;
}
.poultice-title {
  color: #262626;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  font-family: Inter, var(--font-main);
  margin: 0 0 18px;
}

.poultice-description {
  color: #767676;
  font-family: Inter, var(--font-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.poultice-description p {
  margin: 0 0 14px;
}

.poultice-description p:last-child {
  margin-bottom: 0;
}

/* Checkmark-in-circle bullets for any list inside the description */
.poultice-description ul {
  list-style: none;
  padding-left: 0;
  margin: 14px 0 0;
}

.poultice-description ul li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 14px;
}

.poultice-description ul li:last-child {
  margin-bottom: 0;
}

.poultice-description ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--primary-color);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'><path d='M2.5 6.2L4.7 8.4L9.5 3.6' stroke='%234d403a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  top: 50%;
  transform: translateY(-50%);
}

/* Image cell: full bleed to the closest viewport edge */
.poultice-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.poultice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.poultice-row .category-divider {
  margin-bottom: 19px !important;
}
.poultice-row .category-divider:before {
  background: linear-gradient(
    90deg,
    rgba(222, 218, 207, 0) 0,
    rgba(222, 218, 207, 1) 0,
    rgba(222, 218, 207, 0) 100%
  );
}
/* Responsive */
@media (max-width: 1199px) {
  .poultice-content {
    max-width: 460px;
  }
}

@media (max-width: 991px) {
  .poultices-section {
    padding: 70px 0;
  }

  .poultice-rows {
    gap: 40px;
    max-width: 90% !important;
    margin: auto;
  }

  .poultice-content-side {
    padding: 24px 32px;
  }

  .poultice-content {
    max-width: 100%;
    gap: 20px;
  }

  .poultice-number {
    width: 44px;
  }

  .poultice-image {
    min-height: 260px;
  }
}

@media (max-width: 767px) {
  .poultices-section {
    padding: 50px 0;
  }

  .poultices-section-header {
    margin-bottom: 36px;
  }

  .poultice-row {
    grid-template-columns: 1fr;
  }

  /* On mobile every row stacks: image on top, content below — disable zig-zag */
  .poultice-row .poultice-content-side,
  .poultice-row.is-reversed .poultice-content-side {
    order: 2;
    justify-content: flex-start;
    padding: 20px 16px 24px;
  }

  .poultice-row .poultice-image,
  .poultice-row.is-reversed .poultice-image {
    order: 1;
    min-height: 220px;
  }
}

@media (max-width: 576px) {
  .poultices-section {
    padding: 40px 0;
  }

  .poultice-content {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .poultice-number {
    width: 40px;
  }
}

/* ==================== CLEANING AGENTS / CHEMICALS SECTION ==================== */

/* Full-width blur box override (vs the half-width one used for General Care) */
.cleaning-agents-section .about-us-blur-box.cleaning-agents-blur-box {
  max-width: 100%;
  width: 100%;
  padding: 48px 56px;
}

.cleaning-agents-section .cleaning-agents-title {
  margin-bottom: 32px !important;
}

.cleaning-agents-section .cleaning-agents-desc {
  margin-bottom: 28px;
}

/* Items: 2-column auto-flow (top→bottom, left→right), no list bullets */
.cleaning-agents-items {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2;
  column-gap: 64px;
}

.cleaning-agents-item {
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 28px;
  display: block;
}

.cleaning-agents-item:last-child {
  margin-bottom: 0;
}

.cleaning-agents-item-title {
  color: #f9f8f6;
  font-family: Inter, var(--font-main);
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.cleaning-agents-item-desc {
  color: #f9f8f6;
  font-family: Inter, var(--font-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .cleaning-agents-section .about-us-blur-box.cleaning-agents-blur-box {
    padding: 40px 36px;
  }

  .cleaning-agents-items {
    column-gap: 40px;
  }
}

@media (max-width: 767px) {
  .cleaning-agents-section .about-us-blur-box.cleaning-agents-blur-box {
    padding: 32px 24px;
  }

  .cleaning-agents-items {
    column-count: 1;
  }

  .cleaning-agents-item {
    margin-bottom: 22px;
  }
}

/* ==================== DO'S AND DON'TS SECTION ==================== */

.dos-donts-section {
  position: relative;
  background-color: #f7f7f5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0;
}

.dos-donts-header {
  text-align: center;
  margin-bottom: 64px;
}

.dos-donts-section .dos-donts-header .category-divider {
  max-width: 608px;
  width: 100%;
}

.dos-donts-header .main-section-title {
  margin-bottom: 14px;
}

.dos-donts-row {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 24px;
}

.dos-donts-box {
  background: #fff;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--Gray-200, #eaecf0);
  background: #f9f8f6;
  box-shadow:
    0 12px 16px -4px rgba(16, 24, 40, 0.08),
    0 4px 6px -2px rgba(16, 24, 40, 0.03);
}

.dos-donts-box-title {
  color: #4d403a;
  text-align: center;
  font-family: Inter, var(--font-main);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 36px;
}

.dos-donts-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dos-donts-item {
  position: relative;
  padding-left: 44px;
  margin-bottom: 35px;
  color: #767676;
  font-family: Inter, var(--font-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.dos-donts-item:last-child {
  margin-bottom: 0;
}

/* DO'S — checkmark in circle (same technique as .poultice-description ul li::before) */
.dos-box .dos-donts-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #c9c5b8;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M3 7.5L5.5 10L11 4' stroke='%234d403a' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

/* DON'TS — red X in red circle */
.donts-box .dos-donts-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #e8b4b4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M4 4L10 10M10 4L4 10' stroke='%23a83232' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive */
@media (max-width: 991px) {
  .dos-donts-section {
    padding: 70px 0;
  }

  .dos-donts-box {
    padding: 36px 32px;
  }
}

@media (max-width: 767px) {
  .dos-donts-section {
    padding: 50px 0;
  }

  .dos-donts-header {
    margin-bottom: 36px;
  }

  .dos-donts-box {
    padding: 28px 22px;
  }

  .dos-donts-box-title {
    margin-bottom: 26px;
  }
}

@media (max-width: 576px) {
  .dos-donts-section {
    padding: 40px 0;
  }
}

/* =================================================================== */
/* ============== MAINTENANCE PAGE — RESPONSIVE FIXES ================ */
/* =================================================================== */

/*
 * Theme defines `--spacing-md: 0`, so global `.container { padding: 0 var(--spacing-md); }`
 * has no horizontal padding. Between 768px and 1280px the container goes edge-to-edge.
 * Restore breathing room (scoped to the maintenance template only — does not affect other pages).
 */
/* .page-template-template-maintenance .container {
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 1199px) {
  .page-template-template-maintenance .container {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 991px) {
  .page-template-template-maintenance .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767px) {
  .page-template-template-maintenance .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .page-template-template-maintenance .container {
    padding-left: 16px;
    padding-right: 16px;
  }
} */

/* ---------- Maintenance intro section ---------- */
@media (max-width: 991px) {
  .maintenance-intro-text {
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .maintenance-intro-text h2 {
    font-size: 1.5rem;
  }
}

/* ---------- Cleaning procedures (slider) ---------- */

@media (max-width: 480px) {
  .cleaning-procedures-section {
    padding: 36px 0;
  }
  .cp-card-image {
    height: 200px;
  }
}

/* ---------- Stains zig-zag cards ---------- */
@media (max-width: 480px) {
  .stains-section {
    padding: 36px 0;
  }
  .stains-card-content {
    padding: 22px 18px;
  }
  .stains-card .stains-card-image,
  .stains-card.is-reversed .stains-card-image {
    min-height: 180px;
  }
  .stains-card-title {
    font-size: 18px;
    letter-spacing: 1.4px;
  }
}

/* ---------- Stain types slider (warning box + tighter card padding on phones) ---------- */
@media (max-width: 480px) {
  .stain-type-card {
    padding: 36px 24px;
  }
  .stain-type-card-title {
    font-size: 17px;
    letter-spacing: 1.4px;
  }
  .stain-type-card-warning {
    padding: 16px 14px;
    margin-top: 18px;
  }
  .stain-type-card-warning-text {
    font-size: 12.5px;
    line-height: 18px;
    letter-spacing: 0.3px;
  }
}

/* ---------- Poultices (full-width zig-zag) ---------- */

/* Tablet portrait — narrow the row gap & content gap so two columns don't crush the text */
@media (max-width: 991px) {
  .poultice-row {
    gap: 32px;
  }
  .poultice-content-side {
    padding: 24px 24px;
  }
  .poultice-content {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    max-width: 100%;
  }
  .poultice-number {
    width: 56px;
  }
  .poultice-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

/* Below 768 the existing rule already stacks rows (image on top, content below).
   Refine inner content spacing & list padding so bullets don't crowd narrow viewports. */
@media (max-width: 767px) {
  .poultice-row .poultice-image,
  .poultice-row.is-reversed .poultice-image {
    min-height: 240px;
  }
  .poultice-content {
    grid-template-columns: 52px 1fr;
    gap: 25px;
  }
  .poultice-number {
    width: 52px;
  }
  .poultice-description ul li {
    padding-left: 42px;
  }
}

/* Narrow phone — shrink number badge, tighten paddings, smaller bullet circles */
@media (max-width: 680px) {
  .poultice-row .poultice-content-side,
  .poultice-row.is-reversed .poultice-content-side {
    padding: 20px 4px 24px;
  }
  .poultice-row .poultice-image,
  .poultice-row.is-reversed .poultice-image {
    min-height: 200px;
  }
  .poultice-content {
    grid-template-columns: 40px 1fr;
    gap: 24px;
  }
  .poultice-number {
    width: 40px;
  }
  .poultice-title {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .poultice-description {
    font-size: 15px;
    line-height: 22px;
  }
  .poultice-description ul li {
    padding-left: 36px;
    margin-bottom: 12px;
  }
  .poultice-description ul li::before {
    width: 22px;
    height: 22px;
    background-size: 14px 14px;
  }
}

/* ---------- Cleaning agents blur box ---------- */
@media (max-width: 480px) {
  .cleaning-agents-section .about-us-blur-box.cleaning-agents-blur-box {
    padding: 26px 18px;
  }
  .cleaning-agents-item-title {
    font-size: 18px;
  }
  .cleaning-agents-item-desc {
    font-size: 15px;
  }
}

/* ---------- Do's and Don'ts ---------- */

/* col-md-6 stacks below 768 (Bootstrap default) — tighten item spacing & typography */
@media (max-width: 767px) {
  .dos-donts-row {
    --bs-gutter-y: 18px;
  }
  .dos-donts-item {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 23px;
  }
  .dos-donts-box-title {
    font-size: 18px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 680px) {
  .dos-donts-section {
    padding: 36px 0;
  }
  .dos-donts-box {
    padding: 24px 18px;
  }
  .dos-donts-box-title {
    font-size: 17px;
    margin-bottom: 22px;
  }
  .dos-donts-item {
    padding-left: 34px;
    margin-bottom: 20px;
    font-size: 14.5px;
    line-height: 22px;
  }
  .dos-box .dos-donts-item::before,
  .donts-box .dos-donts-item::before {
    width: 20px;
    height: 20px;
    background-size: 12px 12px;
  }
  .about-us-blur-box {
    padding: 25px 25px;
  }
  .about-us-title {
    font-size: 30px;
    line-height: 32px;
  }
}
