/* ============================================================
   旅悠旅行 - 内页通用样式
   ============================================================ */

/* 页面头部 Banner */
.page-banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,76,59,0.4) 0%, rgba(44,76,59,0.6) 100%);
  z-index: 1;
}

.page-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-banner-title {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.page-banner-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* 面包屑 */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid rgba(44,76,59,0.08);
  padding: 1rem 0;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--secondary);
}

.breadcrumb a {
  color: var(--secondary);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  color: rgba(44,76,59,0.3);
}

.breadcrumb-current {
  color: var(--primary);
  font-weight: 400;
}

/* ============================================================
   法律、信任、全球页
   ============================================================ */
.compact-banner {
  height: 320px;
}

.legal-section {
  padding: 72px 0 96px;
  background: var(--bg);
}

.legal-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 12px 36px rgba(44,76,59,0.08);
}

.legal-card h1,
.legal-card h2 {
  font-family: var(--serif);
  color: var(--primary);
  line-height: 1.4;
}

.legal-card h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.legal-card h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.legal-card p {
  color: var(--text);
  line-height: 1.95;
  margin-bottom: 0.85rem;
}

.legal-card a {
  color: var(--accent);
}

.legal-updated {
  color: var(--secondary) !important;
  font-size: 0.9rem;
}

.legal-list {
  list-style: disc;
  padding-left: 1.2rem;
}

.legal-list li {
  margin-bottom: 0.65rem;
  line-height: 1.8;
}

.trust-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  overflow: hidden;
  border-radius: 10px;
}

.trust-table th,
.trust-table td {
  border: 1px solid rgba(44,76,59,0.1);
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
}

.trust-table th {
  width: 160px;
  color: var(--primary);
  background: rgba(44,76,59,0.04);
}

.legal-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.not-found-section {
  padding-top: 140px;
  min-height: 70vh;
}

.not-found-card {
  text-align: center;
}

.english-hero {
  min-height: 520px;
}

.english-buttons {
  justify-content: center;
  margin-top: 2rem;
}

.english-section {
  padding-top: 80px;
}

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

.global-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 28px rgba(44,76,59,0.08);
}

.global-card h2 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.global-card p {
  color: var(--secondary);
  line-height: 1.8;
}

/* ============================================================
   线路列表页
   ============================================================ */
.dest-list-section {
  padding: 60px 0 100px;
  background: var(--bg);
}

/* 筛选栏 */
.filter-bar {
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-categories {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 500;
}

.filter-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(44,76,59,0.15);
  background: var(--white);
  color: var(--text);
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.filter-sort {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.filter-sort select {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(44,76,59,0.15);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
}

/* 搜索框 */
.search-box {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.search-box input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(44,76,59,0.15);
  border-radius: 28px;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color var(--transition);
}

.search-box input:focus {
  outline: none;
  border-color: var(--accent);
}

.search-box button {
  padding: 0.75rem 2rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 28px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition);
}

.search-box button:hover {
  background: #C18E3A;
}

/* 结果统计 */
.result-count {
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.result-count span {
  color: var(--accent);
  font-weight: 600;
}

/* 线路列表网格 */
.dest-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* 线路卡片（列表页大卡片） */
.dest-list-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.dest-list-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(44,76,59,0.12);
}

.dest-list-card-img {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dest-list-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(44,76,59,0.5) 100%);
}

.dest-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 4px 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 12px;
  letter-spacing: 0.05em;
}

.dest-hot-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 4px 12px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 12px;
}

.dest-list-card-body {
  padding: 1.5rem;
}

.dest-list-card-body h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.dest-list-card-desc {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.dest-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.dest-highlight {
  padding: 2px 10px;
  background: rgba(123,167,188,0.1);
  color: var(--secondary);
  font-size: 0.75rem;
  border-radius: 10px;
}

.dest-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(44,76,59,0.08);
}

.dest-card-info {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--secondary);
}

.dest-card-price {
  text-align: right;
}

.dest-card-price .price-label {
  font-size: 0.75rem;
  color: var(--secondary);
}

.dest-card-price .price-value {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.dest-card-price .price-unit {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 300;
}

/* 空状态 */
.empty-state {
  text-align: center;
  padding: 80px 0;
  color: var(--secondary);
}

.empty-state p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* ============================================================
   线路详情页
   ============================================================ */
.dest-detail-section {
  padding: 60px 0 100px;
  background: var(--bg);
}

.dest-detail {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* 左侧主内容 */
.dest-main {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.dest-detail-img {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.dest-detail-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(44,76,59,0.4) 100%);
}

.dest-detail-content {
  padding: 2.5rem;
}

.dest-detail-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.dest-detail-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(44,76,59,0.08);
}

.dest-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--secondary);
}

.dest-meta-item strong {
  color: var(--primary);
  font-weight: 500;
}

.dest-section {
  margin-bottom: 2.5rem;
}

.dest-section-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dest-section-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--accent);
  border-radius: 2px;
}

.dest-section p {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text);
  font-weight: 300;
}

/* 行程安排 */
.itinerary-list {
  position: relative;
  padding-left: 2rem;
}

.itinerary-list::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(212,162,76,0.2));
  border-radius: 1px;
}

.itinerary-item {
  position: relative;
  margin-bottom: 1.5rem;
}

.itinerary-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 3px solid var(--accent);
  border-radius: 50%;
  z-index: 1;
}

.itinerary-day {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.itinerary-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.itinerary-content {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.8;
}

/* 费用说明 */
.fee-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.fee-item h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.fee-item ul {
  list-style: none;
}

.fee-item ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.fee-item ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.fee-included ul li::before {
  background: #5A8A6A;
}

.fee-excluded ul li::before {
  background: #cc6666;
}

/* 右侧侧边栏 */
.dest-sidebar {
  position: sticky;
  top: 100px;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(44,76,59,0.08);
}

.booking-price {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(44,76,59,0.08);
}

.booking-price .price-label {
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.booking-price .price-value {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.booking-price .price-unit {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 300;
}

.booking-info {
  margin-bottom: 1.5rem;
}

.booking-info-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(44,76,59,0.05);
  font-size: 0.9rem;
}

.booking-info-item:last-child {
  border-bottom: none;
}

.booking-info-label {
  color: var(--secondary);
}

.booking-info-value {
  color: var(--primary);
  font-weight: 500;
}

.btn-book {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent), #C18E3A);
  color: var(--white);
  border: none;
  border-radius: 28px;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 1rem;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,162,76,0.35);
}

.btn-consult-outline {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 28px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-consult-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.booking-tip {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(123,167,188,0.1);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--secondary);
  line-height: 1.6;
}

/* ============================================================
   游记列表页
   ============================================================ */
.journal-list-section {
  padding: 60px 0 100px;
  background: var(--bg);
}

.journal-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.journal-list-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.journal-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,76,59,0.1);
}

.journal-list-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.journal-list-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.journal-list-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.journal-list-summary {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
  flex: 1;
}

.journal-list-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(44,76,59,0.08);
  font-size: 0.85rem;
  color: var(--secondary);
}

.journal-list-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.journal-list-views {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(44,76,59,0.15);
  background: var(--white);
  color: var(--text);
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}

.pagination-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pagination-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ============================================================
   游记详情页
   ============================================================ */
.journal-detail-section {
  padding: 60px 0 100px;
  background: var(--bg);
}

.journal-detail {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.journal-detail-img {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.journal-detail-content {
  padding: 3rem;
}

.journal-detail-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.journal-detail-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(44,76,59,0.08);
  font-size: 0.9rem;
  color: var(--secondary);
}

.journal-detail-body {
  font-size: 1rem;
  line-height: 2.2;
  color: var(--text);
  font-weight: 300;
}

.journal-detail-body p {
  margin-bottom: 1.5rem;
}

.journal-detail-body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}

/* 相关推荐 */
.related-journals {
  max-width: 1200px;
  margin: 3rem auto 0;
}

.related-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ============================================================
   关于我们页
   ============================================================ */
.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-intro-text h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.about-intro-text p {
  font-size: 1rem;
  line-height: 2;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 1rem;
}

.about-intro-img {
  height: 400px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 20px 60px rgba(44,76,59,0.15);
}

/* 品牌数据 */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
  text-align: center;
}

.about-stat-item {
  padding: 2rem;
  background: var(--bg);
  border-radius: var(--radius);
}

.about-stat-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 0.95rem;
  color: var(--secondary);
}

/* 品牌理念 */
.about-values {
  margin-bottom: 6rem;
}

.about-values h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.about-values-subtitle {
  text-align: center;
  color: var(--secondary);
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(44,76,59,0.08);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.value-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.8;
}

/* 团队介绍 */
.about-team {
  margin-bottom: 6rem;
}

.about-team h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.about-team-subtitle {
  text-align: center;
  color: var(--secondary);
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
}

.team-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.team-desc {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================================
   联系我们页
   ============================================================ */
.contact-section {
  padding: 80px 0;
  background: var(--bg);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
}

.contact-info h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(44,76,59,0.08);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.contact-item-content h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.contact-item-content p {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 300;
  line-height: 1.6;
}

.contact-form-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
}

.contact-form-card h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  color: var(--secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(44,76,59,0.15);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent), #C18E3A);
  color: var(--white);
  border: none;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.contact-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,162,76,0.35);
}

/* ============================================================
   管理后台
   ============================================================ */
.admin-section {
  padding: 40px 0 80px;
  background: var(--bg);
  min-height: calc(100vh - 80px - 300px);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.admin-header h1 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.admin-logout {
  padding: 8px 20px;
  background: transparent;
  color: var(--secondary);
  border: 1px solid rgba(44,76,59,0.2);
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}

.admin-logout:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: var(--white);
  padding: 0.5rem;
  border-radius: 12px;
}

.admin-tab {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.admin-tab:hover {
  color: var(--primary);
}

.admin-tab.active {
  background: var(--primary);
  color: var(--white);
}

.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
}

/* 登录表单 */
.admin-login {
  max-width: 400px;
  margin: 80px auto;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(44,76,59,0.1);
}

.admin-login h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
}

.admin-login .form-group {
  margin-bottom: 1.25rem;
}

.admin-login label {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.admin-login input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(44,76,59,0.15);
  border-radius: 8px;
  font-size: 0.95rem;
  background: var(--bg);
  transition: border-color var(--transition);
}

.admin-login input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}

.admin-login .btn-login {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent), #C18E3A);
  color: var(--white);
  border: none;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 1rem;
}

.admin-login .btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,162,76,0.35);
}

.admin-login-tip {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(123,167,188,0.1);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--secondary);
  text-align: center;
}

/* 数据表格 */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(44,76,59,0.08);
}

.data-table th {
  font-weight: 500;
  color: var(--primary);
  background: var(--bg);
  font-size: 0.9rem;
}

.data-table td {
  font-size: 0.9rem;
  color: var(--text);
}

.data-table tr:hover td {
  background: rgba(44,76,59,0.02);
}

.status-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 400;
}

.status-pending {
  background: rgba(212,162,76,0.15);
  color: var(--accent);
}

.status-processed {
  background: rgba(90,138,106,0.15);
  color: #5A8A6A;
}

.status-done {
  background: rgba(123,167,188,0.15);
  color: var(--secondary);
}

.status-invalid {
  background: rgba(204,102,102,0.15);
  color: #cc6666;
}

.action-btn {
  padding: 4px 12px;
  border: 1px solid rgba(44,76,59,0.2);
  background: transparent;
  color: var(--secondary);
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  margin-right: 0.5rem;
  transition: all var(--transition);
}

.action-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.action-btn.delete:hover {
  border-color: #cc6666;
  color: #cc6666;
}

/* 统计卡片 */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.stat-card-label {
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.stat-card-value {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-card-value.accent {
  color: var(--accent);
}

/* ============================================================
   响应式 - 移动端
   ============================================================ */
@media (max-width: 768px) {
  .page-banner {
    height: 280px;
  }
  
  .page-banner-title {
    font-size: 2rem;
  }
  
  .page-banner-subtitle {
    font-size: 0.95rem;
  }
  
  .dest-list-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .dest-detail {
    grid-template-columns: 1fr;
  }
  
  .dest-sidebar {
    position: static;
  }
  
  .journal-list-grid {
    grid-template-columns: 1fr;
  }
  
  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .filter-bar {
    padding: 1rem;
  }
  
  .dest-detail-content {
    padding: 1.5rem;
  }
  
  .journal-detail-content {
    padding: 1.5rem;
  }
  
  .fee-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-stat-number {
    font-size: 2rem;
  }

  .compact-banner {
    height: 260px;
  }

  .legal-section {
    padding: 48px 0 72px;
  }

  .legal-card {
    padding: 1.5rem;
    border-radius: 12px;
  }

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

  .trust-table,
  .trust-table tbody,
  .trust-table tr,
  .trust-table th,
  .trust-table td {
    display: block;
    width: 100%;
  }

  .trust-table th {
    border-bottom: 0;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   返回顶部按钮
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(44,76,59,0.15);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  color: var(--primary);
  font-size: 1.25rem;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  color: var(--white);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}
