/* ===================================================
   China Wonders Tour - Global Stylesheet
   =================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --red:        #c0392b;
  --red-dark:   #962d22;
  --gold:       #d4a017;
  --gold-light: #f0c040;
  --dark:       #1a1a2e;
  --dark2:      #16213e;
  --text:       #333;
  --text-light: #666;
  --bg-light:   #f8f6f2;
  --white:      #ffffff;
  --shadow:     0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.18);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: all .3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-size: 1rem; color: var(--text-light); }

/* ---------- Utility ---------- */
.section-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .9rem;
  border-radius: 50px;
  margin-bottom: .8rem;
}
.section-title { color: var(--dark); margin-bottom: .6rem; }
.section-sub   { font-size: 1.05rem; max-width: 640px; margin: 0 auto 3rem; }
.text-center   { text-align: center; }

/* Tour title link hover effects */
.featured-body h2 a:hover,
.tour-card h3 a:hover {
  color: var(--red) !important;
  text-decoration: underline !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--red); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: #b8860b; border-color: #b8860b; transform: translateY(-2px); }

/* ---------- Navbar ---------- */
#navbar {
  position: fixed;
  top: 44px; left: 0; right: 0;
  z-index: 1030;
  background: var(--dark);
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
  transition: background .4s, box-shadow .4s;
  padding: 0 1.5rem;
}
#navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .logo-icon {
  width: 44px; 
  height: 44px;
  background: linear-gradient(135deg, var(--red) 0%, #e74c3c 100%);
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.3);
  transition: transform 0.3s ease;
}
.nav-logo:hover .logo-icon {
  transform: scale(1.05);
}
.nav-logo .logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.2;
}
.nav-logo .logo-text span { 
  color: var(--gold); 
  font-weight: 700;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.nav-menu a {
  color: rgba(255,255,255,.9);
  font-size: .92rem;
  font-weight: 600;
  transition: var(--transition);
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  white-space: nowrap;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}
.nav-menu a:hover { 
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-menu a.active {
  color: var(--gold);
  background: rgba(212, 160, 23, 0.15);
}
.nav-book {
  background: linear-gradient(135deg, var(--red) 0%, #e74c3c 100%);
  color: var(--white) !important;
  padding: .6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: var(--transition) !important;
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.3);
  margin-left: 0.5rem;
}
.nav-book:hover { 
  background: linear-gradient(135deg, var(--gold) 0%, #f39c12 100%) !important; 
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
}
.nav-book::after { display: none !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(26,26,46,.75) 0%, rgba(192,57,43,.55) 100%),
              url('images/hero/高清图片_002.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(212,160,23,.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: .85rem;
  font-weight: 600;
  padding: .4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
#hero h1 { color: var(--white); margin-bottom: 1.2rem; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
#hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.9);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-hero {
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  letter-spacing: .03em;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,.35);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat .label {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: .25rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: rgba(255,255,255,.4);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-8px); }
}

/* ---------- Why Choose Us ---------- */
#why {
  background: var(--dark);
  padding: 5rem 1.5rem;
}
#why .section-title { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(192,57,43,.18);
  border-color: var(--red);
  transform: translateY(-6px);
}
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.2rem;
}
.why-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .5rem; }
.why-card p  { color: rgba(255,255,255,.65); font-size: .9rem; }

/* ---------- Tour Card Common ---------- */
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.tour-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.tour-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.tour-card:hover .tour-img img { transform: scale(1.07); }
.tour-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 50px;
}
.tour-badge.popular { background: var(--gold); }
.tour-badge.new     { background: #27ae60; }
.tour-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tour-meta {
  display: flex;
  gap: 1rem;
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: .8rem;
  flex-wrap: wrap;
}
.tour-meta span { display: flex; align-items: center; gap: .3rem; }
.tour-body h3 { color: var(--dark); margin-bottom: .6rem; font-size: 1.15rem; }
.tour-body p  { font-size: .9rem; flex: 1; }
.tour-includes {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.inc-tag {
  background: #eef7ee;
  color: #27ae60;
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .65rem;
  border-radius: 50px;
}
.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}
.tour-price .from { font-size: .78rem; color: var(--text-light); }
.tour-price .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.tour-price .per { font-size: .8rem; color: var(--text-light); }

/* ---------- Tour Grid ---------- */
.tour-grid, .tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1260px;
  margin: 0 auto;
}

/* Tour Card for Grid */
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.tour-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s;
}

.tour-card:hover img {
  transform: scale(1.07);
}

.tour-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card-body h3 {
  color: var(--dark);
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
  line-height: 1.4;
}

.tour-card-body h3 a {
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
}

.tour-card-body h3 a:hover {
  color: var(--red);
}

.tour-code {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.tour-card-body .tour-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
  margin: 0.5rem 0 1rem;
}

.tour-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ---------- Great Wall Section ---------- */
#great-wall {
  padding: 5rem 1.5rem;
  background: var(--bg-light);
}

/* ---------- Featured Tour ---------- */
.featured-tour {
  max-width: 1260px;
  margin: 0 auto 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 2fr 3fr;
}
.featured-img { position: relative; min-height: 300px; overflow: hidden; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-img .feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(26,26,46,.7));
}
.feat-label {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
  font-size: .8rem;
  padding: .3rem .8rem;
  border-radius: 50px;
  letter-spacing: .05em;
}
.featured-body {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-body h2 { color: var(--dark); margin-bottom: .5rem; font-size: 1.45rem; }
.featured-body .lead { font-size: .92rem; margin-bottom: 1rem; }
.feat-schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin: .8rem 0 1.2rem;
}
.schedule-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: .6rem .8rem;
  border-left: 3px solid var(--red);
}
.schedule-item .time { font-size: .75rem; color: var(--red); font-weight: 700; }
.schedule-item .desc { font-size: .82rem; color: var(--dark); font-weight: 500; margin-top: .1rem; }
.feat-price-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.feat-price .from { font-size: .8rem; color: var(--text-light); }
.feat-price .amount { font-size: 2.2rem; font-weight: 800; color: var(--red); line-height: 1; }
.feat-price .per   { font-size: .85rem; color: var(--text-light); }

/* ---------- Includes / Excludes Grid ---------- */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto 3rem;
}
.inc-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.inc-box h4 { margin-bottom: 1rem; font-size: 1rem; display: flex; align-items: center; gap: .5rem; }
.inc-box h4.green { color: #27ae60; }
.inc-box h4.red   { color: var(--red); }
.inc-box li { font-size: .88rem; padding: .3rem 0; color: var(--text-light); display: flex; align-items: center; gap: .5rem; }
.inc-box li::before { content: '✓'; color: #27ae60; font-weight: 700; }
.inc-box.exc li::before { content: '✕'; color: var(--red); }

/* ---------- Beijing Section ---------- */
#beijing {
  padding: 5rem 1.5rem;
  background: var(--white);
}

/* ---------- City Tabs ---------- */
.city-tabs {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.city-tab {
  padding: .55rem 1.5rem;
  border-radius: 50px;
  border: 2px solid #e0e0e0;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-light);
}
.city-tab.active,
.city-tab:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ---------- Other Cities Section ---------- */
#other-cities {
  padding: 5rem 1.5rem;
  background: var(--dark);
}
#other-cities .section-title { color: var(--white); }
#other-cities .section-sub   { color: rgba(255,255,255,.65); }
.city-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1260px;
  margin: 0 auto;
}
.city-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 360px;
  cursor: pointer;
  transition: var(--transition);
}
.city-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.city-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform .5s;
}
.city-card:hover img { transform: scale(1.08); }
.city-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,.9) 0%, transparent 55%);
}
.city-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem;
}
.city-content h3 { color: var(--white); font-size: 1.5rem; margin-bottom: .3rem; }
.city-content p  { color: rgba(255,255,255,.75); font-size: .88rem; margin-bottom: 1rem; }
.city-tours-count {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .9rem;
  border-radius: 50px;
}
.city-card-tours {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,26,46,.92);
  padding: 2rem 1.5rem;
  transform: translateY(100%);
  transition: transform .4s ease;
  overflow-y: auto;
}
.city-card:hover .city-card-tours { transform: translateY(0); }
.city-tour-item {
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.city-tour-item .name  { font-size: .88rem; color: var(--white); font-weight: 500; }
.city-tour-item .price { font-size: .85rem; color: var(--gold-light); font-weight: 700; }

/* ---------- Testimonials ---------- */
#testimonials {
  padding: 5rem 1.5rem;
  background: var(--bg-light);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .8rem; letter-spacing: .1em; }
.testi-text { font-size: .94rem; color: var(--text); font-style: italic; margin-bottom: 1.2rem; line-height: 1.8; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--white); font-size: 1rem;
}
.testi-name  { font-weight: 700; font-size: .92rem; color: var(--dark); }
.testi-from  { font-size: .8rem; color: var(--text-light); }

/* ---------- CTA Banner ---------- */
#cta {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '中国';
  position: absolute;
  font-size: 20rem;
  font-weight: 900;
  color: rgba(255,255,255,.03);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
#cta h2 { color: var(--white); margin-bottom: 1rem; }
#cta p  { color: rgba(255,255,255,.75); margin-bottom: 2rem; font-size: 1.1rem; max-width: 560px; margin-inline: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); border-color: var(--white); }

/* ---------- Contact Strip ---------- */
#contact-strip {
  background: var(--dark2);
  padding: 3rem 1.5rem;
}
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}
.contact-item .icon {
  font-size: 1.8rem;
  margin-bottom: .6rem;
}
.contact-item h4 { color: var(--white); font-size: 1rem; margin-bottom: .3rem; }
.contact-item p  { color: rgba(255,255,255,.6); font-size: .9rem; }
.contact-item a  { color: var(--gold-light); font-weight: 600; }

/* ---------- Footer ---------- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 3.5rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: start;
}
.footer-inner > div {
  text-align: left;
}
.footer-brand .logo-text { color: var(--white); font-size: 1.2rem; margin-bottom: .8rem; display: block; font-weight: 800; }
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.footer-brand .license { font-size: .78rem; margin-top: 1rem; color: rgba(255,255,255,.4); }
.footer-contact { text-align: left; }
.footer-qr { margin-top: 0.5rem; text-align: left; }
.footer-qr .qr-image { max-width: 220px; width: 100%; height: auto; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.3); background: white; padding: 8px; }
.footer-qr .qr-text { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .5rem; font-weight: 500; text-align: left; }
footer h5 { color: var(--white); margin-bottom: 1.2rem; font-size: 1rem; font-weight: 600; }
footer ul li { padding: .3rem 0; list-style: none; }
footer ul a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .2s; text-decoration: none; }
footer ul a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1260px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .83rem;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--gold-light); }

/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}
.floating-contact-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 50px;
  background: var(--red);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(192,57,43,.4);
  transition: transform .3s, box-shadow .3s;
  color: white;
}
.floating-contact-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(192,57,43,.55);
}
.floating-contact-label {
  font-size: .9rem;
  font-weight: 700;
}
.floating-contact-menu {
  position: absolute;
  bottom: 68px;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 36px rgba(0,0,0,.2);
  padding: .5rem 0;
  min-width: 260px;
  display: none;
  overflow: hidden;
}
.floating-contact-menu.open { display: block; }
.floating-contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.2rem;
  text-decoration: none;
  color: var(--text);
  font-size: .9rem;
  transition: background .2s;
  gap: 1rem;
}
.floating-contact-item:hover { background: #f5f5f5; }
.floating-contact-item span {
  font-weight: 700;
  font-size: .85rem;
}
.floating-contact-item small {
  color: var(--text-light);
  font-size: .78rem;
}
.floating-contact-item.whatsapp span { color: #25D366; }
.floating-contact-item.wechat span { color: #07C160; }
.floating-contact-item.email span { color: var(--red); }
.footer-social { text-align: center; max-width: 1260px; margin: 20px auto 0; }

/* Testimonials */
#testimonials {
  padding: 5rem 1.5rem;
  background: var(--bg-light);
}
.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.testimonial-author strong {
  display: block;
  color: var(--dark);
  font-size: .9rem;
}
.testimonial-author span {
  font-size: .78rem;
  color: #999;
}
.footer-social > div { justify-content: center; }

/* Trust badges */
.footer-trust {
  max-width: 1260px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-trust h5 {
  color: var(--gold-light);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .8rem;
}
.payment-icons, .security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.payment-icon {
  display: inline-block;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: .72rem;
  font-weight: 600;
  padding: .35rem .7rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.1);
  letter-spacing: .03em;
}
.security-badge {
  display: inline-block;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  padding: .35rem .7rem;
}
.security-badge::before {
  content: "✓ ";
  color: var(--gold-light);
  font-weight: 700;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb-wrap {
  background: var(--bg-light);
  padding: .75rem 1.5rem;
  font-size: .82rem;
  border-bottom: 1px solid #e8e8e8;
}
.breadcrumb-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  gap: .5rem;
  align-items: center;
  color: var(--text-light);
}
.breadcrumb-inner a { color: var(--red); }
.breadcrumb-inner .sep { color: #ccc; }

/* ---------- Info Banner ---------- */
.info-banner {
  background: linear-gradient(90deg, var(--gold) 0%, #b8860b 100%);
  color: var(--white);
  text-align: center;
  padding: .65rem 1rem;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}
.info-banner a { color: var(--white); text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .featured-tour { grid-template-columns: 1fr; }
  .featured-img { min-height: 260px; }
  .footer-inner { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .inc-exc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 108px; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.8rem;
    z-index: 1031;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
  }
  .nav-menu a:hover {
    background: rgba(255,255,255,0.1);
  }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .feat-schedule { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  #hero { padding: 5rem 1rem 3rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  #hero { padding: 5rem 1rem 3rem; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ===================================================
   Tour Detail Page Styles
   =================================================== */

/* Navbar for detail pages */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 0 1.5rem;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar .logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.navbar .nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar .nav-menu a {
  color: rgba(255,255,255,0.88);
  font-size: 0.93rem;
  font-weight: 500;
  transition: var(--transition);
}

.navbar .nav-menu a:hover {
  color: var(--gold-light);
}

.navbar .nav-book {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-weight: 700 !important;
}

.navbar .nav-book:hover {
  background: var(--gold) !important;
}

.navbar .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: transparent;
  border: none;
}

.navbar .nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* Breadcrumb Strip */
.breadcrumb-strip {
  background: var(--bg-light);
  padding: 0.75rem 1.5rem;
  margin-top: 70px;
  font-size: 0.82rem;
  border-bottom: 1px solid #e8e8e8;
}

.breadcrumb-strip a {
  color: var(--red);
  transition: var(--transition);
}

.breadcrumb-strip a:hover {
  color: var(--red-dark);
}

/* Tour Hero - Split Layout */
.tour-hero {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem;
}

.tour-hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.tour-hero-left {
  color: #fff;
}

.tour-hero-left .tour-badge {
  position: static;
  display: inline-block;
  margin-bottom: 1rem;
}

.tour-hero-left h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  line-height: 1.3;
}

.tour-info-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(0,0,0,0.45);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
}

.tour-info-item {
  text-align: center;
}

.tour-info-item .label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.tour-info-item .value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f0c040;
}

/* Right Column - Price Card */
.tour-hero-right {
  position: relative;
}

.tour-price-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  text-align: center;
}

.price-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #eee;
}

.price-header .price-label {
  display: block;
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.price-header .price-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #c0392b;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-header .price-note {
  font-size: 0.75rem;
  color: #999;
}

.btn-book-now {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  justify-content: center;
}

.price-features {
  text-align: left;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #555;
  padding: 0.4rem 0;
}

.price-feature span {
  color: #27ae60;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .tour-hero-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tour-info-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tour-hero {
    min-height: auto;
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .tour-info-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  
  .tour-price-card {
    padding: 1.25rem;
  }
  
  .price-header .price-amount {
    font-size: 2rem;
  }
}

.hero-overlay, .tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.3) 60%, transparent 100%);
}

.tour-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.tour-category-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.tour-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.tour-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.tour-meta-item {
  text-align: center;
}

.tour-meta-item .label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.tour-meta-item .value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Tour Content */
.tour-content {
  padding: 4rem 1.5rem;
  background: var(--white);
}

.tour-section {
  margin-bottom: 2.5rem;
}

.tour-section h2 {
  color: var(--dark);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--red);
  display: inline-block;
}

.tour-section h3 {
  color: var(--dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Tour Highlights */
.tour-highlights {
  list-style: none;
  padding: 0;
}

.tour-highlights li {
  padding: 0.6rem 0;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid #f0f0f0;
}

.highlight-icon {
  color: #27ae60;
  font-weight: 700;
}

/* Itinerary Timeline */
.itinerary-timeline {
  position: relative;
  padding-left: 2rem;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--gold));
}

.itinerary-item {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  display: flex;
  gap: 1.5rem;
}

.itinerary-item::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 1.3rem;
  width: 12px;
  height: 12px;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.itinerary-time {
  min-width: 100px;
  font-weight: 700;
  color: var(--red);
  font-size: 0.9rem;
}

.itinerary-content p {
  margin: 0;
  color: var(--text);
}

/* Included / Excluded */
.included-section,
.excluded-section {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.included-section h3 {
  color: #27ae60;
}

.excluded-section h3 {
  color: var(--red);
}

.included-list,
.excluded-list {
  list-style: none;
  padding: 0;
}

.included-list li,
.excluded-list li {
  padding: 0.4rem 0;
  color: var(--text);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.included-list li::before {
  content: '✓';
  color: #27ae60;
  font-weight: 700;
}

.excluded-list li::before {
  content: '✕';
  color: var(--red);
  font-weight: 700;
}

/* Info Boxes */
.info-box {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.info-box.warning {
  background: #fff8e1;
  border-left-color: #ff9800;
}

.info-box h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.info-box p {
  margin: 0;
  color: var(--text);
}

/* Booking Card */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  position: sticky;
  top: 90px;
}

.booking-price {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.booking-price .from {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.booking-price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin: 0.3rem 0;
}

.booking-price .per {
  font-size: 0.9rem;
  color: var(--text-light);
}

.booking-details {
  margin-bottom: 1.5rem;
}

.booking-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}

.booking-detail-row .label {
  color: var(--text-light);
}

.booking-detail-row .value {
  font-weight: 600;
  color: var(--dark);
}

.btn-book {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid var(--red);
}

.btn-book:hover {
  background: var(--white);
  color: var(--red);
}

.booking-contact {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f0;
}

.booking-contact p {
  margin: 0.3rem 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Responsive for Detail Pages */
@media (max-width: 768px) {
  .navbar .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    z-index: 1031;
  }

  .navbar .nav-menu.active {
    display: flex;
  }

  .navbar .nav-toggle {
    display: flex;
  }

  .tour-hero {
    min-height: 300px;
    padding: 3rem 1rem;
  }

  .tour-meta {
    flex-direction: column;
    gap: 1rem;
    text-align: left;
  }

  .tour-meta-item {
    text-align: left;
  }

  .itinerary-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .booking-card {
    position: static;
    margin-top: 2rem;
  }
}




.booking-section .section-title {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.booking-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.booking-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-actions .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.form-actions .btn i {
    margin-right: 0.5rem;
}

.form-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: var(--radius);
    text-align: center;
}

.form-note p {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
}

.form-note strong {
    color: var(--dark);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
}


/* Booking Form Section - Enhanced */
.booking-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.booking-section .section-title {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.booking-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Booking Process Steps */
.booking-process {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.process-step {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    backdrop-filter: blur(10px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 0.5rem;
}

.process-step p {
    margin: 0;
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 2rem;
    opacity: 0.7;
}

/* Booking Form */
.booking-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-left: 0.8rem;
    border-left: 4px solid var(--red);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-top: 1rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-actions .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.form-actions .btn i {
    margin-right: 0.5rem;
}

.form-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: var(--radius);
}

.form-note p {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
}

.form-note ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.form-note li {
    margin: 0.3rem 0;
}

.form-note strong {
    color: var(--dark);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .booking-process {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
}

/* Fix for Beijing page width */
body {
    max-width: 100vw;
    overflow-x: hidden;
}

.tour-card-body h3 {
    line-height: 1.6;
    font-size: 1rem;
}

.tour-type {
    font-size: 0.7rem !important;
    white-space: nowrap;
}
