/* 重置和基本樣式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans TC", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 導航欄樣式 */
.navbar {
  background: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 46px;
  z-index: 1000;
}

@media (max-width: 768px) {
  .navbar {
    top: 0;
  }
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h2 {
  color: #333;
  font-weight: 600;
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #00d4aa;
}

/* 移動端導航 */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* 主要橫幅區域 */
.hero {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f7f5 100%);
  padding: 120px 0 80px;
  min-height: 90vh;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.service-icons {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.service-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  position: relative;
}

.icon.planning {
  background: #6366f1;
}

.icon.booking {
  background: #00d4aa;
}

.icon.mountaineering {
  background: #3b82f6;
}

.icon.camping {
  background: #84cc16;
}

.icon::before {
  content: "📋";
  font-size: 20px;
}

.icon.booking::before {
  content: "📱";
}

.icon.mountaineering::before {
  content: "⛰️";
}

.icon.camping::before {
  content: "🏕️";
}

.service-icon span {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.cta-section {
  background: #00d4aa;
  padding: 2rem;
  border-radius: 15px;
  color: white;
  text-align: left;
  margin-top: 2rem;
}

.cta-section h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cta-section p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cta-button {
  background: white;
  color: #00d4aa;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 頂級價值區域 */
.top-values {
  padding: 80px 0;
  text-align: center;
}

.top-values h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.top-values > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #f0f9ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #00d4aa;
}

.value-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.value-item p {
  color: #666;
  line-height: 1.8;
}

/* 為什麼選擇我們 */
.why-choose-us {
  background: #f8fafb;
  padding: 80px 0;
}

.why-choose-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.why-content > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.feature-icon.green {
  background: #00d4aa;
}

.feature-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: #666;
  line-height: 1.6;
}

.why-images {
  position: relative;
  display: flex;
  gap: 1rem;
}

.main-image {
  position: relative;
  flex: 2;
}

.main-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

.side-image {
  flex: 1;
  align-self: flex-end;
}

.side-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.review-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 0.8rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reviewer-info img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info span {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* 探索熱門目的地 */
.popular-destinations {
  padding: 80px 0;
  text-align: center;
}

.popular-destinations h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.popular-destinations > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.destination-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.destination-info {
  padding: 1.5rem;
  text-align: left;
}

.rating {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.destination-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.destination-info p {
  color: #00d4aa;
  font-weight: 600;
  font-size: 1.1rem;
}

/* 體驗服務區域 */
.experience-section {
  background: #f8fafb;
  padding: 80px 0;
}

.experience-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.experience-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.experience-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.experience-btn {
  background: #00d4aa;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.experience-btn:hover {
  background: #00b89a;
  transform: translateY(-2px);
}

/* 客戶評價 */
.testimonials {
  padding: 80px 0;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.testimonial-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.2rem;
}

.reviewer-info span {
  font-size: 0.9rem;
  color: #666;
}

/* 優惠折扣區域 */
.discount-section {
  background: linear-gradient(135deg, #00d4aa 0%, #00b89a 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.discount-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.discount-btn {
  background: white;
  color: #00d4aa;
  border: none;
  padding: 1rem 3rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.discount-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* 頁腳 */
.footer {
  background: #1f2937;
  color: #d1d5db;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.footer-info {
  margin-bottom: 1rem;
}

.footer-info p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-nav {
  font-size: 0.9rem;
}

.footer-nav a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
  margin: 0 0.3rem;
}

.footer-nav a:hover {
  color: #00d4aa;
}

/* 響應式設計 */
@media (max-width: 768px) {
  .hero-container,
  .why-choose-us .container,
  .experience-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .service-icons {
    justify-content: center;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .footer-info p {
    font-size: 0.8rem;
  }

  .footer-nav {
    font-size: 0.8rem;
    line-height: 1.8;
  }

  .values-grid,
  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .discount-content h2 {
    font-size: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .why-images {
    flex-direction: column;
  }

  .side-image {
    align-self: stretch;
  }
}
