/* Home Page Styles */

/* ===== Hero ===== */
.section-hero {
  position: relative;
  margin-bottom: 0;
}

.section-hero .hero-bg {
  position: relative;
  min-height: 1000px;
  background: url('../images/index-banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 10;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--color-light);
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-content p {
  font-size: 0.95rem;
  color: var(--color-light);
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
}

.hero-btn:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 0, 0, 0.2);
  border-radius: 4px;
  padding: 2px;
}

.hero-btn img {
  width: 100%;
  height: auto;
  max-width: 200px;
}

.hero-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 5;
}

.hero-decoration img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  object-position: center bottom;
}

/* 移动端 Hero 样式 */
@media (max-width: 992px) {
  .section-hero .hero-bg {
    min-height: 800px;
  }
  
  .hero-content h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-size: 0.85rem;
    margin-bottom: 30px;
  }
  
  .hero-btn img {
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .section-hero .hero-bg {
    min-height: 550px;
    background-position: center;
  }
  
  .hero-actions {
    gap: 15px;
  }
  
  .hero-btn img {
    max-width: 160px;
  }
}

@media (max-width: 576px) {
  .section-hero .hero-bg {
    min-height: 500px;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
  }
  
  .hero-content p {
    font-size: 0.8rem;
    margin-bottom: 25px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-btn img {
    max-width: 140px;
  }
  
  .hero-decoration img {
    min-height: 60px;
  }
}

@media (max-width: 375px) {
  .section-hero .hero-bg {
    min-height: 450px;
  }
  
  .hero-content h1 {
    font-size: 1.2rem;
  }
  
  .hero-btn img {
    max-width: 130px;
  }
  
  .hero-decoration img {
    min-height: 50px;
  }
}


/* ===== Theme ===== */
.section-theme {
  padding: 4rem 0;
  background: #f5f6f8;
}

.theme-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

.theme-card img {
  width: 100%;
  display: block;
}

.theme-card h3 {
  font-size: 1.25rem;
  padding: 1rem;
}

/* ===== Destination ===== */
.section-destination {
  padding: 4rem 0;
}

.destination-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
}

.destination-card img {
  width: 100%;
  display: block;
}

.destination-card span {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: .75rem;
  background: rgba(0,0,0,.6);
  color: #fff;
  text-align: center;
  font-size: 1rem;
}

/* ===== Team Introduction ===== */
.section-team {
  padding: 4rem 0;
}

.section-team .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-content {
  display: flex;
  align-items: center;
  gap: 0;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.team-image {
  flex: 1;
  max-width: 50%;
  max-height: 580px;
  height: auto;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-text {
  flex: 1;
  max-width: 50%;
  max-height: 580px;
  padding: 4rem 3rem;
  background-color: #7d2e21;
  color: #fff;
}

.team-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.4;
}

.team-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #fff;
  opacity: 0.95;
}

.team-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background-color: #d7b452;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.team-btn:hover {
  background-color: #c4a041;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Team Introduction Responsive Design */
@media (max-width: 992px) {
  .section-team {
    padding: 3rem 0;
  }
  
  .team-content {
    flex-direction: column;
  }
  
  .team-image,
  .team-text {
    max-width: 100%;
    width: 100%;
  }
  
  .team-text {
    padding: 3rem 2rem;
  }
  
  .team-text h2 {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    margin-bottom: 1.25rem;
  }
  
  .team-text p {
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
  }
  
  .team-btn {
    margin-top: 1.25rem;
    padding: 0.65rem 1.75rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .section-team {
    padding: 2.5rem 0;
  }
  
  .team-text {
    padding: 2.5rem 1.5rem;
  }
  
  .team-text h2 {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    margin-bottom: 1.15rem;
  }
  
  .team-text p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }
  
  .team-btn {
    margin-top: 1.15rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .section-team {
    padding: 2rem 0;
  }
  
  .team-text {
    padding: 2rem 1.25rem;
  }
  
  .team-text h2 {
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    margin-bottom: 1rem;
  }
  
  .team-text p {
    font-size: 0.8rem;
    margin-bottom: 0.7rem;
    line-height: 1.45;
  }
  
  .team-btn {
    margin-top: 1rem;
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 375px) {
  .team-text {
    padding: 1.75rem 1rem;
  }
  
  .team-text h2 {
    font-size: 1.2rem;
  }
  
  .team-text p {
    font-size: 0.75rem;
    margin-bottom: 0.65rem;
  }
  
  .team-btn {
    margin-top: 0.9rem;
    padding: 0.5rem 1.15rem;
    font-size: 0.8rem;
  }
}

/* ===== Routes Section ===== */
.section-routes {
  position: relative;
  overflow: hidden;
}

.route-top {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.route-top img {
  width: 100%;
  height: auto;
  display: block;
}

.route-content {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}

.route-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(245, 241, 230, 0.85);
  z-index: 1;
}

.route-content .container {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: none;
}

.route-cards {
  display: flex;
  gap: 0px;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0px;
  box-sizing: border-box;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.route-cards::-webkit-scrollbar {
  display: none;
}

.route-card {
  flex: 0 0 16.6%;
  width: 16.6%;
  height: 900px;
  perspective: 1000px;
}

.route-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.route-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.route-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
  color: #fff;
  text-align: center;
}

.route-card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  text-align: center;
}

.route-card-content p {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  text-align: center;
  opacity: 0.9;
}

.route-btn {
  display: block;
  width: 100%;
  max-width: 120px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.route-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section-routes {
  position: relative;
  overflow: hidden;
}

.route-rooftop {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: -240px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 10;
}

.route-rooftop img {
  width: 902.656005859375px;
  height: 240.00003051757812px;
  display: block;
  max-width: 100%;
  height: auto;
}

/* Routes Section Responsive Design */
@media (max-width: 1400px) {
  .route-card {
    flex: 0 0 320px;
    width: 320px;
    height: 900px;
  }
}

@media (max-width: 1200px) {
  .route-content {
    
  }
  
  .route-card {
    flex: 0 0 320px;
    width: 320px;
    height: 900px;
  }
}

@media (max-width: 992px) {
  .route-content {
    
  }
  
  .route-card {
    flex: 0 0 320px;
    width: 320px;
    height: 900px;
  }
  
  .route-card-content h3 {
    font-size: 1rem;
  }
  
  .route-card-content p {
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
  }
  
  .route-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .route-content {
    
  }
  
  .route-cards {
    gap: 0;
    padding: 0;
  }
  
  .route-card {
    flex: 0 0 280px;
    width: 280px;
    height: auto;
  }
  
  .route-card-content {
    padding: 1.75rem 1.25rem;
    box-shadow: none;
    height: 600px;
  }
  
  .route-card-content h3 {
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
  }
  
  .route-card-content p {
    font-size: 0.75rem;
    margin-bottom: 1.15rem;
  }
  
  .route-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .route-rooftop {
    margin-top: -200px;
  }
}

@media (max-width: 576px) {
  .route-content {
  
  }
  
  .route-cards {
    gap: 0;
    padding: 0;
  }
  
  .route-card {
    flex: 0 0 250px;
    width: 250px;
    height: auto;
  }
  
  .route-card-content {
    padding: 1.5rem 1rem;
    box-shadow: none;
    height: 600px;
  }
  
  .route-card-content h3 {
    font-size: 0.9rem;
    margin-bottom: 0.55rem;
  }
  
  .route-card-content p {
    font-size: 0.7rem;
    margin-bottom: 1rem;
  }
  
  .route-btn {
    padding: 0.35rem 0.7rem;
    font-size: 0.7rem;
    max-width: 100px;
  }
  
  .route-rooftop {
    margin-top: -180px;
  }
}

@media (max-width: 375px) {
  .route-content {
  
  }
  
  .route-cards {
    gap: 0;
    padding: 0;
  }
  
  .route-card {
    flex: 0 0 220px;
    width: 220px;
    height: auto;
  }
  
  .route-card-content {
    padding: 1.25rem 0.75rem;
    box-shadow: none;
    height: 600px;
  }
  
  .route-card-content h3 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  
  .route-card-content p {
    font-size: 0.65rem;
    margin-bottom: 0.85rem;
  }
  
  .route-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
    max-width: 90px;
  }
  
  .route-rooftop {
    margin-top: -150px;
  }
}

/* ===== Customer Service Entrance ===== */
.section-customer-service {
  position: relative;
  width: 100%;
  height: 293px;
  background-color: #853325;
  overflow: hidden;
}

.customer-service-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/customer-service-bg-texture.png');
  background-repeat: repeat-x;
  background-position: top left;
  background-size: contain;
  background-blend-mode: multiply;
  opacity: 0.2;
  z-index: 1;
}

.section-customer-service .container {
  position: relative;
  z-index: 2;
  max-width: 1920px;
  padding: 40px 360px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customer-service-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.customer-service-avatar-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.customer-service-avatar {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}

.customer-service-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.customer-service-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.3;
}

.customer-service-desc {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  margin-bottom: 1.5rem;
  color: #fff;
  opacity: 0.9;
  line-height: 1.5;
  max-width: 400px;
}

.customer-service-btn {
  display: inline-block;
  width: 200px;
  height: 56px;
  padding: 4px;
  border: 1px solid #E8B256;
  background-color: transparent;
  color: #E8B256;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  line-height: 46px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.customer-service-btn:hover {
  background-color: #E8B256;
  color: #853325;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 178, 86, 0.3);
}

/* Customer Service Entrance Responsive Design */
@media (max-width: 1400px) {
  .section-customer-service .container {
    padding: 40px 300px;
  }

  .customer-service-content {
    gap: 30px;
  }
}

@media (max-width: 1200px) {
  .section-customer-service .container {
    padding: 40px 250px;
  }

  .customer-service-content {
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .section-customer-service {
    height: auto;
    min-height: 250px;
  }

  .section-customer-service .container {
    padding: 35px 200px;
  }

  .customer-service-content {
    flex-direction: column;
    gap: 20px;
  }

  .customer-service-avatar {
    max-width: 80%;
  }

  .customer-service-title {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
  }

  .customer-service-desc {
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    max-width: 350px;
  }

  .customer-service-btn {
    width: 180px;
    height: 50px;
    line-height: 40px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .section-customer-service {
    height: auto;
    min-height: 220px;
  }

  .section-customer-service .container {
    padding: 30px 150px;
  }

  .customer-service-content {
    gap: 18px;
  }

  .customer-service-avatar {
    max-width: 70%;
  }

  .customer-service-title {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    margin-bottom: 0.85rem;
  }

  .customer-service-desc {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    margin-bottom: 1.25rem;
    max-width: 300px;
  }

  .customer-service-btn {
    width: 170px;
    height: 48px;
    line-height: 38px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .section-customer-service {
    height: auto;
    min-height: 200px;
  }

  .section-customer-service .container {
    padding: 25px 100px;
  }

  .customer-service-content {
    gap: 15px;
  }

  .customer-service-avatar {
    max-width: 60%;
  }

  .customer-service-title {
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    margin-bottom: 0.75rem;
  }

  .customer-service-desc {
    font-size: clamp(0.75rem, 0.95vw, 0.85rem);
    margin-bottom: 1.15rem;
    max-width: 280px;
  }

  .customer-service-btn {
    width: 160px;
    height: 46px;
    line-height: 36px;
    font-size: 0.85rem;
  }
}

@media (max-width: 375px) {
  .section-customer-service {
    height: auto;
    min-height: 180px;
  }

  .section-customer-service .container {
    padding: 20px 50px;
  }

  .customer-service-content {
    gap: 12px;
  }

  .customer-service-avatar {
    max-width: 50%;
  }

  .customer-service-title {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    margin-bottom: 0.65rem;
  }

  .customer-service-desc {
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    margin-bottom: 1rem;
    max-width: 250px;
  }

  .customer-service-btn {
    width: 150px;
    height: 44px;
    line-height: 34px;
    font-size: 0.8rem;
  }
}

/* ===== Popular Itineraries ===== */
.section-popular-itineraries {
  position: relative;
  overflow: hidden;
}

.section-popular-itineraries .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
}

.popular-itineraries-content {
  width: 100%;
}

.popular-itineraries-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #994D51;;
  text-align: center;
  margin: 3rem 0;
  line-height: 1.3;
}

.popular-itineraries-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
}

.itinerary-card {
  width: 100%;
}

.itinerary-card-inner {
  border: 1px solid #E8B256;
  padding: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.itinerary-card-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.itinerary-card-image {
  width: 100%;
  overflow: hidden;
}

.itinerary-card-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.itinerary-card-inner:hover .itinerary-card-img {
  transform: scale(1.05);
}

.itinerary-card-info {
  padding: 1.5rem;
  text-align: center;
}

.itinerary-card-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  height: 3rem;
}

.itinerary-card-info p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.itinerary-card-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #7D2E21;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.itinerary-card-btn:hover {
  background-color: #d7a045;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(232, 178, 86, 0.3);
}

.popular-itineraries-rooftop {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 10;
  padding-top: 26px;
}

.popular-itineraries-rooftop img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Popular Itineraries Responsive Design */
@media (max-width: 1200px) {
  .popular-itineraries-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .popular-itineraries-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin: 2.5rem 0;
  }

  .popular-itineraries-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .itinerary-card-info {
    padding: 1.25rem;
  }

  .itinerary-card-info h3 {
    font-size: 1rem;
    height: 2.8rem;
  }

  .itinerary-card-info p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .itinerary-card-btn {
    padding: 0.45rem 1.25rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .popular-itineraries-title {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    margin: 2rem 0;
  }

  .popular-itineraries-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .itinerary-card-info {
    padding: 1rem;
  }

  .itinerary-card-info h3 {
    font-size: 0.95rem;
    height: 2.6rem;
  }

  .itinerary-card-info p {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .itinerary-card-btn {
    padding: 0.4rem 1.15rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .popular-itineraries-title {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    margin: 1.5rem 0;
  }

  .popular-itineraries-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .itinerary-card-info {
    padding: 1rem;
  }

  .itinerary-card-info h3 {
    font-size: 0.9rem;
    height: 2.4rem;
  }

  .itinerary-card-info p {
    font-size: 0.8rem;
    margin-bottom: 0.7rem;
  }

  .itinerary-card-btn {
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 375px) {
  .popular-itineraries-title {
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    margin: 1.25rem 0;
  }

  .itinerary-card-info h3 {
    font-size: 0.85rem;
    height: 2.2rem;
  }

  .itinerary-card-info p {
    font-size: 0.75rem;
  }

  .itinerary-card-btn {
    padding: 0.3rem 0.9rem;
    font-size: 0.7rem;
  }
}

/* ===== China Travel ===== */
.section-china-travel {
  position: relative;
  width: 100%;
  height: 541px;
  background-color: #853325;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.china-travel-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/index-wsmxzwm-bg.png');
  background-repeat: repeat;
  background-position: top left;
  opacity: 0.2;
  z-index: 1;
}

.section-china-travel .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  padding: 40px 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.china-travel-content {
  width: 100%;
  text-align: center;
}

.china-travel-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.3;
}

.china-travel-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  width: 100%;
}

.travel-item {
  width: 100%;
  position: relative;
  border-right: 1px solid #b4634a;
}

.travel-item:last-child {
  border-right: none;
}

.travel-item-inner {
  background: transparent;
  border: none;
  overflow: visible;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.travel-item-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.travel-item-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: #D7B452;
  text-align: center;
  line-height: 1.2;
}

.travel-item-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.travel-item-info {
  padding: 0;
  text-align: center;
  transform: rotate(180deg);
  writing-mode: vertical-rl;

}

.travel-item-info p {
  font-size: 0.9rem;
  color: #fff;
  margin: 0;
  line-height: 1.5;
  opacity: 0.9;
}

/* China Travel Responsive Design */
@media (max-width: 1400px) {
  .section-china-travel .container {
    padding: 40px 40px;
  }
  
  .travel-item-circle {
    width: 100px;
    height: 100px;
  }
  
  .travel-item-icon {
    font-size: 1.25rem;
  }
}

@media (max-width: 1200px) {
  .section-china-travel {
    height: auto;
    min-height: 500px;
    padding: 60px 0;
  }
  
  .china-travel-list {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .travel-item {
    flex: 1;
    border-right: none;
    margin-bottom: 30px;
    border-right: 1px solid #b4634a;
  }
  
  .travel-item-info {
    transform: rotate(180deg);
    writing-mode: vertical-rl;
  }
}

@media (max-width: 992px) {
  .section-china-travel {
    height: auto;
    min-height: 600px;
    padding: 50px 0;
  }
  
  .section-china-travel .container {
    padding: 35px 30px;
  }
  
  .china-travel-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 2.5rem;
  }
  
  .travel-item {
    border-right: 1px solid #b4634a;
  }
  
  .travel-item-circle {
    width: 90px;
    height: 90px;
  }
  
  .travel-item-icon {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .section-china-travel {
    height: auto;
    min-height: 800px;
    padding: 40px 0;
  }
  
  .section-china-travel .container {
    padding: 30px 20px;
  }
  
  .china-travel-title {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    margin-bottom: 2rem;
  }
  
  .travel-item {
    width: 100%;
    border-right: 1px solid #b4634a;
  }
  
  .travel-item-circle {
    width: 80px;
    height: 80px;
  }
  
  .travel-item-icon {
    font-size: 1rem;
  }
  
  .travel-item-info p {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .section-china-travel {
    height: auto;
    min-height: 900px;
    padding: 30px 0;
  }
  
  .section-china-travel .container {
    padding: 25px 15px;
  }
  
  .china-travel-title {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    margin-bottom: 1.5rem;
  }
  
  .travel-item-circle {
    width: 70px;
    height: 70px;
  }
  
  .travel-item-icon {
    font-size: 0.9rem;
  }
  
  .travel-item-info p {
    font-size: 0.8rem;
  }
}

@media (max-width: 375px) {
  .section-china-travel {
    height: auto;
    min-height: 1000px;
    padding: 20px 0;
  }
  
  .travel-item-circle {
    width: 60px;
    height: 60px;
  }
  
  .travel-item-icon {
    font-size: 0.85rem;
  }
}

/* ===== Focus Picture ===== */
.section-focus-picture {
  position: relative;
  padding: 0;
  margin: 0;
  background-color: #f5f1e6;
  width: 100%;
}

.full-width-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===== News Section ===== */
.section-news {
  position: relative;
  padding: 60px 0;
  text-align: center;
}

.news-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #7d2e21;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.news-title::before {
  content: '•';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: #7d2e21;
  font-size: 1.5rem;
}

.news-title::after {
  content: '•';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: #7d2e21;
  font-size: 1.5rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.news-item {
  padding: 15px;
  border: 1px solid #6D3538;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: left;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-image {
  margin-bottom: 15px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 0 5px;
}

.news-date {
  font-size: 0.85rem;
  color: #7d2e21;
  margin-bottom: 10px;
  display: block;
}

.news-item-title {
  font-size: 1rem;
  font-weight: 500;
  color: #7d2e21;
  line-height: 1.4;
  margin: 0;
}

.news-button-container {
  margin-top: 30px;
}

.news-button {
  background-color: #7d2e21;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-button:hover {
  background-color: #5a1e15;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive styles */
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .news-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
  }
}

@media (max-width: 768px) {
  .section-news {
    padding: 40px 0;
  }
  
  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .news-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 30px;
  }
  
  .news-button {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .news-title {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 25px;
  }
  
  .news-title::before,
  .news-title::after {
    display: none;
  }
  
  .news-button {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

.focus-picture-content {
  text-align: center;
}

.focus-picture-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #7d2e21;
  margin-bottom: 3rem;
  line-height: 1.3;
  position: relative;
}

/* City Navigation */
.focus-picture-nav {
  margin-bottom: 4rem;
  position: relative;
}

.nav-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 0;
  background-image: url('../images/index-focus-picture-line.png');
  background-size: 100% 124px;
  background-position: top center;
  background-repeat: no-repeat;
  height: 124px;
  width: 100%;
}

.city-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Different top positions for each city marker to float on the dashed line */
  transform: translateX(-50%);
}

/* Individual top positions for each city marker */
.city-marker:nth-child(1) { left: 10%; top: 20px; }
.city-marker:nth-child(2) { left: 20%; top: 50px; }
.city-marker:nth-child(3) { left: 30%; top: 30px; }
.city-marker:nth-child(4) { left: 40%; top: 70px; }
.city-marker:nth-child(5) { left: 50%; top: 40px; }
.city-marker:nth-child(6) { left: 60%; top: 60px; }
.city-marker:nth-child(7) { left: 75%; top: 80px; }
.city-marker:nth-child(8) { left: 88%; top: 50px; }

.city-marker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background-color: #7d2e21;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.city-marker.active::before {
  width: 24px;
  height: 24px;
  background-color: transparent;
  background-image: url('../images/index-focus-picture-activate.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.city-name {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #7d2e21;
  font-weight: 500;
}

/* Focus Pictures */
.focus-picture-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.focus-picture-item {
  flex: 0 1 300px;
  max-width: 300px;
  opacity: 0.7;
  transition: all 0.3s ease;
  position: relative;
  background-image: url('../images/index-focus-picture-BG.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10px;
}

.focus-picture-item.active {
  opacity: 1;
  transform: scale(1.05);
}

.focus-picture-inner {
  position: relative;
  border: 12px solid #7d2e21;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 15px;
  background-color: #fff;
}

.focus-picture-inner::before,
.focus-picture-inner::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid #7d2e21;
  border-radius: 50%;
  background-color: #fff;
}

.focus-picture-inner::before {
  top: -20px;
  left: -20px;
  border-right: none;
  border-bottom: none;
}

.focus-picture-inner::after {
  bottom: -20px;
  right: -20px;
  border-left: none;
  border-top: none;
}

.focus-picture-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.focus-picture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.focus-picture-item:hover .focus-picture-img {
  transform: scale(1.05);
}

/* Focus Picture Responsive Design */
@media (max-width: 1400px) {
  .focus-picture-item {
    flex: 0 1 280px;
    max-width: 280px;
  }
  
  .focus-picture-img-wrapper {
    height: 180px;
  }
}

@media (max-width: 1200px) {
  .section-focus-picture {
    padding: 50px 0;
  }
  
  .focus-picture-title {
    margin-bottom: 2.5rem;
  }
  
  .focus-picture-nav {
    margin-bottom: 3.5rem;
  }
  
  .focus-picture-list {
    gap: 25px;
  }
  
  .focus-picture-item {
    flex: 0 1 250px;
    max-width: 250px;
  }
  
  .focus-picture-img-wrapper {
    height: 160px;
  }
  
  .city-name {
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .section-focus-picture {
    padding: 40px 0;
  }
  
  .focus-picture-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 2rem;
  }
  
  .focus-picture-nav {
    margin-bottom: 3rem;
  }
  
  .focus-picture-list {
    gap: 20px;
  }
  
  .focus-picture-item {
    flex: 0 1 45%;
    max-width: 45%;
  }
  
  .focus-picture-img-wrapper {
    height: 150px;
  }
  
  .nav-line {
    padding: 0 10px;
  }
  
  .city-name {
    font-size: 0.8rem;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .section-focus-picture {
    padding: 30px 0;
  }
  
  .focus-picture-title {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    margin-bottom: 1.5rem;
  }
  
  .focus-picture-nav {
    margin-bottom: 2.5rem;
  }
  
  .nav-line {
    background-size: contain;
    height: 20px;
  }
  
  .city-marker::before {
    width: 8px;
    height: 8px;
  }
  
  .city-marker.active::before {
    width: 16px;
    height: 16px;
  }
  
  .city-name {
    font-size: 0.75rem;
    margin-top: 8px;
  }
  
  .focus-picture-list {
    gap: 15px;
  }
  
  .focus-picture-item {
    flex: 0 1 100%;
    max-width: 100%;
  }
  
  .focus-picture-inner {
    border-width: 8px;
    padding: 10px;
  }
  
  .focus-picture-inner::before,
  .focus-picture-inner::after {
    width: 20px;
    height: 20px;
  }
  
  .focus-picture-inner::before {
    top: -15px;
    left: -15px;
  }
  
  .focus-picture-inner::after {
    bottom: -15px;
    right: -15px;
  }
  
  .focus-picture-img-wrapper {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .section-focus-picture {
    padding: 25px 0;
  }
  
  .focus-picture-title {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    margin-bottom: 1.25rem;
  }
  
  .focus-picture-nav {
    margin-bottom: 2rem;
  }
  
  .nav-line {
    padding: 0 5px;
  }
  
  .city-name {
    font-size: 0.7rem;
    margin-top: 5px;
  }
  
  .focus-picture-img-wrapper {
    height: 150px;
  }
}

@media (max-width: 375px) {
  .section-focus-picture {
    padding: 20px 0;
  }
  
  .focus-picture-title {
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    margin-bottom: 1rem;
  }
  
  .focus-picture-nav {
    margin-bottom: 1.5rem;
  }
  
  .city-marker::before {
    width: 6px;
    height: 6px;
  }
  
  .city-marker.active::before {
    width: 12px;
    height: 12px;
  }
  
  .city-name {
    font-size: 0.65rem;
  }
  
  .focus-picture-img-wrapper {
    height: 120px;
  }
}

/* Article Detail Styles */

/* Header styles */
.card-header {
  background-color: var(--color-primary);
  color: var(--color-light);
}

/* Badge styles */
.badge {
  background-color: var(--color-primary);
  color: var(--color-light);
}

/* List group styles */
.list-group-item a .badge {
  background-color: var(--color-primary);
  color: var(--color-light);
}

/* Button styles */
.btn {
  background-color: var(--color-primary);
  color: var(--color-light);
  border: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--color-accent);
  color: var(--color-light);
}

/* Heading styles */
h1 {
  color: var(--color-primary);
}

/* Author link styles */
.author a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.author a:hover {
  color: var(--color-accent);
}

/* Article content styles */
.article-content {
  line-height: 1.7;
  color: var(--color-dark);
}

.article-content h2 {
  color: var(--color-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

/* Social share buttons */
.social-share .btn {
  margin-right: 0.5rem;
}

/* Related articles */
.related-articles .card {
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-articles .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Comment section */
.comment-list .comment {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.comment-list .comment:last-child {
  border-bottom: none;
}

/* Form styles */
.form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(125, 46, 33, 0.25);
  outline: none;
}

/* Link styles */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

/* Article List Styles */

/* Article styles */
article {
  border-bottom-color: var(--color-primary);
}

/* Header styles */
.card-header {
  background-color: var(--color-primary);
  color: var(--color-light);
}

/* Badge styles */
.badge {
  background-color: var(--color-primary);
  color: var(--color-light);
}

/* List group styles */
.list-group-item a .badge {
  background-color: var(--color-primary);
  color: var(--color-light);
}




/* Button styles */
.btn {
  background-color: var(--color-primary);
  color: var(--color-light);
  border: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--color-accent);
  color: var(--color-light);
}

/* Article meta styles */
.post-meta .badge {
  background-color: var(--color-primary);
  color: var(--color-light);
}

/* Link styles */
article a {
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

article a:hover {
  color: var(--color-primary);
}

/* Contact Styles */

/* Add your contact specific styles here */
        /* normalize.css v3.0.2 | MIT License | git.io/normalize */
        html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0}mark{background:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
        /* Base CSS */
        body {color: #444;font-size: 16px;line-height: 25px;}textarea {resize:none;}.breadcrumb {background: #fff;border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #ccc;margin-bottom: 0px;}#toTop {position: fixed;width: 30px;height: 30px;text-align: center;top: 78%;right: 10px;background-color: #969696;text-align: center;display: none;cursor: pointer;border-radius: 50%;padding-top: 10px;z-index: 9999;}#toTop img {width: 15px;vertical-align:top;}
        /* Pretty Checkbox CSS */
        .pretty * {box-sizing: border-box;}
        .pretty input:not([type='checkbox']):not([type='radio']) {display: none;}
        .pretty {position: relative;display: inline-block;margin-right: 1em;white-space: nowrap;line-height: 1;}
        .pretty input {position: absolute;left: 0;top: 0;min-width: 1em;width: 100%;height: 100%;z-index: 2;opacity: 0;margin: 0;padding: 0;cursor: pointer;}
        .pretty .state label {position: initial;display: inline-block;font-weight: normal;margin: 0;text-indent: 1.5em;min-width: calc(1em + 2px);}
        .pretty .state label:before,.pretty .state label:after {content: '';width: calc(1em + 2px);height: calc(1em + 2px);display: block;box-sizing: border-box;border-radius: 0;border: 1px solid #bdc3c7;z-index: 0;position: absolute;left: 0;top: calc((0% - (100% - 1em)) - 8%);background-color: transparent;}
        .pretty .state label:before {background-color: transparent;}
        .pretty .state label:after {background-color: transparent;}
        .pretty .state .icon {position: absolute;left: 0;top: calc((0% - (100% - 1em)) - 8%);width: calc(1em + 2px);height: calc(1em + 2px);line-height: calc(1em + 2px);text-align: center;color: transparent;z-index: 1;opacity: 0;transition: all 0.3s ease;}
        .pretty.p-smooth label:before,.pretty.p-smooth label:after,.pretty.p-smooth .icon,.pretty.p-smooth .svg {transition: all 0.3s ease;}
        .pretty.p-icon input:checked ~ .state .icon {opacity: 1;color: #fff;}
        .pretty input:checked ~ .state.p-success label:before {background-color: #b00000;border-color: #b00000;}
        .pretty input:checked ~ .state.p-success label:after {background-color: transparent !important;}
        .mdi-check:before {content: "\2713";}
        /* Book 2.0 CSS */
        .book-bg {background: none}.l-tourbook-top img {width: 100%;}.book-item {background: none;border-radius: 5px;overflow: hidden;margin-bottom: 15px;padding-bottom: 25px;}.book-item h2 {margin-top: 0;background: #434343;color: #fff;padding-left: 5px;height: 40px;line-height: 40px;font-size: 24px;}.book-item .tour-info,.book-item .user-info {padding-top: 5px;padding-left: 15px;padding-right: 15px;padding-bottom: 15px;}.ss-top-nav .breadcrumb {background: transparent;border-bottom: 0;margin-bottom: 10px;}.travel-info {padding-left: 15px;padding-right: 15px;overflow: hidden;}.travel-info .travel-item {margin: 8px auto;overflow: hidden;}.travel-info .travel-item h4 {padding-top: 10px;padding-bottom: 8px;}.travel-info .add, .travel-info .min {vertical-align: middle;-moz-user-select: none;-khtml-user-select: none;user-select: none;display: inline-block;text-align: center;cursor: pointer;width: 25px !important;height: 25px !important;border: 1px solid #CCCCCC;background: #434343;font-size: 20px;line-height: 22px;font-weight: bold;color: #fff;}.travel-info .text_box {vertical-align: middle;text-align: center;height: 25px;width: 30px !important;border: 1px solid #CCCCCC;margin: 0;padding: 0;border-radius: 0;box-shadow: none;}.submit_button_red {color: #fff;background: #eb6100;border-radius: 8px;padding: 3px 15px;font-size: 1.8em;text-align: center;display: block;margin:0 auto;margin-top: 30px;border: 0;}.contact-us .book-item h2 {text-align: center;height: auto;overflow: hidden;}
        /* NProgress CSS */
        #nprogress {pointer-events: none;}#nprogress .bar {background: #29d;position: fixed;z-index: 1031;top: 0;left: 0;width: 100%;height: 2px;}#nprogress .peg {display: block;position: absolute;right: 0px;width: 100px;height: 100%;box-shadow: 0 0 10px #29d, 0 0 5px #29d;opacity: 1.0;-webkit-transform: rotate(3deg) translate(0px, -4px);-ms-transform: rotate(3deg) translate(0px, -4px);transform: rotate(3deg) translate(0px, -4px);}
        /* jQuery UI CSS for Datepicker */
        .ui-datepicker {background: #fff;border: 1px solid #ccc;border-radius: 4px;box-shadow: 0 2px 4px rgba(0,0,0,.15);font-family: Arial, sans-serif;}
        .ui-datepicker-header {background: #f5f5f5;border-bottom: 1px solid #ddd;padding: 8px;text-align: center;}
        .ui-datepicker-title {color: #333;font-size: 14px;font-weight: bold;}
        .ui-datepicker-prev, .ui-datepicker-next {cursor: pointer;display: inline-block;height: 20px;width: 20px;}
        .ui-datepicker-calendar {border-collapse: collapse;width: 100%;}
        .ui-datepicker-calendar th {background: #f9f9f9;border-bottom: 1px solid #ddd;padding: 6px;text-align: center;}
        .ui-datepicker-calendar td {border: 1px solid #eee;padding: 4px;text-align: center;}
        .ui-datepicker-calendar td a {color: #333;display: block;padding: 4px;text-decoration: none;}
        .ui-datepicker-calendar td a:hover {background: #f0f0f0;border-radius: 3px;}
        .ui-datepicker-calendar .ui-datepicker-today a {background: #ffeeba;border-radius: 3px;color: #856404;}
        .ui-datepicker-calendar .ui-datepicker-current-day a {background: #007bff;border-radius: 3px;color: #fff;
}

/* Group Tours Styles */

/* 主内容区域 */
.main-content {
  padding: 60px 0;
}

/* 通用标题样式 */
.section-title {
  text-align: center;
  font-size: 28px;
  color: #7D2E21;
  margin-bottom: 40px;
  font-weight: bold;
}

/* 服务优势区块 */
.service-advantages {
  margin-bottom: 60px;
}

.advantages-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.advantage-item {
  width: calc(20% - 16px);
  padding: 25px 20px;
  border: 1px solid #7D2E21;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.advantage-item::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px solid #D7B452;
  pointer-events: none;
}

.advantage-icon {
  margin-bottom: 15px;
}

.advantage-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.advantage-title {
  font-size: 17px;
  color: #7D2E21;
  margin-bottom: 10px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 44px;
}

.advantage-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 63px;
}

/* 介绍文本 */
.intro-text {
  margin-bottom: 60px;
  text-align: center;
  padding: 0 10%;
}

.intro-text p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-top: 20px;
}

/* 旅游列表区块 */
.tour-list-section {
  margin-bottom: 60px;
}

.tour-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}

.tour-item {
  width: calc(33.333% - 17px);
  border: 1px solid #D7B452;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 8px;
}

.tour-img {
  position: relative;
  height: auto;
  overflow: hidden;
}

.tour-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.tour-hot {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}

.tour-hot img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.tour-content {
  padding: 15px;
  text-align: center;
}

.tour-title {
  font-size: 18px;
  color: #7D2E21;
  margin-bottom: 15px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 48px;
}

.tour-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 62px;
}

.tour-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #7D2E21;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.tour-btn:hover {
  background-color: #6a271c;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .advantage-item {
    width: calc(33.333% - 13.333px);
  }
  
  .tour-item {
    width: calc(50% - 12.5px);
  }
}

@media (max-width: 768px) {
  .advantage-item {
    width: calc(50% - 10px);
  }
  
  .tour-item {
    width: 100%;
  }
  
  .intro-text {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .advantage-item {
    width: 100%;
  }
}

/* Tour Detail Styles */
.tour-detail-top {
    background-image: url('./../images/tour-detail-bg01.jpg');
    background-repeat: repeat;
    background-color: #8B4513;
    color: white;
    padding: 40px 0;
}

.tour-detail-header {
    margin-bottom: 20px;
}

.tour-detail-title {
    color: white;
    margin: 0 0 10px 0;
}

.tour-destinations {
    color: white;
    opacity: 0.9;
}

.tour-main-content {
    margin-top: 20px;
}

.tour-main-image {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.tour-main-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-info-box {
    background-color: rgba(255, 255, 255, 0);
    padding: 20px;
    margin-left: 20px;
}

.tour-code {
    margin-bottom: 15px;
}

.tour-characteristic {
    margin-bottom: 20px;
}

.show-itinerary-btn {
    background-color: #A0522D;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-itinerary-btn:hover {
    background-color: #8B4513;
    transform: translateY(-2px);
}

/* Tour Itinerary */
.tour-itinerary {
    padding: 20px 0;
}

.tour-itinerary .section-title {
    color: #8B4513;
    margin-bottom: 30px;
    text-align: left;
}

/* Accordion Itinerary */
.accordion-itinerary {
    margin-bottom: 20px;
}

.accordion-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #e4d7c6;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(245, 241, 230, 0.5);
}

.day-number {
    background-color: #A0522D;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border-radius: 4px;
    margin-right: 15px;
}

.day-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.accordion-toggle {
    font-size: 24px;
    color: #8B4513;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-toggle.active {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 2000px;
}

.rich-content {
    padding: 20px;
}

.rich-content img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
}

.rich-content table {
    max-width: 100%;
    overflow-x: auto;
    margin: 15px 0;
}

.rich-content iframe {
    max-width: 100%;
    margin: 15px 0;
}

/* Contact Button */
.contact-button-container {
    text-align: center;
    margin-top: 40px;
}

.contact-btn {
    background-color: #7D2E21;
    border: 1px solid #f56c6c;
    outline: 1px solid #E8B256;
    outline-offset: -5px;
    width: 100%;
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #6a251a;
    transform: translateY(-2px);
}

/* WhatsApp Contact */
.whatsapp-contact {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 15px;
    margin: 60px 0 0 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.whatsapp-contact h4 {
    margin-top: 0;
    color: #000000;
    font-size: 16px;
    word-wrap: break-word;
    margin-bottom: 15px;
    font-weight: bold;
}

.whatsapp-contact .qr-code-wrapper {
    background-color: #f0f0f0;
    position: relative;
    width: 100%;
    padding-top: 100%;
    margin: 15px 0;
    overflow: hidden;
    border-radius: 8px;
}

.whatsapp-contact .qr-code-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whatsapp-contact button {
    display: block;
    width: 80%;
    margin: 10px auto;
    padding: 10px 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.whatsapp-contact button:first-of-type {
    background: #7D2E21;
    color: white;
}

.whatsapp-contact button:first-of-type:hover {
    background: #6a251a;
    transform: translateY(-2px);
}

.whatsapp-contact button:last-of-type {
    background: #FFFFCC;
    color: #7D2E21;
    border: 1px solid #E8B256;
}

.whatsapp-contact button:last-of-type:hover {
    background: #FFFACD;
    transform: translateY(-2px);
}

/* Tour Price Info */
.tour-price-info {
    padding: 20px 0;
}

.tour-price-info .rich-content {
    max-width: 100%;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 0;
}

.tour-price-info .rich-content h2,
.tour-price-info .rich-content h3,
.tour-price-info .rich-content h4 {
    color: #8B4513;
    margin-top: 20px;
    margin-bottom: 15px;
}

.tour-price-info .rich-content h3:first-of-type {
    color: #228B22;
}

.tour-price-info .rich-content h3:nth-of-type(2) {
    color: #A0522D;
}

.tour-price-info .rich-content ul,
.tour-price-info .rich-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.tour-price-info .rich-content li {
    margin-bottom: 5px;
}

.tour-price-info .rich-content .price-table {
    background-color: white;
    border: 1px solid #E0E0E0;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.tour-price-info .rich-content .price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #E0E0E0;
}

.tour-price-info .rich-content .price-row:last-child {
    border-bottom: none;
}

/* Tour List Styles */
.tour-list-section {
    padding: 60px 0;
}

.tour-list-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 栏目介绍样式 */
.tour-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 100px;
}

.intro-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-family: 'DingTalk JinBuTi', sans-serif;
    font-weight: 600;
}

.intro-text {
    font-size: 1rem;
    color: var(--color-dark);
    line-height: 1.7;
    margin-bottom: 0;
    text-align: center;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 40px;
    font-family: 'DingTalk JinBuTi', sans-serif;
}

/* Tour Grid */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Tour Card */
.tour-card {
    background-color: white;
    border: 1px solid #E8D8B8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Tour Image */
.tour-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Tour Content */
.tour-content {
    padding: 20px;
}

/* Tour Title */
.tour-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Tour Description */
.tour-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    height: 90px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

/* Tour Button */
.tour-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.tour-button:hover {
    background-color: #6a251a;
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tour-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .tour-list-section {
        padding: 40px 0;
    }
    
    .tour-intro {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .intro-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .intro-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .tour-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .tour-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .tour-list-section {
        padding: 30px 0;
    }
    
    .tour-intro {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .intro-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .intro-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .tour-content {
        padding: 15px;
    }
    
    .tour-title {
        font-size: 1.1rem;
    }
    
    .tour-description {
        font-size: 0.9rem;
    }
}