/* 报价了解页专用样式 */

/* 顶部 Hero 区域 */
.pricing-hero-section {
  position: relative;
  margin-top: var(--header-height);
  height: 45vh;
  min-height: 360px;
  overflow: hidden;
}

.pricing-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/banner/03.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pricing-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  padding: 0 5%;
  z-index: 2;
}

.pricing-hero-content {
  max-width: 1200px;
  width: 100%;
  text-align: left;
  pointer-events: auto;
}

.pricing-hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(148, 142, 255, 0.5), 0 0 15px rgba(148, 142, 255, 0.3);
  margin-bottom: 0.8rem;
}

.pricing-hero-subtitle {
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.2rem;
  text-shadow: 2px 2px 6px rgba(148, 142, 255, 0.5), 0 0 15px rgba(148, 142, 255, 0.3);
}

/* 主体内容 */
.pricing-page {
  padding: 5rem 5%;
  background: var(--light);
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 选择理由区域 */
.pricing-intro-section {
  margin-bottom: 5rem;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(247,247,255,0.8) 100%);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(148,142,255,0.18);
  position: relative;
  overflow: hidden;
}

.pricing-intro-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(148,142,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-intro-text {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 2.2;
  max-width: 900px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(148,142,255,0.18);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(148,142,255,0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(148,142,255,0.3);
  border-color: rgba(148,142,255,0.3);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.9;
  font-size: 1rem;
  margin: 0;
}

/* 价格详情表区域 */
.pricing-table-section {
  margin-bottom: 5rem;
  padding: 4rem 3rem;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(148,142,255,0.18);
  position: relative;
  overflow: hidden;
}

.pricing-table-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(111,106,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-table-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pricing-table-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 2px;
}

.pricing-table-wrapper {
  overflow-x: auto;
  position: relative;
  z-index: 1;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.pricing-table thead {
  background: var(--gradient-1);
  color: #fff;
}

.pricing-table th {
  padding: 1.5rem 1.2rem;
  text-align: left;
  font-weight: 700;
  font-size: 1.1rem;
}

.pricing-table tbody tr {
  border-bottom: 1px solid rgba(148,142,255,0.1);
  transition: background 0.3s ease;
}

.pricing-table tbody tr:hover {
  background: rgba(148,142,255,0.05);
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table td {
  padding: 1.5rem 1.2rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.pricing-table td strong {
  color: var(--dark);
  font-weight: 700;
}

.pricing-table .required {
  color: var(--primary);
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

.pricing-table .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* 套餐区域 */
.pricing-packages-section {
  margin-bottom: 5rem;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(247,247,255,0.8) 100%);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(148,142,255,0.18);
  position: relative;
  overflow: hidden;
}

.pricing-packages-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(148,142,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.packages-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.packages-header .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.view-more-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.view-more-link:hover {
  color: var(--secondary);
}

.package-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.package-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(148,142,255,0.18);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(148,142,255,0.1);
  position: relative;
  overflow: hidden;
}

.package-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  line-height: 1.3;
}

.package-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: help;
}

.tooltip-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(148,142,255,0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.package-tooltip:hover .tooltip-icon {
  background: var(--gradient-1);
  color: #fff;
  transform: scale(1.1);
}

.package-tooltip::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(42, 42, 62, 0.95);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.package-tooltip::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-2px);
  border: 6px solid transparent;
  border-top-color: rgba(42, 42, 62, 0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 100;
}

.package-tooltip:hover::before,
.package-tooltip:hover::after {
  opacity: 1;
}

.package-services {
  margin-bottom: 2rem;
  background: rgba(148,142,255,0.03);
  border-radius: 14px;
  padding: 1.2rem;
  max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid rgba(148, 142, 255, 0.08);
}

.package-services::-webkit-scrollbar {
  width: 6px;
}

.package-services::-webkit-scrollbar-track {
  background: rgba(148,142,255,0.05);
  border-radius: 10px;
}

.package-services::-webkit-scrollbar-thumb {
  background: rgba(148,142,255,0.3);
  border-radius: 10px;
}

.package-services::-webkit-scrollbar-thumb:hover {
  background: rgba(148,142,255,0.5);
}

.package-service-item {
  padding: 0.9rem 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
  border-radius: 8px;
}

.package-service-item:hover {
  background: rgba(148,142,255,0.08);
}

.package-service-item:not(:last-child) {
  border-bottom: 1px solid rgba(148,142,255,0.1);
  margin-bottom: 0.5rem;
  padding-bottom: 0.9rem;
}

.service-name {
  color: var(--text-dark);
  font-size: 0.95rem;
  flex: 1;
}

.service-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  margin-left: 1rem;
}

.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.3;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tag:hover {
  transform: translateY(-1px);
}

.tag-special {
  background: linear-gradient(135deg, #ff3b30 0%, #ff5722 100%);
  color: #fff;
  box-shadow: 0 2px 6px rgba(255, 59, 48, 0.3);
}

.tag-special:hover {
  box-shadow: 0 4px 10px rgba(255, 59, 48, 0.4);
}

.tag-discount {
  background: rgba(255, 182, 193, 0.35);
  color: #ff3b30;
  font-weight: 700;
  border: 1px solid rgba(255, 59, 48, 0.2);
}

.tag-limit {
  background: #f8f8f8;
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.package-price {
  margin-bottom: 2rem;
  padding: 1rem 0;
}

.activity-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(148, 142, 255, 0.1);
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
  align-self: center;
}

.price-value {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ff3b30;
  letter-spacing: -1.5px;
  line-height: 1;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-unit {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
  margin-left: 0.2rem;
}

.regular-price {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.regular-price .price-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
}

.price-text {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 400;
}

.package-cta {
  display: block;
  text-align: center;
  padding: 0.95rem 2rem;
  background: var(--gradient-1);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(148, 142, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.package-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.package-cta:hover::before {
  left: 100%;
}

.package-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(148, 142, 255, 0.5);
}

/* 开通指南区域 */
.opening-guide-section {
  padding: 4rem 3rem;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(148,142,255,0.18);
  position: relative;
  overflow: hidden;
}

.opening-guide-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(111,106,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.opening-guide-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.opening-guide-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 2px;
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.guide-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #fafaff 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(148,142,255,0.18);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(148,142,255,0.1);
}

.guide-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(148,142,255,0.3);
  border-color: rgba(148,142,255,0.3);
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(148,142,255,0.3);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.step-desc {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .feature-cards,
  .package-cards,
  .guide-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-hero-section {
    height: 40vh;
    min-height: 300px;
  }
  
  .pricing-intro-section,
  .pricing-table-section,
  .pricing-packages-section,
  .opening-guide-section {
    padding: 2.5rem 1.5rem;
  }
  
  .pricing-intro-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .feature-cards,
  .package-cards,
  .guide-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .packages-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .packages-header .section-title,
  .pricing-table-section .section-title,
  .opening-guide-section .section-title {
    font-size: 1.8rem;
  }
  
  .pricing-table {
    font-size: 0.9rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 1rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .pricing-hero-section {
    height: 35vh;
    min-height: 250px;
  }
  
  .pricing-page {
    padding: 3rem 5%;
  }
  
  .pricing-intro-section,
  .pricing-table-section,
  .pricing-packages-section,
  .opening-guide-section {
    padding: 2rem 1.2rem;
  }
  
  .packages-header .section-title,
  .pricing-table-section .section-title,
  .opening-guide-section .section-title {
    font-size: 1.5rem;
  }
  
  .package-title {
    font-size: 1.5rem;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .step-title {
    font-size: 1.3rem;
  }
}

