/* ===== CSS VARIABLES ===== */
:root {
  --orange: #fc6a09;
  --orange-light: #f5832a;
  --orange-pale: #fff4ed;
  --dark: #1a1a1a;
  --text: #444;
  --muted: #888;
  --white: #ffffff;
  --bg: #f8f8f6;
  --card-shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius: 12px;
  --font-display: 'Playfair Display', Georgia, serif;
  
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; width: 100%; }
img { display: block; max-width: 100%; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* Prevent any grid/flex child from forcing horizontal overflow on narrow screens */
.mch-highlight-grid,
.features,
.cards-grid,
.discover-layout,
.guide-reviews,
.guide-grid,
.reviews-grid,
.faq-cta {
  min-width: 0;
}
.mch-highlight-grid > *,
.features > *,
.discover-layout > *,
.guide-reviews > *,
.guide-grid > *,
.reviews-grid > *,
.faq-cta > * {
  min-width: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #f0ede8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: 0 2rem; height: 64px;
}
.logo {
  font-family: var(--font-display); font-size: 1.25rem;
  color: var(--dark); white-space: nowrap; margin-right: auto;
}
.logo span { color: var(--orange); }
.nav-links { display: flex; gap: 1.4rem; font-size: 0.88rem; font-weight: 600; }
.nav-links a { color: var(--dark); padding: 4px 0; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); border-bottom: 2px solid var(--orange); }
.whatsapp-btn {
  background: #25d366; border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .2s;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* ===== HERO ===== */
.mch-highlight-item p{
font-size: 12px;
    font-size: 1.05rem;
}
.mch-highlight-item h3{
 font-size: 14px; 
}
.hero {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: 2rem; padding: 5rem 2rem 6rem;
  min-height: 88vh;
  background-size: 55vw; background-position: right center; background-repeat: no-repeat;
}
.mch-container{
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.mch-highlight-grid{
      display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 50px 0;
    text-align: center;
}
.mch-highlight-item i {    font-size: 30px;
    color: #ffffff;
    margin-bottom: 15px;
    background: #ff681a;
    padding: 20px;
    border-radius: 40px;
    height: 70px;
    width: auto;
    margin-right: 10px;

}
.mch-highlight-item{
  display: flex;
}
.mch-highlight-item div {
 text-align: left;
} 
.hero-content h1 {
  font-size: clamp(1.7rem, 4vw + 1rem, 2.6rem);
  color: var(--dark); line-height: 1.2; margin-bottom: 1rem;
}
.hero-content p { font-size: 1.05rem; color: var(--muted); margin-bottom: 2rem; }
.btn-primary {
  display: inline-block;
  background: var(--orange); color: var(--white);
  padding: .85rem 2rem; border-radius: 6px;
  font-weight: 700; font-size: .95rem;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.hero-img img { border-radius: var(--radius); height: 420px; }

/* ===== FEATURES ===== */
.features {
  background: var(--bg);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 3px solid var(--orange);
}
.feature-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 2rem 1.5rem;
  border-right: 1px solid #e8e2da;
}
.feature-item:last-child { border-right: none; }
.feat-icon { font-size: 2rem; flex-shrink: 0; }
.feature-item strong { display: block; color: var(--dark); font-size: .9rem; margin-bottom: .3rem; }
.feature-item p {     font-size: 1.05rem; color: var(--muted); }
.pin-icon {
  /* Use "Font Awesome 5 Free" or "FontAwesome" depending on your version */
  font-family: "FontAwesome"; 
  font-weight: 900; /* Required for FA5+ Solid icons */
  font-size: 54px;  /* Adjust size as needed */
  fill: #ff0000;    /* Icon color */
  text-anchor: middle; /* Centers the icon on your coordinates */
  dominant-baseline: middle; 
}
/* ===== ITINERARIES ===== */
.itineraries { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.itineraries h2 {
  font-family: var(--font-display);
  color: var(--orange); font-size: clamp(1.2rem, 2.5vw + 0.8rem, 1.6rem);
  text-align: center; margin-bottom: 2.5rem;
}
.cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }

/* ===== CAROUSEL STYLES ===== */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}

.carousel-btn:hover {
  background: var(--orange-light);
  transform: scale(1.1);
}

.carousel-prev, .carousel-next {
  position: sticky;
  z-index: 10;
}
.card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--card-shadow); background: var(--white);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.14); }
.card img { height: 180px; }
.card-body { padding: 1rem 1.1rem .8rem; }
.card-body h3 { font-size: .95rem; color: var(--dark); margin-bottom: .4rem; font-weight: 700; }
.price { font-weight: 700; font-size: .9rem; display: block;  }
.card-body p {     font-size: 1.05rem; color: var(--muted); line-height: 1.5; }
.card-footer {
  background: var(--orange); color: var(--white);
  text-align: center; padding: .6rem; font-size: .85rem; font-weight: 700;
}

/* ===== DISCOVER (MAP SECTION) ===== */
.discover { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
.discover-header { margin-bottom: 2rem; }
.discover-header h2 { font-family: var(--font-display); color: var(--orange); font-size: clamp(1.3rem, 3vw + 0.8rem, 1.8rem); margin-bottom: .4rem; }
.discover-header p {     font-size: 1.05rem; color: var(--muted); }

.discover-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }

/* Destination Panel */
.dest-panel {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background: var(--white);
  transition: all .4s ease;
}
.dest-img-wrap { overflow: hidden; height: 220px; }
.dest-img-wrap img { height: 220px; transition: transform .5s ease; }
.dest-panel:hover .dest-img-wrap img { transform: scale(1.05); }
.dest-info { padding: 1.5rem; }
.dest-info h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--dark); margin-bottom: .2rem; }
.dest-info em { color: var(--muted); font-size: .9rem; display: block; margin-bottom: .8rem; }
.dest-info p {     font-size: 1.05rem; color: var(--text); line-height: 1.65; }
.explore-link { display: inline-block; color: var(--orange); font-weight: 700; font-size: .9rem; margin-top: 1rem; }
.explore-link:hover { text-decoration: underline; }

/* ===== SVG MAP ===== */
.map-wrap {
  
}
#chinaMap { width: 100%; height: auto; display: block; }

.china-bg {
  fill: #d4e8d8;
  stroke: #6aaa72;
  stroke-width: 2;
  filter: drop-shadow(0 4px 10px rgba(100,150,100,0.3));
}

/* Markers */
.marker { cursor: pointer; pointer-events: auto; transform-origin: 12px 23.728px; transition: transform .2s ease; }
/* .marker:hover { transform: scale(1.4); } */

.pin-circle {
}
.marker:hover .pin-circle { r: 18; fill: #c0450a; }
.marker.active .pin-circle { r: 18; fill: #c0450a; stroke-width: 3; }
.marker path {
  transition: fill .2s ease;
  transform: scale(1.8);
  transform-origin: 12px 12px;
}
.marker:hover path,
.marker.active path {
  fill: #c0450a;
  filter: drop-shadow(0 2px 8px rgba(192, 69, 10, 0.4));
}

.pin-icon {
  font-size: 14px; text-anchor: middle; dominant-baseline: middle;
  pointer-events: none; user-select: none;
}
.city-label {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  fill: var(--dark);
  pointer-events: none; user-select: none;
}
.marker:hover .city-label { fill: var(--orange); }
.marker.active .city-label { fill: var(--orange); }

/* Panel transition */
.dest-panel.updating .dest-img-wrap img,
.dest-panel.updating .dest-info { opacity: 0; transform: translateY(8px); }
.dest-img-wrap img, .dest-info {
  transition: opacity .3s ease, transform .3s ease;
}

/* ===== GUIDE + REVIEWS ===== */
.guide-reviews {
  background: var(--bg);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; padding: 4rem 2rem;
  max-width: 1200px; margin: 0 auto;
}
.section-header-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.5rem; }
.section-header-row h2 { font-family: var(--font-display); font-size: 1.3rem; color: var(--dark); }
.view-all { color: var(--orange); font-size: .85rem; font-weight: 700; white-space: nowrap; }
.view-all:hover { text-decoration: underline; }

.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.guide-card { display: flex; gap: .8rem; background: var(--white); border-radius: 8px; padding: .8rem; box-shadow: var(--card-shadow); }
.guide-card img { width: 70px; height: 70px; border-radius: 6px; flex-shrink: 0; object-fit: cover; }
.guide-card strong { font-size: .82rem; color: var(--dark); display: block; margin-bottom: .3rem; }
.guide-card p {     font-size: 1.05rem; color: var(--muted); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.review-card { background: var(--white); border-radius: 8px; padding: 1rem; box-shadow: var(--card-shadow); }
.stars { color: var(--orange); font-size: 1rem; margin-bottom: .5rem; }
.review-card p {    font-size: 1.05rem; color: var(--text); line-height: 1.5; font-style: italic; }
.review-card span { font-size: .75rem; color: var(--muted); font-weight: 600; display: block; margin-top: .6rem; }

/* ===== FAQ + CTA ===== */
.faq-cta {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; padding: 4rem 2rem;
  border-top: 1px solid #eee;
}
.faq-col h2, .cta-col h2 { font-family: var(--font-display); font-size: 1.3rem; color: var(--dark); margin-bottom: 1.2rem; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: .9rem 0; font-size: .9rem; color: var(--dark);
  font-family: var(--font-body); font-weight: 600; text-align: left;
}
.faq-btn:hover { color: var(--orange); }
.faq-btn span { font-size: 1.2rem; color: var(--orange); font-weight: 300; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; font-size: .85rem; color: var(--muted); }
.faq-answer.open { max-height: 200px; padding-bottom: .8rem; }

.cta-col p {     font-size: 1.05rem; color: var(--muted); margin-bottom: 1.5rem; }
.cta-btns { display: flex; flex-direction: column; gap: 1rem; }
.cta-btn {
  display: flex; align-items: center; gap: .8rem;
  background: var(--orange); color: var(--white);
  padding: .9rem 1.2rem; border-radius: 8px;
  font-weight: 700; font-size: .9rem;
  transition: background .2s, transform .15s;
}
.cta-btn:hover { background: var(--orange-light); transform: translateX(4px); }
.cta-btn.secondary { background: #f0ede8; color: var(--dark); }
.cta-btn.secondary:hover { background: #e8e2d8; }
.cta-btn small { font-size: .75rem; font-weight: 400; opacity: .85; display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark); color: #aaa;
  text-align: center; padding: 1.5rem;
  font-size: .83rem;
}

/* ===== MOBILE HAMBURGER ===== */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 4px; margin-left: auto; margin-right: 0.5rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column; gap: 0;
  background: var(--white);
  border-top: 1px solid #f0ede8;
  padding: 0.5rem 1.5rem 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}
.mobile-nav a {
  padding: 0.75rem 0; font-size: 0.95rem; font-weight: 600;
  color: var(--dark); border-bottom: 1px solid #f0ede8;
  display: block;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav.open { display: flex; }

@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
}

/* ===== RESPONSIVE ===== */

/* ── Tablet landscape (≤ 1024px) ── */
@media (max-width: 1024px) {
  .hero { padding: 4rem 2rem 5rem; min-height: 80vh; background-size: 70vw; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .mch-highlight-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Tablet portrait (≤ 900px) ── */
@media (max-width: 900px) {
  /* Hero */
  .hero { grid-template-columns: 1fr; padding: 3.5rem 1.5rem 4.5rem; min-height: 70vh; background-size: cover; background-position: center; }
  .hero-content { text-align: center; }
  .hero-img { display: none; }

  /* Nav */
  .nav-inner { gap: 1.2rem; padding: 0 1.2rem; }

  /* Highlights */
  .mch-highlight-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 30px 0; }

  /* Features bar */
  .features { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(2) { border-right: none; }

  /* Cards / Carousel */
  .cards-grid { grid-template-columns: repeat(2, 260px); }

  /* Map section */
  .discover-layout { grid-template-columns: 1fr; gap: 2rem; }
  .map-wrapper { grid-template-columns: 1fr; }
  .map-content { max-width: 700px; margin: auto; text-align: center; }
  .location-card { max-width: 650px; margin-inline: auto; }

  /* Guide + Reviews */
  .guide-reviews { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }

  /* FAQ + CTA */
  .faq-cta { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile (≤ 600px) ── */
@media (max-width: 600px) {
  /* Nav — hide links, keep logo + whatsapp */
  .nav-links { display: none; }
  .nav-inner { padding: 0 1rem; }

  /* Hero */
  .hero { padding: 2.5rem 1rem 3.5rem; min-height: 60vh; }
  .hero-content h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero-content p { font-size: 0.95rem; }
  .btn-primary { width: 100%; text-align: center; }

  /* Highlights */
  .mch-highlight-grid { grid-template-columns: 1fr; gap: 14px; padding: 24px 0; }
  .mch-highlight-item { align-items: flex-start; }

  /* Features */
  .features { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid #e8e2da; }
  .feature-item:last-child { border-bottom: none; }

  /* Itineraries */
  .itineraries { padding: 2.5rem 1rem; }
  .itineraries h2 { font-size: 1.25rem; }
  .cards-grid { grid-template-columns: repeat(2, 250px); }
  .carousel-btn { width: 36px; height: 36px; font-size: 0.9rem; }

  /* Map / Discover */
  .discover { padding: 2.5rem 1rem; }
  .china-map-section { padding: 50px 16px; }
  .map-content h2 { font-size: 28px; }
  .location-card img { height: 200px; }
  .location-info h3 { font-size: 22px; }
  .city-label { font-size: 12px; }

  /* Guide */
  .guide-grid { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* FAQ/CTA */
  .cta-btns { gap: 0.75rem; }

  /* General section spacing */
  .guide-reviews,
  .faq-cta { padding: 2.5rem 1rem; }
}

/* ── Very small (≤ 400px) ── */
@media (max-width: 400px) {
  .hero-content h1 { font-size: 1.5rem; }
  .cards-grid { grid-template-columns: repeat(2, 220px); }
  .mch-highlight-item i { padding: 14px; height: 58px; font-size: 24px; }
}
/* 222222222222222 */

.china-map-section {
  width: 100%;
  padding: 100px 5%;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.map-wrapper {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1450px;
  margin: auto;
}

.map-subtitle {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255, 94, 58, 0.1);
  color: #ff5e3a;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.map-content h2 {
  font-size: 52px;
  line-height: 1.1;
  color: #111827;
  margin-bottom: 20px;
  font-weight: 700;
}

.map-content p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.8;
}

.location-card {
  margin-top: 40px;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.location-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.location-info {
  padding: 28px;
}

.location-info span {
  font-size: 14px;
  font-weight: 600;
  color: #ff5e3a;
}

.location-info h3 {
  font-size: 34px;
  margin: 12px 0;
  color: #111827;
}

.location-info p {
  font-size: 15px;
  line-height: 1.8;
}

.china-map-container {
  position: relative;
  width: 100%;
}

#chinaMap {
  width: 100%;
  height: auto;
}

.china-bg {
  fill: #eef4ff;
  stroke: #b8cbef;
  stroke-width: 5;
  transition: 0.4s ease;
}

.marker {
  cursor: pointer;
  transition: 0.3s ease;
}


.pin-circle {
  fill: #ff5e3a;
  stroke: #ffffff;
  stroke-width: 4;
}

.pulse-ring {
  fill: transparent;
  stroke: rgba(255, 94, 58, 0.5);
  stroke-width: 2;
  animation: pulse 2s infinite;
}

.pin-icon {
  text-anchor: middle;
  font-size: 14px;
}

.city-label {
  font-size: 18px;
  font-weight: 600;
  fill: #111827;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@media (max-width: 1200px) {
  .map-wrapper {
    grid-template-columns: 1fr;
  }

  .map-content {
    max-width: 700px;
    margin: auto;
    text-align: center;
  }

  .location-card {
    max-width: 650px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .china-map-section {
    padding: 70px 20px;
  }

  .map-content h2 {
    font-size: 36px;
  }

  .location-card img {
    height: 220px;
  }

  .location-info h3 {
    font-size: 28px;
  }

  .city-label {
    font-size: 14px;
  }
}