/* ===== 韦依美途导游网 - 全局样式 ===== */
/* GEO 规范已适配 */

:root {
  --brand-green: #4a7c59;
  --brand-dark: #2d5016;
  --brand-light: #7aa87e;
  --brand-pale: #dce8db;
  --ocean-blue: #3a7b9e;
  --sand-beige: #f5efe6;
  --rice-paper: #faf6f0;
  --text-main: #2d2d2d;
  --text-light: #6b6b6b;
  --gold: #b8914d;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans SC', sans-serif;
  color: var(--text-main);
  background: var(--rice-paper);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
}

a { color: var(--brand-green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brand-dark); }

img { max-width: 100%; height: auto; display: block; }

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

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(74,124,89,0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brand-green);
  font-weight: 700;
}

.navbar .logo img { height: 40px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-green);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover,
.nav-links a.active { color: var(--brand-green); }

.nav-cta {
  background: var(--brand-green) !important;
  color: white !important;
  padding: 8px 20px !important;
  border-radius: 25px;
  font-weight: 500;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--brand-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-main);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero / Banner ===== */
.hero {
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 85vh;
  min-height: 500px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}

.hero-slide .slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,80,22,0.5) 0%, rgba(58,123,158,0.3) 100%);
}

.hero-slide .slide-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.hero-slide .slide-content h1 {
  font-size: 3.2rem;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-slide .slide-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--brand-green);
  color: white;
}

.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(74,124,89,0.3); }

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover { background: white; color: var(--brand-green); }

.btn-gold {
  background: var(--gold);
  color: white;
}

.btn-gold:hover { background: #a67d3d; transform: translateY(-2px); }

.btn-small {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.slider-dot.active { background: white; border-color: white; }

/* ===== Section Common ===== */
.section {
  padding: 80px 0;
}

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

.section-title h2 {
  font-size: 2.2rem;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-subtitle {
  display: inline-block;
  background: var(--brand-pale);
  color: var(--brand-dark);
  padding: 4px 14px;
  border-radius: 15px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.section.white-bg { background: white; }
.section.green-bg { background: var(--brand-pale); }
.section.gold-bg { background: linear-gradient(135deg, var(--brand-dark), var(--brand-green)); color: white; }

/* ===== Grid ===== */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ===== Cards ===== */
.card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

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

.card-body { padding: 24px; }

/* ===== Advantage Cards ===== */
.advantage-card {
  text-align: center;
  padding: 36px 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.advantage-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--brand-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--brand-green);
}

.advantage-card h3 { font-size: 1.15rem; color: var(--brand-dark); margin-bottom: 8px; }
.advantage-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

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

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

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

.guide-card .guide-header {
  padding: 28px 20px 16px;
  text-align: center;
  background: linear-gradient(180deg, var(--brand-pale) 0%, white 100%);
}

.guide-card .guide-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin: 0 auto 12px;
  background: var(--brand-pale);
}

.guide-card .guide-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.guide-card .guide-title {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.guide-card .guide-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.guide-card .guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding: 0 20px 16px;
}

.guide-card .guide-tag {
  background: var(--brand-pale);
  color: var(--brand-dark);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
}

.guide-card .guide-meta {
  padding: 16px 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.guide-card .guide-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-green);
}

.guide-card .guide-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}

/* ===== Tour Card ===== */
.tour-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

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

.tour-card .tour-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.tour-card .tour-days {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand-green);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.tour-card .tour-body { padding: 20px; }

.tour-card .tour-name {
  font-size: 1.15rem;
  color: var(--brand-dark);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.tour-card .tour-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.tour-card .tour-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tour-card .tour-price small { font-size: 0.8rem; font-weight: 400; color: var(--text-light); }

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

/* ===== Destination Card ===== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dest-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  height: 300px;
}

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

.dest-card .dest-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-bg { transform: scale(1.05); }

.dest-card .dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(45,80,22,0.8) 0%, rgba(45,80,22,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: white;
}

.dest-card .dest-name {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 4px;
}

.dest-card .dest-subtitle {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ===== Guarantee Section ===== */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.guarantee-item {
  text-align: center;
  padding: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
}

.guarantee-item .number {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 8px;
}

.guarantee-item h4 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-family: 'Noto Sans SC', sans-serif;
}

.guarantee-item p { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

/* ===== Review Card ===== */
.review-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  transition: var(--transition);
}

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

.review-card .review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-card .review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--brand-pale);
}

.review-card .review-name { font-weight: 600; font-size: 0.95rem; }
.review-card .review-meta { font-size: 0.8rem; color: var(--text-light); }
.review-card .review-stars { color: var(--gold); margin-bottom: 10px; }
.review-card .review-text { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }
.review-card .review-tour { font-size: 0.8rem; color: var(--brand-green); margin-top: 12px; }

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--brand-dark);
  color: white;
  padding: 40px 0;
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
}

.stat-item .stat-label { font-size: 0.9rem; opacity: 0.8; margin-top: 4px; }

/* ===== FAQ ===== */
.faq-search {
  max-width: 500px;
  margin: 0 auto 30px;
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 0.95rem;
  background: white;
  transition: var(--transition);
  font-family: inherit;
}

.faq-search input:focus { outline: none; border-color: var(--brand-green); box-shadow: 0 0 0 3px rgba(74,124,89,0.1); }
.faq-search .fa-search { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--text-light); }

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.faq-cat-btn {
  padding: 8px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  background: white;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-light);
  transition: var(--transition);
  font-family: inherit;
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--brand-green);
  color: white;
  border-color: var(--brand-green);
}

.faq-item {
  background: white;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  transition: var(--transition);
}

.faq-question:hover { background: #fafafa; }
.faq-question .fa { transition: var(--transition); color: var(--brand-green); }
.faq-item.active .fa-chevron-down { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 18px;
}

/* ===== Destination Hero ===== */
.dest-hero {
  position: relative;
  margin-top: 70px;
  height: 65vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.dest-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  transition: filter 0.5s ease;
}

.dest-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,80,22,0.6) 0%, rgba(58,123,158,0.3) 100%);
}

.dest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(45,80,22,0.3) 0%, transparent 50%);
}

.dest-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.dest-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.dest-hero-content p {
  font-size: 1.25rem;
  opacity: 0.9;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

/* ===== Text Center ===== */
.text-center { text-align: center; }

/* ===== Breadcrumb ===== */
.breadcrumb {
  background: var(--brand-pale);
  padding: 100px 0 20px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb a { color: var(--brand-green); }
.breadcrumb span { color: var(--text-light); }

/* ===== Page Hero (inner) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
  color: white;
  padding: 120px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Filter Bar ===== */
.filter-bar {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  margin-bottom: 32px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-group label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

.filter-group select {
  padding: 8px 14px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  background: white;
  font-family: inherit;
  cursor: pointer;
  min-width: 130px;
}

.filter-group select:focus { outline: none; border-color: var(--brand-green); }

/* ===== Contact Form ===== */
.contact-form {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
  font-family: inherit;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.1);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== Contact Info Cards ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

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

.contact-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--brand-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand-green);
}

.contact-card h4 { font-size: 1rem; color: var(--brand-dark); margin-bottom: 8px; }
.contact-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ===== Timeline ===== */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--brand-pale);
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
  padding-left: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-green);
  border: 3px solid var(--brand-pale);
}

.timeline-item .day {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-item h4 { font-size: 1rem; color: var(--brand-dark); margin-bottom: 4px; }
.timeline-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ===== Detail Page ===== */
.detail-hero {
  padding: 120px 0 40px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
  color: white;
}

.detail-content { padding: 40px 0 80px; }

.detail-sidebar {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  position: sticky;
  top: 90px;
}

/* ===== Guide Detail ===== */
.guide-detail-header {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.guide-detail-header .avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid white;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.guide-detail-header .info h1 { font-size: 2rem; color: var(--brand-dark); margin-bottom: 6px; }
.guide-detail-header .info .title { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }

/* ===== About Page ===== */
.timeline-years {
  position: relative;
  padding-left: 40px;
}

.timeline-years::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--brand-pale);
}

.year-item {
  position: relative;
  margin-bottom: 28px;
  padding-left: 24px;
}

.year-item::before {
  content: '';
  position: absolute;
  left: -23px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-green);
}

.year-item .year { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.year-item p { color: var(--text-light); font-size: 0.9rem; margin-top: 4px; }

/* ===== Footer ===== */
.footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 12px;
}

.footer-brand p { font-size: 0.85rem; line-height: 1.7; }

.footer h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: 'Noto Sans SC', sans-serif;
}

.footer ul { list-style: none; }

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

.footer ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.footer ul a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact .fa { color: var(--gold); width: 16px; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ===== Submit Page ===== */
.submit-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
}

.submit-page .check-icon {
  width: 80px;
  height: 80px;
  background: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: white;
}

.submit-page h1 { font-size: 2rem; color: var(--brand-dark); margin-bottom: 12px; }
.submit-page p { color: var(--text-light); max-width: 500px; margin: 0 auto 24px; }

/* ===== Destination Detail ===== */
.dest-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  color: white;
}

.dest-hero .dest-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.dest-hero .dest-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(45,80,22,0.6) 0%, transparent 50%);
}

.dest-hero .dest-info {
  position: relative;
  z-index: 2;
  padding: 40px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.dest-hero h1 { font-size: 2.8rem; margin-bottom: 8px; }
.dest-hero .subtitle { font-size: 1.1rem; opacity: 0.85; }

/* ===== Highlight List ===== */
.highlight-list {
  list-style: none;
}

.highlight-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.highlight-list li:last-child { border-bottom: none; }

.highlight-list .fa { color: var(--brand-green); margin-top: 3px; flex-shrink: 0; }

/* ===== Team Section ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 4px solid var(--brand-pale);
}

.team-member h4 { font-size: 1rem; color: var(--brand-dark); margin-bottom: 4px; }
.team-member .role { font-size: 0.8rem; color: var(--gold); margin-bottom: 6px; }
.team-member .desc { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(74,124,89,0.1);
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero-slider { height: 60vh; }

  .hero-slide .slide-content h1 { font-size: 2rem; }
  .hero-slide .slide-content p { font-size: 0.95rem; }

  .section-title h2 { font-size: 1.7rem; }
  .section { padding: 50px 0; }

  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  .guide-detail-header { flex-direction: column; align-items: center; text-align: center; }
  .guide-detail-header .avatar { width: 140px; height: 140px; }

  .filter-row { flex-direction: column; align-items: stretch; }
  .filter-group select { width: 100%; min-width: unset; }

  .form-row { grid-template-columns: 1fr; }

  .page-hero h1 { font-size: 1.8rem; }
  .page-hero { padding: 120px 0 40px; }

  .dest-hero h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-slider { height: 50vh; }
  .hero-slide .slide-content h1 { font-size: 1.6rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid .stat-number { font-size: 1.8rem; }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate { animation: fadeInUp 0.5s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }
.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 32px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 16px; }
