* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Noto Sans TC', sans-serif; line-height: 1.6; color: #333333; background-color: #ffffff; overflow-x: hidden; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

.btn-primary { display: inline-block; padding: 12px 30px; background-color: #00B4D8; color: #ffffff; font-weight: 500; border-radius: 4px; transition: all 0.3s ease; letter-spacing: 0.5px; }
.btn-primary:hover { background-color: #0096B4; transform: translateY(-2px); }
.btn-outline { display: inline-block; padding: 12px 30px; background-color: transparent; border: 1px solid #0170B9; color: #0170B9; font-weight: 500; border-radius: 4px; transition: all 0.3s ease; letter-spacing: 0.5px; }
.btn-outline:hover { background-color: #0170B9; color: #ffffff; transform: translateY(-2px); }

header { position: fixed; top: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.98); box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05); z-index: 999; display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; backdrop-filter: blur(10px); border-bottom: 2px solid #00B4D8; }
header h1 { font-size: 24px; font-weight: 700; color: #0170B9; letter-spacing: 0.5px; }
header nav { display: flex; gap: 35px; align-items: center; }
header nav a { font-size: 15px; font-weight: 500; color: #0170B9; transition: color 0.3s ease; }
header nav a:hover { color: #00B4D8; }

main { padding-top: 65px; }

#hero-section { min-height: 85vh; display: flex; align-items: center; padding: 5%; background: linear-gradient(135deg, #f8f7f5 0%, #ffffff 100%); }
#hero-section .hero-section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; }
#hero-section .hero-section-title { font-size: 52px; font-weight: 700; color: #0170B9; margin-bottom: 25px; line-height: 1.2; opacity: 0; transform: translateY(40px); transition: all 1s ease; }
#hero-section .hero-section-subtitle { font-size: 18px; color: #555555; margin-bottom: 40px; opacity: 0; transform: translateY(40px); transition: all 1s ease 0.2s; line-height: 1.8; }
#hero-section .hero-section-actions { display: flex; gap: 20px; opacity: 0; transform: translateY(40px); transition: all 1s ease 0.4s; }
#hero-section.is-active .hero-section-title { opacity: 1; transform: translateY(0); }
#hero-section.is-active .hero-section-subtitle { opacity: 1; transform: translateY(0); }
#hero-section.is-active .hero-section-actions { opacity: 1; transform: translateY(0); }
#hero-section .hero-section-image { border-radius: 8px; overflow: hidden; box-shadow: 0 20px 50px rgba(1, 112, 185, 0.15); opacity: 0; transform: scale(0.95); transition: all 1.2s ease 0.4s; position: relative; }
#hero-section .hero-section-image::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 2px solid #00B4D8; border-radius: 8px; pointer-events: none; transform: translate(15px, 15px); z-index: -1; }
#hero-section.is-active .hero-section-image { opacity: 1; transform: scale(1); }

#about-section { padding: 120px 5%; background: #ffffff; }
#about-section .about-section-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: center; }
#about-section .about-section-subtitle { font-size: 16px; font-weight: 700; color: #00B4D8; margin-bottom: 10px; letter-spacing: 2px; text-transform: uppercase; opacity: 0; transform: translateX(-40px); transition: all 0.9s ease; }
#about-section .about-section-title { font-size: 40px; font-weight: 700; color: #0170B9; margin-bottom: 30px; opacity: 0; transform: translateX(-40px); transition: all 0.9s ease 0.1s; }
#about-section .about-section-text { font-size: 16px; color: #666666; margin-bottom: 25px; line-height: 1.8; opacity: 0; transform: translateX(-40px); transition: all 0.9s ease 0.2s; }
#about-section.is-active .about-section-subtitle { opacity: 1; transform: translateX(0); }
#about-section.is-active .about-section-title { opacity: 1; transform: translateX(0); }
#about-section.is-active .about-section-text { opacity: 1; transform: translateX(0); }
#about-section .about-section-media { border-radius: 8px; height: 500px; background: #f8f7f5; display: flex; justify-content: center; align-items: center; overflow: hidden; opacity: 0; transform: translateX(40px); transition: all 0.9s ease 0.4s; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06); }
#about-section .about-section-media img { width: 100%; height: 100%; object-fit: cover; }
#about-section.is-active .about-section-media { opacity: 1; transform: translateX(0); }

#services-section { padding: 120px 5%; background: #f8f7f5; }
#services-section .services-section-header { text-align: center; margin-bottom: 80px; opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
#services-section.is-active .services-section-header { opacity: 1; transform: translateY(0); }
#services-section .services-section-subtitle { font-size: 16px; font-weight: 700; color: #00B4D8; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
#services-section .services-section-title { font-size: 40px; font-weight: 700; color: #0170B9; }
#services-section .services-section-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; }
#services-section .services-section-item { background: #ffffff; padding: 60px 40px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); text-align: center; opacity: 0; transform: translateY(40px); transition: all 0.7s ease; border-bottom: 4px solid transparent; }
#services-section.is-active .services-section-item { opacity: 1; transform: translateY(0); }
#services-section .services-section-item:hover { transform: translateY(-10px); box-shadow: 0 20px 45px rgba(1, 112, 185, 0.08); border-bottom: 4px solid #00B4D8; }
#services-section .services-item-icon { width: 60px; height: 60px; background: #f8f7f5; border-radius: 50%; margin: 0 auto 25px; display: flex; justify-content: center; align-items: center; font-size: 24px; color: #0170B9; border: 1px solid #00B4D8; }
#services-section .services-item-title { font-size: 22px; font-weight: 700; color: #0170B9; margin-bottom: 20px; }
#services-section .services-item-text { font-size: 15px; color: #777777; line-height: 1.7; }
#services-section .services-section-item:nth-child(1) { transition-delay: 0.1s; }
#services-section .services-section-item:nth-child(2) { transition-delay: 0.2s; }
#services-section .services-section-item:nth-child(3) { transition-delay: 0.3s; }
#services-section .services-section-item:nth-child(4) { transition-delay: 0.4s; }
#services-section .services-section-item:nth-child(5) { transition-delay: 0.5s; }
#services-section .services-section-item:nth-child(6) { transition-delay: 0.6s; }

#team-section { padding: 120px 5%; background: #ffffff; }
#team-section .team-section-header { text-align: center; margin-bottom: 80px; opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
#team-section.is-active .team-section-header { opacity: 1; transform: translateY(0); }
#team-section .team-section-subtitle { font-size: 16px; font-weight: 700; color: #00B4D8; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
#team-section .team-section-title { font-size: 40px; font-weight: 700; color: #0170B9; }
#team-section .team-section-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
#team-section .team-section-item { text-align: center; opacity: 0; transform: translateY(40px); transition: all 0.7s ease; }
#team-section.is-active .team-section-item { opacity: 1; transform: translateY(0); }
#team-section .team-item-image { width: 100%; aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; margin-bottom: 20px; background: #f8f7f5; }
#team-section .team-item-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
#team-section .team-section-item:hover .team-item-image img { transform: scale(1.05); }
#team-section .team-item-name { font-size: 20px; font-weight: 700; color: #0170B9; margin-bottom: 5px; }
#team-section .team-item-role { font-size: 14px; color: #00B4D8; font-weight: 500; }
#team-section .team-section-item:nth-child(1) { transition-delay: 0.1s; }
#team-section .team-section-item:nth-child(2) { transition-delay: 0.2s; }
#team-section .team-section-item:nth-child(3) { transition-delay: 0.3s; }
#team-section .team-section-item:nth-child(4) { transition-delay: 0.4s; }

#gallery-section { padding: 120px 0; background: #0170B9; color: #ffffff; }
#gallery-section .gallery-section-header { text-align: center; margin-bottom: 80px; opacity: 0; transform: translateY(30px); transition: all 0.8s ease; padding: 0 5%; }
#gallery-section.is-active .gallery-section-header { opacity: 1; transform: translateY(0); }
#gallery-section .gallery-section-subtitle { font-size: 16px; font-weight: 700; color: #00B4D8; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
#gallery-section .gallery-section-title { font-size: 40px; font-weight: 700; color: #ffffff; }
#gallery-section .gallery-section-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; width: 100%; opacity: 0; transition: all 1s ease 0.3s; }
#gallery-section.is-active .gallery-section-grid { opacity: 1; }
#gallery-section .gallery-section-item { aspect-ratio: 1/1; overflow: hidden; position: relative; }
#gallery-section .gallery-section-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.8); }
#gallery-section .gallery-section-item:hover img { transform: scale(1.1); filter: brightness(1); }

#reviews-section { padding: 120px 5%; background: #f8f7f5; }
#reviews-section .reviews-section-header { text-align: center; margin-bottom: 80px; opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
#reviews-section.is-active .reviews-section-header { opacity: 1; transform: translateY(0); }
#reviews-section .reviews-section-subtitle { font-size: 16px; font-weight: 700; color: #00B4D8; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
#reviews-section .reviews-section-title { font-size: 40px; font-weight: 700; color: #0170B9; }
#reviews-section .reviews-section-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; }
#reviews-section .reviews-section-item { background: #ffffff; padding: 40px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); opacity: 0; transform: translateY(40px); transition: all 0.7s ease; position: relative; }
#reviews-section.is-active .reviews-section-item { opacity: 1; transform: translateY(0); }
#reviews-section .reviews-item-stars { color: #00B4D8; font-size: 20px; margin-bottom: 20px; letter-spacing: 2px; }
#reviews-section .reviews-item-text { font-size: 16px; color: #666666; line-height: 1.8; margin-bottom: 25px; font-style: italic; }
#reviews-section .reviews-item-author { font-size: 16px; font-weight: 700; color: #0170B9; }
#reviews-section .reviews-section-item:nth-child(1) { transition-delay: 0.1s; }
#reviews-section .reviews-section-item:nth-child(2) { transition-delay: 0.2s; }
#reviews-section .reviews-section-item:nth-child(3) { transition-delay: 0.3s; }

footer { background: #014a7a; color: #ffffff; padding: 80px 5% 40px; }
footer .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto 60px; }
footer .footer-title { font-size: 24px; font-weight: 700; color: #00B4D8; margin-bottom: 25px; }
footer .footer-text { font-size: 15px; color: #d0d0d0; line-height: 1.8; margin-bottom: 15px; }
footer .footer-subtitle { font-size: 18px; font-weight: 700; color: #ffffff; margin-bottom: 25px; }
footer .footer-list { display: flex; flex-direction: column; gap: 15px; }
footer .footer-list a { font-size: 15px; color: #d0d0d0; transition: color 0.3s ease; }
footer .footer-list a:hover { color: #00B4D8; }
footer .footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
footer .footer-bottom-text { font-size: 14px; color: #888888; }

@media (max-width: 1280px) {
	#services-section .services-section-grid { grid-template-columns: repeat(2, 1fr); }
	#team-section .team-section-grid { grid-template-columns: repeat(2, 1fr); }
	#reviews-section .reviews-section-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
	#hero-section .hero-section-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
	#hero-section .hero-section-actions { justify-content: center; }
	#hero-section .hero-section-image::after { display: none; }
	#about-section .about-section-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
	#about-section .about-section-subtitle { transform: translateY(30px); }
	#about-section .about-section-title { transform: translateY(30px); }
	#about-section .about-section-text { transform: translateY(30px); }
	#about-section.is-active .about-section-subtitle { transform: translateY(0); }
	#about-section.is-active .about-section-title { transform: translateY(0); }
	#about-section.is-active .about-section-text { transform: translateY(0); }
	#about-section .about-section-media { transform: translateY(30px); height: 400px; }
	#about-section.is-active .about-section-media { transform: translateY(0); }
	#gallery-section .gallery-section-grid { grid-template-columns: repeat(2, 1fr); }
	footer .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}
@media (max-width: 768px) {
	header { flex-direction: column; padding: 20px 5%; }
	header nav { margin-top: 15px; gap: 20px; flex-wrap: wrap; justify-content: center; }
	main { padding-top: 130px; }
	#hero-section { min-height: auto; padding: 10% 5%; }
	#hero-section .hero-section-title { font-size: 38px; }
	#hero-section .hero-section-subtitle { font-size: 16px; }
	#about-section { padding: 80px 5%; }
	#about-section .about-section-title { font-size: 32px; }
	#services-section { padding: 80px 5%; }
	#services-section .services-section-title { font-size: 32px; }
	#services-section .services-section-grid { grid-template-columns: 1fr; }
	#team-section { padding: 80px 5%; }
	#team-section .team-section-title { font-size: 32px; }
	#gallery-section { padding: 80px 0; }
	#gallery-section .gallery-section-title { font-size: 32px; }
	#reviews-section { padding: 80px 5%; }
	#reviews-section .reviews-section-title { font-size: 32px; }
	#reviews-section .reviews-section-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
	header h1 { font-size: 20px; }
	header nav { gap: 15px; }
	header nav a { font-size: 14px; }
	.btn-primary, .btn-outline { padding: 10px 20px; font-size: 14px; }
	#hero-section .hero-section-title { font-size: 32px; }
	#about-section .about-section-title { font-size: 28px; }
	#about-section .about-section-media { height: 250px; }
	#services-section .services-section-title { font-size: 28px; }
	#team-section .team-section-title { font-size: 28px; }
	#team-section .team-section-grid { grid-template-columns: 1fr; max-width: 300px; }
	#gallery-section .gallery-section-grid { grid-template-columns: 1fr; }
	#reviews-section .reviews-section-title { font-size: 28px; }
}