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

body {
  background-color: #f8f9fa;
  color: #333333;
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

/* CSS */
[data-aos=blur-up] {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(10px);
  transition: all 0.1s ease;
}

[data-aos=blur-up].aos-animate {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.section-title {
  text-align: center;
  color: #0b2b4e;
  font-weight: 800;
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 4rem;
  padding-bottom: 1rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.section-title .subtitle {
  display: block;
  font-size: 1rem;
  color: #ff9a00;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: 0.5rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .section-title .subtitle {
    font-size: 0.875rem;
    letter-spacing: 2px;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #ff9a00;
  border-radius: 2px;
}

.split {
  display: inline-block;
  overflow: hidden;
  text-shadow: 0 1.3em currentColor; /* 和 JS 位移一致 */
  will-change: transform;
  padding: 1 1rem;
}

.char {
  display: inline-block;
  position: relative;
}

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

a {
  text-decoration: none;
  color: #ff9a00;
}

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.35;
}
.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;
  /* 避免子項目被等寬拉伸，同時維持靠右貼齊 */
  align-items: flex-end;
}
@media (max-width: 768px) {
  .cta-link {
    bottom: 1rem;
    right: 0.5rem;
  }
}
.cta-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 2rem;
  overflow: hidden;
}
.cta-link a.line {
  background: #39cd00;
}
.cta-link a.tel {
  background: #ff9a00;
}
.cta-link a.tel .label {
  color: #333;
}
.cta-link a.tel svg #background {
  fill: #ff9a00;
}
.cta-link a.tel svg #icon {
  fill: white;
  fill: #333;
}
.cta-link a .icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.cta-link a .icon svg {
  width: 50px;
}
.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;
}
.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;
}

#hero {
  margin-top: 109.25px;
}
@media (max-width: 768px) {
  #hero {
    margin-top: 86px;
    height: 25vh;
    width: 100%;
  }
}
#hero img {
  width: 100%;
  height: 100%;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: white;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-brand {
  transition: 0.5s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar .navbar-brand span {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0b2b4e;
  padding-left: 0.5rem;
}
@media (max-width: 768px) {
  .navbar .navbar-brand span {
    font-size: 1.5rem;
  }
}
.navbar .navbar-brand img {
  width: 80px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 60px;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse {
    padding-top: 1rem;
  }
}
.navbar .navbar-collapse .navbar-nav {
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav {
    gap: 0.5rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #ff9a00;
}

#about .about-image-wrapper {
  position: relative;
  padding-right: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 991px) {
  #about .about-image-wrapper {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 2rem;
  }
}
#about .about-image-wrapper .main-img {
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(11, 43, 78, 0.1);
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  #about .about-image-wrapper .main-img {
    height: 400px;
  }
}
#about .about-image-wrapper .main-img {
  -o-object-fit: cover;
     object-fit: cover;
}
#about .about-image-wrapper .experience-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #ff9a00;
  background: linear-gradient(45deg, #ff9a00, #ffd166);
  color: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 5px solid white;
}
@media (max-width: 768px) {
  #about .about-image-wrapper .experience-badge {
    padding: 1rem;
    right: 1rem;
    bottom: -1.5rem;
  }
}
#about .about-image-wrapper .experience-badge .num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 768px) {
  #about .about-image-wrapper .experience-badge .num {
    font-size: 2.5rem;
  }
}
#about .about-image-wrapper .experience-badge .text {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1px;
}
#about .about-content .intro-title {
  color: #0b2b4e;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  #about .about-content .intro-title {
    font-size: 1.5rem;
  }
}
#about .about-content .desc {
  color: #666666;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
#about .about-content .sop-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
#about .about-content .sop-list .sop-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  padding: 1rem 1.5rem;
  border-left: 4px solid rgba(255, 154, 0, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}
#about .about-content .sop-list .sop-item:hover {
  transform: translateX(5px);
}
#about .about-content .sop-list .sop-item i {
  color: #ff9a00;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
#about .about-content .sop-list .sop-item span {
  color: #333333;
  font-weight: 500;
}
#about .about-content .philosophy-box {
  background: #0b2b4e;
  color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
#about .about-content .philosophy-box p {
  margin-bottom: 1rem;
  opacity: 0.9;
}
#about .about-content .philosophy-box p:last-child {
  margin-bottom: 0;
}
#about .about-content .philosophy-box .highlight {
  font-weight: 600;
  color: #ffd166;
  opacity: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}
#about .about-content .philosophy-box::before {
  content: '"';
  position: absolute;
  top: -1rem;
  right: 1rem;
  font-size: 8rem;
  color: rgba(255, 154, 0, 0.1);
  font-family: serif;
  line-height: 1;
}

#services {
  background: #eaeaea;
}
#services .service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  border: 1px solid rgba(11, 43, 78, 0.05);
  display: flex;
  flex-direction: column;
}
#services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(11, 43, 78, 0.1);
  border-color: rgba(255, 154, 0, 0.3);
}
#services .service-card:hover .card-img-box .icon-circle {
  background: #0b2b4e;
  color: #ff9a00;
}
#services .service-card .card-img-box {
  position: relative;
  height: 300px;
}
@media (max-width: 768px) {
  #services .service-card .card-img-box {
    height: 250px;
  }
}
#services .service-card .card-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
#services .service-card .card-img-box .icon-circle {
  position: absolute;
  bottom: -25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: #ff9a00;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 100;
}
#services .service-card .card-body {
  padding: 2.5rem 1.5rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
#services .service-card .card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b2b4e;
  margin-bottom: 1rem;
}
#services .service-card .card-body p {
  color: #666666;
  font-size: 0.95rem;
  margin-bottom: 0;
  flex-grow: 1;
}

#process .process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
#process .process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: rgba(11, 43, 78, 0.1);
}
@media (max-width: 768px) {
  #process .process-timeline::before {
    left: 20px;
  }
}
#process .process-timeline .timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}
#process .process-timeline .timeline-item:last-child {
  margin-bottom: 0;
}
#process .process-timeline .timeline-item:last-child::after {
  content: "";
  position: absolute;
  top: 50px;
  bottom: -8rem;
  left: 24px;
  width: 2px;
  background: #f8f9fa;
}
@media (max-width: 768px) {
  #process .process-timeline .timeline-item:last-child::after {
    left: 20px;
  }
}
#process .process-timeline .timeline-item .timeline-marker {
  position: relative;
  z-index: 2;
  width: 50px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #process .process-timeline .timeline-item .timeline-marker {
    width: 40px;
  }
}
#process .process-timeline .timeline-item .timeline-marker .step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #0b2b4e;
  color: #ff9a00;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 0 0 6px rgba(255, 154, 0, 0.2);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  #process .process-timeline .timeline-item .timeline-marker .step-num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    box-shadow: 0 0 0 4px rgba(255, 154, 0, 0.2);
  }
}
#process .process-timeline .timeline-item .timeline-content {
  margin-left: 2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-grow: 1;
  border: 1px solid rgba(11, 43, 78, 0.05);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  #process .process-timeline .timeline-item .timeline-content {
    margin-left: 1rem;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
}
#process .process-timeline .timeline-item .timeline-content:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 154, 0, 0.5);
}
#process .process-timeline .timeline-item .timeline-content:hover .icon-box i {
  color: #ff9a00;
}
#process .process-timeline .timeline-item .timeline-content .icon-box {
  width: 60px;
  height: 60px;
  background: rgba(255, 154, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #process .process-timeline .timeline-item .timeline-content .icon-box {
    width: 50px;
    height: 50px;
  }
}
#process .process-timeline .timeline-item .timeline-content .icon-box i {
  font-size: 2rem;
  color: #0b2b4e;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  #process .process-timeline .timeline-item .timeline-content .icon-box i {
    font-size: 1.5rem;
  }
}
#process .process-timeline .timeline-item .timeline-content .text-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b2b4e;
  margin-bottom: 0.5rem;
  margin-top: 0.2rem;
}
#process .process-timeline .timeline-item .timeline-content .text-box p {
  color: #666666;
  margin-bottom: 0;
  font-size: 0.95rem;
}
#process .process-timeline .timeline-item:hover .timeline-marker .step-num {
  background: #ff9a00;
  color: #0b2b4e;
  box-shadow: 0 0 0 6px rgba(11, 43, 78, 0.1);
}

.auto-carousel {
  padding-top: 0;
}
.auto-carousel .swiper {
  width: 100%;
  transform: rotate(0deg);
  position: relative;
}
.auto-carousel .swiper .swiper-wrapper {
  transition-timing-function: linear !important; /* 平滑線性移動 */
}
.auto-carousel .swiper .swiper-slide {
  width: 300px;
  aspect-ratio: 4/5;
}
@media (max-width: 768px) {
  .auto-carousel .swiper .swiper-slide {
    width: 200px;
  }
}
.auto-carousel .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #ff9a00;
}
#works .nav-pills .nav-link {
  color: #ff6b00;
}

#contact {
  background: #0b2b4e;
}
#contact .section-title {
  color: white;
}
@media (max-width: 768px) {
  #contact {
    padding-bottom: 4rem;
  }
}
#contact .location-list {
  padding-left: 0;
  margin: 0;
}
#contact .location-list li {
  list-style: none;
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: white;
}
#contact .location-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff9a00;
}
#contact .contact-info-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
#contact .contact-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(11, 43, 78, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3764705882);
  margin-bottom: 1.5rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 768px) {
  #contact .contact-box {
    padding: 1.25rem;
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(11, 43, 78, 0.08);
  border-color: rgba(255, 154, 0, 0.5);
}
#contact .contact-box:hover .icon-box svg {
  fill: #ff9a00;
}
#contact .contact-box .icon-box {
  background: #ff9a00;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(255, 154, 0, 0.2);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  #contact .contact-box .icon-box {
    width: 45px;
    height: 45px;
  }
}
#contact .contact-box .icon-box i {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  #contact .contact-box .icon-box i {
    font-size: 1.5rem;
  }
}
#contact .contact-box .icon-box.svg-box svg {
  fill: #ffffff;
  transition: fill 0.3s ease;
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  #contact .contact-box .icon-box.svg-box svg {
    width: 20px;
    height: 20px;
  }
}
#contact .contact-box .content-box {
  flex-grow: 1;
}
#contact .contact-box .content-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0b2b4e;
  color: white;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  #contact .contact-box .content-box h3 {
    font-size: 1rem;
  }
}
#contact .contact-box .content-box p {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
#contact .contact-box .content-box .action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #ff9a00;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}
#contact .contact-box .content-box .action-link i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
#contact .contact-box .content-box .action-link:hover {
  color: rgb(204, 123.2, 0);
}
#contact .contact-box .content-box .action-link:hover i {
  transform: translateX(3px);
}
#contact .contact-box .content-box .action-link.small {
  font-size: 0.85rem;
}
#contact .contact-box .content-box .action-link.highlight {
  font-size: 1.25rem;
  font-weight: 800;
}
#contact .contact-box .content-box .action-link.highlight:hover {
  color: #ff9a00;
}
#contact .map-wrapper {
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(11, 43, 78, 0.05);
}
@media (max-width: 991px) {
  #contact .map-wrapper {
    min-height: 350px;
    margin-top: 1rem;
  }
}
#contact .map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(10%) contrast(100%);
  transition: filter 0.3s ease;
}
#contact .map-wrapper iframe:hover {
  filter: grayscale(0%) contrast(100%);
}

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