/* style.css - 子豚运输 日式极简风格 */
/* 自适应布局，不使用特殊符号，包含全部页面样式 */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f4f3f0;
  font-family: 'Segoe UI', 'Helvetica Neue', 'Noto Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic Pro', 'Yu Gothic', sans-serif;
  color: #2e2c2a;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.page-container {
  max-width: 1280px;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.05);
}

.site-header {
  border-bottom: 1px solid #eae6e1;
  padding: 1.8rem 2rem 1.2rem 2rem;
  background: #ffffff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand-name {
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #3e3a36;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.8rem;
  font-weight: 400;
  color: #8e8983;
  letter-spacing: 1px;
}

.header-decoration {
  width: 70px;
  height: 2px;
  background: #c2b9ae;
  margin-bottom: 0.6rem;
}

.main-content {
  padding: 2rem 2rem 1.5rem 2rem;
}

.breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  background: #faf8f4;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  display: inline-block;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: #bfb7ad;
}

.breadcrumb-list a {
  text-decoration: none;
  color: #5b6e6b;
}

.breadcrumb-list [aria-current="page"] {
  color: #2c4b4c;
  font-weight: 500;
}

.route-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.route-tagline {
  font-size: 1.2rem;
  font-weight: 500;
  color: #6f6a64;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.route-from, .route-to {
  font-weight: 500;
  color: #3e3a36;
}

.route-arrow {
  margin: 0 0.6rem;
  font-weight: 300;
  color: #b2aba1;
}

.route-heading {
  font-size: 1.8rem;
  font-weight: 500;
  color: #2c4b4c;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.route-description {
  max-width: 720px;
  margin: 0 auto;
  color: #5e5a55;
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.title-jp {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #b7aa99;
  background: #faf7f2;
  padding: 0.2rem 1rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.title-cn {
  font-size: 1.6rem;
  font-weight: 500;
  color: #3c3a37;
  margin-top: 0.2rem;
}

.quote-card {
  background: #fefdfb;
  border-radius: 24px;
  padding: 1.8rem 1.5rem 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #efebe5;
}

.table-wrapper {
  overflow-x: auto;
  margin: 1.2rem 0 1rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 480px;
}

.price-table th,
.price-table td {
  padding: 1rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e9e2da;
}

.price-table th {
  background-color: #f7f4ef;
  font-weight: 500;
  color: #4b4844;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.price-table .box-type {
  font-weight: 500;
  color: #2e4d4a;
}

.price-table .price-value {
  font-weight: 600;
  color: #28635f;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.price-table .remark {
  font-size: 0.85rem;
  color: #8b857c;
}

.quote-note {
  background: #faf7f2;
  padding: 0.8rem 1.2rem;
  border-radius: 16px;
  font-size: 0.75rem;
  color: #7b756c;
  margin: 1rem 0 1.5rem;
  border-left: 3px solid #cbc1b4;
}

.quote-action {
  text-align: center;
}

.btn-inquiry {
  display: inline-block;
  background-color: #2f5e5a;
  color: white;
  padding: 0.8rem 2.2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-inquiry:hover {
  background-color: #1f4542;
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

.related-routes {
  margin-bottom: 3rem;
  background: #ffffff;
  border-radius: 20px;
  padding: 0.5rem 0 1.5rem;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.route-link-item {
  background-color: #faf9f7;
  border-radius: 20px;
  padding: 0.9rem 1.2rem;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  transition: all 0.2s;
  border: 1px solid #ede8e1;
}

.route-link-item:hover {
  background-color: #f5f0ea;
  border-color: #cfc6bc;
  transform: translateX(2px);
}

.route-path {
  font-weight: 500;
  color: #3c3a36;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
}

.route-price {
  font-weight: 600;
  color: #2f5e5a;
  font-size: 0.85rem;
  background: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 30px;
}

.more-routes {
  text-align: right;
  margin-top: 1.5rem;
}

.more-link {
  display: inline-block;
  font-size: 0.85rem;
  color: #617c78;
  text-decoration: none;
  border-bottom: 1px dashed #cbc0b3;
  transition: border 0.2s;
}

.more-link:hover {
  color: #2f5e5a;
  border-bottom-color: #2f5e5a;
}

.service-feature {
  margin: 2rem 0 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 1rem;
}

.feature-card {
  background: #fefcf9;
  border-radius: 24px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: 0.2s;
  border: 1px solid #f0eae3;
}

.feature-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: #3b5b58;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.feature-name::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #ddcfc0;
  margin: 0.5rem auto 0;
}

.feature-desc {
  font-size: 0.85rem;
  color: #6b655e;
  line-height: 1.5;
  margin-top: 0.6rem;
}

.site-footer {
  background-color: #f7f4ef;
  border-top: 1px solid #e3dcd3;
  padding: 2rem 2rem 1.8rem;
  text-align: center;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-company {
  font-size: 1rem;
  font-weight: 500;
  color: #4a4642;
  margin-bottom: 0.6rem;
}

.footer-contact {
  font-size: 0.75rem;
  color: #8c867e;
  margin-bottom: 0.5rem;
}

.footer-copyright {
  font-size: 0.7rem;
  color: #a69f96;
  margin-top: 0.8rem;
}

.footer-copyright a {
  color: #8c867e;
  text-decoration: none;
  border-bottom: 1px dotted #cbc1b4;
}

.footer-copyright a:hover {
  color: #2f5e5a;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.service-detail {
  margin: 2rem 0;
  background: #fefdfb;
  padding: 1.2rem 1.5rem;
  border-radius: 24px;
  border: 1px solid #efebe5;
}

.detail-content p {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  color: #4d4945;
  font-size: 0.9rem;
}

.faq-section {
  margin: 2rem 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fefcf9;
  border-radius: 20px;
  padding: 1rem 1.3rem;
  border: 1px solid #eee7e0;
}

.faq-question {
  font-weight: 600;
  color: #2f5e5a;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.faq-answer {
  font-size: 0.85rem;
  color: #716b64;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .main-content {
    padding: 1.5rem;
  }
  .site-header {
    padding: 1.2rem 1.5rem;
  }
  .brand-name {
    font-size: 1.6rem;
  }
  .route-heading {
    font-size: 1.5rem;
  }
  .feature-grid {
    gap: 1rem;
  }
}

@media (max-width: 720px) {
  .route-tagline {
    font-size: 1rem;
  }
  .route-heading {
    font-size: 1.35rem;
  }
  .quote-card {
    padding: 1.2rem;
  }
  .price-table th,
  .price-table td {
    padding: 0.75rem 0.8rem;
    font-size: 0.85rem;
  }
  .price-table .price-value {
    font-size: 1rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .routes-grid {
    grid-template-columns: 1fr;
  }
  .route-link-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .route-price {
    align-self: flex-start;
  }
  .more-routes {
    text-align: center;
    margin-top: 1rem;
  }
  .title-cn {
    font-size: 1.3rem;
  }
  .btn-inquiry {
    padding: 0.7rem 1.8rem;
    width: 100%;
    max-width: 240px;
  }
  .breadcrumb {
    font-size: 0.7rem;
    width: 100%;
  }
  .service-detail, .faq-item {
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 1rem;
  }
  .site-header {
    padding: 1rem;
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-decoration {
    margin-bottom: 0;
  }
  .route-description {
    font-size: 0.85rem;
  }
  .price-table th,
  .price-table td {
    padding: 0.65rem 0.5rem;
    font-size: 0.8rem;
  }
}