:root {
  --green: #3ba935;
  --green-dark: #2f8c2a;
  --teal: #1cb5ad;
  --orange: #f4633a;
  --dark: #1c2438;
  --body-text: #7a7f8a;
  --heading: #101a33;
  --light-bg: #f6f7f9;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--body-text);
  background: #fff;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--heading);
  margin: 0;
  line-height: 1.25;
}

a { text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col-4 { width: 33.3333%; padding: 0 15px; }
.col-6 { width: 50%; padding: 0 15px; }
.col-8 { width: 66.6666%; padding: 0 15px; }
.col-12 { width: 100%; padding: 0 15px; }
.text-center { text-align: center; }
.clearfix::after { content: ''; display: table; clear: both; }
.secpd1 { padding: 90px 0; }

/* ---------- Section titles ---------- */
.sec-title { margin-bottom: 55px; }
.sec-title h3 {
  font-family: 'Caveat', cursive;
  font-size: 30px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}
.sec-title .title {
  font-size: 44px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
}
.sec-title.clr-white h3 { color: #fff; }
.sec-title.clr-white .title { color: #fff; }

/* ---------- Header ---------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  border-bottom: 1px solid #eef0f3;
}
.main-header .inner-container {
  max-width: 1860px;
  margin: 0 auto;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-box img { height: 62px; width: auto; }
.opening-time p {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  color: #6f7482;
  display: flex;
  align-items: center;
  gap: 10px;
}
.clock-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  position: relative;
  display: inline-block;
}
.clock-icon::before,
.clock-icon::after {
  content: '';
  position: absolute;
  background: var(--teal);
  left: 50%;
  bottom: 50%;
  transform-origin: bottom center;
}
.clock-icon::before { width: 2px; height: 5px; transform: translateX(-50%) rotate(120deg); }
.clock-icon::after { width: 2px; height: 6px; transform: translateX(-50%); }

/* ---------- Hero slider ---------- */
.home-slider-one {
  position: relative;
  margin-top: 88px;
  height: 640px;
  background: #333;
  overflow: hidden;
}
.home-slider { position: absolute; inset: 0; }
.slide-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide-item.active { opacity: 1; }
.slide-item::before {
  content: '';
  position: absolute;
  inset: 0;
  right: 55%;
  background: #333333;
}
.slide-item .auto-container {
  position: relative;
  max-width: 1860px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}
.slide-item .content-box { max-width: 520px; padding-left: 130px; }
.slide-item .shape h3 {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: #dcdcdc;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
}
.slide-item .title {
  font-size: 62px;
  font-weight: 700;
  color: #6c7079;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(30px);
}
.slide-item.active .shape h3,
.slide-item.active .title {
  animation: heroIn 0.9s ease forwards;
}
.slide-item.active .title { animation-delay: 0.15s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.slider-dots {
  position: absolute;
  left: 165px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 5;
}
.slider-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
  padding: 0;
  cursor: pointer;
  transition: 0.3s;
}
.slider-dots .dot.active {
  background: transparent;
  box-shadow: inset 0 0 0 3px #fff;
}

.silder-right-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 365px;
  height: 100%;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  z-index: 4;
  pointer-events: none;
}
.slider-contact-info {
  position: absolute;
  right: 40px;
  bottom: 60px;
  pointer-events: auto;
}
.slider-contact-info .inner { display: flex; align-items: center; gap: 18px; }
.icon-holder .phone-icon {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.icon-holder .phone-icon::before {
  content: '\260E';
  font-size: 46px;
  color: var(--orange);
  line-height: 1;
}
.slider-contact-info .title-holder h3 {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: #fff;
  font-weight: 600;
}
.slider-contact-info .title-holder h1 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* ---------- Welcome ---------- */
.welcome-area { background: #fff; }
.welcome-image-box {
  position: relative;
  padding: 60px 0 90px 90px;
  min-height: 620px;
}
.welcome-image-box .image-box img {
  border-radius: 4px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.10);
}
.welcome-image-box .image-thumb1 {
  position: absolute;
  left: 0;
  top: 120px;
  width: 220px;
  z-index: -1;
}
.welcome-image-box .image-thumb1 img { border-radius: 4px; }
.welcome-image-box .image-thumb2 {
  position: absolute;
  left: 130px;
  bottom: 0;
  width: 220px;
}
.welcome-image-box .image-thumb2 img { border-radius: 4px; box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.welcome-image-box .icon-box {
  position: absolute;
  right: 30px;
  bottom: 60px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  border: 2px dashed #d7dbe2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome-image-box .icon-box img { width: 46px; }

.welcome-content-box { padding: 45px 0 0 20px; }
.welcome-content-box .top { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.welcome-content-box .top .icon img { width: 58px; }
.welcome-content-box .top .title h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}
.welcome-content-box .text p { margin: 0 0 22px; }

/* ---------- Choose area ---------- */
.choose-area {
  background: var(--teal);
  padding: 95px 0 100px;
}
.choose-content {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.single-choose-box {
  background: #fff;
  border-radius: 6px;
  width: 200px;
  padding: 34px 18px 26px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.single-choose-box:hover { transform: translateY(-8px); box-shadow: 0 18px 35px rgba(0,0,0,0.18); }
.single-choose-box img {
  height: 62px;
  width: auto;
  margin: 0 auto 18px;
  object-fit: contain;
}
.stats-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin: 62px 0 0;
  padding: 42px 0 0;
  border-top: 1px solid rgba(255,255,255,0.22);
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat-item p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.5;
}

.single-choose-box h4 {
  font-size: 19px;
  font-weight: 700;
  color: #1e2430;
}

/* ---------- Working steps ---------- */
.working-steps-area { padding: 90px 0 70px; background: #fff; }
.working-steps-area h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}
.working-steps-area p { margin: 0 0 40px; }

/* ---------- Gallery ---------- */
.main-gallery-area { padding-bottom: 10px; }
.single-gallery-item { margin-bottom: 30px; }
.single-gallery-item .img-holder {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.single-gallery-item .img-holder img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.single-gallery-item:hover .img-holder img { transform: scale(1.08); }
.overlay-style-one {
  position: absolute;
  inset: 0;
  background: rgba(28, 181, 173, 0.85);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-gallery-item:hover .overlay-style-one { opacity: 1; }
.overlay-style-one h3 { color: #fff; font-size: 24px; font-weight: 600; text-align: center; }

/* ---------- Services ---------- */
.services-style1-area { background: var(--light-bg); }
.single-service-style1 {
  background: #fff;
  border-radius: 6px;
  padding: 45px 30px 40px;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.single-service-style1:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.single-service-style1 h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
.single-service-style1 p { margin: 0; }

/* ---------- Instant quote calculator ---------- */
.instant-quote-area { padding: 90px 0; background: #fff; }
.calculator-box {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e8ebef;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 18px 45px rgba(16, 26, 51, 0.07);
}
.calc-intro { margin: 0 0 26px; text-align: center; }
.calc-row { display: flex; gap: 20px; flex-wrap: wrap; }
.calc-row .input-box { flex: 1 1 220px; }
.calculator-box label {
  display: block;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  font-size: 15px;
}
.calculator-box input[type="number"],
.calculator-box select {
  width: 100%;
  height: 54px;
  border: 1px solid #dfe3e9;
  border-radius: 6px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 16px;
  color: var(--heading);
  background: #fff;
  outline: none;
  transition: border-color 0.3s;
}
.calculator-box input[type="number"]:focus,
.calculator-box select:focus { border-color: var(--teal); }

.btn-one {
  display: inline-block;
  margin-top: 24px;
  padding: 15px 42px;
  border: none;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-one:hover { background: var(--green-dark); transform: translateY(-2px); }
#calc-btn { width: 100%; }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }

.calc-error {
  margin: 12px 0 0;
  color: #d9534f;
  font-size: 15px;
  min-height: 22px;
  text-align: center;
}

.quote-result {
  margin-top: 26px;
  padding: 30px 24px;
  border-radius: 8px;
  background: #eefaf9;
  border: 1px solid #cdeeeb;
  text-align: center;
  display: none;
}
.quote-result.show { display: block; animation: popIn 0.45s ease; }
@keyframes popIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.result-label { margin: 0; font-weight: 600; color: var(--heading); }
.quote-price {
  font-size: 52px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.15;
  margin: 6px 0 4px;
}
.result-note { margin: 0 0 6px; font-size: 15px; }

/* ---------- Quote area ---------- */
.quote-area { position: relative; padding-bottom: 90px; }
.video-gallery-bg .img-holder { position: relative; }
.video-gallery-bg .img-holder img { width: 100%; height: 420px; object-fit: cover; }
.video-gallery-bg .icon-holder {
  position: absolute;
  inset: 0;
  /* Brand-tinted scrim keeps the white heading legible over the bright,
     sunlit banner photo. */
  background: linear-gradient(
    100deg,
    rgba(16, 26, 51, 0.82) 0%,
    rgba(16, 26, 51, 0.66) 45%,
    rgba(28, 181, 173, 0.42) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
/* The quote form card overlaps the banner's lower edge, so the heading is
   lifted clear of it. */
.video-gallery-bg .icon-holder .inner { padding: 0 20px 90px; }
.video-gallery-bg .icon-holder h3 {
  font-family: 'Caveat', cursive;
  font-size: 30px;
  color: #fff;
  font-weight: 600;
}
.video-gallery-bg .icon-holder h1 { font-size: 44px; color: #fff; font-weight: 700; }

.quote-area .inner-content { margin-top: -140px; position: relative; z-index: 3; }
.quote-form {
  background: #fff;
  border-radius: 8px;
  padding: 45px 40px;
  box-shadow: 0 20px 45px rgba(16, 26, 51, 0.10);
}
.quote-form .title h2 { font-size: 32px; font-weight: 700; margin-bottom: 28px; }
.default-form .input-box { margin-bottom: 20px; }
.default-form input,
.default-form select,
.default-form textarea {
  width: 100%;
  height: 52px;
  border: 1px solid #e3e6eb;
  background: #f7f8fa;
  border-radius: 6px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--heading);
  outline: none;
  transition: border-color 0.3s;
}
.default-form textarea { height: 140px; padding: 14px 16px; resize: vertical; }
.default-form input:focus,
.default-form select:focus,
.default-form textarea:focus { border-color: var(--teal); }
.default-form input.invalid,
.default-form textarea.invalid { border-color: #d9534f; }
.form-status { margin: 14px 0 0; font-size: 15px; color: var(--green); min-height: 22px; }

.quote-right-box {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(16, 26, 51, 0.10);
  height: 100%;
}
.quote-right-box .image-holder img { width: 100%; height: 300px; object-fit: cover; }
.quote-right-box .text-holder { padding: 30px 28px 35px; text-align: center; }
.quote-right-box .text-holder h4 { font-size: 20px; font-weight: 600; margin-bottom: 20px; line-height: 1.5; }
.quote-right-box .text-holder a {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 6px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}
.quote-right-box .text-holder a:hover { background: #dd4f28; }

/* ---------- Footer ---------- */
.footer-area { background: var(--dark); padding: 80px 0 50px; }
.footer-logo img { height: 70px; width: auto; margin-bottom: 25px; }
.footer-area p { color: #a9aeba; margin: 0; }
.single-footer-widget .title h3 { color: #fff; font-size: 22px; margin-bottom: 25px; }
.single-footer-widget .contact-info { list-style: none; margin: 0; padding: 0; }
.single-footer-widget .contact-info li { margin-bottom: 20px; }
.single-footer-widget .contact-info span { color: #a9aeba; font-size: 15px; }
.single-footer-widget .contact-info h3 { font-size: 28px; }
.single-footer-widget .contact-info h3 a { color: var(--green); }
.marleft40 { padding-left: 40px; }

.footer-bottom-area { background: #141b2b; padding: 22px 0; }
.footer-bottom-area p { color: #8d93a1; margin: 0; font-size: 15px; }
.footer-bottom-area a { color: var(--green); }

/* ---------- Header call button ---------- */
.header-right { display: flex; align-items: center; gap: 26px; }
.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 13px 22px;
  border-radius: 6px;
  transition: 0.3s;
  white-space: nowrap;
}
.header-call-btn:hover { background: var(--green-dark); transform: translateY(-2px); }
.header-call-btn .num { font-weight: 700; }
.header-call-btn .label { display: none; }
.phone-glyph {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-color: currentColor;
  -webkit-mask: var(--phone-mask) center / contain no-repeat;
  mask: var(--phone-mask) center / contain no-repeat;
}
:root {
  --phone-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.2.4 2.4.6 3.7.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.7.1.4 0 .8-.2 1l-2.3 2.1z'/%3E%3C/svg%3E");
}
.slider-contact-info .title-holder h1 a { color: inherit; }

/* ---------- Hero buttons ---------- */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(24px);
}
.slide-item.active .hero-buttons {
  animation: heroIn 0.9s ease forwards;
  animation-delay: 0.3s;
}
.hero-buttons .btn-one { padding: 14px 30px; font-size: 15px; }
.btn-ghost {
  background: rgba(255,255,255,0.14);
  border: 2px solid #fff;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: #fff; color: var(--green); }

/* ---------- Calculator additions ---------- */
.calculator-box label .opt { font-weight: 400; color: var(--body-text); font-size: 13px; }
.calc-hint {
  margin: -4px 0 22px;
  font-size: 14px;
  color: var(--teal);
  min-height: 20px;
}
.quote-breakdown {
  list-style: none;
  margin: 22px 0 24px;
  padding: 20px 0 0;
  border-top: 1px dashed #d8dde5;
  text-align: left;
}
.quote-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  padding: 7px 0;
}
.quote-breakdown li span:last-child { font-weight: 600; color: var(--heading); white-space: nowrap; }
.quote-breakdown .total-row {
  border-top: 1px solid #e3e7ee;
  margin-top: 8px;
  padding-top: 14px;
  font-weight: 700;
  color: var(--heading);
}
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.btn-call { background: var(--orange); }
.btn-call:hover { background: #dd4f28; }

/* ---------- Before & After ---------- */
.results-area { padding: 90px 0; background: var(--light-bg); }
.results-intro { max-width: 640px; margin: -30px auto 40px; }
.before-after-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(0,0,0,0.15);
  touch-action: pan-y;
  cursor: ew-resize;
  user-select: none;
}
.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 560px;
}
.before-image,
.after-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* The "before" image is the top layer, clipped from the right so the
   dirty carpet stays on the Before (left) side of the handle. */
.before-image { clip-path: inset(0 50% 0 0); }
.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,0.35);
  pointer-events: none;
}
.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
  color: var(--green);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  z-index: 5;
  padding: 0;
}
.slider-handle:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
.image-labels {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 18px;
  pointer-events: none;
  z-index: 4;
}
.image-labels .label {
  background: rgba(16,26,51,0.75);
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.results-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 44px;
}

/* ---------- Carpet care guide ---------- */
.care-guide-area { padding: 90px 0; background: #fff; }
.care-guide-box {
  max-width: 780px;
  margin: 0 auto;
  background: var(--light-bg);
  border-radius: 10px;
  padding: 38px 40px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.07);
}
.care-guide-box label {
  display: block;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 10px;
  font-size: 15px;
}
.care-guide-box select {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 2px solid #e3e7ee;
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px;
  color: var(--heading);
  background: #fff;
  outline: none;
  transition: border-color 0.3s;
}
.care-guide-box select:focus { border-color: var(--teal); }
.care-info { display: none; margin-top: 26px; }
.care-info.show { display: block; animation: popIn 0.4s ease; }
.care-info h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--green);
}
.care-info p { margin: 0 0 12px; }
.care-info strong { color: var(--heading); }
.care-tip {
  background: #fff;
  border-left: 4px solid var(--teal);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 0;
  font-size: 15px;
}

/* ---------- Reviews ---------- */
.reviews-area { padding: 90px 0; background: var(--light-bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 30px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.07);
  transition: transform 0.35s, box-shadow 0.35s;
}
.review-card:hover { transform: translateY(-8px); box-shadow: 0 22px 46px rgba(0,0,0,0.1); }
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 18px; }
.review-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
}
.review-meta strong { color: var(--heading); font-size: 16px; }
.review-meta .stars { color: #f7b731; font-size: 16px; line-height: 1.2; letter-spacing: 2px; }
.review-card p { margin: 0; font-size: 15px; }

/* ---------- Mobile call bar ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 16px;
  bottom: 24px;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 26px rgba(59,169,53,0.45);
  z-index: 500;
  animation: pulseCta 2.4s infinite;
}
@keyframes pulseCta {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ---------- Floating controls ---------- */
#mute-btn {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  z-index: 500;
  user-select: none;
}
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.35s;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  z-index: 500;
}
.scroll-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Motion handoff ----------
   Scroll reveals are owned by GSAP + ScrollTrigger (animations.js). Once the
   motion layer boots it adds .gsap-hero, which disables the CSS keyframe
   intro so the two systems never animate the same properties. */
.gsap-hero .slide-item.active .shape h3,
.gsap-hero .slide-item.active .title,
.gsap-hero .slide-item.active .hero-buttons {
  animation: none;
}
.gsap-hero .slide-item .shape h3,
.gsap-hero .slide-item .title,
.gsap-hero .slide-item .hero-buttons {
  opacity: 1;
  transform: none;
}

/* If the module fails to load, content must still be visible and usable. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mobile-cta { animation: none; }
  .single-choose-box:hover,
  .single-service-style1:hover,
  .review-card:hover,
  .header-call-btn:hover,
  .btn-one:hover { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .slide-item .content-box { padding-left: 90px; }
  .slider-dots { left: 30px; }
  .slide-item .title { font-size: 50px; }
}

@media (max-width: 991px) {
  .col-4, .col-6, .col-8 { width: 100%; }
  .sec-title .title { font-size: 34px; }
  .slide-item::before { right: 0; opacity: 0.72; }
  .slide-item .content-box { padding-left: 60px; }
  .silder-right-content { display: none; }
  .welcome-image-box { padding: 40px 0 80px 70px; min-height: 540px; }
  .welcome-content-box { padding: 40px 0 0; }
  .marleft40 { padding-left: 0; margin-top: 40px; }
  .quote-area .inner-content { margin-top: -100px; }
  .quote-right-box { margin-top: 30px; }
  .header-right { gap: 16px; }
  .header-call-btn { padding: 11px 18px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; margin-top: 48px; }
  .stat-number { font-size: 36px; }
  .results-area, .care-guide-area, .reviews-area, .instant-quote-area { padding: 70px 0; }
}

@media (max-width: 767px) {
  .main-header .inner-container { padding: 10px 16px; }
  .logo-box img { height: 42px; }
  .opening-time { display: none; }
  .header-call-btn { padding: 11px 16px; font-size: 14px; }
  .header-call-btn .num { display: none; }
  .header-call-btn .label { display: inline; }
  .home-slider-one { margin-top: 66px; height: 540px; }
  .slide-item .title { font-size: 34px; }
  .slide-item .content-box { padding-left: 40px; max-width: none; padding-right: 20px; }
  .hero-buttons { margin-top: 24px; gap: 10px; }
  .hero-buttons .btn-one { padding: 13px 22px; font-size: 14px; }
  .slider-dots { left: 14px; }
  .secpd1 { padding: 60px 0; }
  .sec-title { margin-bottom: 40px; }
  .sec-title .title { font-size: 28px; }
  .sec-title h3 { font-size: 25px; }
  .welcome-image-box { padding: 30px 0 70px 40px; min-height: 460px; }
  .welcome-image-box .image-thumb1 { width: 150px; top: 60px; }
  .welcome-image-box .image-thumb2 { width: 150px; left: 70px; }
  .welcome-image-box .icon-box { width: 74px; height: 74px; right: 10px; }
  .welcome-content-box .top .title h2 { font-size: 22px; }
  .working-steps-area { padding: 60px 0 40px; }
  .stats-row { margin-top: 40px; padding-top: 32px; gap: 26px 16px; }
  .stat-number { font-size: 30px; }
  .stat-item p { font-size: 13px; }
  .calculator-box { padding: 26px 20px; }
  .calc-row { gap: 14px; }
  .calc-row .input-box { flex: 1 1 100%; }
  .quote-price { font-size: 40px; }
  .quote-breakdown li { font-size: 14px; flex-wrap: wrap; gap: 4px; }
  .result-actions .btn-one,
  .results-cta .btn-one { width: 100%; text-align: center; }
  .quote-form { padding: 30px 22px; }
  .video-gallery-bg .icon-holder h1 { font-size: 26px; }
  .video-gallery-bg .img-holder img { height: 320px; }
  .results-area, .care-guide-area, .reviews-area, .instant-quote-area { padding: 60px 0; }
  .results-intro { margin: -20px auto 30px; font-size: 15px; }
  .before-after-slider { aspect-ratio: 3 / 2; }
  .slider-handle { width: 46px; height: 46px; font-size: 17px; }
  .image-labels { top: 12px; padding: 0 12px; }
  .image-labels .label { font-size: 12px; padding: 5px 10px; }
  .results-cta { margin-top: 32px; }
  .care-guide-box { padding: 26px 22px; }
  .care-info h4 { font-size: 19px; }
  .reviews-grid { gap: 20px; }
  .review-card { padding: 26px 22px; }
  .mobile-cta { display: inline-flex; }
  #mute-btn { right: 88px; bottom: 24px; width: 46px; height: 46px; }
  .scroll-to-top { right: 24px; bottom: 24px; width: 46px; height: 46px; }
}

@media (max-width: 479px) {
  .container { padding: 0 16px; }
  .slide-item .title { font-size: 28px; }
  .slide-item .content-box { padding-left: 28px; }
  .slide-item .shape h3 { font-size: 13px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-buttons .btn-one { width: 100%; text-align: center; }
  .sec-title .title { font-size: 24px; }
  .quote-price { font-size: 34px; }
  .mobile-cta { padding: 12px 20px; font-size: 15px; }
}
