/* =============================================  
 * 简游网 - 组件样式
 * JianYou Travel - Components CSS
 * ============================================= */

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* Tools Section */
.tools-section {
  padding: 60px 0;
  background: white;
}

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

.tool-card {
  background: var(--bg-secondary);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.tool-card h3 {
  color: var(--primary-color);
  margin-bottom: 24px;
  font-size: 20px;
}

/* Currency Converter */
.currency-converter {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.converter-input {
  display: flex;
  gap: 12px;
}

.converter-input input {
  flex: 1;
  margin: 0;
}

.converter-input select {
  width: 140px;
  margin: 0;
}

.converter-arrow {
  text-align: center;
  font-size: 24px;
  color: var(--text-secondary);
}

#exchangeResult {
  text-align: center;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 8px;
}

/* Time Zone Checker */
.time-zone-checker {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#timeResult {
  text-align: center;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 8px;
}

/* Popular Cities Section */
.popular-cities {
  padding: 60px 0;
}

.popular-cities h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--text-primary);
}

/* China Map Section */
.china-map-section {
  padding: 60px 0;
  background: white;
}

.china-map-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 12px;
}

.china-map-section p {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.provinces-list {
  max-width: 1000px;
  margin: 0 auto;
}

.provinces-grid {
  display: grid;
  gap: 32px;
}

.province-group {
  background: var(--bg-secondary);
  padding: 24px;
  border-radius: var(--radius-lg);
}

.province-group h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 20px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 12px;
}

.province-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.province-item {
  display: block;
  padding: 12px 16px;
  background: white;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  text-align: center;
}

.province-item:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.province-name-en {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.province-item:hover .province-name-en {
  color: rgba(255, 255, 255, 0.8);
}

/* Links Section */
.links {
  padding: 60px 0;
}

.links .card {
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: block;
}

.links .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* =============================================  
 * Scenic Cards
 * ============================================= */

.scenic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.scenic-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.scenic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.scenic-link {
  display: block;
  text-decoration: none;
  color: var(--text-primary);
}

.scenic-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.scenic-card:hover .scenic-image img {
  transform: scale(1.05);
}

.scenic-type {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

.scenic-info {
  padding: 16px;
}

.scenic-info h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.scenic-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.scenic-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.scenic-price {
  color: var(--secondary-color);
  font-weight: 500;
}

.scenic-rating {
  color: var(--accent-color);
  font-weight: 500;
}

/* =============================================  
 * Food Cards
 * ============================================= */

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.food-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.food-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.food-link {
  display: block;
  text-decoration: none;
  color: var(--text-primary);
}

.food-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.food-card:hover .food-image img {
  transform: scale(1.05);
}

.food-type {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--secondary-color);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

.food-info {
  padding: 16px;
}

.food-info h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.food-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.food-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.food-price {
  color: var(--secondary-color);
  font-weight: 500;
}

.food-rating {
  color: var(--accent-color);
  font-weight: 500;
}

/* =============================================  
 * Favorite Button
 * ============================================= */

.favorite-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.favorite-btn:hover {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.favorite-btn.active {
  color: var(--secondary-color);
}

.favorite-btn.active svg {
  fill: currentColor;
}

/* =============================================  
 * Section Styles
 * ============================================= */

.section {
  padding: 40px 0;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.guide {
  padding: 40px 0;
  line-height: 1.8;
}

.guide-section {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.guide-section h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 24px;
}

.guide-section h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 18px;
}

.guide-section p {
  margin: 8px 0;
  color: var(--text-secondary);
}

.guide-section a {
  color: var(--primary-color);
  font-weight: 500;
}

.guide-section a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* =============================================  
 * Tab Navigation
 * ============================================= */

.tab-nav {
  display: flex;
  gap: 12px;
  margin: 30px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-nav a {
  background: white;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.tab-nav a:hover,
.tab-nav a.active {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* =============================================  
 * Membership Cards
 * ============================================= */

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

.membership-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
}

.membership-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.membership-card.current {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #f0f8ff, #ffffff);
}

.membership-card.premium {
  border-color: var(--primary-light);
}

.membership-card.vip {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, #fff9e6, #ffffff);
}

.membership-header {
  margin-bottom: 24px;
}

.membership-header h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.membership-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.membership-price .price {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary-color);
}

.membership-price .period {
  color: var(--text-secondary);
}

.current-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  margin-top: 8px;
}

.membership-features {
  list-style: none;
  margin-bottom: 24px;
}

.membership-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.membership-features li svg {
  flex-shrink: 0;
  color: var(--primary-color);
}

.membership-card .btn-primary {
  width: 100%;
}

/* =============================================  
 * Utility Components
 * ============================================= */

.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.alert-info {
  background: #e3f2fd;
  color: #1976d2;
  border-left: 4px solid #1976d2;
}

.alert-success {
  background: #e8f5e9;
  color: #388e3c;
  border-left: 4px solid #388e3c;
}

.alert-warning {
  background: #fff3e0;
  color: #f57c00;
  border-left: 4px solid #f57c00;
}

.alert-error {
  background: #ffebee;
  color: #d32f2f;
  border-left: 4px solid #d32f2f;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

.badge-primary {
  background: var(--primary-color);
  color: white;
}

.badge-secondary {
  background: var(--secondary-color);
  color: white;
}

.badge-success {
  background: #52c41a;
  color: white;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

/* =============================================  
 * Social Icons
 * ============================================= */

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.social-icon.wechat {
  background: #07c160;
}

.social-icon.weibo {
  background: #e6162d;
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.instagram {
  background: #e4405f;
}

/* =============================================
 * Beijing Detail Pages Styles
 * ============================================= */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 12px;
  color: white;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
}

.bg-light {
  background-color: var(--bg-secondary);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 10px 20px;
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
}

/* Attraction Cards */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.attraction-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.attraction-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attraction-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

.attraction-content {
  padding: 20px;
}

.attraction-content h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.attraction-name-en {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: normal;
  margin-left: 8px;
}

.attraction-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
}

.attraction-rating {
  color: var(--accent-color);
  font-weight: 500;
}

.attraction-price {
  color: var(--secondary-color);
  font-weight: 500;
}

.attraction-duration {
  color: var(--text-secondary);
}

.attraction-description {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.attraction-address {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 8px;
}

.attraction-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.attraction-tags .tag {
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-secondary);
}

.attraction-tips {
  background: #f8f9fa;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
  border-left: 3px solid var(--primary-color);
}

/* Food Cards Detail */
.food-content {
  padding: 20px;
}

.food-content h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.food-name-en {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: normal;
  margin-left: 8px;
}

.food-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
}

.food-rating {
  color: var(--accent-color);
  font-weight: 500;
}

.food-price {
  color: var(--secondary-color);
  font-weight: 500;
}

.food-description {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.food-restaurants {
  margin-bottom: 12px;
  font-size: 13px;
}

.restaurant-tag {
  display: inline-block;
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-secondary);
  margin: 4px 4px 0 0;
}

.food-tips {
  background: #f8f9fa;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
  border-left: 3px solid var(--secondary-color);
}

/* Restaurant Cards */
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.restaurant-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.restaurant-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.restaurant-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.restaurant-year {
  color: var(--accent-color);
  font-size: 13px;
  margin-bottom: 12px;
}

.restaurant-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.restaurant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Area Cards */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.area-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.area-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.area-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.area-card strong {
  color: var(--text-primary);
}

/* Hotel Cards */
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.hotel-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hotel-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

.hotel-content {
  padding: 20px;
}

.hotel-content h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.hotel-name-en {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: normal;
  margin-left: 8px;
}

.hotel-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
}

.hotel-rating {
  color: var(--accent-color);
  font-weight: 500;
}

.hotel-price {
  color: var(--secondary-color);
  font-weight: 500;
}

.hotel-description {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.hotel-address {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 8px;
}

.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.amenity-tag {
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-secondary);
}

.hotel-tips {
  background: #f8f9fa;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
  border-left: 3px solid var(--primary-color);
}

/* Tips Grid Extended */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.tip-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tip-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.tip-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.tip-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Route Cards */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.route-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.route-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.route-time {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 14px;
}

.route-list {
  list-style: none;
  padding: 0;
}

.route-list li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.route-list li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Season Cards */
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.season-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.season-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.season-card.spring {
  border-top: 4px solid #4caf50;
}

.season-card.summer {
  border-top: 4px solid #ff9800;
}

.season-card.autumn {
  border-top: 4px solid #ff5722;
}

.season-card.winter {
  border-top: 4px solid #2196f3;
}

.season-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.season-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.season-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--text-primary);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.season-weather {
  background: var(--bg-secondary);
  padding: 12px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.season-weather p {
  margin: 4px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.season-activities h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.season-activities ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.season-activities li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.season-activities li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.season-tips h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.season-tips p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

/* Month Cards */
.months-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.month-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
}

.month-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.month-card.highlight {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fff9e6, #ffffff);
}

.month-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 20px;
}

.month-season {
  color: var(--secondary-color);
  font-size: 12px;
  margin-bottom: 8px;
  font-weight: 500;
}

.month-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

/* Event Cards */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.event-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.event-season {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.event-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.event-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.event-card strong {
  color: var(--text-primary);
}

/* Clothing Cards */
.clothing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.clothing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.clothing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.clothing-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.clothing-card ul {
  list-style: none;
  padding: 0;
}

.clothing-card li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.clothing-card li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Transport Cards */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.transport-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.transport-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.transport-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.transport-info {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 16px;
}

.transport-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.method {
  background: var(--bg-secondary);
  padding: 12px;
  border-radius: var(--radius-md);
}

.method h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.method p {
  color: var(--text-secondary);
  font-size: 13px;
  margin: 4px 0;
}

.transport-tips {
  background: #f8f9fa;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
  border-left: 3px solid var(--primary-color);
}

/* Subway Info */
.subway-info {
  margin-bottom: 32px;
}

.subway-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.stat-item {
  background: white;
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.subway-tips {
  background: white;
  padding: 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.subway-tips h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.subway-tips ul {
  list-style: none;
  padding: 0;
}

.subway-tips li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.subway-tips li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.popular-routes {
  background: white;
  padding: 20px;
  border-radius: var(--radius-lg);
}

.popular-routes h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 16px;
}

.route-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
}

.route-from,
.route-to {
  flex: 1;
  font-size: 14px;
  color: var(--text-primary);
}

.route-arrow {
  color: var(--text-secondary);
}

.route-detail {
  flex: 2;
  font-size: 13px;
  color: var(--text-secondary);
}

/* Taxi Info */
.taxi-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.taxi-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.taxi-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.taxi-card ul {
  list-style: none;
  padding: 0;
}

.taxi-card li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.taxi-card li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Bus Grid */
.bus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.bus-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.bus-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.bus-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.bus-card ul {
  list-style: none;
  padding: 0;
}

.bus-card li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.bus-card li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Station Grid */
.station-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.station-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.station-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.station-location {
  color: var(--secondary-color);
  font-size: 12px;
  margin-bottom: 12px;
}

.station-card ul {
  list-style: none;
  padding: 0;
}

.station-card li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.station-card li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Scenic Tips */
.scenic-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.scenic-tip-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.scenic-tip-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.scenic-tip-card ul {
  list-style: none;
  padding: 0;
}

.scenic-tip-card li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.scenic-tip-card li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Food Tips */
.food-tips {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.food-tip-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.food-tip-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.food-tip-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Traffic Tips */
.traffic-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.traffic-tip-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.traffic-tip-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.traffic-tip-card ul {
  list-style: none;
  padding: 0;
}

.traffic-tip-card li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.traffic-tip-card li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Stay Tips */
.stay-tips {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stay-tip-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.stay-tip-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.stay-tip-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.stay-tip-item strong {
  color: var(--text-primary);
}

/* Life Tips */
.life-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.life-tip-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.life-tip-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.life-tip-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

/* Safety Tips */
.safety-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.safety-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.safety-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.safety-card ul {
  list-style: none;
  padding: 0;
}

.safety-card li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.safety-card li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.safety-card.warning {
  border-left: 4px solid #ff9800;
}

.safety-card.info {
  border-left: 4px solid #2196f3;
}

/* Shopping Tips */
.shopping-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.shopping-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.shopping-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.shopping-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.shopping-guide {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 20px;
  box-shadow: var(--shadow-sm);
}

.shopping-guide h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 18px;
}

.shopping-guide ul {
  list-style: none;
  padding: 0;
}

.shopping-guide li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.shopping-guide li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.shopping-guide strong {
  color: var(--text-primary);
}

/* Metro Lines */
.metro-lines {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metro-line {
  background: white;
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.metro-line h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.line-number {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: bold;
  margin-right: 8px;
}

.metro-line p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  margin: 4px 0;
}

/* Walking Routes */
.walking-routes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.walking-routes .route-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.walking-routes .route-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.walking-routes .route-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 4px 0;
}

.walking-routes .route-card strong {
  color: var(--text-primary);
}

/* Footer Styles */
.site-footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 60px 0 20px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: white;
}

.footer-col p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-light);
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 13px;
}

/* =============================================
 * Season Page Styles
 * ============================================= */

/* Climate Overview */
.climate-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.climate-stat {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: #1a1a2e;
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.stat-icon {
  font-size: 40px;
}

.stat-info h3 {
  font-size: 14px;
  margin-bottom: 4px;
  opacity: 0.8;
}

.stat-value {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 2px;
}

.stat-desc {
  font-size: 12px;
  opacity: 0.7;
}

/* Climate Alert Box */
.climate-alert-box {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}

.climate-alert-box h3 {
  color: #f57c00;
  margin-bottom: 12px;
  font-size: 18px;
}

.climate-alert-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.climate-alert-box li {
  color: #5d4037;
  font-size: 14px;
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
}

.climate-alert-box li:before {
  content: "⚠️";
  position: absolute;
  left: 0;
  top: 0;
}

/* Season Details */
.season-details {
  margin-bottom: 16px;
}

.season-details h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.season-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.season-details li {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.season-details li strong {
  color: var(--text-primary);
}

.season-tips {
  background: #fff3e0;
  padding: 12px;
  border-radius: var(--radius-md);
  margin-top: 12px;
}

.season-tips h4 {
  color: #f57c00;
  margin-bottom: 8px;
  font-size: 13px;
}

.season-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.season-tips li {
  color: #5d4037;
  font-size: 12px;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.season-tips li:before {
  content: "💡";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 11px;
}

/* Origin Clothing Guide */
.clothing-origin {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.clothing-origin h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 24px;
}

.origin-tip {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 14px;
}

.origins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.origin-card {
  background: var(--bg-secondary);
  padding: 24px;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--primary-color);
}

.origin-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.origin-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.origin-desc {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 13px;
}

.origin-clothing h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.origin-clothing ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.origin-clothing li {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}

.origin-clothing li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Clothing Tips */
.clothing-tips {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
}

.clothing-tips h3 {
  color: var(--primary-color);
  margin-bottom: 24px;
  font-size: 20px;
  text-align: center;
}

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

.tip-card {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-color);
}

.tip-card h4 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.tip-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin: 4px 0;
}

/* Month Temperature */
.month-temp {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 12px;
}

.month-tips {
  color: #4caf50;
  font-size: 11px;
  line-height: 1.4;
  margin: 4px 0;
}

.month-tips:before {
  content: "";
  margin-right: 4px;
}

/* Event Cards with Navigation */
.event-card.spring-event {
  border-top: 4px solid #4caf50;
}

.event-card.summer-event {
  border-top: 4px solid #ff9800;
}

.event-card.autumn-event {
  border-top: 4px solid #ff5722;
}

.event-card.winter-event {
  border-top: 4px solid #2196f3;
}

.btn-navigate-sm {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 12px;
  transition: all 0.3s ease;
}

.btn-navigate-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Month Summary */
.month-summary {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
}

.month-summary h3 {
  color: var(--primary-color);
  margin-bottom: 24px;
  font-size: 20px;
  text-align: center;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.summary-card {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.summary-card h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.summary-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin: 4px 0;
}

/* =============================================
 * Travel Tips Page Styles
 * ============================================= */

/* Quick Navigation */
.quick-nav {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.quick-nav h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 18px;
}

.quick-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-nav-link {
  background: var(--bg-secondary);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.quick-nav-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Preparation Checklist */
.preparation-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* 新版行前准备样式 - 重排版版本 */
.prep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .prep-grid {
    grid-template-columns: 1fr;
  }
}

.prep-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prep-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.prep-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  position: relative;
}

.prep-card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.documents-theme { background: linear-gradient(135deg, #E8F5E9, #F1F8E9); }
.documents-theme::after { background: linear-gradient(90deg, #4CAF50, #81C784); }

.apps-theme { background: linear-gradient(135deg, #E3F2FD, #E8EAF6); }
.apps-theme::after { background: linear-gradient(90deg, #2196F3, #64B5F6); }

.luggage-theme { background: linear-gradient(135deg, #FFF3E0, #FFF8E1); }
.luggage-theme::after { background: linear-gradient(90deg, #FF9800, #FFB74D); }

.finance-theme { background: linear-gradient(135deg, #F3E5F5, #FCE4EC); }
.finance-theme::after { background: linear-gradient(90deg, #9C27B0, #BA68C8); }

.prep-card-icon {
  font-size: 36px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.prep-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.prep-card-badge {
  display: inline-block;
  font-size: 11px;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.6);
  padding: 2px 10px;
  border-radius: 10px;
  margin-top: 4px;
}

.prep-card-body {
  padding: 16px 24px;
}

.prep-item {
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}

.prep-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.prep-checkbox {
  display: none;
}

.prep-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 6px 0;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.prep-label:hover {
  background: var(--bg-secondary);
}

.prep-checkbox-custom {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  background: white;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 1px;
}

.prep-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}

.prep-checkbox:checked + .prep-label .prep-checkbox-custom {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.prep-checkbox:checked + .prep-label .prep-checkbox-custom::after {
  transform: rotate(45deg) scale(1);
}

.prep-checkbox:checked + .prep-label .prep-name {
  text-decoration: line-through;
  color: var(--text-secondary);
}

.prep-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prep-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
}

.prep-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.prep-links {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.prep-link {
  display: inline-block;
  padding: 2px 10px;
  font-size: 11px;
  color: var(--primary-color);
  background: #E3F2FD;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.prep-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

/* Progress Bar */
.prep-progress {
  padding: 14px 24px 20px;
  border-top: 1px solid var(--border-light);
}

.prep-bar-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prep-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
  overflow: hidden;
}

.prep-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 4px;
  transition: width 0.35s ease;
}

.prep-bar-text {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  min-width: 72px;
  text-align: right;
}

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

.preparation-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  margin-top: 8px;
}

.preparation-checklist-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.preparation-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.preparation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.preparation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.documents-card::before {
  background: linear-gradient(90deg, #4CAF50, #81C784);
}

.apps-card::before {
  background: linear-gradient(90deg, #2196F3, #64B5F6);
}

.luggage-card::before {
  background: linear-gradient(90deg, #FF9800, #FFB74D);
}

.finance-card::before {
  background: linear-gradient(90deg, #9C27B0, #BA68C8);
}

.card-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.card-title {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.checklist-items {
  margin-bottom: 24px;
}

.check-item-new {
  margin-bottom: 16px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  transition: background 0.2s ease;
}

.check-item-new:hover {
  background: var(--bg-tertiary);
}

.check-item-new:last-child {
  margin-bottom: 0;
}

.custom-checkbox {
  display: none;
}

.check-item-new label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding-left: 36px;
  position: relative;
}

.check-item-new label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  background: white;
  transition: all 0.2s ease;
}

.check-item-new label::after {
  content: '✓';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.custom-checkbox:checked + label::before {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.custom-checkbox:checked + label::after {
  opacity: 1;
}

.item-name {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  flex: 1;
}

.item-desc {
  color: var(--text-secondary);
  font-size: 13px;
  background: var(--bg-primary);
  padding: 4px 10px;
  border-radius: 12px;
}

.download-links {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.download-link {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.download-link:hover {
  background: var(--accent-color);
  transform: translateY(-1px);
}

.nav-link-sm {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 11px;
  background: #E3F2FD;
  color: #1976D2;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav-link-sm:hover {
  background: #BBDEFB;
  transform: translateY(-1px);
}

.card-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 4px;
}

.progress-text {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  min-width: 40px;
  text-align: right;
}

.preparation-tips {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.preparation-tips h3 {
  color: var(--text-primary);
  font-size: 20px;
  margin-bottom: 24px;
  text-align: center;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.tip-item {
  padding: 20px;
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  border-radius: var(--radius-lg);
  text-align: center;
}

.tip-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.tip-item h4 {
  color: var(--text-primary);
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.tip-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Alert Box */
.alert-box {
  padding: 20px;
  border-radius: var(--radius-lg);
  margin: 24px 0;
}

.alert-box.warning {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
}

.alert-box.info {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
}

.alert-box h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

.alert-box.warning h4 {
  color: #f57c00;
}

.alert-box.info h4 {
  color: #1976d2;
}

.alert-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.alert-box li {
  font-size: 14px;
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
}

.alert-box li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Scenic Guide Cards */
.scenic-guides {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.scenic-guide-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.scenic-guide-card:hover {
  box-shadow: var(--shadow-lg);
}

.guide-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, var(--bg-secondary), white);
  border-bottom: 2px solid var(--border-light);
}

.guide-icon {
  font-size: 40px;
}

.guide-title {
  flex: 1;
}

.guide-title h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 4px;
}

.guide-rating {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.guide-content {
  padding: 20px;
}

.guide-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.guide-info {
  font-size: 13px;
  color: var(--text-secondary);
}

.guide-info strong {
  color: var(--text-primary);
}

.guide-tips,
.guide-route,
.guide-transport {
  margin-bottom: 16px;
}

.guide-tips h4,
.guide-route h4,
.guide-transport h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.guide-tips ul,
.guide-transport ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-tips li,
.guide-transport li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}

.guide-tips li:before,
.guide-transport li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.guide-route p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

/* Food Guide */
.food-guide-section {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.food-guide-section h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 18px;
}

.food-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.food-item {
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--secondary-color);
}

.food-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.food-item-header h4 {
  color: var(--primary-color);
  font-size: 16px;
  margin: 0;
}

.food-price {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 14px;
}

.food-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.food-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.food-tip {
  background: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-secondary);
}

/* Snacks Grid */
.snacks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.snack-item {
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
}

.snack-item h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.snack-price {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.snack-desc {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.snack-warning {
  display: inline-block;
  background: #fff3e0;
  color: #f57c00;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
}

.snack-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #388e3c;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
}

/* Snack Areas */
.snack-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.snack-area {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: var(--radius-md);
}

.snack-area h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.snack-area p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Transport Guide */
.transport-guide {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.transport-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.transport-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--bg-secondary), white);
  border-bottom: 1px solid var(--border-light);
}

.transport-icon {
  font-size: 32px;
}

.transport-header h3 {
  color: var(--primary-color);
  font-size: 18px;
  margin: 0;
  flex: 1;
}

.transport-badge {
  background: var(--accent-color);
  color: var(--text-primary);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

.transport-content {
  padding: 20px;
}

.transport-info {
  background: var(--bg-secondary);
  padding: 12px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.transport-info p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin: 4px 0;
}

.transport-info strong {
  color: var(--text-primary);
}

.transport-tips,
.transport-lines,
.transport-transport,
.transport-warning {
  margin-bottom: 16px;
}

.transport-tips h4,
.transport-lines h4,
.transport-transport h4,
.transport-warning h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.transport-tips ul,
.transport-lines ul,
.transport-transport ul,
.transport-warning ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.transport-tips li,
.transport-lines li,
.transport-transport li,
.transport-warning li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}

.transport-tips li:before,
.transport-lines li:before,
.transport-transport li:before,
.transport-warning li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.transport-warning {
  background: #fff3e0;
  padding: 12px;
  border-radius: var(--radius-md);
}

.transport-warning h4 {
  color: #f57c00;
}

.transport-warning li {
  color: #5d4037;
}

/* Stay Guide */
.stay-guide {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stay-section h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 20px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.area-card {
  background: white;
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.area-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.area-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--text-primary);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
}

.area-card h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.area-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.area-tag {
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-secondary);
}

.area-attractions {
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.area-attractions p {
  color: var(--text-secondary);
  font-size: 13px;
  margin: 0;
}

.area-attractions strong {
  color: var(--primary-color);
}

/* Price Grid */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.price-card {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.price-card h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.price-range {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 12px;
}

.price-card p {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 12px;
}

.price-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.price-features li {
  color: var(--text-secondary);
  font-size: 12px;
  margin-bottom: 6px;
  padding-left: 20px;
  position: relative;
}

.price-features li:before {
  content: "✓";
  color: #4caf50;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Booking Platforms */
.booking-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.platform-card {
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
}

.platform-card h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.platform-card p {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 8px;
}

.platform-tag {
  display: inline-block;
  background: var(--accent-color);
  color: var(--text-primary);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

.booking-tips {
  background: white;
  padding: 20px;
  border-radius: var(--radius-lg);
}

.booking-tips h4 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.booking-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-tips li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.booking-tips li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Life Info Grid */
.life-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.life-info-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.life-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.life-info-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.life-info-card > p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 14px;
}

.life-detail {
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.life-detail h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.life-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.life-detail li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}

.life-detail li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.life-detail li strong {
  color: var(--text-primary);
}

/* Foreign Guide */
.foreign-guide {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.foreign-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.foreign-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--bg-secondary), white);
  border-bottom: 1px solid var(--border-light);
}

.foreign-icon {
  font-size: 32px;
}

.foreign-header h3 {
  color: var(--primary-color);
  font-size: 18px;
  margin: 0;
}

.foreign-content {
  padding: 20px;
}

.foreign-content h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.foreign-content h4:first-child {
  padding-top: 0;
  border-top: none;
}

.foreign-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.foreign-content li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}

.foreign-content li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.foreign-content li strong {
  color: var(--text-primary);
}

/* Emergency Section */
.emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.emergency-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.emergency-card.important {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: white;
}

.emergency-card.important .emergency-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.emergency-card.important h3 {
  color: white;
}

.emergency-card.important .emergency-item .number {
  background: white;
  color: #ff6b6b;
}

.emergency-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.emergency-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.emergency-note {
  color: var(--text-secondary);
  font-size: 12px;
  margin-bottom: 16px;
}

.emergency-numbers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.emergency-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.emergency-item .number {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
}

.emergency-item .label {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: right;
}

.emergency-desc {
  color: var(--text-secondary);
  font-size: 12px;
  margin-top: 12px;
}

.emergency-tips {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.emergency-tips h4 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 18px;
}

.emergency-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.emergency-tip {
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: var(--radius-md);
}

.emergency-tip h5 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.emergency-tip ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.emergency-tip li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}

.emergency-tip li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}