
/* === 聯絡我們區塊 === */
.contact-section {
    padding-top: 0px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 40px;
    text-align: center;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

.contact-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #e5b985;
  margin-bottom: 12px;
}

.contact-phone a {
  text-decoration: none;
  color: #fff;
}

.contact-address {
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-hours {
  margin-top: 20px; 
  font-size: 18px;
  color: #fff;
}

/* === Google 地圖 === */
.map-wrapper {
  position: relative;
  width: 100%;
}

.map-container {
  width: 100%;
  height: 450px;
  pointer-events: none; /* 避免手機滾動卡住 */
}

.map-container iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

/* === 淡入動畫 === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RWD 響應式調整 === */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px 30px;
  }

  .contact-title {
    font-size: 26px;
  }

  .contact-subtitle {
    font-size: 18px;
  }

  .contact-address,
  .contact-phone,
  .contact-hours {
    font-size: 18px;
  }

  .map-container {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 22px;
  }

  .contact-subtitle {
    font-size: 16px;
  }

  .map-container {
    height: 280px;
  }
}
