/* 中文站特定样式 */

/* 中文字体优化 */
:root {
  --cn-font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --cn-font-serif: 'Noto Serif SC', 'SimSun', serif;
}

body {
  font-family: 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
}

/* 中文标题样式优化 */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif SC', serif;
}

/* 中文英雄区样式调整 */
.hero h1 {
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

.hero p {
  letter-spacing: 0.02em;
}

/* 优化中文按钮样式 */
.btn {
  padding: 12px 28px;
}

.btn-small {
  padding: 8px 18px;
}

/* 目的地卡片中文样式优化 */
.destination-info h3 {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.destination-info p {
  min-height: 48px;
}

/* 中文服务卡片样式优化 */
.service-card h3 {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.service-content p {
  min-height: 60px;
}

/* 中文客户评价样式优化 */
.testimonial-content p {
  font-family: var(--cn-font-serif);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.testimonial-author h4 {
  font-weight: 600;
}

/* 中文页脚样式优化 */
.footer-column h3 {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-column ul li a {
  letter-spacing: 0.02em;
}

.contact-info li {
  letter-spacing: 0.02em;
}

/* 优化中文移动端样式 */
@media (max-width: 768px) {
  .hero h1 {
    letter-spacing: 0.03em;
  }
  
  /* 中文移动导航间距调整 */
  nav ul li {
    margin: 0 0 18px 0;
  }
  
  /* 调整中文按钮在移动端的显示 */
  .btn {
    width: 100%;
    padding: 12px 20px;
  }

  .logo img {
    max-width: 120px !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .language-selector {
    position: absolute !important;
    top: 1.5rem !important;
    right: 2rem !important;
    margin: 0 !important;
  }

  .language-selector select {
    background-color: transparent !important;
    border: none !important;
    font-size: 1.6rem !important;
    padding: 0.5rem !important;
    cursor: pointer !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23666666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
    padding-right: 3rem !important;
  }

  .discover-kansai {
    margin: 2rem 0 !important;
  }

  .discover-kansai a {
    color: #d4c087 !important;
    font-weight: 500 !important;
    font-size: 1.8rem !important;
  }

  nav ul {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 100% !important;
    height: 100vh !important;
    background-color: var(--white) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 8rem 2rem 2rem !important;
    transition: var(--transition) !important;
    z-index: 99 !important;
  }

  nav ul.active {
    right: 0 !important;
  }

  nav ul li {
    margin: 1.5rem 0 !important;
    width: 100% !important;
    text-align: center !important;
  }

  nav ul li a {
    font-size: 1.8rem !important;
    padding: 1rem 0 !important;
    display: block !important;
  }

  .partner-logo {
    height: 70px !important;
    width: auto !important;
  }
  .klook-logo {
    height: inherit !important;
    min-height: 0 !important;
    max-height: none !important;
  }
}

/* 文章段落样式优化 */
.article p {
  font-family: var(--cn-font-serif);
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-character;
}

/* 特色目的地图标样式 */
.destination-feature-icon {
  font-family: var(--cn-font-serif);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--primary-color);
  background: rgba(26, 115, 232, 0.1);
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 2rem;
}

/* 中文导航菜单间距调整 */
@media (min-width: 769px) {
  nav ul {
    gap: 2.5rem;
  }
}

/* 中文表单标签样式 */
.form-label {
  font-weight: 500;
}

/* 旅行类型标签样式 */
.travel-tag {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background-color: rgba(26, 115, 232, 0.1);
  color: var(--primary-color);
  border-radius: 3rem;
  font-size: 1.4rem;
  font-weight: 500;
  margin-right: 1rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.travel-tag:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* 优惠标签样式 */
.discount-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 1.4rem;
  z-index: 2;
  transform: rotate(5deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* 价格样式 */
.price {
  font-family: var(--cn-font-sans);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-original {
  font-size: 1.6rem;
  color: var(--light-text);
  text-decoration: line-through;
  margin-left: 1rem;
}

/* 中文图片说明文字样式 */
.image-caption {
  font-size: 1.4rem;
  color: var(--light-text);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

/* 中文站特色背景 */
.chinese-pattern-bg {
  background-color: var(--light-bg);
  background-image: url('../images/chinese-pattern.png');
  background-size: 20rem;
  background-repeat: repeat;
  background-blend-mode: overlay;
  opacity: 0.05;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* 中文服务步骤样式 */
.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.step-number {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.step-content h3 {
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--light-text);
}

/* 中文响应式调整 */
@media (max-width: 576px) {
  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}

/* 中文版本特定样式 */

/* 调整标题间距 */
.section-header h2 {
  letter-spacing: 0.05em;
}

/* 导航项的中文特定间距 */
nav ul li {
  margin-left: 25px;
}

nav ul li a {
  letter-spacing: 0.03em;
}

/* 导航菜单样式 */
.shop-nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    cursor: pointer;
    padding: 5px;
}

.flag-icon {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.nav-link:hover {
    color: #d4c087;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4c087;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.main-site-link {
    color: #d4c087;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
}

.nav-toggle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.explore-link {
    display: flex;
    align-items: center;
    margin: 0 30px;
    text-align: center;
}

.explore-link a {
    color: #d4c087;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.explore-link a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4c087;
    transition: width 0.3s;
}

.explore-link a:hover {
    color: #b3a06a;
}

.explore-link a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .nav-container {
        height: 70px;
        padding: 0 15px;
    }

    .logo-image {
        height: 40px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        padding: 5px;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 2px;
        background-color: #333;
        transition: all 0.3s ease;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-link {
        padding: 10px;
        font-size: 16px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .flag-icon {
        width: 24px;
        height: 16px;
    }
    
    .explore-link {
        margin: 0 15px;
        justify-content: center;
    }
    
    .explore-link a {
        font-size: 1rem;
        line-height: 1.2;
        white-space: normal;
        text-align: center;
    }
}

/* 隐藏指定板块 */
.popular-destinations,
.newsletter,
.view-all,
.footer-links .footer-column:first-child,
.footer-links .footer-column:nth-child(2) {
    display: none !important;
}

/* 车型介绍板块样式 */
.vehicle-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vehicle-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
}

.vehicle-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.vehicle-info {
    padding: 20px;
}

.vehicle-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.feature {
    background: rgba(212, 192, 135, 0.1);
    color: #d4c087;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.vehicle-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 服务报价单板块样式 */
.pricing-section {
    padding: 60px 0;
}

/* 地区卡片容器样式 */
.region-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    width: 100%;
}

/* 地区卡片样式 */
.region-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: block;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* 确保关东卡片显示 */
.kanto-card {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* 确保关西卡片显示 */
.kansai-card {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* 关西图片样式 */
.kansai-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.region-card:hover .kansai-hero-image {
    transform: scale(1.05);
}

.kansai-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 30px 25px 25px;
    text-align: center;
}

.kansai-overlay h3 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.kansai-overlay p {
    font-size: 1.6rem;
    opacity: 0.9;
    color: white;
}

/* 关西定价内容样式 */
.kansai-pricing-content {
    padding: 30px 25px;
}

.pricing-services {
    margin-bottom: 25px;
}

.service-section {
    margin-bottom: 25px;
}

.service-section:last-child {
    margin-bottom: 0;
}

.service-section h4 {
    font-size: 1.76rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    letter-spacing: 0.02em;
}

.service-section h4 strong {
    font-weight: 900 !important;
    font-weight: bold !important;
    text-shadow: 0 0 0.5px currentColor;
}

.service-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: transparent;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(234, 232, 228, 0.3);
    border-radius: 8px;
    border-left: 3px solid transparent;
}

.service-name {
    font-size: 1.6rem;
    color: var(--text-dark);
    font-weight: 500;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* 关西详情按钮样式 */
.kansai-button-container {
    text-align: right;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(234, 232, 228, 0.5);
}

.kansai-detail-btn {
    background: rgba(234, 232, 228, 0.8);
    color: var(--text-dark);
    border: 2px solid rgba(51, 51, 51, 0.3);
    padding: 11px 21px;
    border-radius: 0;
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 133px;
    letter-spacing: 0.5px;
}

.kansai-detail-btn:hover {
    background: rgba(234, 232, 228, 1);
    border-color: rgba(51, 51, 51, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-header {
    background: #d4c087;
    color: #fff;
    padding: 25px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.pricing-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.pricing-content {
    padding: 25px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.pricing-item:last-child {
    border-bottom: none;
}

.service-name {
    color: #333;
    font-size: 0.95rem;
}

.price {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .region-cards-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        width: 100% !important;
    }
    
    .region-card {
        display: block !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }
    
    .kansai-image {
        height: 250px;
    }
    
    .kansai-overlay h3 {
        font-size: 2.4rem;
    }
    
    .kansai-overlay p {
        font-size: 1.4rem;
    }
    
    .kansai-pricing-content {
        padding: 25px 20px;
    }
    
    .service-section h4 {
        font-size: 1.6rem;
        font-weight: 700;
        letter-spacing: 0.02em;
    }
    
    .service-section h4 strong {
        font-weight: 900 !important;
        font-weight: bold !important;
        text-shadow: 0 0 0.5px currentColor;
    }
    
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pricing-item {
        padding: 10px 12px;
    }
    
    .service-name {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.6rem;
    }
    
    .kansai-detail-btn {
        padding: 9px 19px;
        font-size: 1.2rem;
        min-width: 120px;
        background: rgba(234, 232, 228, 0.8);
        border: 2px solid rgba(51, 51, 51, 0.3);
        border-radius: 0;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: var(--text-dark);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .kansai-detail-btn:hover {
        background: rgba(234, 232, 228, 1);
        border-color: rgba(51, 51, 51, 0.5);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .vehicle-section,
    .pricing-section {
        padding: 40px 0;
    }
    
    .vehicle-grid,
    .pricing-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .vehicle-card img {
        height: 180px;
    }
    
    .vehicle-info,
    .pricing-content {
        padding: 15px;
    }
    
    .pricing-header {
        padding: 20px;
    }
    
    .pricing-item {
        padding: 12px 0;
    }
} 