/* ========== TOURS PAGE ========== */

/* Hero subtitle (extra paragraph under h1) */
.tours-hero-sub {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
}

/* ========== INTRO / WHY CHINA ========== */
.tours-intro {
  background: #fff;
  padding-top: 88px;
}

.tours-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.tours-intro-text h2 {
  margin-bottom: 16px;
  text-align: left;
}

.tours-intro-text p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

.tours-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.tours-stat {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}

.tours-stat-value {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  color: #070707;
  line-height: 1.1;
}

.tours-stat-label {
  font-size: 13px;
  color: #6a6a6a;
  margin-top: 4px;
  display: block;
  line-height: 1.35;
}

.tours-reasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tours-reason {
  background: #fafafa;
  border: 1px solid #efefef;
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.tours-reason:hover {
  transform: translateY(-2px);
  border-color: gold;
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.25);
}

.tours-reason-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: gold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.tours-reason-icon svg {
  width: 24px;
  height: 24px;
  stroke: #070707;
  fill: none;
}

.tours-reason h3 {
  font-size: clamp(17px, 1.7vw, 19px);
  font-weight: 500;
  color: #070707;
  line-height: 1.25;
}

.tours-reason p {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1025px) {
  .tours-intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .tours-reasons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tours-intro {
    padding-top: 56px;
  }
  .tours-intro-text h2 {
    text-align: center;
  }
  .tours-stats {
    grid-template-columns: 1fr;
  }
}

/* ========== TOURS LIST ========== */
.tours-list-section {
  background: #f5f5f5;
}

.tours-list-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin-inline: auto;
}

.tours-list-header h2 {
  text-align: center;
}

.tours-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Tour card */
.tour-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  border: 1px solid #ececec;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.tour-card:hover {
  box-shadow: 0 24px 60px -32px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.tour-card-visual {
  color: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background-color: #1a1a2e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

/* Dark scrim — keeps white tag, h3, route chips and meta legible
   regardless of how light or busy the photo is. */
.tour-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(7, 7, 7, 0.78) 0%,
      rgba(7, 7, 7, 0.55) 45%,
      rgba(7, 7, 7, 0.35) 100%);
  pointer-events: none;
  z-index: 0;
}

.tour-card-visual::after {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.tour-card.variant-a .tour-card-visual {
  background-image: url("../assets/picture/tours/tour-classic-greatwall.jpg");
}
.tour-card.variant-b .tour-card-visual {
  background-image: url("../assets/picture/tours/tour-zhangjiajie-avatar.jpg");
}
.tour-card.variant-c .tour-card-visual {
  background-image: url("../assets/picture/tours/tour-chengdu-leshan.jpg");
}
.tour-card.variant-d .tour-card-visual {
  background-image: url("../assets/picture/tours/tour-sanya-beach.jpg");
}
.tour-card.variant-e .tour-card-visual {
  background-image: url("../assets/picture/tours/tour-guilin-river.jpg");
}

.tour-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.15);
  color: gold;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  width: fit-content;
  border: 1px solid rgba(255, 215, 0, 0.3);
  position: relative;
  z-index: 1;
}

.tour-card-route {
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

.tour-card-route h3 {
  color: #fff;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 12px;
}

.tour-route-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  align-items: center;
}

.tour-route-city {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.tour-route-arrow {
  color: gold;
  font-size: 14px;
  opacity: 0.8;
}

.tour-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.tour-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tour-meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.tour-meta-value {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

/* Tour body */
.tour-card-body {
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tour-card-body p.tour-lead {
  color: #4a4a4a;
  margin: 0;
  line-height: 1.6;
}

.tour-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0;
}

.tour-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #2a2a2a;
}

.tour-highlights li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: gold;
  margin-top: 8px;
  flex-shrink: 0;
}

/* Pricing block */
.tour-pricing {
  margin-top: 6px;
  background: #fafafa;
  border: 1px solid #ededed;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tour-pricing-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.tour-pricing-head .tour-from {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6a6a6a;
}

.tour-pricing-head .tour-price {
  font-size: clamp(26px, 2.6vw, 32px);
  font-weight: 600;
  color: #070707;
  line-height: 1;
}

.tour-pricing-head .tour-price span {
  font-size: 16px;
  font-weight: 400;
  color: #5a5a5a;
  margin-left: 4px;
}

.tour-pricing-note {
  font-size: 12px;
  color: #6a6a6a;
  line-height: 1.45;
}

.tour-price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 4px;
}

.tour-price-cell {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
  font-size: 12px;
  line-height: 1.3;
  color: #2a2a2a;
}

.tour-price-cell strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #070707;
  margin-top: 2px;
}

.tour-card-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.tour-card-cta .btn {
  height: 48px;
}

@media (max-width: 1025px) {
  .tour-card {
    grid-template-columns: 1fr;
  }
  .tour-card-visual {
    min-height: 260px;
  }
  .tour-price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .tours-list-header {
    margin-bottom: 28px;
  }
  .tour-card-visual {
    padding: 24px 20px;
    min-height: 220px;
  }
  .tour-card-body {
    padding: 24px 20px;
  }
  .tour-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tour-pricing-head .tour-price {
    font-size: 26px;
  }
}

/* ========== ADVANTAGES SECTION ========== */
.tours-advantages-section {
  background: #fff;
}

.tours-advantages-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}

.tours-advantages-header p {
  color: #5a5a5a;
}

.tours-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.advantage-card {
  background: #fafafa;
  border: 1px solid #ededed;
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-2px);
  border-color: gold;
}

.advantage-num {
  font-size: 13px;
  font-weight: 600;
  color: gold;
  letter-spacing: 0.08em;
}

.advantage-card h3 {
  font-size: clamp(17px, 1.7vw, 19px);
  font-weight: 500;
  line-height: 1.25;
}

.advantage-card p {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1025px) {
  .tours-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tours-advantages-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .tours-advantages-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== DESTINATIONS SECTION ========== */
.tours-dest-section {
  background: #f5f5f5;
}

.tours-dest-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 760px;
  margin-inline: auto;
}

.tours-dest-header h2 {
  text-align: center;
}

.tours-dest-header p {
  color: #5a5a5a;
  margin-top: 12px;
}

.tours-dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.dest-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #ececec;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.25);
}

.dest-card-cover {
  height: 160px;
  background-color: #1a1a2e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-card-cover {
  transform: scale(1.04);
}

/* Subtle bottom-up gradient so the body text edge has a soft transition
   when the photo and the white card meet. */
.dest-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.dest-card.theme-1 .dest-card-cover { background-image: url("../assets/picture/tours/dest-beijing.jpg"); }
.dest-card.theme-2 .dest-card-cover { background-image: url("../assets/picture/tours/dest-xian.jpg"); }
.dest-card.theme-3 .dest-card-cover { background-image: url("../assets/picture/tours/dest-shanghai.jpg"); }
.dest-card.theme-4 .dest-card-cover { background-image: url("../assets/picture/tours/dest-chengdu.jpg"); }
.dest-card.theme-5 .dest-card-cover { background-image: url("../assets/picture/tours/dest-zhangjiajie.jpg"); }
.dest-card.theme-6 .dest-card-cover { background-image: url("../assets/picture/tours/dest-sanya.jpg"); }
.dest-card.theme-7 .dest-card-cover { background-image: url("../assets/picture/tours/dest-guilin.jpg"); }
.dest-card.theme-8 .dest-card-cover { background-image: url("../assets/picture/tours/dest-fenghuang.jpg"); }

.dest-card-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dest-card-body h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.dest-card-body p {
  font-size: 13px;
  color: #5a5a5a;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1025px) {
  .tours-dest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .tours-dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-card-cover {
    height: 130px;
  }
}

/* ========== INCLUDED / EXCLUDED ========== */
.tours-included-section {
  background: #fff;
}

.tours-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.included-block {
  border-radius: 16px;
  padding: 28px 28px;
  border: 1px solid #ececec;
  background: #fafafa;
}

.included-block.is-included {
  border-color: rgba(255, 215, 0, 0.4);
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.02));
}

.included-block h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  margin-bottom: 16px;
  font-weight: 500;
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #2a2a2a;
}

.included-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 12px;
  font-weight: 700;
}

.included-icon.yes {
  background: gold;
  color: #070707;
}

.included-icon.no {
  background: #efefef;
  color: #888;
}

.tours-included-section .section-inner > h2 {
  text-align: center;
}

@media (max-width: 768px) {
  .tours-included-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}

/* ========== TOUR PAGE FAQ helper ========== */
.tours-faq-section {
  background: #f5f5f5;
}

.tours-faq-section .accordion {
  max-width: 920px;
  margin: 0 auto;
}
