@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(17px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(1.75rem, 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: 500;
}

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;
}

:root {
  --swiper-theme-color: white;
}

body {
  font-family: "Noto Serif TC", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #f4f4f4;
}

h2 {
  margin-bottom: 3rem;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 5px solid #4caf50;
}
@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: #4caf50;
}

.navbar.scrolled {
  background: #c7eecb;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-brand {
  font-weight: 800;
  font-size: 1.8rem;
  color: #2e7d32; /* 深綠 */
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 3px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .navbar .navbar-brand {
    font-size: 1.5rem;
  }
}
.navbar .navbar-brand:hover {
  color: #43a047;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
  color: #212121;
}
@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: #4caf50;
  border-radius: 2rem;
  border: 2px solid white;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta .nav-link {
  color: #f4f4f4;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item.cta .nav-link {
    text-align: center;
  }
}

#hero {
  width: 100%;
  height: 90vh;
  position: relative;
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2rem;
  display: flex;
  align-items: end;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}
@media (max-width: 768px) {
  #hero .cta-box {
    padding: 2rem 1rem;
    background: none;
  }
}
#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 {
    background: rgba(0, 0, 0, 0.293);
  }
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 1rem;
  text-align: center;
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
  text-shadow: 0 0 1px rgb(0, 0, 0);
}
#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: #4caf50;
  color: white;
  border: 1px solid white;
}
#hero .cta-box .cta-content .btn-box a:last-child {
  background: #f4f4f4;
  border: 2px solid white;
}
#hero .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #4caf50;
}
#hero .swiper {
  width: 100%;
  height: 100%;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

#about {
  position: relative;
}
#about img {
  height: 650px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #about img {
    height: 300px;
    margin-bottom: 2rem;
  }
}
#about .bg img {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 30%;
  height: auto;
}
@media (max-width: 768px) {
  #about .bg img {
    z-index: 2;
    width: 50%;
  }
}
#about .bg img img {
  width: 100%;
}
#about p {
  margin-bottom: 2rem;
  line-height: 2;
}

#services {
  background: #c7eecb;
}
#services .service-card {
  background: #f4f4f4;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#services .service-card img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #services .service-card img {
    height: 300px;
  }
}
#services .service-card .text {
  padding: 2rem;
}
@media (max-width: 768px) {
  #services .service-card .text {
    padding: 1rem 2rem;
  }
}
#services .service-card .text h3 {
  margin-bottom: 1rem;
  display: inline-block;
  padding-bottom: 0.5rem;
  color: #4caf50;
}
#services .service-card .text h5 {
  margin-bottom: 1rem;
  margin-top: 2rem;
}
#services .service-card .text ul {
  list-style: none;
  padding: 0;
}
#services .service-card .text .pro li i {
  margin-right: 0.5rem;
}
#services .service-card .text .applicable {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #services .service-card .text .applicable {
    gap: 0.5rem;
  }
}
#services .service-card .text .applicable li {
  background: rgb(211, 211, 211);
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
}

#process {
  background: #f4f4f4;
}
#process .subtitle {
  font-size: 1.2rem;
  color: #757575;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  #process .subtitle {
    margin-bottom: 2rem;
  }
}
#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: 4px;
  background: linear-gradient(to bottom, #4caf50, #8d775f);
  transform: translateX(-50%);
  border-radius: 2px;
}
@media (max-width: 768px) {
  #process .process-timeline::before {
    left: 30px;
    transform: none;
  }
}
#process .process-step {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #process .process-step {
    margin-bottom: 2rem;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
  }
}
#process .process-step:nth-child(odd) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  #process .process-step:nth-child(odd) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
  }
}
#process .process-step:nth-child(odd) .step-content {
  text-align: right;
  margin-right: 2rem;
}
@media (max-width: 768px) {
  #process .process-step:nth-child(odd) .step-content {
    text-align: left;
    margin-right: 0;
  }
}
#process .process-step:nth-child(even) .step-content {
  margin-left: 2rem;
}
@media (max-width: 768px) {
  #process .process-step:nth-child(even) .step-content {
    margin-left: 0;
  }
}
#process .process-step .step-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #4caf50;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}
@media (max-width: 768px) {
  #process .process-step .step-number {
    left: 30px;
    transform: translate(-50%, -50%);
  }
}
#process .process-step .step-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #4caf50;
  z-index: 1;
}
@media (max-width: 768px) {
  #process .process-step .step-icon {
    left: 30px;
    transform: translate(-50%, -50%);
  }
}
#process .process-step .step-icon i {
  color: #4caf50;
  font-size: 1.5rem;
}
#process .process-step .step-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  flex: 1;
  max-width: 400px;
}
@media (max-width: 768px) {
  #process .process-step .step-content {
    max-width: none;
    width: 100%;
    padding: 1.5rem;
  }
}
#process .process-step .step-content h3 {
  color: #4caf50;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}
#process .process-step .step-content p {
  color: #757575;
  line-height: 1.6;
  margin: 0;
}

#works {
  background: #c7eecb;
}
#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #4caf50;
}
#works .nav-pills .nav-link {
  color: #ff6b00;
}
#works h2 {
  margin-bottom: 2rem;
}
#works p {
  margin-bottom: 1rem;
}
#works .works-story {
  margin: 1.25rem 0 1.75rem;
}
@media (max-width: 991px) {
  #works .works-story {
    margin: 1rem 0 1.25rem;
  }
}
#works .story-card,
#works .cta-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 1.25rem 1.25rem;
}
@media (max-width: 576px) {
  #works .story-card,
  #works .cta-card {
    padding: 1rem;
    border-radius: 16px;
  }
}
#works .story-top {
  margin-bottom: 0.75rem;
}
@media (max-width: 576px) {
  #works .story-top {
    margin-bottom: 0.5rem;
  }
}
#works .story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.12);
  color: #ff6b00;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 0.75rem;
}
@media (max-width: 576px) {
  #works .story-badge {
    margin-bottom: 0.6rem;
  }
}
#works .story-title {
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 0 0 0.4rem;
  font-weight: 700;
  color: #111;
}
@media (max-width: 576px) {
  #works .story-title {
    font-size: 1.18rem;
  }
}
#works .story-lead {
  margin: 0 0 0.75rem;
  color: rgba(0, 0, 0, 0.68);
  font-weight: 600;
}
@media (max-width: 576px) {
  #works .story-lead {
    margin: 0 0 0.6rem;
  }
}
#works .story-body p {
  color: rgba(0, 0, 0, 0.78);
  line-height: 1.8;
}
@media (max-width: 576px) {
  #works .story-body p {
    line-height: 1.75;
  }
}
#works .story-points {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0.75rem;
}
@media (max-width: 576px) {
  #works .story-points {
    margin: 0.6rem 0 0.6rem;
  }
}
#works .story-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 0.5rem 0;
  color: rgba(0, 0, 0, 0.78);
}
#works .story-points li i {
  color: #4caf50;
  font-size: 1.15rem;
}
@media (max-width: 576px) {
  #works .story-points li i {
    font-size: 1.1rem;
  }
}
#works .story-note {
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 576px) {
  #works .story-note {
    margin: 0.6rem 0 0;
    padding-top: 0.6rem;
  }
}
#works .cta-title {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #111;
}
@media (max-width: 576px) {
  #works .cta-title {
    font-size: 1.05rem;
  }
}
#works .cta-desc {
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.75;
  margin-bottom: 0.9rem;
}
@media (max-width: 576px) {
  #works .cta-desc {
    margin-bottom: 0.75rem;
  }
}
#works .cta-list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  #works .cta-list {
    gap: 0.5rem;
  }
}
#works .cta-item {
  display: flex;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.78);
}
#works .cta-item i {
  color: #ff6b00;
}
@media (max-width: 576px) {
  #works .cta-item i {
    font-size: 1.05rem;
  }
}
#works .cta-actions {
  margin-top: 0.5rem;
}
@media (max-width: 576px) {
  #works .cta-actions {
    margin-top: 0.4rem;
  }
}
#works .cta-tags {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.55);
}
@media (max-width: 576px) {
  #works .cta-tags {
    font-size: 0.85rem;
  }
}
#works .swiper {
  width: 100%;
}
#works .swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@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;
  height: 100%;
}
@media (max-width: 768px) {
  #contact .contact-box {
    margin-bottom: 1rem;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box .icon-box {
  background: #4caf50;
  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: #4caf50;
  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 */