@charset "UTF-8";
body {
  margin-top: 130px;
}
@media (max-width: 768px) {
  body {
    margin-top: 95px;
  }
}

h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #00315e;
  font-weight: 600;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}

.cta-link {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  z-index: 9999;
  flex-direction: column;
  display: flex;
  gap: 1rem;
  /* 避免子項目被等寬拉伸，同時維持靠右貼齊 */
  align-items: flex-end;
}
@media (max-width: 768px) {
  .cta-link {
    bottom: 1rem;
    right: 0.5rem;
    flex-direction: row;
    width: 100%;
    bottom: 0;
    background: #00315e;
    left: 0;
    gap: 0;
  }
}
.cta-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 2rem;
  overflow: hidden;
}
.cta-link a:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3647058824);
}
@media (max-width: 768px) {
  .cta-link a {
    background: blue;
    flex: 1;
    border-radius: 0;
    border: none;
    padding: 0.5rem 0;
  }
}
.cta-link a.facebook {
  background: #3a559f;
}
@media (max-width: 768px) {
  .cta-link a.facebook {
    background: none;
  }
}
.cta-link a.line {
  background: #39cd00;
}
@media (max-width: 768px) {
  .cta-link a.line {
    background: none;
  }
}
.cta-link a.tel {
  background: #88e0ef;
}
@media (max-width: 768px) {
  .cta-link a.tel {
    background: none;
  }
}
.cta-link a.tel .label {
  color: #333;
}
.cta-link a.tel svg #background {
  fill: #00315e;
  fill: #88e0ef;
}
.cta-link a.tel svg #icon {
  fill: #333;
}
.cta-link a .icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .cta-link a .icon {
    border: 1px solid rgba(255, 255, 255, 0.222);
    border-radius: 100%;
  }
}
.cta-link a .icon svg {
  width: 50px;
}
@media (max-width: 768px) {
  .cta-link a .icon svg {
    width: 30px;
  }
}
.cta-link a .label {
  white-space: nowrap;
  overflow: hidden;
  color: white;
  /* 用可動畫屬性取代 display */
  opacity: 0;
  visibility: hidden;
  max-width: 0; /* 或用 width，依喜好 */
  margin-left: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}
@media (max-width: 768px) {
  .cta-link a .label {
    display: none;
  }
}
.cta-link a .info {
  font-size: 0.9rem;
}
.cta-link a:hover {
  gap: 0.5rem;
}
.cta-link a:hover .label {
  opacity: 1;
  visibility: visible;
  max-width: 200px;
  margin-left: 0rem;
  padding-right: 1rem;
  transform: translateX(0);
  transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease, transform 0.3s ease, visibility 0s;
}
.cta-link .dropdown-menu {
  margin-right: 0.25rem;
  margin-left: 0;
}
.cta-link .info {
  display: none;
}
@media (max-width: 768px) {
  .cta-link .info {
    display: inline-block;
    padding-left: 0.5rem;
  }
}

.navbar-brand {
  display: flex;
}
.navbar-brand img {
  width: 120px;
  height: 120px;
}
@media (max-width: 768px) {
  .navbar-brand img {
    width: 85px;
    height: 85px;
  }
}

.logo {
  position: relative;
  width: 100%;
  padding-left: 14rem;
}
@media (max-width: 768px) {
  .logo {
    padding-left: 11rem;
  }
}
.logo h2 {
  font-size: 2.5rem;
  position: absolute;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  left: 50%;
  top: 50%;
  font-weight: bolder;
}
@media (max-width: 768px) {
  .logo h2 {
    font-size: 2rem;
  }
}
.logo h2:nth-child(1) {
  color: #205994;
  -webkit-text-stroke: 1px white;
}
.logo h2:nth-child(1)::after {
  content: "E享家清潔";
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-text-stroke: 5px #b2d8e9;
}
.logo h2:nth-child(2) {
  color: #022f5e;
  animation: wave-clip 4s ease-in-out infinite;
}

@media (max-width: 768px) {
  .logo h2:nth-child(1) {
    -webkit-text-stroke: 0;
    text-shadow: 0 0 1px white, 0 0 3px #b2d8e9;
  }
  .logo h2:nth-child(1)::after {
    content: none !important;
  }
}
@keyframes wave-clip {
  0%, 100% {
    -webkit-clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
#hero {
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  #hero {
    height: 30vh;
  }
}
#hero .swiper {
  position: absolute;
  top: -10%; /* 往上預留位移空間 */
  left: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 8s ease; /* 控制漸進放大 */
}
#hero .swiper .swiper-slide-active img {
  transform: scale(1.1); /* 只要變 active 就開始放大 */
}
@media (max-width: 768px) {
  #hero .swiper .swiper-slide-active img {
    transform: scale(1.05); /* 只要變 active 就開始放大 */
  }
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2rem;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.438);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.553), rgba(0, 0, 0, 0));
}
@media (max-width: 768px) {
  #hero .cta-box {
    padding: 2rem;
  }
}
#hero .cta-box .cta-content {
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content {
    padding: 0;
  }
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 1rem;
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content p {
    margin-bottom: 1rem;
  }
}
#hero .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
#hero .cta-box .cta-content .btn-box a {
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  transition: 0.5s;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content .btn-box a {
    padding: 0.5rem 1rem;
  }
}
#hero .cta-box .cta-content .btn-box a i {
  padding-left: 0.5rem;
  font-size: 1.3rem;
}
#hero .cta-box .cta-content .btn-box a:first-child {
  background: #ff9b6a;
  color: white;
}
#hero .cta-box .cta-content .btn-box a:last-child {
  color: gray;
  background: white;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content .btn-box a:last-child {
    display: none;
  }
}
#hero .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #ff9b6a;
}

#services {
  padding: 2rem 0;
}
#services .service-card {
  display: inline-block;
  background: red;
  width: 100%;
}
#services .service-card:hover .image-box img {
  transform: scale(1.3);
}
#services .service-card:hover .image-box .content img {
  animation: rotateY 3s 3s ease;
  animation: rotateY 1s ease;
  animation-fill-mode: none;
}
#services .service-card:hover .image-box .more {
  transform: translateY(0px);
}
#services .service-card .image-box {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  #services .service-card .image-box {
    height: 300px;
  }
}
#services .service-card .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s;
}
#services .service-card .image-box .content {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
#services .service-card .image-box .content img {
  width: 70px;
  height: 70px;
  filter: invert(1);
  transform-style: preserve-3d;
  transform: perspective(250px);
}
#services .service-card .image-box .content h4 {
  color: white;
}
#services .service-card .image-box .more {
  display: inline-block;
  width: 100%;
  background: #ff9b6a;
  position: absolute;
  bottom: 0rem;
  left: 0;
  padding: 0.5rem;
  text-align: center;
  color: white;
  transform: translateY(40px);
  transition: 1s;
}

@keyframes rotateY {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.blog-recommend {
  padding: 60px 16px;
  background: #f7f8fa;
  /* 標題區 */
  /* 卡片內容 */
}
@media (max-width: 600px) {
  .blog-recommend {
    padding: 40px 16px;
  }
}
.blog-recommend .blog-container {
  max-width: 960px;
  margin: 0 auto;
}
.blog-recommend .blog-section-label {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 8px;
}
.blog-recommend .blog-section-title {
  font-size: 1.7rem;
  margin: 0 0 8px;
  color: #222222;
}
@media (max-width: 600px) {
  .blog-recommend .blog-section-title {
    font-size: 1.4rem;
  }
}
.blog-recommend .blog-section-desc {
  max-width: 600px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #555555;
  margin: 0 0 24px;
}
@media (max-width: 600px) {
  .blog-recommend .blog-section-desc {
    font-size: 0.92rem;
  }
}
.blog-recommend .blog-card {
  display: block;
  padding: 20px 24px;
  border-radius: 16px;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  /* 小標籤 */
  /* 標題 */
  /* 摘要 */
  /* Meta 資訊 */
  /* CTA */
}
@media (max-width: 600px) {
  .blog-recommend .blog-card {
    padding: 18px 18px;
    border-radius: 14px;
  }
}
.blog-recommend .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(0, 0, 0, 0.08);
  background: #ffffff;
}
.blog-recommend .blog-card:hover .blog-card-cta {
  color: #1e40af;
}
.blog-recommend .blog-card:hover .blog-card-cta .arrow {
  transform: translate(2px, -1px);
}
.blog-recommend .blog-card-tag {
  display: inline-block;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.08);
  color: #1d4ed8;
  margin-bottom: 10px;
}
.blog-recommend .blog-card-title {
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0 0 8px;
  color: #111827;
}
@media (max-width: 600px) {
  .blog-recommend .blog-card-title {
    font-size: 1.08rem;
  }
}
.blog-recommend .blog-card-excerpt {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 14px;
}
@media (max-width: 600px) {
  .blog-recommend .blog-card-excerpt {
    font-size: 0.9rem;
  }
}
.blog-recommend .blog-card-meta {
  font-size: 0.82rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.blog-recommend .blog-card-meta .dot {
  font-size: 0.9rem;
}
.blog-recommend .blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.94rem;
  font-weight: 500;
  color: #1d4ed8;
}
.blog-recommend .blog-card-cta .arrow {
  font-size: 1rem;
  transition: transform 0.18s ease;
}

#contact-2 {
  margin-top: 5rem;
  background: #f2f2f2;
  padding: 5rem 0;
}
@media (max-width: 768px) {
  #contact-2 {
    padding-bottom: 1rem;
  }
}
#contact-2 .contact-box {
  display: flex;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #contact-2 .contact-box {
    margin-bottom: 1rem;
  }
}
#contact-2 .contact-box:last-child {
  margin-bottom: 0;
}
#contact-2 .contact-box .icon-box {
  background: #00315e;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
#contact-2 .contact-box .icon-box i {
  color: white;
  font-size: 2rem;
}
#contact-2 .contact-box a {
  color: #00315e;
  font-weight: 600;
}
#contact-2 .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}
#contact-2 .contact-box b {
  color: #00315e;
  text-decoration: underline;
}

@media (max-width: 768px) {
  footer {
    margin-bottom: 48px;
  }
}

.title-section {
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 5rem;
  color: white;
  gap: 2rem;
}
@media (max-width: 768px) {
  .title-section {
    height: 200px;
    padding: 2rem;
    gap: 1rem;
  }
}
.title-section::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.title-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.title-section .breadcrumb {
  display: flex;
  gap: 0.5rem;
  color: rgb(184, 184, 184);
}
.title-section .breadcrumb a {
  color: #88e0ef;
}

.page-h2 {
  background: white;
  color: #00315e;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0 2rem;
}
.page-h2 h2 {
  margin-bottom: 0;
  display: inline-block;
  background: white;
  padding: 1rem;
}
.page-h2::after {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background: #00315e;
  content: "";
}

.price-card {
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  margin-bottom: 2rem;
}
.price-card .price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .price-card .price-box {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
@media (max-width: 768px) {
  .price-card .price-box .title {
    margin-bottom: 2rem;
  }
}
.price-card .price-box .title .tag {
  display: inline-block;
  background: #ff9b6a;
  background: #00315e;
  color: white;
  padding: 0rem 0.5rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}
.price-card .price-box .title .name {
  font-size: 1.5rem;
}
.price-card .price-box .price {
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media (max-width: 768px) {
  .price-card .price-box .price {
    align-items: start;
  }
}
.price-card .price-box .price .promo {
  font-size: 2rem;
  color: #ff9b6a;
  font-weight: 600;
}
.price-card .price-box .price .original {
  color: gray;
  text-decoration: line-through;
}
.price-card p {
  margin-bottom: 0;
  color: gray;
}

.cleaning-complete {
  display: flex;
  gap: 1.5rem;
  padding: 0;
  list-style: none;
  justify-content: center;
}
@media (max-width: 768px) {
  .cleaning-complete {
    gap: 1rem;
  }
}
.cleaning-complete li {
  font-size: 1.3rem;
  color: #00315e;
}
@media (max-width: 768px) {
  .cleaning-complete li {
    font-size: 1rem;
  }
}
.cleaning-complete li i {
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .cleaning-complete li i {
    margin-right: 0.2rem;
  }
}

.info-list {
  color: gray;
}
.info-list li {
  margin-bottom: 1rem;
}

.control-box {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .control-box {
    font-size: 1.2rem;
  }
}
.control-box .cta-tel {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #ff9b6a;
  background: #39cd00;
  color: white;
  border-radius: 3rem;
}
@media (max-width: 768px) {
  .control-box .cta-tel {
    padding: 0.8rem 1.5rem;
  }
}
.control-box .cta-tel svg {
  width: 3rem;
  height: 3rem;
}
@media (max-width: 768px) {
  .control-box .cta-tel svg {
    width: 2rem;
    height: 2rem;
  }
}
.control-box .return {
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  border: 2px solid gray;
  color: gray;
}
.control-box .return:hover {
  background: gray;
  color: white;
}
@media (max-width: 768px) {
  .control-box .return {
    padding: 0.8rem 1.5rem;
  }
}

.time {
  font-size: 1.5rem;
  color: #ff9b6a;
}/*# sourceMappingURL=style.css.map */