@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;
  color: #2a2f33;
  background-color: #f2f4f6;
  line-height: 1.7;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

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

.section-title {
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}
.section-title span {
  display: block;
  font-size: 0.9rem;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #5fa7c6;
  margin-top: 5px;
}

.dark-section {
  background-color: #3a4b57;
  color: #fff;
}

.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}
.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}
@media (max-width: 768px) {
  .wave-divider svg {
    height: 35px;
  }
}
.wave-divider .shape-fill {
  fill: #f2f4f6;
}

.wave-bottom {
  bottom: 0;
}

.wave-top {
  top: -1px;
  transform: rotate(180deg);
}

#contact {
  position: relative;
}

.navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: 0.3s;
}
.navbar .navbar-brand {
  display: flex;
  align-items: center;
}
.navbar .navbar-brand img {
  height: 45px;
}
.navbar .navbar-brand .brand-text {
  margin-left: 12px;
  font-weight: 900;
  color: #1e4e66;
  line-height: 1.1;
  font-size: 1.25rem;
}
.navbar .navbar-brand .brand-text span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #6c7a86;
}
.navbar .nav-link {
  color: #2a2f33;
  font-weight: 500;
  margin: 0 10px;
}
.navbar .nav-link:hover {
  color: #2e6e8e;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .floating-actions {
    right: 10px;
    bottom: 10px;
  }
}
.floating-actions .btn-action {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s transform;
}
.floating-actions .btn-action:hover {
  transform: translateY(-5px);
}
.floating-actions .btn-action.phone-btn {
  background: #2e6e8e;
  color: white;
  font-size: 1.5rem;
}
.floating-actions .btn-action.line-btn {
  background: #2fbf71;
}
.floating-actions .btn-action.line-btn svg {
  width: 35px;
}

#hero {
  height: 100vh;
  background: linear-gradient(rgba(30, 78, 102, 0.3), rgba(30, 78, 102, 0.3)), url("../images/hero/img-1.avif") center/cover;
  color: white;
  padding-top: 100px;
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    height: 80vh;
    background-position: left center;
  }
}
#hero .hero-tag {
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #5fa7c6;
  margin-bottom: 1rem;
}
#hero .hero-scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  font-size: 0.8rem;
  letter-spacing: 3px;
}
#hero .hero-scroll::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: white;
  vertical-align: middle;
  margin-left: 10px;
}

#about .about-image-wrapper {
  position: relative;
}
#about .about-image-wrapper .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #2e6e8e;
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
#about .about-image-wrapper .experience-badge .num {
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
}
#about .about-image-wrapper .experience-badge .text {
  font-size: 0.8rem;
}

#services {
  background: linear-gradient(to bottom, #f2f4f6 50%, #1e4e66 50%);
}
#services .service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#services .service-card .icon-box {
  font-size: 2.5rem;
  color: #2e6e8e;
  margin-bottom: 1.5rem;
}
#services .service-card h4 {
  font-weight: 700;
  margin-bottom: 1.2rem;
}
#services .service-card ul {
  list-style: none;
  padding: 0;
}
#services .service-card ul li {
  font-size: 0.95rem;
  color: #6c7a86;
  margin-bottom: 8px;
}
#services .service-card ul li::before {
  content: "•";
  color: #2e6e8e;
  margin-right: 8px;
}
#services .service-card .service-bg {
  position: absolute;
  right: -10%;
  bottom: -10%;
  width: 60%;
  opacity: 0.05;
  z-index: -1;
  filter: grayscale(1);
  transition: 0.5s;
}
#services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
#services .service-card:hover .service-bg {
  opacity: 0.15;
  transform: scale(1.1);
}

#works .work-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
#works .work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}
#works .work-card:hover .work-img-wrapper img {
  transform: scale(1.1);
}
#works .work-card:hover .work-img-wrapper .work-overlay {
  opacity: 1;
}
#works .work-card:hover .work-info h4 {
  color: #2e6e8e;
}
#works .work-card .work-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
#works .work-card .work-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
#works .work-card .work-img-wrapper .work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 78, 102, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
#works .work-card .work-img-wrapper .work-overlay i {
  color: white;
  font-size: 3rem;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
#works .work-card .work-info {
  height: 100%;
}
#works .work-card .work-info h4 {
  transition: color 0.3s ease;
  color: #2a2f33;
  line-height: 1.5;
}

#process .timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
#process .timeline .timeline-item {
  background: #e9edf1;
  padding: 2rem;
  border-radius: 15px;
  position: relative;
}
#process .timeline .timeline-item .timeline-dot {
  width: 40px;
  height: 40px;
  background: #2e6e8e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}
#process .timeline .timeline-item h5 {
  color: #1e4e66;
  font-weight: 700;
}
#process .timeline .timeline-item p {
  color: #6c7a86;
  margin: 0;
  font-size: 0.9rem;
}

#contact .contact-info .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
#contact .contact-info .info-item i,
#contact .contact-info .info-item .line-icon-wrapper {
  font-size: 2rem;
  color: #5fa7c6;
  margin-right: 20px;
}
#contact .contact-info .info-item i svg,
#contact .contact-info .info-item .line-icon-wrapper svg {
  fill: #5fa7c6;
}
#contact .contact-info .info-item h6 {
  font-size: 0.8rem;
  color: #9aa8b4;
  margin-bottom: 5px;
}
#contact .contact-info .info-item a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}
#contact .contact-info .info-item a:hover {
  color: #5fa7c6;
}

.designed-by {
  color: #9aa8b4;
}/*# sourceMappingURL=all.css.map */