@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 140px;
}
.btn-primary {
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-secondary {
  background: #fbc02d;
  color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.btn-secondary:hover {
  background: #f57f17;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  width: 100%;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo h1 {
  color: #1a73e8;
  font-size: 1.5rem;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-bottom: 0 !important;
}

.nav-link {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.nav-link:hover {
  color: #1a73e8;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1a73e8;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #333333;
  margin: 3px 0;
  transition: 0.3s;
}

.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 40px;
    padding-top: 100px;
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: #ffffff;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #fbc02d;
}

a {
  text-decoration: none !important;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-car {
  font-size: 8rem;
  color: #fbc02d;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.services {
  padding: 5rem 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  color: #333333;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  padding: 2rem;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-color: #1a73e8;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.service-card h3 {
  color: #333333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}
.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #43a047;
  font-weight: bold;
}

video {
  width: 100%;
  aspect-ratio: 9/16;
  display: block;
}

.about {
  padding: 5rem 0;
  background: #f9f9f9;
}
.about img {
  width: 100%;
  margin-bottom: 2rem;
}
.about h2 {
  margin-bottom: 2rem;
}
.about p {
  line-height: 2;
  margin-bottom: 2rem;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 1.5rem;
}

.about-highlight {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a73e8;
  text-align: center;
  padding: 1rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-placeholder {
  width: 100%;
  height: auto;
  margin-bottom: 8rem;
}
.about-placeholder i {
  font-size: 4rem;
  color: #ffffff;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }
  .nav-menu.active {
    left: 0;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-buttons {
    margin-bottom: 3rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero-car {
    font-size: 5rem;
  }
  .about-placeholder {
    width: 300px;
    height: 300px;
  }
  .about-placeholder i {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .btn {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 120px;
  }
  .service-card {
    padding: 1.5rem;
  }
}
html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-card,
.contact-item,
.about-text {
  animation: fadeInUp 0.6s ease-out;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f9f9f9;
}

::-webkit-scrollbar-thumb {
  background: #1a73e8;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4285f4;
}

#contact {
  padding: 4rem;
}
@media (max-width: 768px) {
  #contact {
    padding: 4rem 1rem;
  }
}
#contact h2 {
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .contact-wrapper {
  display: flex;
  justify-content: space-between; /* 三個平均分配，可改成 space-around 或 center */
  gap: 16px; /* 項目間的間距，可省略 */
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #contact .contact-wrapper {
    flex-direction: column;
  }
}
#contact .contact-box {
  width: calc(33.3333333333% - 16px); /* 三等份，並考慮 gap */
  display: flex;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media (max-width: 768px) {
  #contact .contact-box {
    margin-bottom: 1rem;
    width: 100%;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box .icon-box {
  background: #1a73e8;
  background: #fbc02d;
  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: #1a73e8;
  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=styles.css.map */