/* === Shared Styles for 绿景村玩水攻略 === */

@font-face {
  font-family: 'SmoochSans';
  src: url('../_shared/fonts/SmoochSans-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg: #F8F5EE;
  --bg2: #F0EBE0;
  --bg3: #E8E0D0;
  --ink: #2C2825;
  --muted: #7A7268;
  --rule: #D4CCB8;
  --accent: #4A9BC4;
  --accent-dark: #2E7BA8;
  --accent2: #C8613E;
  --green: #5B8C5A;
  --brown: #8B6F47;
  --yellow: #E8B84B;
  --paper: #F8F5EE;
}

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

body {
  font-family: 'Noto Sans SC', sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 20% 80%, rgba(74,155,196,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,97,62,0.03) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.6 0 0 0 0 0.55 0 0 0 0 0.45 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  color: var(--ink);
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Ma Shan Zheng', 'Noto Sans SC', serif;
  font-weight: normal;
  line-height: 1.4;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* === Navigation === */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248,245,238,0.75);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(212,204,184,0.4);
  padding: 10px 0;
  transition: all 0.3s;
  box-shadow: 0 1px 20px rgba(44,40,37,0.04);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Ma Shan Zheng', serif; font-size: 1.5rem;
  color: var(--accent); display: flex; align-items: center; gap: 8px;
  text-decoration: none; transition: all 0.2s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo svg { width: 28px; height: 28px; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  font-family: 'ZCOOL KuaiLe', sans-serif; font-size: 0.95rem;
  color: var(--ink); text-decoration: none; padding: 7px 16px;
  border-radius: 20px; transition: all 0.25s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { background: var(--accent); color: #fff; box-shadow: 0 3px 12px rgba(74,155,196,0.3); }
.nav-mobile-toggle { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--ink); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); padding: 16px 24px; border-bottom: 2px dashed var(--rule); }
}

/* === Hero === */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  position: relative; padding: 80px 24px 40px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(248,245,238,0.25) 0%, rgba(248,245,238,0.55) 60%, rgba(248,245,238,0.95) 100%);
}

/* Floating water bubbles in hero */
.hero-bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-bubbles span {
  position: absolute; bottom: -30px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
  animation: floatUpHero 8s ease-in infinite;
}
.hero-bubbles span:nth-child(1) { left: 10%; width: 12px; height: 12px; animation-delay: 0s; animation-duration: 7s; }
.hero-bubbles span:nth-child(2) { left: 25%; width: 8px; height: 8px; animation-delay: 1.5s; animation-duration: 9s; }
.hero-bubbles span:nth-child(3) { left: 45%; width: 16px; height: 16px; animation-delay: 0.5s; animation-duration: 8s; }
.hero-bubbles span:nth-child(4) { left: 65%; width: 10px; height: 10px; animation-delay: 2s; animation-duration: 10s; }
.hero-bubbles span:nth-child(5) { left: 80%; width: 14px; height: 14px; animation-delay: 1s; animation-duration: 7.5s; }
.hero-bubbles span:nth-child(6) { left: 90%; width: 7px; height: 7px; animation-delay: 3s; animation-duration: 9s; }
@keyframes floatUpHero {
  0% { bottom: -30px; opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.2; }
  100% { bottom: 110vh; opacity: 0; }
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-tag {
  display: inline-block; font-family: 'ZCOOL KuaiLe', sans-serif; font-size: 1rem;
  color: var(--accent2); background: rgba(255,255,255,0.85);
  padding: 6px 20px; border-radius: 30px; border: 2px dashed var(--accent2);
  margin-bottom: 20px; animation: bounceIn 0.8s ease;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem); color: var(--ink);
  text-shadow: 3px 3px 0 rgba(74,155,196,0.15); margin-bottom: 12px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title .accent { color: var(--accent); }
.hero-subtitle {
  font-family: 'ZCOOL KuaiLe', sans-serif; font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--muted); margin-bottom: 30px; animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-stats { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; animation: fadeInUp 0.8s ease 0.3s both; }
.hero-stat {
  background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 16px; padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.6); box-shadow: 0 4px 20px rgba(44,40,37,0.06);
  transition: all 0.3s;
}
.hero-stat:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(44,40,37,0.1); }
.hero-stat .num { font-family: 'Ma Shan Zheng', serif; font-size: 2rem; color: var(--accent); display: block; line-height: 1; }
.hero-stat .label { font-size: 0.85rem; color: var(--muted); }
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'ZCOOL KuaiLe', sans-serif; font-size: 1.2rem; color: #fff;
  background: var(--accent); padding: 14px 40px; border-radius: 50px;
  text-decoration: none; box-shadow: 0 6px 20px rgba(74,155,196,0.35);
  transition: all 0.3s; animation: fadeInUp 0.8s ease 0.4s both; border: 3px solid #fff;
}
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(74,155,196,0.45); background: var(--accent-dark); }
.scroll-hint { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 1; color: var(--muted); font-size: 0.85rem; animation: bounce 2s infinite; }

@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounceIn { 0% { opacity: 0; transform: scale(0.3); } 50% { transform: scale(1.05); } 100% { opacity: 1; transform: scale(1); } }

/* === Section common === */
.section-pad { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--ink); margin-bottom: 10px; position: relative; display: inline-block; }
.section-header h2::after { content: ''; display: block; width: 60px; height: 4px; background: var(--accent); border-radius: 4px; margin: 8px auto 0; opacity: 0.6; }
.section-header p { font-size: 1.05rem; color: var(--muted); max-width: 600px; margin: 0 auto; }
.section-en { font-family: 'SmoochSans', cursive; font-size: 1.1rem; color: var(--accent); text-transform: capitalize; letter-spacing: 1px; display: block; margin-bottom: 4px; opacity: 0.7; }

/* === Interactive Map === */
.map-section { background: var(--bg2); padding: 70px 0; position: relative; }
.map-section::before, .map-section::after {
  content: ''; position: absolute; left: 0; right: 0; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 20' preserveAspectRatio='none'%3E%3Cpath d='M0,10 Q150,2 300,10 T600,10 T900,10 T1200,10' stroke='%23D4CCB8' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}
.map-section::before { top: 0; }
.map-section::after { bottom: 0; transform: rotate(180deg); }

.map-wrapper {
  position: relative; max-width: 900px; margin: 0 auto;
}
.map-wrapper img { width: 100%; display: block; border-radius: 20px; border: 3px solid #fff; box-shadow: 0 8px 35px rgba(44,40,37,0.12); }

.map-hotspot {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Ma Shan Zheng', serif; font-size: 1.5rem; color: #fff;
  cursor: pointer; transform: translate(-50%, -50%);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25); z-index: 5;
  transition: all 0.3s; border: 3px solid #fff;
  animation: pulse 2s infinite;
}
.map-hotspot:hover { transform: translate(-50%, -50%) scale(1.2); z-index: 10; }
.map-hotspot.spot-a { background: var(--accent); }
.map-hotspot.spot-b { background: var(--accent2); }
.map-hotspot.spot-c { background: var(--green); }
.map-hotspot.spot-d { background: var(--brown); }

@keyframes pulse {
  0% { box-shadow: 0 4px 15px rgba(0,0,0,0.25), 0 0 0 0 rgba(255,255,255,0.4); }
  70% { box-shadow: 0 4px 15px rgba(0,0,0,0.25), 0 0 0 12px rgba(255,255,255,0); }
  100% { box-shadow: 0 4px 15px rgba(0,0,0,0.25), 0 0 0 0 rgba(255,255,255,0); }
}

.map-popup {
  position: absolute; background: #fff; border-radius: 16px; padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2); z-index: 20;
  min-width: 240px; max-width: 300px; transform: translate(-50%, calc(-100% - 20px));
  display: none; border: 3px solid var(--accent);
}
.map-popup.below {
  transform: translate(-50%, 20px);
}
.map-popup.active { display: block; animation: fadeInUp 0.3s ease; }
.map-popup::after {
  content: ''; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: #fff;
}
.map-popup.below::after {
  bottom: auto; top: -12px; border-top-color: transparent; border-bottom-color: #fff;
}
.map-popup h4 { font-size: 1.2rem; margin-bottom: 6px; }
.map-popup .popup-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 10px; line-height: 1.5; }
.map-popup .popup-link {
  display: inline-block; font-family: 'ZCOOL KuaiLe', sans-serif; font-size: 0.9rem;
  color: #fff; background: var(--accent); padding: 6px 16px; border-radius: 20px;
  text-decoration: none; transition: all 0.2s;
}
.map-popup .popup-link:hover { background: var(--accent-dark); transform: translateX(3px); }
.map-popup .popup-close {
  position: absolute; top: 6px; right: 10px; font-size: 1.2rem; color: var(--muted);
  cursor: pointer; background: none; border: none;
}

.map-legend { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: var(--ink); }
.legend-pin { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Ma Shan Zheng', serif; font-size: 1rem; color: #fff; flex-shrink: 0; }
.legend-facility { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: #fff; flex-shrink: 0; background: var(--bg3); color: var(--ink); }

/* === Spot Cards (overview) === */
.spots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 768px) { .spots-grid { grid-template-columns: 1fr; } }

.spot-card {
  background: #fff; border-radius: 20px; overflow: hidden; text-decoration: none;
  color: inherit; border: 1px solid var(--rule); transition: all 0.35s cubic-bezier(0.22,0.61,0.36,1);
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(44,40,37,0.04);
}
.spot-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(44,40,37,0.12); border-color: var(--accent); }
.spot-card-img { position: relative; height: 220px; overflow: hidden; }
.spot-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.spot-card:hover .spot-card-img img { transform: scale(1.08); }
.spot-card-badge {
  position: absolute; top: 14px; left: 14px; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Ma Shan Zheng', serif; font-size: 1.4rem; color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); border: 2px solid #fff;
}
.spot-card-body { padding: 20px 24px 24px; }
.spot-card-body h3 { font-size: 1.4rem; margin-bottom: 6px; }
.spot-card-tagline { font-family: 'ZCOOL KuaiLe', sans-serif; font-size: 0.9rem; color: var(--muted); margin-bottom: 10px; }
.spot-card-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.spot-card-features { display: flex; flex-wrap: wrap; gap: 6px; }
.spot-card-feature { font-size: 0.78rem; padding: 3px 10px; border-radius: 14px; background: var(--bg3); color: var(--ink); }
.spot-card-arrow { display: flex; align-items: center; gap: 4px; margin-top: 14px; font-family: 'ZCOOL KuaiLe', sans-serif; font-size: 0.9rem; color: var(--accent); }

/* === Detail Page === */
.detail-hero {
  position: relative; height: 50vh; min-height: 360px; overflow: hidden;
  display: flex; align-items: flex-end;
}
.detail-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.detail-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%); }
.detail-hero-content { position: relative; z-index: 1; padding: 0 24px 40px; max-width: 1100px; margin: 0 auto; width: 100%; }
.detail-badge { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Ma Shan Zheng', serif; font-size: 1.8rem; color: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.3); border: 3px solid #fff; margin-bottom: 14px; }
.detail-hero-content h1 { font-size: clamp(2rem, 5vw, 3rem); color: #fff; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
.detail-hero-content .tagline { font-family: 'ZCOOL KuaiLe', sans-serif; font-size: 1.1rem; color: rgba(255,255,255,0.9); }

.detail-body { padding: 50px 0; }
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
@media (max-width: 768px) { .detail-layout { grid-template-columns: 1fr; } }

.detail-main h2 { font-size: 1.6rem; margin-bottom: 16px; }
.detail-main p { margin-bottom: 16px; line-height: 1.9; }
.detail-main .highlight { font-weight: 500; }

.detail-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 30px 0; }
.detail-photos .photo-large { grid-column: 1 / -1; }
.detail-photo { border-radius: 14px; overflow: hidden; cursor: pointer; position: relative; border: 3px solid #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.3s; aspect-ratio: 4/3; }
.detail-photos .photo-large .detail-photo { aspect-ratio: 16/9; }
.detail-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.detail-photo:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.detail-photo:hover img { transform: scale(1.05); }
.detail-photo-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.6)); color: #fff; font-size: 0.8rem; padding: 20px 12px 8px; opacity: 0; transition: opacity 0.3s; }
.detail-photo:hover .detail-photo-label { opacity: 1; }

.detail-sidebar { position: sticky; top: 80px; }
.detail-info-card { background: #fff; border-radius: 16px; padding: 24px; border: 1px solid var(--rule); margin-bottom: 20px; box-shadow: 0 2px 12px rgba(44,40,37,0.04); transition: all 0.3s; }
.detail-info-card:hover { box-shadow: 0 4px 20px rgba(44,40,37,0.08); }
.detail-info-card h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--ink); }
.detail-info-card ul { list-style: none; }
.detail-info-card li { font-size: 0.88rem; color: var(--muted); padding: 5px 0; padding-left: 18px; position: relative; }
.detail-info-card li::before { content: '◆'; position: absolute; left: 0; color: var(--accent); font-size: 0.7rem; top: 7px; }

.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.feature-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 0.85rem; padding: 4px 14px; border-radius: 20px; background: var(--bg3); color: var(--ink); border: 1.5px solid var(--rule); }
.feature-tag.water { background: rgba(74,155,196,0.1); border-color: var(--accent); color: var(--accent-dark); }
.feature-tag.family { background: rgba(200,97,62,0.1); border-color: var(--accent2); color: var(--accent2); }
.feature-tag.nature { background: rgba(91,140,90,0.1); border-color: var(--green); color: var(--green); }

.tips-box { background: rgba(232,184,75,0.1); border-left: 4px solid var(--yellow); border-radius: 0 12px 12px 0; padding: 16px 20px; margin-bottom: 20px; }
.tips-box .tips-title { font-family: 'ZCOOL KuaiLe', sans-serif; font-size: 1rem; color: #B8941E; margin-bottom: 8px; }
.tips-box ul { list-style: none; }
.tips-box li { font-size: 0.88rem; color: var(--muted); padding: 4px 0; padding-left: 18px; position: relative; }
.tips-box li::before { content: '◆'; position: absolute; left: 0; color: var(--yellow); font-size: 0.7rem; top: 7px; }

.detail-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 30px; border-top: 2px dashed var(--rule); flex-wrap: wrap; gap: 16px; }
.detail-nav a { font-family: 'ZCOOL KuaiLe', sans-serif; font-size: 0.95rem; color: var(--accent); text-decoration: none; padding: 10px 20px; border-radius: 24px; border: 2px solid var(--accent); transition: all 0.2s; display: flex; align-items: center; gap: 6px; }
.detail-nav a:hover { background: var(--accent); color: #fff; }

/* === Parking === */
.parking-section { background: linear-gradient(180deg, #E8F4F8 0%, #F0EBE0 50%, #F8F5EE 100%); padding: 80px 0; }
.parking-fee-card { background: #fff; border-radius: 24px; padding: 40px; text-align: center; box-shadow: 0 10px 40px rgba(44,40,37,0.08); border: 1px solid rgba(74,155,196,0.15); max-width: 600px; margin: 0 auto 40px; position: relative; transition: all 0.3s; }
.parking-fee-card:hover { box-shadow: 0 14px 50px rgba(44,40,37,0.12); transform: translateY(-4px); }
.parking-fee-card::before { content: 'P'; position: absolute; top: -25px; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; background: var(--accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Ma Shan Zheng', serif; font-size: 1.8rem; box-shadow: 0 4px 20px rgba(74,155,196,0.35); }
.parking-fee-card h3 { font-size: 1.6rem; margin: 10px 0 20px; }
.fee-price { font-family: 'Ma Shan Zheng', serif; font-size: 3rem; color: var(--accent); line-height: 1; }
.fee-price small { font-size: 1rem; color: var(--muted); }
.fee-note { margin-top: 12px; font-size: 0.95rem; color: var(--accent2); font-weight: 500; }
.parking-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
@media (max-width: 768px) { .parking-grid { grid-template-columns: 1fr; } }
.parking-card { background: rgba(255,255,255,0.8); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 16px; padding: 24px; border: 1px solid var(--rule); transition: all 0.3s; }
.parking-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 8px 25px rgba(44,40,37,0.1); }
.parking-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.parking-card-pin { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Ma Shan Zheng', serif; font-size: 1.2rem; color: #fff; flex-shrink: 0; }
.parking-card h4 { font-size: 1.15rem; }
.parking-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.parking-card .parking-type { display: inline-block; font-size: 0.8rem; padding: 2px 10px; border-radius: 12px; margin-top: 8px; background: var(--bg3); }

.facility-icons { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.facility-icon { font-size: 0.75rem; padding: 3px 8px; border-radius: 10px; background: rgba(91,140,90,0.1); color: var(--green); border: 1px solid rgba(91,140,90,0.2); }
.facility-icon.muted { background: var(--bg3); color: var(--muted); opacity: 0.6; border-color: var(--rule); }

/* === Navigation Card === */
.nav-card {
  background: linear-gradient(160deg, rgba(74,155,196,0.12) 0%, rgba(74,155,196,0.03) 60%, rgba(200,97,62,0.04) 100%);
  border-radius: 20px; padding: 26px 20px 22px; border: 1.5px solid rgba(74,155,196,0.15);
  margin-bottom: 20px; text-align: center; position: relative; overflow: hidden;
}
.nav-card::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 100px; height: 100px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,155,196,0.1) 0%, transparent 70%); pointer-events: none;
}
.nav-card::after {
  content: ''; position: absolute; bottom: -40px; left: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,97,62,0.05) 0%, transparent 70%); pointer-events: none;
}
.nav-card-pin {
  width: 52px; height: 52px; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 50% 50% 50% 8px; transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(74,155,196,0.35); position: relative; z-index: 1;
  animation: navPinFloat 2.5s ease-in-out infinite;
}
.nav-card-pin svg { transform: rotate(45deg); width: 26px; height: 26px; }
.nav-card-pin::after {
  content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 4px; background: rgba(74,155,196,0.15); border-radius: 50%; filter: blur(2px);
}
@keyframes navPinFloat { 0%,100% { transform: rotate(-45deg) translateY(0); } 50% { transform: rotate(-45deg) translateY(-5px); } }
.nav-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--accent-dark); position: relative; z-index: 1; }
.nav-card .nav-coords {
  display: inline-block; font-size: 0.72rem; color: var(--muted); margin-bottom: 18px;
  font-family: 'SF Mono', monospace; background: rgba(255,255,255,0.6);
  padding: 4px 14px; border-radius: 20px; border: 1px solid rgba(74,155,196,0.1);
  position: relative; z-index: 1; letter-spacing: 0.5px;
}
.nav-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'ZCOOL KuaiLe', sans-serif; font-size: 1rem; color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 13px 38px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 4px 18px rgba(74,155,196,0.35); transition: all 0.3s;
  border: 2px solid rgba(255,255,255,0.8); position: relative; z-index: 1;
}
.nav-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(74,155,196,0.45); filter: brightness(1.08); }
.nav-btn:active { transform: translateY(-1px); }
.nav-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.nav-card-hint { font-size: 0.72rem; color: var(--muted); margin-top: 10px; opacity: 0.6; position: relative; z-index: 1; }

/* === Footer === */
.footer { background: var(--ink); color: #D4CCB8; padding: 50px 0 30px; text-align: center; position: relative; }
.footer::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 20px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 20' preserveAspectRatio='none'%3E%3Cpath d='M0,10 Q150,2 300,10 T600,10 T900,10 T1200,10' stroke='%23F8F5EE' stroke-width='2' fill='none' opacity='0.3'/%3E%3C/svg%3E"); background-size: 100% 100%; }
.footer-logo { font-family: 'Ma Shan Zheng', serif; font-size: 1.8rem; color: var(--accent); margin-bottom: 10px; }
.footer p { font-size: 0.85rem; margin-bottom: 6px; opacity: 0.7; }
.footer .footer-tip { font-family: 'Long Cang', cursive; font-size: 1.3rem; color: var(--accent); margin: 16px 0; opacity: 0.8; }

/* === Lightbox === */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center; padding: 40px; cursor: pointer; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: 12px; box-shadow: 0 10px 50px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 2rem; cursor: pointer; z-index: 1001; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 2.5rem; cursor: pointer; padding: 10px 20px; user-select: none; z-index: 1001; }
.lightbox-nav.prev { left: 10px; }
.lightbox-nav.next { right: 10px; }

/* === Fade-in === */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
  .hero-stats { gap: 12px; }
  .hero-stat { padding: 10px 16px; }
  .hero-stat .num { font-size: 1.5rem; }
  .detail-photos { grid-template-columns: 1fr; }
  .parking-fee-card { padding: 30px 20px; }
}
