@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.header-section {
  padding-left: 7rem;
  padding-right: 7rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
  text-align: center;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
}
.hero-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(90%);
  z-index: 0;
}
.hero-section .gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent);
  z-index: 0;
}
.hero-section .hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 72rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 7rem;
  color: #ffffff;
  text-align: left;
}
@media (min-width: 768px) {
  .hero-section .hero-content {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.hero-section .hero-content h1 {
  text-transform: uppercase;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.5rem;
  max-width: 64rem;
}
@media (min-width: 768px) {
  .hero-section .hero-content h1 {
    font-size: 4.5rem;
  }
}
.hero-section .hero-content h1 br {
  display: none;
}
@media (min-width: 768px) {
  .hero-section .hero-content h1 br {
    display: block;
  }
}
.hero-section .hero-content .subheading {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
  max-width: 40rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .hero-section .hero-content .subheading {
    font-size: 3rem;
  }
}
.hero-section .hero-content .description {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 48rem;
  line-height: 1.5;
  font-weight: 500;
}
@media (min-width: 768px) {
  .hero-section .hero-content .description {
    font-size: 1.5rem;
  }
}
.hero-section .hero-content .button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
  padding-left: 0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: -moz-max-content;
  max-width: max-content;
}
.hero-section .hero-content .button-group a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}
.hero-section .hero-content .button-group a i {
  font-size: 1.25rem;
}
.hero-section .hero-content .button-group a:hover {
  background-color: #ffffff;
  color: #1e90ff;
}

.section {
  text-align: center;
}
.section__title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}
.section__subtitle {
  font-size: 1.25rem;
  color: #1e90ff;
  margin-bottom: 1rem;
}
.section__description {
  max-width: 60rem;
  margin: 0 auto 2.5rem;
  color: #475569;
  line-height: 1.6;
}

.wash-fold {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 1rem;
  margin-top: 8rem;
}
@media (min-width: 1024px) {
  .wash-fold {
    grid-template-columns: 2fr 2fr;
  }
}
.wash-fold__left {
  position: sticky;
  top: 50%; /* วาง sticky ที่ตรงกลางหน้าจอ */
  transform: translateY(-50%);
  align-self: start; /* เพื่อให้เริ่มต้นอยู่บนก่อน scroll */
  text-align: left;
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
  z-index: 1;
}
.wash-fold__left.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.wash-fold__left::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(30, 144, 255, 0), #1e90ff, #126e9d);
  border-radius: 4px;
}
.wash-fold__left .wf-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1e90ff; /* สีน้ำเงินเข้มสดใส หรูหรา */
  margin-bottom: 0.5rem;
}
.wash-fold__left .wf-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #4b5563; /* เทาเข้มเรียบหรู */
}
.wash-fold__right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.wash-fold__right .service-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}
.wash-fold__right .service-image img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.wash-fold__right .service-image:hover img {
  transform: scale(1.03);
}
.wash-fold__right .wf-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(to top left, #ffffff, #f8fbff);
  padding: 1.75rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 12px 24px rgba(0, 0, 0, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
  position: relative;
}
.wash-fold__right .wf-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.4), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.wash-fold__right .wf-item:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.07), 0 20px 32px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transform: translateY(-6px);
}
.wash-fold__right .wf-item .wf-icon {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: radial-gradient(circle at 30% 30%, #e0f7ff, #c2e9f7);
  box-shadow: inset -2px -2px 4px rgba(255, 255, 255, 0.6), inset 2px 2px 6px rgba(0, 0, 0, 0.06), 0 4px 10px rgba(14, 186, 226, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #1e90ff;
  z-index: 1;
  transition: transform 0.3s ease;
}
.wash-fold__right .wf-item .wf-icon:hover {
  transform: scale(1.1) rotate(2deg);
}
.wash-fold__right .wf-item .wf-text {
  flex: 1;
  z-index: 1;
}
.wash-fold__right .wf-item .wf-text .wf-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.wash-fold__right .wf-item .wf-text .wf-description {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  opacity: 0.95;
}

#prevBtn,
#nextBtn {
  position: absolute;
  top: 50%;
  font-size: 2rem;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease;
}

#prevBtn:hover,
#nextBtn:hover {
  transform: translateY(-50%) scale(1.1);
}

#prevBtn {
  left: 1.5rem;
}

#nextBtn {
  right: 1.5rem;
}

@media (max-width: 767px) {
  #prevBtn {
    left: 0.9rem;
  }
  #nextBtn {
    right: 0.9rem;
  }
}
#prevBtn2,
#nextBtn2 {
  position: absolute;
  top: 49%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease;
}

#prevBtn2:hover,
#nextBtn2:hover {
  transform: translateY(-50%) scale(1.1);
}

#prevBtn2 {
  left: 1.5rem;
}

#nextBtn2 {
  right: 1.5rem;
}

@media (max-width: 767px) {
  #prevBtn2 {
    left: 0.9rem;
  }
  #nextBtn2 {
    right: 0.9rem;
  }
}/*# sourceMappingURL=style.css.map */