@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap");
:root {
  font-size: clamp(16px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.7rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.35rem);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 500;
}

h5 {
  font-size: clamp(1.125rem, 1.7vw, 1.2rem);
  font-weight: 400;
}

h6 {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
}

p,
a,
span {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
}

small {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
}

li {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
}

button,
input,
textarea,
select {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.4;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h2 {
  margin-bottom: 3rem;
  text-align: center;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}

section {
  padding: 8rem 0rem;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

a {
  text-decoration: none;
  color: #5f7d6d;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

.all-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  opacity: 0.2;
}
.all-bg img {
  width: 100%;
  height: 100%;
}

.cta-link {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  z-index: 999;
  flex-direction: column;
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .cta-link {
    bottom: 1rem;
    right: 0.5rem;
  }
}
.cta-link .tel {
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  outline: none;
}
.cta-link .tel.dropdown-toggle::before {
  display: none;
}
.cta-link .tel .name {
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  border: 1.5px solid white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background: red;
  font-size: 0.8rem;
  border-radius: 100%;
}
.cta-link svg {
  width: 50px;
}
.cta-link svg.phone #background {
  fill: #5f7d6d;
  fill: #e6b860;
}
.cta-link svg.phone #icon {
  fill: white;
  fill: #333;
}
@media (max-width: 768px) {
  .cta-link svg {
    width: 43px;
  }
}
.cta-link .dropdown-menu {
  margin-right: 0.25rem;
  margin-left: 0;
}

.navbar.scrolled {
  background: #5f7d6d;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: #5f7d6d;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-toggler-icon {
  filter: invert(1);
}
.navbar .navbar-brand {
  display: inline-block;
  text-decoration: none;
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35), 0 0 8px rgba(255, 255, 255, 0.18);
}
@media (max-width: 768px) {
  .navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
  }
}
.navbar .navbar-brand:hover {
  color: #fafaf2; /* 米白高光 */
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.45), 0 0 12px rgba(255, 255, 255, 0.28);
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
  color: white;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 1rem 1em;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #5f7d6d;
}

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.438);
}
#hero .cta-box .cta-content {
  text-align: center;
  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;
  text-align: center;
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
}
#hero .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content .btn-box {
    flex-direction: column;
  }
}
#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;
}
#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: #5f7d6d;
  color: white;
}
#hero .cta-box .cta-content .btn-box a:last-child {
  color: gray;
  background: white;
}
#hero .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #5f7d6d;
}
#hero .swiper {
  width: 100%;
  height: 100%;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#works {
  position: relative;
}
#works .bg {
  position: absolute;
  width: 50%;
  height: 60%;
  bottom: 0%;
  right: 0%;
  background: rgba(95, 125, 109, 0.5);
  z-index: -1;
}
@media (max-width: 768px) {
  #works .bg {
    height: 77%;
    width: 80%;
  }
}
#works .swiper img,
#works .swiper video {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #works .swiper img,
  #works .swiper video {
    height: 300px;
  }
}

#about .about-content .mission-statement {
  text-align: center;
  margin-bottom: 3rem;
}
#about .about-content .mission-statement h3 {
  color: #5f7d6d;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 600;
}
#about .about-content .mission-statement .lead {
  font-size: 1.25rem;
  color: #333333;
  margin-bottom: 1rem;
  line-height: 1.6;
}
#about .about-content .mission-statement p {
  color: #666;
  font-size: 1.1rem;
}
#about .about-content .principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
#about .about-content .principles-grid .principle-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #5f7d6d;
}
#about .about-content .principles-grid .principle-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(149, 157, 165, 0.25) 0px 12px 32px;
}
#about .about-content .principles-grid .principle-card .principle-icon {
  background: linear-gradient(135deg, #5f7d6d, #8fbf99);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
#about .about-content .principles-grid .principle-card .principle-icon i {
  color: white;
  font-size: 1.8rem;
}
#about .about-content .principles-grid .principle-card h4 {
  color: #5f7d6d;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}
#about .about-content .principles-grid .principle-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}
#about .about-content .vision-statement {
  text-align: center;
}
#about .about-content .vision-statement blockquote {
  background: linear-gradient(135deg, #5f7d6d, #8fbf99);
  color: white;
  padding: 2.5rem;
  border-radius: 1rem;
  margin: 0;
  position: relative;
}
#about .about-content .vision-statement blockquote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.3;
}
#about .about-content .vision-statement blockquote p {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.5;
}
#about .about-content .vision-statement blockquote footer {
  font-size: 1rem;
  opacity: 0.9;
  font-style: italic;
}

#services {
  background: white;
}
#services .service-card {
  background: #fafaf2;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}
#services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(95, 125, 109, 0.2) 0px 12px 32px;
  border-color: #8fbf99;
}
#services .service-card.service-card-wide {
  background: linear-gradient(135deg, #5f7d6d, #8fbf99);
  color: white;
}
#services .service-card.service-card-wide .service-icon {
  background: rgba(255, 255, 255, 0.2);
}
#services .service-card.service-card-wide .service-icon i {
  color: white;
}
#services .service-card.service-card-wide h4 {
  color: white;
}
#services .service-card.service-card-wide ul li {
  color: rgba(255, 255, 255, 0.9);
}
#services .service-card .service-icon {
  background: #5f7d6d;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
#services .service-card .service-icon i {
  color: white;
  font-size: 2rem;
}
#services .service-card h4 {
  color: #5f7d6d;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}
#services .service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#services .service-card ul li {
  color: #666;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
#services .service-card ul li::before {
  content: "•";
  color: #8fbf99;
  font-weight: bold;
  position: absolute;
  left: 0;
}
#services .service-card ul li:last-child {
  margin-bottom: 0;
}

#process {
  background: #f5f5f3;
}
#process .process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
#process .process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #5f7d6d, #8fbf99);
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  #process .process-timeline::before {
    left: 30px;
  }
}
#process .process-timeline .process-step {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}
#process .process-timeline .process-step:last-child {
  margin-bottom: 0;
}
#process .process-timeline .process-step:nth-child(odd) {
  flex-direction: row;
}
#process .process-timeline .process-step:nth-child(odd) .step-content {
  margin-left: 2rem;
  text-align: left;
}
@media (max-width: 768px) {
  #process .process-timeline .process-step:nth-child(odd) .step-content {
    margin-left: 1rem;
  }
}
@media (max-width: 768px) {
  #process .process-timeline .process-step:nth-child(odd) {
    flex-direction: row;
  }
}
#process .process-timeline .process-step:nth-child(even) {
  flex-direction: row-reverse;
}
#process .process-timeline .process-step:nth-child(even) .step-content {
  margin-right: 2rem;
  text-align: right;
}
@media (max-width: 768px) {
  #process .process-timeline .process-step:nth-child(even) .step-content {
    margin-right: 1rem;
    text-align: left;
  }
}
@media (max-width: 768px) {
  #process .process-timeline .process-step:nth-child(even) {
    flex-direction: row;
  }
}
#process .process-timeline .process-step .step-number {
  background: linear-gradient(135deg, #5f7d6d, #8fbf99);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(95, 125, 109, 0.3);
}
@media (max-width: 768px) {
  #process .process-timeline .process-step .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
#process .process-timeline .process-step .step-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
  flex: 1;
  max-width: 400px;
}
@media (max-width: 768px) {
  #process .process-timeline .process-step .step-content {
    max-width: none;
    padding: 1.5rem;
  }
}
#process .process-timeline .process-step .step-content .step-img {
  margin-bottom: 2rem;
}
#process .process-timeline .process-step .step-content .step-img img {
  width: 100%;
  height: 200px;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}
#process .process-timeline .process-step .step-content h4 {
  color: #5f7d6d;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}
#process .process-timeline .process-step .step-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .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 .contact-box {
    margin-bottom: 1rem;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box .icon-box {
  background: #5f7d6d;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
#contact .contact-box .icon-box i {
  color: white;
  font-size: 2rem;
}
#contact .contact-box a {
  color: #5f7d6d;
  font-weight: 600;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

footer {
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
}/*# sourceMappingURL=all.css.map */