* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* 頂部導航 */
.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 80px;
  display: flex;
  align-items: center;
}

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

.nav-brand {
  flex-shrink: 0;
}

.nav-brand .logo {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: all 0.3s;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
}

.nav-link:hover {
  color: #7dd3c0;
  background: rgba(125, 211, 192, 0.1);
}

.nav-link.active {
  color: #7dd3c0;
  background: rgba(125, 211, 192, 0.15);
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #7dd3c0;
  border-radius: 1px;
}

/* 移動端面包按鈕 */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* 语言切换按钮样式 */
.language-switcher {
  position: relative;
  margin-left: auto;
}

.language-btn {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #495057;
  transition: all 0.3s ease;
  gap: 6px;
}

.language-btn:hover {
  background: #e9ecef;
  border-color: #667eea;
}

.language-btn .fi {
  width: 16px;
  height: 12px;
  border-radius: 2px;
}

.language-btn .arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.language-switcher.open .arrow {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 140px;
}

.language-switcher.open .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  gap: 8px;
  font-size: 14px;
  color: #495057;
  text-decoration: none;
  border-bottom: 1px solid #f1f3f4;
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background-color: #f8f9fa;
}

.language-option .fi {
  width: 18px;
  height: 13px;
  border-radius: 2px;
}

/* 導遊風采頁面樣式 */
.guide-hero-section {
  min-height: 50vh;
  background: linear-gradient(
      135deg,
      rgba(125, 211, 192, 0.9),
      rgba(102, 126, 234, 0.9)
    ),
    url("../images/guide-showcase/1.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  padding: 120px 0 60px;
}

.guide-hero-section .hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.guide-hero-section .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.guide-hero-section .hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 導遊展示列表樣式 */
.guides-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.guides-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.guides-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.guides-section .section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.guides-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.guide-item {
  display: flex;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.guide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.guide-image-container {
  position: relative;
}

.guide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.guide-item:hover .guide-image {
  transform: scale(1.05);
}

.guide-rating-badge {
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  flex-shrink: 0;
}

.guide-rating-badge .stars {
  font-size: 14px;
}

.guide-rating-badge .rating-score {
  color: #ff6b35;
  font-weight: 700;
}

.guide-details {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.guide-header {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.guide-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  flex-shrink: 0;
}

.guide-header .guide-title {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  flex-shrink: 0;
}

.guide-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: center;
}

.info-item .label {
  font-weight: 600;
  color: #666;
  min-width: 80px;
}

.info-item .value {
  color: #2c3e50;
  font-weight: 500;
}

.guide-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.customer-reviews {
  margin-top: auto;
}

.customer-reviews h4 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.reviews-container {
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  position: relative;
}

.reviews-swiper {
  height: 100%;
  width: 100%;
}

.reviews-swiper .swiper-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.reviews-swiper .swiper-slide {
  height: auto !important;
  flex-shrink: 0;
  padding: 0.5rem;
  width: 100% !important;
}

.review-item {
  width: 100%;
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  border-left: 4px solid #667eea;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.review-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* CSS动画滚动样式 */
.reviews-scroll-wrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.reviews-scroll-content {
  animation: scrollUp 35s linear infinite;
  padding: 0.5rem;
}

.reviews-scroll-content:hover {
  animation-play-state: paused;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}

.review-text {
  font-style: italic;
  color: #555;
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.reviewer {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
}

/* 導遊服務特色移除 */
.guide-features-section {
  display: none;
}

/* 導遊服務特色區域 */
.guide-features-section {
  padding: 80px 0;
  background: white;
}

.guide-features-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: #7dd3c0;
  color: white;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card:hover h3 {
  color: white;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

.feature-card:hover p {
  color: white;
}

/* 主要橫幅區域 */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../images/index/1.jpg") center/cover no-repeat;
  min-height: 100vh;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.hero-text {
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 2rem;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* 三角佈局圖片樣式已移除 */

/* 服務區域 */
.services-section {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

.services-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

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

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* 熱門地點區域 */
.popular-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.popular-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

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

.place-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.place-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.place-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.place-card:hover .place-image {
  transform: scale(1.1);
}

.place-info {
  padding: 1.5rem;
}

.place-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #333;
}

.rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars {
  font-size: 0.9rem;
}

.score {
  font-weight: 600;
  color: #333;
  font-size: 1.1rem;
}

/* 響應式設計 */
/* 移除舊的768px媒體查詢，因為與新的移動端導航衝突 */

/* 為什麼選擇我們 */
.why-choose-us {
  padding: 80px 0;
  background: white;
}

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

.why-image {
  position: relative;
}

.why-img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.why-img:hover {
  transform: scale(1.02);
}

.why-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #333;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #7dd3c0;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #666;
  font-weight: 500;
}

.why-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.learn-more-btn {
  background: #7dd3c0;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
}

.learn-more-btn:hover {
  background: #69c7b3;
  color: white;
  text-decoration: none;
}

/* 導遊風采 */
.guide-showcase {
  padding: 80px 0;
  background: white;
}

.guide-showcase h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.guide-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.guide-slide {
  min-width: 25%;
  padding: 0 10px;
  box-sizing: border-box;
}

.guide-image {
  max-width: 400px;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.guide-image:hover {
  transform: scale(1.02);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #7dd3c0;
}

/* 首页导游风采 Swiper 样式 */
.guide-swiper {
  position: relative;
  padding: 0 50px;
}

.guide-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.guide-swiper .guide-image {
  width: 100%;
  max-width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.guide-swiper .guide-image:hover {
  transform: scale(1.05);
}

.guide-pagination {
  margin-top: 30px !important;
}

.guide-pagination .swiper-pagination-bullet {
  background: #ccc;
  opacity: 0.7;
}

.guide-pagination .swiper-pagination-bullet-active {
  background: #667eea;
  opacity: 1;
}

.guide-button-prev,
.guide-button-next {
  color: #667eea;
  margin-top: 0;
}

.guide-button-prev:after,
.guide-button-next:after {
  font-size: 24px;
  font-weight: bold;
}

/* 首页旅游风采 Swiper 样式 */
.travel-swiper {
  position: relative;
  padding: 0 50px;
}

.travel-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.travel-swiper .travel-image {
  width: 100%;
  max-width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.travel-swiper .travel-image:hover {
  transform: scale(1.05);
}

.travel-pagination {
  margin-top: 30px !important;
}

.travel-pagination .swiper-pagination-bullet {
  background: #ccc;
  opacity: 0.7;
}

.travel-pagination .swiper-pagination-bullet-active {
  background: #667eea;
  opacity: 1;
}

.travel-button-prev,
.travel-button-next {
  color: #667eea;
  margin-top: 0;
}

.travel-button-prev:after,
.travel-button-next:after {
  font-size: 24px;
  font-weight: bold;
}

/* 旅遊風采 */
.reviews-section {
  padding: 80px 0;
  background: white;
}

.reviews-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.travel-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.travel-container {
  position: relative;
  overflow: hidden;
}

.travel-slide {
  min-width: calc(100% / 3);
  padding: 0 10px;
  box-sizing: border-box;
}

.travel-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.travel-image:hover {
  transform: scale(1.02);
}

/* 關於我們 */
.about-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.about-tabs {
  max-width: 800px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-btn {
  background: white;
  border: none;
  padding: 1rem 2rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  flex: 1;
}

.tab-btn.active {
  background: #7dd3c0;
  color: white;
}

.tab-btn:hover {
  background: #f5f5f5;
}

.tab-btn.active:hover {
  background: #7dd3c0;
}

.tab-content {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}

.tab-panel p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tab-panel ul {
  list-style: none;
  padding: 0;
}

.tab-panel li {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
}

/* 底部導航 */
.footer {
  background: #333;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #7dd3c0;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #7dd3c0;
}

.contact-info p {
  color: #ccc;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #555;
  border-radius: 5px;
  background: #444;
  color: white;
  font-size: 1rem;
  width: 100%;
}

/* 电话输入容器 */
.phone-input-container {
  position: relative;
}

/* 电话号码错误提示 */
.phone-error-message {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  min-height: 1rem;
}

/* 电话输入错误状态 */
.contact-form input.error {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

/* intl-tel-input 样式调整 */
.iti {
  display: block;
  width: 100%;
}

.iti__flag-container {
  background: #444;
  border-right: 1px solid #555;
}

.iti__selected-flag {
  background: #444;
  border-radius: 5px 0 0 5px;
  padding: 0 8px;
}

.iti__selected-flag:hover,
.iti__selected-flag:focus {
  background: #555;
}

.iti__country-list {
  background: #444 !important;
  border: 1px solid #555 !important;
  border-radius: 5px;
  color: white !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.iti__country {
  color: white !important;
  padding: 8px 12px;
  background: transparent !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background: #555 !important;
  color: white !important;
}

.iti__country-name {
  color: white !important;
}

.iti__dial-code {
  color: #ccc !important;
}

/* 选中的国家标志样式 */
.iti__selected-flag .iti__flag {
  background-color: transparent;
}

/* 下拉箭头颜色 */
.iti__arrow {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #ccc;
}

.iti__arrow--up {
  border-bottom: 4px solid #ccc;
  border-top: none;
}

/* 搜索输入框样式 */
.iti__search-input {
  background: #555 !important;
  border: 1px solid #666 !important;
  color: white !important;
  padding: 8px 12px;
  margin: 8px;
  border-radius: 4px;
}

.iti__search-input::placeholder {
  color: #ccc !important;
}

/* 无结果文本样式 */
.iti__no-results {
  color: #ccc !important;
  padding: 12px;
  text-align: center;
  font-style: italic;
}

/* 确保标志图标正确显示 */
.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/img/flags@2x.png");
  }
}

/* 确保电话输入框在移动端正确显示 */
@media (max-width: 768px) {
  .iti__flag-container {
    padding: 0 4px;
  }

  .iti__selected-flag {
    padding: 0 6px;
  }
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.send-btn {
  background: #7dd3c0;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.send-btn:hover {
  background: #69c7b3;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
  color: #aaa;
}

/* 成功提交模态框样式 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.modal-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.close-btn {
  background: #7dd3c0;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.close-btn:hover {
  background: #69c7b3;
}

/* 旅遊風采頁面樣式 */
.travel-hero-section {
  min-height: 50vh;
  background: linear-gradient(
      135deg,
      rgba(125, 211, 192, 0.9),
      rgba(102, 126, 234, 0.9)
    ),
    url("../images/travel-showcase/1.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  padding: 120px 0 60px;
}

.travel-hero-section .hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.travel-hero-section .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.travel-hero-section .hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 旅遊風采展示區 */
.travel-showcase-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.travel-showcase-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.travel-showcase-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.travel-showcase-section .section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* 瀑布流佈局 */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  grid-auto-rows: 5px; /* 減小行高，讓計算更精確 */
  align-items: start; /* 確保items從頂部對齊 */
}

.travel-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.travel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.travel-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.travel-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.travel-item:hover .travel-image {
  transform: scale(1.05);
}

.travel-content {
  padding: 20px;
}

.travel-review {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
  text-align: left;
}

.traveler-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.traveler-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #667eea;
}

.traveler-details {
  display: flex;
  flex-direction: column;
}

.traveler-name {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
}

.traveler-location {
  font-size: 0.85rem;
  color: #888;
}

/* 瀑布流自動調整高度 - JavaScript動態計算 */

/* 響應式設計 */
@media (max-width: 1200px) {
  .masonry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  /* 旅遊風采頁面響應式 */
  .travel-hero-section {
    min-height: 40vh;
    padding: 100px 0 40px;
  }

  .travel-hero-section .hero-title {
    font-size: 2rem;
  }

  .travel-hero-section .hero-subtitle {
    font-size: 1rem;
  }

  .travel-showcase-section {
    padding: 40px 0;
  }

  .travel-showcase-section .section-header h2 {
    font-size: 2rem;
  }

  .guides-section .section-header h2 {
    font-size: 2rem;
  }

  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    grid-auto-rows: 5px;
  }

  .travel-content {
    padding: 15px;
  }

  .travel-review {
    font-size: 0.9rem;
  }

  .traveler-avatar {
    width: 40px;
    height: 40px;
  }

  .traveler-name {
    font-size: 0.9rem;
  }

  .traveler-location {
    font-size: 0.8rem;
  }

  /* 導遊風采頁面響應式 */
  .guide-hero-section {
    min-height: 40vh;
    padding: 100px 0 40px;
  }

  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* 移動端面包按鈕顯示 */
  .mobile-menu-btn {
    display: flex !important;
  }

  .language-switcher {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
  }

  .language-btn {
    padding: 8px 15px;
    font-size: 14px;
    width: 100%;
    justify-content: space-between;
  }

  .language-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    margin-top: 8px;
    min-width: auto;
    width: 100%;
  }

  .language-switcher.open .language-dropdown {
    display: block;
  }

  .language-switcher:not(.open) .language-dropdown {
    display: none;
  }

  .language-option {
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #e9ecef;
  }

  .language-option:hover {
    background: rgba(125, 211, 192, 0.1);
    border-color: rgba(125, 211, 192, 0.3);
  }

  /* 移動端logo調整 */
  .nav-brand .logo {
    height: 35px;
    max-width: 120px;
  }

  /* 移動端導航菜單 - 重寫所有屬性 */
  .nav-menu {
    position: fixed !important;
    top: 80px !important;
    left: -100% !important;
    width: 100% !important;
    height: calc(100vh - 80px) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding-top: 2rem !important;
    transition: left 0.3s ease !important;
    z-index: 999 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    margin-left: 0 !important;
    gap: 0 !important;
  }

  .nav-menu.show {
    left: 0 !important;
  }

  .nav-menu li {
    margin: 1rem 0 !important;
    width: 80% !important;
    text-align: center !important;
  }

  .nav-link {
    display: block !important;
    width: 100% !important;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    border-radius: 12px !important;
    border: 1px solid transparent !important;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(125, 211, 192, 0.2) !important;
    border-color: rgba(125, 211, 192, 0.3) !important;
  }

  .nav-link.active::after {
    display: none !important;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .places-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tab-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .services-header h2,
  .popular-section h2,
  .why-text h2,
  .guide-showcase h2,
  .reviews-section h2,
  .about-section h2,
  .guides-section .section-header h2,
  .video-section h2,
  .section-header h2,
  .guide-features-section h2 {
    font-size: 2rem;
  }

  /* 旅遊風采頁面小屏幕響應式 */
  .travel-hero-section {
    min-height: 35vh;
    padding: 80px 0 30px;
  }

  .travel-hero-section .hero-title {
    font-size: 1.8rem;
  }

  .travel-hero-section .hero-subtitle {
    font-size: 0.9rem;
  }

  .masonry-grid {
    grid-template-columns: 1fr;
    grid-gap: 12px;
    grid-auto-rows: 5px;
  }

  .travel-content {
    padding: 12px;
  }

  .travel-review {
    font-size: 0.85rem;
  }

  .traveler-info {
    gap: 10px;
  }

  .traveler-avatar {
    width: 35px;
    height: 35px;
  }

  /* 導遊風采頁面小屏幕響應式 */
  .guide-hero-section {
    min-height: 35vh;
    padding: 80px 0 30px;
  }

  .guide-hero-section .hero-title {
    font-size: 1.8rem;
  }

  .guide-hero-section .hero-subtitle {
    font-size: 0.9rem;
  }

  .guides-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .guide-image-wrapper {
    height: 200px;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .places-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* 小屏幕logo調整 */
  .nav-brand .logo {
    height: 30px;
    max-width: 100px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  /* 移動端輪播圖調整 */
  .guide-slide {
    min-width: 100%;
  }

  .travel-slide {
    min-width: 100%;
  }

  /* 首页Swiper移动端样式 */
  .guide-swiper {
    padding: 0 20px;
  }

  .guide-swiper .guide-image {
    max-width: 250px;
    height: 300px;
  }

  .travel-swiper {
    padding: 0 20px;
  }

  .travel-swiper .travel-image {
    max-width: 300px;
    height: 200px;
  }

  .guide-item {
    flex-direction: column;
  }

  .guide-image-container {
    flex: none;
  }

  .guide-image {
    max-width: 900px;
    width: 100%;
  }

  .guide-details {
    padding: 30px 20px;
  }

  .guide-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .guide-header h3 {
    font-size: 1.5rem;
  }

  .guide-rating-badge {
    margin-left: 0;
  }

  .guide-info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .info-item .label {
    min-width: 60px;
  }

  .review-item {
    padding: 12px 15px;
  }

  .reviews-container {
    height: 250px;
  }

  .reviews-swiper .swiper-slide {
    padding: 0.3rem;
  }
}

/* 影片分享頁面樣式 */
.video-hero-section {
  min-height: 50vh;
  background: linear-gradient(
      135deg,
      rgba(125, 211, 192, 0.9),
      rgba(102, 126, 234, 0.9)
    ),
    url("../images/video-share/1.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  padding: 120px 0 60px;
}

.video-hero-section .hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-hero-section .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-hero-section .hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 影片分享展示區 */
.video-showcase-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.video-showcase-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.video-showcase-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.video-showcase-section .section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* 影片分享卡片樣式 */
.video-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-item:hover .main-video {
  transform: scale(1.02);
}

.video-content {
  padding: 20px;
}

.video-review {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
  text-align: left;
}

.creator-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.creator-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 12px;
  border: 2px solid #667eea;
  transition: all 0.3s ease;
}

.creator-avatar:hover {
  transform: scale(1.05);
  border-color: #5a67d8;
}

.creator-details {
  display: flex;
  flex-direction: column;
}

.creator-name {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
}

.creator-location {
  font-size: 0.85rem;
  color: #888;
}

/* 影片分享頁面自動調整高度 - JavaScript動態計算 */

/* 響應式設計 */
@media (max-width: 1200px) {
  .video-showcase-section .masonry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .video-hero-section {
    min-height: 40vh;
    padding: 100px 0 40px;
  }

  .video-hero-section .hero-title {
    font-size: 2rem;
  }

  .video-hero-section .hero-subtitle {
    font-size: 1rem;
  }

  .video-showcase-section {
    padding: 40px 0;
  }

  .video-showcase-section .section-header h2 {
    font-size: 2rem;
  }

  .video-showcase-section .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    grid-auto-rows: 5px;
  }

  .video-content {
    padding: 15px;
  }

  .video-review {
    font-size: 0.9rem;
  }

  .creator-avatar {
    width: 40px;
    height: 40px;
  }

  .creator-name {
    font-size: 0.9rem;
  }

  .creator-location {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .video-showcase-section .masonry-grid {
    grid-template-columns: 1fr;
    grid-gap: 12px;
    grid-auto-rows: 5px;
  }

  .video-content {
    padding: 12px;
  }

  .video-review {
    font-size: 0.85rem;
  }

  .creator-info {
    gap: 10px;
  }

  .creator-avatar {
    width: 40px;
    height: 40px;
  }

  /* 影片分享頁面小屏幕響應式 */
  .video-hero-section {
    min-height: 35vh;
    padding: 80px 0 30px;
  }

  .video-hero-section .hero-title {
    font-size: 1.8rem;
  }

  .video-hero-section .hero-subtitle {
    font-size: 0.9rem;
  }
}

/* 聯絡我們頁面樣式 */
/* 聯絡我們橫幅區域 */
.contact-hero-section {
  min-height: 50vh;
  background: linear-gradient(
      135deg,
      rgba(125, 211, 192, 0.9),
      rgba(102, 126, 234, 0.9)
    ),
    url("../images/contact/1.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  padding: 120px 0 60px;
}

.contact-hero-section .hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-hero-section .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero-section .hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 聯絡信息區域 */
.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-content {
  display: grid;
  gap: 60px;
}

.contact-info-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-info-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.contact-info-section .section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* 聯絡卡片 */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.contact-details p {
  font-size: 0.95rem;
  color: #666;
  margin: 2px 0;
}

/* 地圖區域 */
.map-section {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-section .section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.map-section .section-header p {
  font-size: 1.1rem;
  color: #666;
}

.map-container {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.address-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.address-info {
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.address-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.address-info p {
  font-size: 0.95rem;
  color: #666;
  margin: 5px 0;
}

/* 響應式設計 */
@media (max-width: 768px) {
  .contact-hero-section {
    min-height: 40vh;
    padding: 100px 0 40px;
  }

  .contact-hero-section .hero-title {
    font-size: 2rem;
  }

  .contact-hero-section .hero-subtitle {
    font-size: 1rem;
  }

  .contact-section {
    padding: 40px 0;
  }

  .contact-info-section .section-header h2,
  .map-section .section-header h2 {
    font-size: 2rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    padding: 20px;
    gap: 15px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .map-section {
    padding: 30px 20px;
  }

  .address-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .address-info {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .contact-hero-section {
    min-height: 35vh;
    padding: 80px 0 30px;
  }

  .contact-hero-section .hero-title {
    font-size: 1.8rem;
  }

  .contact-hero-section .hero-subtitle {
    font-size: 0.9rem;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 15px;
  }

  .contact-icon {
    margin-bottom: 10px;
  }

  .map-section {
    padding: 25px 15px;
  }
}

/* 關於我們頁面樣式 */
/* 關於我們橫幅區域 */
.about-hero-section {
  min-height: 50vh;
  background: linear-gradient(
      135deg,
      rgba(125, 211, 192, 0.9),
      rgba(102, 126, 234, 0.9)
    ),
    url("../images/about/1.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  padding: 120px 0 60px;
}

.about-hero-section .hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-hero-section .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-section .hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 關於我們主要內容區域 */
.about-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.about-section .section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* 公司簡介 */
.company-intro {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: center;
}

.intro-text {
  flex: 1;
}

.intro-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
}

.intro-paragraph:last-child {
  margin-bottom: 0;
}

.intro-image {
  position: relative;
}

.company-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.company-image:hover {
  transform: scale(1.05);
}

/* 服務特色 */
.services-features {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.feature-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* 企業優勢 */
.company-advantages {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

.advantages-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: center;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateX(10px);
}

.advantage-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.advantage-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.advantage-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.advantages-image {
  position: relative;
}

.team-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.team-image:hover {
  transform: scale(1.05);
}

/* 營業執照 */
.business-license {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.license-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.license-image-only {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.license-img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 3px solid #667eea;
}

/* 響應式設計 */
@media (max-width: 768px) {
  .about-hero-section {
    min-height: 40vh;
    padding: 100px 0 40px;
  }

  .about-hero-section .hero-title {
    font-size: 2rem;
  }

  .about-hero-section .hero-subtitle {
    font-size: 1rem;
  }

  .about-section {
    padding: 40px 0;
  }

  .about-section .section-header h2 {
    font-size: 2rem;
  }

  .company-intro,
  .services-features,
  .company-advantages,
  .business-license {
    padding: 40px 20px;
  }

  .intro-content,
  .advantages-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-item {
    padding: 25px 15px;
  }

  .advantage-item {
    padding: 20px;
    gap: 20px;
  }

  .advantage-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-hero-section {
    min-height: 35vh;
    padding: 80px 0 30px;
  }

  .about-hero-section .hero-title {
    font-size: 1.8rem;
  }

  .about-hero-section .hero-subtitle {
    font-size: 0.9rem;
  }

  .company-intro,
  .services-features,
  .company-advantages,
  .business-license {
    padding: 30px 15px;
  }

  .intro-paragraph {
    font-size: 1rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .feature-item h3 {
    font-size: 1.1rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }

  .advantage-item {
    padding: 15px;
    gap: 15px;
  }
}

/* 查看所有评论按钮样式 */
.view-all-reviews-btn-container {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.view-all-reviews-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.view-all-reviews-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.view-all-reviews-btn:active {
  transform: translateY(0);
}

/* 评论弹窗样式 */
.reviews-modal {
  z-index: 2000;
}

.reviews-modal-content {
  max-width: 800px;
  width: 90%;
  padding: 0;
  max-height: 90vh;
  margin: 2% auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px 15px 0 0;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.reviews-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.reviews-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-body {
  flex: 1;
  overflow: hidden;
  padding: 0;
}

.all-reviews-list {
  max-height: 70vh;
  overflow-y: auto;
  padding: 20px 30px;
}

.all-reviews-list::-webkit-scrollbar {
  width: 8px;
}

.all-reviews-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.all-reviews-list::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
}

.all-reviews-list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.modal-review-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  border-left: 5px solid #667eea;
  transition: all 0.3s ease;
  position: relative;
}

.modal-review-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-review-item:last-child {
  margin-bottom: 0;
}

.modal-review-text {
  color: #333;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1rem;
}

.modal-reviewer {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: right;
}

.review-number {
  position: absolute;
  top: 10px;
  right: 15px;
  background: #667eea;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .reviews-modal-content {
    width: 95%;
    margin: 5% auto;
    max-height: 85vh;
  }

  .modal-header {
    padding: 15px 20px;
  }

  .modal-header h3 {
    font-size: 1.3rem;
  }

  .all-reviews-list {
    padding: 15px 20px;
    max-height: 60vh;
  }

  .modal-review-item {
    padding: 15px;
  }

  .view-all-reviews-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}
