:root {
    --mist-rose: #c49b95;
    --mist-green: #7a9a7e;
    --tea-gold: #b8945a;
    --rice-paper: #fdfaf5;
    --warm-white: #fefefb;
    --text-warm: #4a3f3a;
    --text-soft: #8a7f7a;
    --font-heading: 'Noto Serif SC', serif;
    --font-body: 'Noto Sans SC', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--text-warm);
    background-color: var(--rice-paper);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.4;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--mist-rose);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--mist-rose);
    color: white;
}

.btn-primary:hover {
    background-color: #b38a85;
    color: white;
}

.btn-secondary {
    background-color: var(--mist-green);
    color: white;
}

.btn-secondary:hover {
    background-color: #6a8a6e;
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--mist-rose);
    color: var(--mist-rose);
}

.btn-outline:hover {
    background-color: var(--mist-rose);
    color: white;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(253, 250, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(74, 63, 58, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mist-rose);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-warm);
}

.nav-menu a:hover {
    color: var(--mist-rose);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-phone {
    color: var(--tea-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-warm);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--rice-paper) 0%, rgba(196, 155, 149, 0.1) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 540px;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(196, 155, 149, 0.15);
    color: var(--mist-rose);
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    color: var(--text-warm);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-soft);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mist-rose);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-soft);
}

.hero-image {
    position: relative;
    display: inline-block;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(74, 63, 58, 0.15);
}



.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--text-warm);
    margin-bottom: 0.75rem;
}

.section-title p {
    color: var(--text-soft);
    font-size: 1.1rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tag {
    padding: 0.5rem 1rem;
    background-color: rgba(196, 155, 149, 0.15);
    color: var(--mist-rose);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.why-section {
    background-color: var(--warm-white);
}

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

.why-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--rice-paper);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 63, 58, 0.1);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.5rem;
    color: var(--text-warm);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--text-soft);
    font-size: 0.95rem;
}

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

.route-card {
    background-color: var(--warm-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(74, 63, 58, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 63, 58, 0.15);
}

.route-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: rgba(196, 155, 149, 0.2);
}

.route-content {
    padding: 1.5rem;
}

.route-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(122, 154, 126, 0.15);
    color: var(--mist-green);
    border-radius: 2rem;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.route-content h3 {
    font-size: 1.25rem;
    color: var(--text-warm);
    margin-bottom: 0.5rem;
}

.route-content p {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.route-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.route-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--tea-gold);
    font-weight: 600;
}

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

.blog-card {
    background-color: var(--warm-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(74, 63, 58, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(74, 63, 58, 0.12);
}

.blog-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: rgba(196, 155, 149, 0.2);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(196, 155, 149, 0.15);
    color: var(--mist-rose);
    border-radius: 2rem;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.blog-content h3 {
    font-size: 1.1rem;
    color: var(--text-warm);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.blog-content p {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-soft);
}

.reviews-section {
    background-color: var(--warm-white);
}

.reviews-summary {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-score {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--tea-gold);
}

.reviews-count {
    color: var(--text-soft);
    font-size: 1rem;
}

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

.review-card {
    background-color: var(--rice-paper);
    padding: 1.5rem;
    border-radius: 8px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(196, 155, 149, 0.3);
    background-size: cover;
    background-position: center;
}

.review-info h4 {
    font-size: 1rem;
    color: var(--text-warm);
}

.review-stars {
    color: var(--tea-gold);
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, var(--mist-rose) 0%, #b38a85 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-section .btn {
    background-color: white;
    color: var(--mist-rose);
}

.cta-section .btn:hover {
    background-color: var(--rice-paper);
    color: var(--mist-rose);
}

.footer {
    background-color: var(--text-warm);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-wechat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wechat-qr {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-section h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a:hover {
    color: var(--mist-rose);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-soft);
}

.breadcrumb a:hover {
    color: var(--mist-rose);
}

.page-header {
    padding-top: 120px;
    padding-bottom: 3rem;
    text-align: center;
    background-color: var(--warm-white);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-warm);
    margin-bottom: 0.75rem;
}

.page-header p {
    color: var(--text-soft);
    font-size: 1.1rem;
}

.form-section {
    background-color: var(--warm-white);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-card {
    background-color: var(--rice-paper);
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-warm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(196, 155, 149, 0.3);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    background-color: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mist-rose);
}

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

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

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background-color: var(--rice-paper);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--mist-rose);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    color: var(--text-warm);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-soft);
}

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(74, 63, 58, 0.8));
    color: white;
}

.gallery-overlay h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.faq-item {
    background-color: var(--warm-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--mist-rose);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(74, 63, 58, 0.15);
}

.about-content h2 {
    font-size: 2rem;
    color: var(--text-warm);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-soft);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.skill-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(196, 155, 149, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--mist-rose);
}

.skill-info h4 {
    font-size: 1rem;
    color: var(--text-warm);
}

.skill-info p {
    font-size: 0.85rem;
    color: var(--text-soft);
    margin: 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(196, 155, 149, 0.15);
    color: var(--mist-rose);
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.article-header h1 {
    font-size: 2rem;
    color: var(--text-warm);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-meta {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-warm);
}

.article-body h2 {
    font-size: 1.5rem;
    color: var(--text-warm);
    margin: 2rem 0 1rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.author-card {
    background-color: var(--warm-white);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    gap: 1.5rem;
    margin: 3rem 0;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(196, 155, 149, 0.3);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--text-warm);
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin: 0;
}

.related-articles {
    margin-top: 3rem;
}

.related-articles h3 {
    font-size: 1.5rem;
    color: var(--text-warm);
    margin-bottom: 1.5rem;
}

.success-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
}

.success-content {
    max-width: 500px;
}

.success-icon {
    font-size: 5rem;
    color: var(--mist-green);
    margin-bottom: 2rem;
}

.success-content h1 {
    font-size: 2rem;
    color: var(--text-warm);
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-soft);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 1px solid rgba(196, 155, 149, 0.3);
    border-radius: 2rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-soft);
    transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
    background-color: var(--mist-rose);
    border-color: var(--mist-rose);
    color: white;
}

.route-detail-section {
    padding-top: 120px;
    padding-bottom: 3rem;
}

.route-detail-header {
    text-align: center;
    margin-bottom: 3rem;
}

.route-detail-header h1 {
    font-size: 2.5rem;
    color: var(--text-warm);
    margin-bottom: 1rem;
}

.route-detail-header .route-tag {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.route-detail-header p {
    color: var(--text-soft);
    font-size: 1.1rem;
}

.route-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.route-main h2 {
    font-size: 1.5rem;
    color: var(--text-warm);
    margin: 2rem 0 1rem;
}

.route-main h2:first-child {
    margin-top: 0;
}

.route-main p {
    color: var(--text-soft);
    margin-bottom: 1rem;
}

.route-main ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.route-main ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-soft);
}

.route-main ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--mist-rose);
}

.route-sidebar {
    position: sticky;
    top: 100px;
}

.route-booking-card {
    background-color: var(--warm-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.route-booking-card .route-price {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.route-booking-card .btn {
    width: 100%;
    margin-bottom: 1rem;
}

.route-booking-card .btn:last-child {
    margin-bottom: 0;
}

.route-specs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.route-specs .spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.route-specs .spec-item i {
    font-size: 1.2rem;
    color: var(--mist-rose);
}

.route-specs .spec-item span {
    font-size: 0.9rem;
    color: var(--text-soft);
}

.route-booking-card .route-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.route-booking-card .route-price .price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-bottom: 0.5rem;
}

.route-booking-card .route-price .price-amount {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--mist-rose);
}

.route-booking-card .route-price .price-unit {
    font-size: 1rem;
    color: var(--text-soft);
}

.itinerary-section {
    margin-bottom: 2rem;
}

.itinerary-section h3 {
    font-size: 1.2rem;
    color: var(--text-warm);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--mist-rose);
    display: inline-block;
}

.itinerary-section ul {
    list-style: none;
    padding-left: 0;
}

.itinerary-section ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-soft);
    border-bottom: 1px solid var(--warm-white);
}

.itinerary-section ul li:last-child {
    border-bottom: none;
}

.itinerary-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--mist-rose);
    border-radius: 50%;
}

.includes-list,
.excludes-list {
    list-style: none;
    padding-left: 0;
}

.includes-list li,
.excludes-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-soft);
}

.includes-list li i {
    position: absolute;
    left: 0;
    color: #27ae60;
}

.excludes-list li i {
    position: absolute;
    left: 0;
    color: #e74c3c;
}

.suitable-for {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--warm-white);
    border-radius: 8px;
}

.suitable-for h4 {
    font-size: 1rem;
    color: var(--text-warm);
    margin-bottom: 1rem;
}

.suitable-for .tags {
    margin-bottom: 0;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--rice-paper);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 1.5rem;
}

.mobile-menu ul li a {
    font-size: 1.1rem;
    color: var(--text-warm);
    display: block;
    padding: 0.5rem 0;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-warm);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.mobile-overlay.active {
    display: block;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-image::before {
        display: none;
    }

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

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .route-detail-content {
        grid-template-columns: 1fr;
    }

    .route-sidebar {
        position: static;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .why-grid,
    .routes-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-wechat {
        justify-content: center;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .article-header h1 {
        font-size: 1.5rem;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 100px 0 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    .section {
        padding: 3rem 0;
    }

    .filter-tabs {
        gap: 0.5rem;
    }

    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}
