/* 成都单页专属样式 */

/* 重置和基础样式已在home.css中定义 */

/* 成都专属样式 */
.chengdu-hero {
  background: linear-gradient(135deg, #dd1d4a 0%, #ff6b9d 100%);
  padding: 100px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.chengdu-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
  background-size: cover;
}

.chengdu-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.chengdu-hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.chengdu-tags {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.chengdu-tag {
  background: rgba(255,255,255,0.2);
  padding: 10px 25px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 16px;
}

.btn-cta {
  display: inline-block;
  padding: 16px 40px;
  background: white;
  color: #dd1d4a;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.btn-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  margin-left: 15px;
}

.btn-cta-secondary:hover {
  background: white;
  color: #dd1d4a;
}

/* 地陪推荐区域 */
.dipei-recommend {
  padding: 80px 0;
  background: #f8f9fa;
}

.dipei-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-wrapper h2 {
  font-size: 36px;
  color: #2d3748;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-title-wrapper p {
  font-size: 18px;
  color: #718096;
}

/* 景点推荐 */
.attractions {
  padding: 80px 0;
  background: white;
}

.attraction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.attraction-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.attraction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.attraction-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.attraction-card:hover .attraction-image img {
  transform: scale(1.1);
}

.attraction-info {
  padding: 25px;
}

.attraction-name {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

.attraction-desc {
  font-size: 14px;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 15px;
}

.attraction-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}

.attraction-type {
  font-size: 13px;
  color: #667eea;
  background: #f0f4ff;
  padding: 5px 12px;
  border-radius: 12px;
}

.attraction-rating {
  font-size: 14px;
  color: #f6ad55;
}

/* 预约咨询区域 */
.contact-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #dd1d4a 0%, #ff6b9d 100%);
  text-align: center;
  color: white;
}

.contact-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-cta p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* 服务特色 */
.features {
  padding: 80px 0;
  background: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #dd1d4a;
  box-shadow: 0 12px 32px rgba(221, 29, 74, 0.15);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* 服务流程 */
.process {
  padding: 80px 0;
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -15px;
  top: 30px;
  font-size: 24px;
  color: #dd1d4a;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dd1d4a 0%, #ff6b9d 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.process-step p {
  color: #666;
  font-size: 14px;
}

/* FAQ */
.faq {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-list {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 20px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.faq-question:hover {
  background: #f8f9fa;
  color: #dd1d4a;
}

.faq-answer {
  padding: 0 25px 20px;
  color: #666;
  line-height: 1.8;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* CTA区域 */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #dd1d4a 0%, #ff6b9d 100%);
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

/* 响应式 */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .process-step::after {
    display: none;
  }
  
  .chengdu-hero h1 {
    font-size: 32px;
  }
  
  .btn-cta-secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .dipei-grid {
    grid-template-columns: 1fr;
  }
  
  .attraction-grid {
    grid-template-columns: 1fr;
  }
}
