/* ── 疫苗接种页面 - 现代化设计 ─────────────────────────── */

/* Hero 区域 - 深蓝色主题 */
.vaccine-hero-new {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
  position: relative;
  height: 350px;
  min-height: 350px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.vaccine-hero-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-new,
.vaccine-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.vaccine-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge-new,
.vaccine-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(212, 168, 83, 0.15);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #d4a853;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title-new,
.vaccine-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.vaccine-hero-title span {
  color: #d4a853;
}

.hero-desc-new,
.vaccine-hero-desc {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

/* ── 预约说明区块 ──────────────────────────────────────── */
.booking-section-new {
  padding: 80px 0;
  background: #faf5eb;
}

.booking-card-new {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border-left: 5px solid #d4a853;
}

.booking-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.booking-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1a365d, #2c5282);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}

.booking-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a365d;
}

.booking-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.6;
}

.booking-list li:last-child {
  border-bottom: none;
}

.booking-list li i {
  color: #d4a853;
  margin-top: 4px;
  font-size: 1.1rem;
}

/* ── 疫苗种类与费用区块 ────────────────────────────────── */
.vaccine-section-new {
  padding: 80px 0;
  background: #fff;
}

.section-header-new {
  text-align: center;
  margin-bottom: 40px;
}

.accent-line-new {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #d4a853, #fbbf24);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.section-title-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 12px;
}

.section-subtitle-new {
  font-size: 1.1rem;
  color: #6b7280;
}

/* 展开按钮 */
.toggle-btn-container {
  text-align: center;
  margin-bottom: 40px;
}

.toggle-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #1a365d, #2c5282);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 54, 93, 0.4);
}

.toggle-btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 54, 93, 0.5);
}

.toggle-btn-new i {
  transition: transform 0.3s ease;
}

.toggle-btn-new.active i {
  transform: rotate(180deg);
}

/* 疫苗表格 - 默认隐藏 */
.vaccine-table-container {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-out, opacity 0.3s ease;
  opacity: 0;
}

.vaccine-table-container.show {
  max-height: 3000px;
  opacity: 1;
}

.vaccine-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.vaccine-table-new {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.95rem;
}

.vaccine-table-new thead {
  background: linear-gradient(135deg, #1a365d, #2c5282);
}

.vaccine-table-new th {
  padding: 18px 24px;
  text-align: left;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.vaccine-table-new th:last-child {
  text-align: right;
}

.vaccine-table-new td {
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
}

.vaccine-table-new td:last-child {
  text-align: right;
  font-weight: 600;
  color: #1a365d;
  white-space: nowrap;
}

.vaccine-table-new tbody tr {
  transition: background 0.2s ease;
}

.vaccine-table-new tbody tr:nth-child(even) {
  background: #f9fafb;
}

.vaccine-table-new tbody tr:hover {
  background: #faf5eb;
}

/* ── 底部提示区块 ──────────────────────────────────────── */
.contact-section-new {
  padding: 60px 0;
  background: linear-gradient(135deg, #faf5eb, #f5e6c8);
  text-align: center;
}

.contact-text-new {
  font-size: 1.2rem;
  color: #1a365d;
  margin-bottom: 24px;
}

.contact-text-new i {
  color: #d4a853;
  margin-right: 8px;
}

.contact-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #1a365d, #2c5282);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 54, 93, 0.4);
}

.contact-btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 54, 93, 0.5);
}

/* ── 响应式设计 ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-title-new {
    font-size: 2.5rem;
  }
  
  .booking-card-new {
    padding: 32px;
  }
  
  .section-title-new {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .vaccine-hero-new {
    height: 350px;
    min-height: 350px;
    padding: 0;
  }
  
  .hero-title-new {
    font-size: 2rem;
  }
  
  .hero-desc-new {
    font-size: 1rem;
  }
  
  .booking-card-new {
    padding: 24px;
    margin: 0 16px;
  }
  
  .booking-title {
    font-size: 1.25rem;
  }
  
  .booking-list li {
    font-size: 1rem;
  }
  
  .section-title-new {
    font-size: 1.75rem;
  }
  
  .vaccine-table-new th,
  .vaccine-table-new td {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .toggle-btn-new {
    padding: 14px 28px;
    font-size: 1rem;
  }
}
