/*!
 * 三亚·邓玉导游个人品牌博客
 * 阳光海岸轻暖设计风格
 * 颜色：晨雾粉 · 柳浪绿 · 龙井金 · 米宣纸 · 暖白
 */

/* ========== CSS Reset & Variables ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --mist-rose: #c49b95;
  --mist-green: #7a9a7e;
  --tea-gold: #b8945a;
  --rice-paper: #fdfaf5;
  --warm-white: #fefefb;
  --text-warm: #4a3f3a;
  --text-soft: #8a7f7a;
  --cream: #f5f0e8;
  --warm-light: #faf3ed;
  --deep-brown: #3d3228;
  --deep-brown-rgb: 61, 50, 40;
  --gold-light: #d4a843;
  --green-light: #a8c4ab;
  --rose-dark: #a87d78;

  --font-heading: 'Noto Serif SC', serif;
  --font-body: 'Noto Sans SC', sans-serif;

  --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.12);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --gap-xs: 6px;
  --gap-sm: 12px;
  --gap-md: 20px;
  --gap-lg: 30px;
  --gap-xl: 40px;
  --gap-2xl: 60px;
  --gap-3xl: 80px;

  --max-width: 1200px;
  --nav-height: 70px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-warm); background: var(--rice-paper); line-height: 1.7; -webkit-font-smoothing: antialiased; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--mist-rose); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--tea-gold); }
ul, ol { list-style: none; }

/* ========== Typography ========== */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.3; color: var(--text-warm); }
h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gap-md); }

/* ========== Section Utilities ========== */
.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--gap-sm);
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--mist-rose), var(--tea-gold));
  margin: var(--gap-sm) auto 0;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: var(--gap-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section { padding: var(--gap-3xl) 0; }
.section-pale { background: var(--warm-light); }
.section-alt { background: var(--cream); }

/* ========== Navigation ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: var(--warm-white);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 var(--gap-md);
}
.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-warm);
  font-weight: 700;
}
.navbar-brand span { color: var(--tea-gold); }
.nav-links { display: flex; gap: var(--gap-xs); align-items: center; }
.nav-links a {
  padding: 8px 16px;
  color: var(--text-warm);
  font-size: 0.9rem;
  border-radius: 20px;
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(196, 155, 149, 0.12);
  color: var(--mist-rose);
}
.navbar.scrolled .nav-links a { color: var(--text-warm); }
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-warm); border-radius: 2px; transition: all var(--transition); }

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: var(--gap-md);
    gap: var(--gap-xs);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    opacity: 0;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { width: 100%; text-align: center; padding: 12px; }
}

/* ========== Hero ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
  background: linear-gradient(135deg, var(--mist-rose) 0%, var(--rice-paper) 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(196,155,149,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(184,148,90,0.06) 0%, transparent 50%);
  animation: floatBg 20s ease-in-out infinite;
}
@keyframes floatBg {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2%, -2%); }
}
.hero-content { position: relative; z-index: 1; max-width: 700px; padding: 0 var(--gap-md); }
.hero-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--gap-md);
  border: 4px solid var(--warm-white);
  box-shadow: var(--shadow-md);
}
.hero h1 { font-size: 2.6rem; margin-bottom: var(--gap-sm); }
.hero .slogan { font-size: 1.1rem; color: var(--text-soft); margin-bottom: var(--gap-lg); line-height: 1.6; }
.hero-actions { display: flex; gap: var(--gap-sm); justify-content: center; flex-wrap: wrap; }

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.4;
}
.btn-primary {
  background: var(--tea-gold);
  color: #fff;
  border-color: var(--tea-gold);
}
.btn-primary:hover {
  background: #a67d4a;
  border-color: #a67d4a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,148,90,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--tea-gold);
  border-color: var(--tea-gold);
}
.btn-outline:hover {
  background: var(--tea-gold);
  color: #fff;
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-gold {
  background: linear-gradient(135deg, var(--tea-gold), var(--gold-light));
  color: #fff;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #a67d4a, var(--tea-gold));
  color: #fff;
  transform: translateY(-2px);
}

/* ========== Tags / Chips ========== */
.tag {
  display: inline-block;
  padding: 4px 16px;
  background: var(--mist-rose);
  color: #fff;
  font-size: 0.75rem;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.tag-gold {
  background: var(--tea-gold);
}
.tag-green {
  background: var(--mist-green);
  color: #fff;
}
.tag-sm { padding: 2px 10px; font-size: 0.7rem; }
.chip {
  display: inline-block;
  padding: 8px 20px;
  background: var(--cream);
  color: var(--text-soft);
  font-size: 0.85rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font-body);
}
.chip:hover, .chip.active {
  background: var(--mist-rose);
  color: #fff;
}
.chip.active { background: var(--tea-gold); }

/* ========== Cards ========== */
.card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: var(--gap-md); }
.card h3 { margin-bottom: var(--gap-xs); font-size: 1.15rem; }
.card p { color: var(--text-soft); font-size: 0.9rem; line-height: 1.6; }

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--gap-sm);
  border-top: 1px solid var(--cream);
}

/* Stats Card */
.stat-card {
  text-align: center;
  padding: var(--gap-xl) var(--gap-md);
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--mist-rose), var(--tea-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { color: var(--text-soft); font-size: 0.9rem; margin-top: var(--gap-xs); }

/* ========== Grid Layouts ========== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--gap-lg); }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: var(--gap-lg); }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: var(--gap-lg); }

/* ========== Breadcrumb ========== */
.breadcrumb {
  padding: 90px var(--gap-md) var(--gap-sm);
  font-size: 0.85rem;
  color: var(--text-soft);
  max-width: var(--max-width);
  margin: 0 auto;
}
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--mist-rose); }
.breadcrumb span { color: var(--text-soft); }
.breadcrumb .current { color: var(--text-warm); font-weight: 500; }

/* ========== Footer ========== */
.footer {
  background: var(--deep-brown);
  color: rgba(255,255,255,0.7);
  padding: var(--gap-2xl) 0 var(--gap-lg);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gap-md);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--gap-xl);
}
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: var(--gap-sm); }
.footer p, .footer a { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 2; }
.footer a:hover { color: var(--tea-gold); }
.footer-brand { font-family: var(--font-heading); font-size: 1.3rem; color: #fff !important; margin-bottom: var(--gap-sm); }
.footer-brand span { color: var(--tea-gold); }
.footer-bottom {
  text-align: center;
  padding-top: var(--gap-lg);
  margin-top: var(--gap-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ========== Tags Container ========== */
.tags-container {
  display: flex;
  gap: var(--gap-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin: var(--gap-lg) 0;
}

/* ========== CTA Section ========== */
.cta-section {
  text-align: center;
  padding: var(--gap-3xl) var(--gap-md);
  background: linear-gradient(135deg, var(--warm-light), var(--cream));
}
.cta-section h2 { margin-bottom: var(--gap-sm); }
.cta-section p { color: var(--text-soft); margin-bottom: var(--gap-lg); max-width: 500px; margin-left: auto; margin-right: auto; }

/* ========== FAQ ========== */
.faq-item {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--gap-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--gap-md);
  cursor: pointer;
  font-weight: 500;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--warm-light); }
.faq-question i { transition: transform var(--transition); color: var(--text-soft); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  padding: 0 var(--gap-md) var(--gap-md);
  color: var(--text-soft);
  font-size: 0.9rem;
  display: none;
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ========== Reviews ========== */
.review-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg);
  box-shadow: var(--shadow-sm);
}
.review-header {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-sm);
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
}
.review-name { font-weight: 600; font-size: 0.95rem; }
.review-date { color: var(--text-soft); font-size: 0.8rem; }
.review-stars { color: var(--tea-gold); font-size: 0.85rem; margin-bottom: var(--gap-xs); }
.review-text { color: var(--text-warm); font-size: 0.9rem; line-height: 1.7; }

.review-summary {
  display: flex;
  gap: var(--gap-xl);
  align-items: center;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg) var(--gap-xl);
  margin-bottom: var(--gap-xl);
  box-shadow: var(--shadow-sm);
}
.big-score { text-align: center; min-width: 140px; }
.big-score .score { font-size: 3.5rem; font-weight: 700; font-family: var(--font-heading); background: linear-gradient(135deg, var(--tea-gold), var(--mist-rose)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.big-score .total { font-size: 0.85rem; color: var(--text-soft); margin-top: var(--gap-xs); }

.rating-dist { flex: 1; }
.rating-bar { display: flex; align-items: center; gap: var(--gap-sm); margin-bottom: 6px; }
.rating-bar .label { font-size: 0.8rem; color: var(--text-soft); width: 30px; }
.rating-bar .track { flex: 1; height: 8px; background: var(--cream); border-radius: 4px; overflow: hidden; }
.rating-bar .fill { height: 100%; background: linear-gradient(90deg, var(--tea-gold), var(--gold-light)); border-radius: 4px; }

/* ========== Forms ========== */
.form-group { margin-bottom: var(--gap-md); }
.form-group label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 6px; color: var(--text-warm); }
.form-group label .required { color: #e74c3c; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--warm-white);
  transition: all var(--transition);
  color: var(--text-warm);
}
.form-control:focus { outline: none; border-color: var(--tea-gold); box-shadow: 0 0 0 3px rgba(184,148,90,0.12); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }

/* ========== Gallery ========== */
.gallery-grid {
  columns: 3;
  column-gap: var(--gap-md);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--gap-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--gap-sm) var(--gap-md);
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ========== Lightbox ========== */
.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: var(--gap-xl);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: transform var(--transition);
}
.lightbox-close:hover { transform: rotate(90deg); }

/* ========== Filter Chips ========== */
.filter-chips {
  display: flex;
  gap: var(--gap-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--gap-xl);
}

/* ========== Contact Cards ========== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--gap-md);
  margin-bottom: var(--gap-xl);
}
.contact-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card i { font-size: 2rem; color: var(--tea-gold); margin-bottom: var(--gap-sm); }
.contact-card h4 { font-size: 1rem; margin-bottom: var(--gap-xs); }
.contact-card p { color: var(--text-soft); font-size: 0.9rem; }
.contact-card a { color: var(--text-warm); }
.contact-card a:hover { color: var(--tea-gold); }

/* ========== Blog Detail ========== */
.blog-detail-hero {
  height: 400px;
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-height);
}
.blog-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail-hero .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--gap-2xl) var(--gap-md) var(--gap-lg);
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
}
.blog-detail-hero .overlay h1 { color: #fff; font-size: 2rem; margin-bottom: var(--gap-xs); }
.blog-detail-hero .overlay .meta { color: rgba(255,255,255,0.8); font-size: 0.85rem; }

.blog-article {
  max-width: 800px;
  margin: var(--gap-2xl) auto;
  padding: 0 var(--gap-md);
}
.blog-article h2 { font-size: 1.6rem; margin: var(--gap-xl) 0 var(--gap-sm); }
.blog-article h3 { font-size: 1.3rem; margin: var(--gap-lg) 0 var(--gap-sm); }
.blog-article p { margin-bottom: var(--gap-md); line-height: 1.9; font-size: 1rem; }
.blog-article ul, .blog-article ol { margin-bottom: var(--gap-md); padding-left: var(--gap-lg); }
.blog-article ul li { list-style: disc; margin-bottom: 6px; }
.blog-article ol li { list-style: decimal; margin-bottom: 6px; }
.blog-article blockquote {
  border-left: 4px solid var(--tea-gold);
  background: var(--warm-light);
  padding: var(--gap-md) var(--gap-lg);
  margin: var(--gap-lg) 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-soft);
}
.blog-article pre {
  background: var(--deep-brown);
  color: #e0d6cc;
  padding: var(--gap-md);
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: var(--gap-lg) 0;
  font-size: 0.9rem;
}
.blog-article code {
  background: var(--cream);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.85rem;
}
.blog-article pre code { background: transparent; padding: 0; }
.blog-article table { width: 100%; border-collapse: collapse; margin: var(--gap-lg) 0; }
.blog-article th, .blog-article td { border: 1px solid var(--cream); padding: var(--gap-sm); text-align: left; }
.blog-article th { background: var(--warm-light); font-weight: 600; }
.blog-article hr { border: none; height: 1px; background: var(--cream); margin: var(--gap-xl) 0; }

/* Author Card */
.author-card {
  display: flex;
  gap: var(--gap-md);
  align-items: center;
  background: var(--warm-light);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg);
  margin: var(--gap-xl) 0;
}
.author-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--warm-white);
  box-shadow: var(--shadow-sm);
}
.author-card h4 { margin-bottom: 4px; font-size: 1rem; }
.author-card .bio { color: var(--text-soft); font-size: 0.85rem; line-height: 1.6; }

/* ========== About Page ========== */
.about-hero {
  text-align: center;
  padding: calc(var(--nav-height) + var(--gap-2xl)) var(--gap-md) var(--gap-xl);
  background: linear-gradient(135deg, var(--warm-light), var(--rice-paper));
}
.about-hero .avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--gap-md);
  border: 4px solid var(--warm-white);
  box-shadow: var(--shadow-md);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--gap-md);
}
.credential-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: var(--gap-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--mist-rose);
}
.credential-card i { font-size: 1.5rem; color: var(--tea-gold); margin-bottom: var(--gap-xs); }
.credential-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.credential-card p { color: var(--text-soft); font-size: 0.8rem; }

/* ========== Success Page ========== */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--gap-2xl) var(--gap-md);
}
.success-icon {
  width: 80px;
  height: 80px;
  background: var(--mist-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: var(--gap-lg);
  animation: scaleIn 0.5s ease;
}
@keyframes scaleIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.success-page h1 { margin-bottom: var(--gap-sm); font-size: 2rem; }
.success-page .subtitle { color: var(--text-soft); margin-bottom: var(--gap-lg); }

/* ========== Animations ========== */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Back to Top ========== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--tea-gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  z-index: 999;
}
.back-to-top.show { display: flex; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ========== Misc ========== */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--gap-lg); }
.mb-lg { margin-bottom: var(--gap-lg); }
.price { font-family: var(--font-heading); color: var(--tea-gold); font-size: 1.3rem; font-weight: 700; }
.price small { font-size: 0.75rem; color: var(--text-soft); font-weight: 400; }
.highlight-list { padding: 0; }
.highlight-list li { display: flex; gap: var(--gap-xs); align-items: flex-start; margin-bottom: 6px; font-size: 0.85rem; color: var(--text-soft); }
.highlight-list li i { color: var(--mist-green); margin-top: 3px; }

.route-meta { display: flex; gap: var(--gap-sm); flex-wrap: wrap; margin-bottom: var(--gap-sm); }
.route-meta span { font-size: 0.8rem; color: var(--text-soft); }
.route-meta i { margin-right: 4px; color: var(--tea-gold); }

/* ========== Responsive ========== */
@media (max-width: 1366px) {
  .hero h1 { font-size: 2.2rem; }
  .stat-number { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { min-height: 90vh; }
  .hero h1 { font-size: 1.8rem; }
  .hero-avatar { width: 130px; height: 130px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .review-summary { flex-direction: column; text-align: center; }
  .blog-detail-hero { height: 280px; }
  .blog-article { padding: 0 var(--gap-sm); }
  .gallery-grid { columns: 2; }
}

@media (max-width: 375px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .hero h1 { font-size: 1.5rem; }
  .hero .slogan { font-size: 0.95rem; }
  .contact-cards { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
}
