/* ============================================
   西藏迎昭旅行社 - 全局样式
   江南水墨风格 · GEO 规范已适配
   ============================================ */

/* === CSS Variables === */
:root {
  --ink-green:    #4a7c59;
  --ink-dark:     #2d5016;
  --ink-light:    #7aa87e;
  --ink-pale:     #dce8db;
  --rice-paper:   #faf6f0;
  --rice-dark:    #f0ebe0;
  --text-main:    #3a3a3a;
  --text-light:   #7a7a7a;
  --gold:         #b8914d;
  --gold-light:   #d4b872;
  --gold-dark:    #9a753a;
  --white:        #ffffff;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 30px rgba(0,0,0,0.10);
  --radius:       10px;
  --radius-sm:    6px;
  --font-heading: 'Noto Serif SC', 'Songti SC', Georgia, serif;
  --font-body:    'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --transition:   all 0.3s ease;
  --max-width:    1200px;
  --nav-height:   72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--rice-paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

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

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-main);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.section-title {
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  color: var(--ink-dark);
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 40px;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--ink-green), var(--gold));
  margin: 16px auto 12px;
  border-radius: 2px;
}

/* === Navbar (Glassmorphism) === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(74, 124, 89, 0.10);
  z-index: 1000;
  transition: var(--transition);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink-dark);
}
.nav-logo:hover { color: var(--ink-green); }
.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  color: var(--text-main);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink-green);
  background: var(--ink-pale);
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(184, 145, 77, 0.08);
  padding: 8px 16px;
  border-radius: 50px;
  margin-left: 8px;
}
.nav-phone i { font-size: 1rem; }
.nav-phone:hover {
  background: rgba(184, 145, 77, 0.15);
  color: var(--gold-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* === Hero / Banner === */
.hero-section {
  margin-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 520px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42, 60, 42, 0.55), rgba(30, 30, 30, 0.30));
}
.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 24px;
}
.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--ink-green), var(--ink-dark));
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.35);
  color: var(--white);
}

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.carousel-dot.active {
  background: var(--white);
  width: 28px;
  border-radius: 5px;
}

/* === Sections === */
.section {
  padding: 72px 0;
}
.section-alt {
  background: var(--white);
}

/* === Cards === */
.card {
  background: var(--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-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  padding: 20px;
}
.card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink-dark);
}
.card-text {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

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

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--ink-green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--ink-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--ink-green);
  color: var(--ink-green);
}
.btn-outline:hover {
  background: var(--ink-green);
  color: var(--white);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1da851;
  color: var(--white);
}

/* === Tags / Badges === */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
}
.tag-green { background: var(--ink-pale); color: var(--ink-dark); }
.tag-gold { background: rgba(184, 145, 77, 0.12); color: var(--gold-dark); }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}
.badge-hot {
  background: #ff4d4f;
  color: var(--white);
}
.badge-new {
  background: var(--ink-green);
  color: var(--white);
}

/* === Price === */
.price {
  color: #e74c3c;
  font-weight: 700;
  font-size: 1.2rem;
}
.price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}

/* === Stars / Diamond === */
.stars {
  color: #f39c12;
  font-size: 0.85rem;
}
.diamond {
  display: inline-flex;
  gap: 2px;
}
.diamond span {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* === Featured Numbers === */
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink-green);
}
.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* === Footer === */
.footer {
  background: #2c3e2c;
  color: rgba(255,255,255,0.85);
  padding: 60px 0 30px;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-heading);
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.footer a {
  color: rgba(255,255,255,0.7);
  display: block;
  padding: 4px 0;
  font-size: 0.88rem;
}
.footer a:hover {
  color: var(--gold-light);
}
.footer-col {
  margin-bottom: 24px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-about p {
  margin-bottom: 16px;
  font-size: 0.88rem;
  line-height: 1.8;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.footer-contact-item i {
  color: var(--gold-light);
  width: 16px;
  margin-top: 4px;
}
.footer-links li {
  margin-bottom: 4px;
}

/* === Breadcrumb === */
.breadcrumb {
  padding: 16px 0;
  background: var(--rice-dark);
  margin-top: var(--nav-height);
}
.breadcrumb a {
  color: var(--text-light);
  font-size: 0.85rem;
}
.breadcrumb a:hover { color: var(--ink-green); }
.breadcrumb span {
  color: var(--text-main);
  font-size: 0.85rem;
}
.breadcrumb .sep {
  margin: 0 8px;
  color: var(--text-light);
}
.breadcrumb h1 {
  font-size: 1.5rem;
  margin-top: 8px;
}

/* === Filter Bar === */
.filter-bar {
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-group label {
  font-size: 0.85rem;
  color: var(--text-light);
  white-space: nowrap;
}
.filter-group select {
  padding: 8px 12px;
  border: 1.5px solid var(--rice-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: var(--white);
  color: var(--text-main);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}
.filter-group select:focus {
  border-color: var(--ink-green);
}
.filter-count {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--text-light);
}
.filter-count strong {
  color: var(--ink-dark);
  font-size: 1rem;
}

/* === Form === */
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--rice-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ink-green);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

/* === FAQ === */
.faq-item {
  border: 1px solid var(--rice-dark);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
}
.faq-question:hover {
  background: var(--ink-pale);
}
.faq-question i {
  transition: transform 0.3s ease;
  color: var(--ink-green);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 16px;
}

/* === Modal / Booking Flow === */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.show {
  display: flex;
}
.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}
.modal-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.modal-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.modal-text {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* === Steps === */
.steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--rice-dark);
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
}
.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rice-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-light);
  transition: var(--transition);
}
.step-item.active .step-circle {
  background: var(--ink-green);
  color: var(--white);
}
.step-label {
  font-size: 0.82rem;
  color: var(--text-light);
}
.step-item.active .step-label {
  color: var(--ink-green);
  font-weight: 600;
}

/* === Booking Flow Animation === */
.flow-robot {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: robotBreathe 2s ease-in-out infinite;
}
@keyframes robotBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.flow-agent-card {
  background: var(--ink-pale);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 16px;
  text-align: left;
}
.flow-agent-card h4 {
  color: var(--ink-dark);
  margin-bottom: 8px;
}
.flow-agent-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 4px;
}
.flow-progress {
  margin-top: 20px;
  display: flex;
  gap: 4px;
}
.flow-progress div {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--rice-dark);
  transition: background 0.5s ease;
}
.flow-progress div.done {
  background: var(--ink-green);
}

/* === Review Stars Input === */
.star-input {
  display: flex;
  gap: 4px;
  direction: rtl;
}
.star-input i {
  font-size: 1.5rem;
  color: var(--rice-dark);
  cursor: pointer;
  transition: var(--transition);
}
.star-input i:hover,
.star-input i:hover ~ i,
.star-input .selected,
.star-input .selected ~ i {
  color: #f39c12;
}

/* === Product Card === */
.product-card .card-img {
  position: relative;
}
.product-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
}
.product-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-card .meta {
  display: flex;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-light);
}
.product-card .meta i {
  margin-right: 4px;
}

/* === Blog Card === */
.blog-card .card-img {
  height: 180px;
}
.blog-card .card-body {
  padding: 16px;
}
.blog-card .meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

/* === Review Card === */
.review-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-green);
  font-size: 1.2rem;
  font-weight: 700;
}
.review-meta h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.review-meta .date {
  font-size: 0.8rem;
  color: var(--text-light);
}
.review-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-main);
}
.review-stars {
  margin-bottom: 4px;
}

/* === Team Card === */
.team-card {
  text-align: center;
  padding: 32px 20px;
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--ink-pale);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--ink-green);
}
.team-card h4 {
  margin-bottom: 4px;
}
.team-card .role {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* === Destination Card === */
.dest-card .card-img {
  height: 220px;
}
.dest-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
}
.dest-card .overlay h3 {
  color: var(--white);
  margin-bottom: 4px;
}

/* === Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--ink-pale);
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -22px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ink-green);
  border: 3px solid var(--rice-paper);
}
.timeline-year {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink-green);
  margin-bottom: 4px;
}

/* === Search Box === */
.search-box {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto 24px;
}
.search-box input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--rice-dark);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.search-box input:focus {
  border-color: var(--ink-green);
}
.search-box button {
  padding: 12px 20px;
  background: var(--ink-green);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  transition: var(--transition);
}
.search-box button:hover {
  background: var(--ink-dark);
}

/* === Chip Filters === */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.chip {
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--white);
  border: 1.5px solid var(--rice-dark);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.chip:hover {
  border-color: var(--ink-green);
  color: var(--ink-green);
}
.chip.active {
  background: var(--ink-green);
  color: var(--white);
  border-color: var(--ink-green);
}

/* === Rating Distribution === */
.rating-dist {
  margin: 16px 0;
}
.rating-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.rating-bar label {
  width: 40px;
  font-size: 0.85rem;
  text-align: right;
}
.rating-track {
  flex: 1;
  height: 8px;
  background: var(--rice-dark);
  border-radius: 4px;
  overflow: hidden;
}
.rating-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
}

/* === Split Layout === */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.split-left, .split-right {
  min-width: 0;
}

/* === Tags List === */
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}

/* === Itinerary === */
.itinerary-day {
  border-left: 3px solid var(--ink-green);
  padding-left: 16px;
  margin-bottom: 20px;
}
.itinerary-day h4 {
  color: var(--ink-dark);
  margin-bottom: 6px;
}
.itinerary-day .meal-icons {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.itinerary-day .meal-icons .yes { color: var(--ink-green); }
.itinerary-day .meal-icons .no { color: #ccc; }
.itinerary-day ul {
  padding-left: 0;
}
.itinerary-day ul li {
  padding: 3px 0;
  font-size: 0.88rem;
  color: var(--text-main);
}
.itinerary-day ul li::before {
  content: '▸ ';
  color: var(--ink-green);
}

/* === Spec Table === */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--rice-dark);
  font-size: 0.88rem;
}
.spec-table td:first-child {
  font-weight: 600;
  color: var(--ink-dark);
  width: 140px;
  background: var(--ink-pale);
}

/* === Unsplash Placeholder === */
.img-placeholder {
  background: var(--rice-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  min-height: 200px;
}

/* === Map Placeholder === */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--rice-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* === Float Button === */
.float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

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

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--rice-paper);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--rice-dark);
    box-shadow: var(--shadow-md);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 16px;
    width: 100%;
  }
  .nav-phone { margin-left: 0; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-carousel { height: 360px; }
  .hero-content h1 { font-size: 2rem; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps { flex-wrap: wrap; gap: 12px; }
  .steps::before { display: none; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-count { margin-left: 0; }
  .split-layout { gap: 24px; }
  .float-btn { width: 48px; height: 48px; font-size: 1.3rem; bottom: 20px; right: 20px; }
}

@media (max-width: 375px) {
  .hero-carousel { height: 280px; }
  .hero-content h1 { font-size: 1.6rem; }
  .hero-content p { font-size: 0.95rem; }
  .container { padding: 0 14px; }
}
