/* ============================================
   VISA Page - 签证申请体检页面样式
   ============================================ */

/* ── Hero Section New Design ────────────────────────────────────────── */
.visa-hero-new {
  position: relative;
  height: 350px;
  margin-top: 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.visa-hero-new::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.visa-hero-new::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.visa-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 20px;
}

.visa-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.visa-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: 28px;
}

.visa-hero-title {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.visa-hero-title span {
  font-weight: 700;
  color: #d4a853;
}

.visa-hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
}

.visa-hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.visa-hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.visa-hero-feature i {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.2) 0%, rgba(232, 200, 120, 0.2) 100%);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #d4a853;
}

.visa-hero-feature span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* 旧Hero样式保留兼容 */
.unified-hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
  overflow: hidden;
  margin-top: 70px;
}

.unified-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.4) 0%, rgba(0,64,128,.35) 100%);
  z-index: 1;
}

.unified-hero .container { 
  position: relative; 
  z-index: 2; 
}

.unified-hero .hero-content { 
  padding: 60px 0; 
}

.unified-hero .hero-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(230,126,34,.2);
  border: 1px solid rgba(230,126,34,.4);
  color: var(--accent);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.unified-hero .hero-title {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}

.unified-hero .hero-description {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ── Grid System 网格系统 ──────────────────────────────── */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.col-lg-6,
.col-lg-3,
.col-lg-4,
.col-lg-2,
.col-md-6,
.col-md-4,
.col-sm-6 {
  position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  
  .col-lg-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
  }
  
  .col-lg-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
  
  .col-lg-2 {
    flex: 0 0 16.666667% !important;
    max-width: 16.666667% !important;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  
  .col-md-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
  }
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

.row.g-4 {
  margin-right: -16px;
  margin-left: -16px;
}

.row.g-4 > .col-lg-6,
.row.g-4 > .col-lg-3,
.row.g-4 > .col-lg-4,
.row.g-4 > .col-lg-2,
.row.g-4 > .col-md-6,
.row.g-4 > .col-md-4,
.row.g-4 > .col-sm-6 {
  padding-right: 16px;
  padding-left: 16px;
}

/* ── Page Content ────────────────────────────────────────── */
.page-content {
  padding: 80px 0;
}

.page-content:nth-child(even) {
  background: var(--gray-50);
}

/* ── Section Title & Description ─────────────────────────── */
.section-header {
  margin-bottom: 48px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-description {
  color: var(--text-secondary);
  font-size: 16px;
}

.header-accent-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 20px;
}

.section-header.text-center .header-accent-line {
  margin-left: auto;
  margin-right: auto;
}

/* ── 签证体检介绍区域 ──────────────────────────────────── */
.visa-intro-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  padding: 100px 0;
}

.visa-intro-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 51, 102, 0.08);
  border: 1px solid rgba(0, 51, 102, 0.06);
  margin-bottom: 48px;
}

.visa-intro-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

.visa-intro-icon i {
  font-size: 36px;
  color: #fff;
}

.visa-intro-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.visa-intro-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ── 签证类型卡片 ──────────────────────────────────────── */
.visa-types-grid {
  margin-bottom: 48px;
}

.visa-types-grid .col-lg-3,
.visa-types-grid .col-md-6 {
  margin-bottom: 24px;
}

.visa-type-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 51, 102, 0.08);
  border: 1px solid rgba(0, 51, 102, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 40px 24px;
}

.visa-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 51, 102, 0.15);
}

.visa-type-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.visa-type-card:nth-child(1) .visa-type-icon {
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.25);
}

.visa-type-card:nth-child(2) .visa-type-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
}

.visa-type-card:nth-child(3) .visa-type-icon {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.25);
}

.visa-type-card:nth-child(4) .visa-type-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.visa-type-icon i {
  font-size: 32px;
  color: #fff;
}

.visa-type-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.visa-type-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ── 温馨提示卡片 ──────────────────────────────────────── */
.notice-card {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 60px;
  border-left: 4px solid #f59e0b;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.1);
}

.notice-title {
  font-size: 18px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.notice-title i {
  font-size: 24px;
  color: #f59e0b;
}

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

.notice-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(245, 158, 11, 0.2);
  font-size: 15px;
  color: #92400e;
}

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

.notice-list li i {
  font-size: 18px;
  color: #f59e0b;
  margin-top: 2px;
}

/* ── 服务流程 ──────────────────────────────────────────── */
.process-section {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 51, 102, 0.08);
  border: 1px solid rgba(0, 51, 102, 0.06);
}

.process-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.process-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 51, 102, 0.1);
}

.process-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.process-content h5 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.process-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ── 按钮样式 ──────────────────────────────────────────── */
.btn-visa-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
  border: none;
  cursor: pointer;
}

.btn-visa-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
  color: #fff;
}

.btn-visa-primary i {
  font-size: 18px;
}

/* ── CTA Banner 现代化设计 ───────────────────────────────── */
.cta-banner-modern {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.cta-banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.cta-content {
  flex: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.cta-badge i {
  color: #fff;
  font-size: 14px;
}

.cta-badge span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-primary {
  background: #fff;
  color: #d97706;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  color: #d97706;
}

.cta-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon i {
  font-size: 14px;
}

/* 响应式 */
@media (max-width: 991.98px) {
  .unified-hero .hero-title { 
    font-size: 40px; 
  }
  
  .visa-intro-section {
    padding: 60px 0;
  }
  
  .visa-intro-card {
    padding: 32px 24px;
  }
  
  .process-section {
    padding: 32px 24px;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-banner-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-title {
    font-size: 28px;
  }
  
  .cta-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .unified-hero { 
    min-height: 350px; 
  }
  
  .unified-hero .hero-title { 
    font-size: 32px; 
    letter-spacing: -0.5px; 
  }
  
  .unified-hero .hero-description { 
    font-size: 16px; 
  }
  
  .page-content {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .visa-intro-icon {
    width: 64px;
    height: 64px;
  }
  
  .visa-intro-icon i {
    font-size: 28px;
  }
  
  .visa-type-card {
    padding: 32px 24px;
  }
  
  .visa-type-icon {
    width: 64px;
    height: 64px;
  }
  
  .visa-type-icon i {
    font-size: 28px;
  }
  
  .notice-card {
    padding: 24px;
  }
  
  .process-item {
    padding: 20px;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .cta-banner-modern {
    padding: 60px 0;
  }
  
  .cta-title {
    font-size: 24px;
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
  
  .btn-visa-primary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .unified-hero .hero-title { 
    font-size: 26px; 
  }
}
