/* ==========================================================================
   ChinaMedCare - International Medical Coordination Service
   Modern SaaS-style design with medical blue color scheme
   ========================================================================== */

:root {
  --primary: #0a2540;
  --primary-blue: #1a4a8c;
  --highlight: #2563eb;
  --accent: #2c7da0;
  --accent-light: #468faf;
  --text: #1a1a2e;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --border: #e2e8f0;
  --border-light: #edf2f7;
  --bg: #ffffff;
  --bg-alt: #f7fafc;
  --bg-soft: #f0f5ff;
  --bg-card: #ffffff;
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.04);
  --shadow: 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 16px 48px rgba(10, 37, 64, 0.12);
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* 全局响应式安全基线 */
img, svg, video, iframe { max-width: 100%; height: auto; }

/* 防止文字溢出撑破布局 */
.dest-card-title, .dest-card-subtitle, .dest-hero-title, .dest-hero-city,
.dest-card-link, .process-step h3, .section-title, .cta h2,
.dest-hero-metric-value, .dest-card-desc, .dest-stat-label {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.3px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.02);
}
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(32px, 3.5vw, 36px);
  height: clamp(32px, 3.5vw, 36px);
  background: linear-gradient(135deg, #2563eb, #1a4a8c);
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo-icon:hover {
  transform: rotate(-3deg);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}
.logo-icon svg {
  width: clamp(16px, 1.8vw, 20px);
  height: clamp(16px, 1.8vw, 20px);
}
.nav-menu {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
}
.nav-menu a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
}
.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #1a4a8c);
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}
.nav-menu a:hover {
  color: var(--highlight);
  background: rgba(37, 99, 235, 0.06);
  transform: translateY(-2px);
}
.nav-menu a:hover::before {
  width: 60%;
}
.nav-menu a.active {
  color: var(--highlight);
  font-weight: 700;
  background: rgba(37, 99, 235, 0.08);
}
.nav-menu a.active::before {
  width: 80%;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--primary);
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger:hover {
  border-color: var(--highlight);
  color: var(--highlight);
  background: rgba(37, 99, 235, 0.06);
  transform: scale(1.05);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1a4a8c);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #0a2540);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}
.btn-outline {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary-blue);
}
.btn-outline:hover {
  background: var(--bg-soft);
  border-color: var(--highlight);
}
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 14px; }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  background: linear-gradient(180deg, #f0f5ff 0%, #f7fafc 40%, #fff 100%);
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
  position: relative;
}
.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--highlight);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero-title {
  font-size: clamp(30px, 5vw, 52px) !important;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 28px;
  letter-spacing: -1.2px;
}
.hero-title .accent {
  color: var(--highlight);
}
.hero-subtitle {
  font-size: clamp(15px, 1.5vw, 18px) !important;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 40px !important;
  line-height: 1.9;
}
.hero-actions {
  display: flex !important;
  gap: 14px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  margin-bottom: 48px !important;
}
.hero-actions .btn {
  padding: clamp(12px, 1.2vw, 16px) clamp(20px, 2.5vw, 36px) !important;
  font-size: clamp(13px, 1.1vw, 15px) !important;
  font-weight: 600;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.hero-stats {
  background: rgba(255,255,255,0.85);
  padding: clamp(20px, 2.5vw, 32px);
  border-radius: 18px;
  border: 1px solid rgba(226,232,240,0.8);
  box-shadow: 0 10px 30px rgba(10,37,64,0.06);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.stat {
  text-align: center;
  padding: 4px 12px;
  box-sizing: border-box;
  min-width: 0;
}
.stat + .stat { border-left: 1px solid var(--border-light); }
.stat-num {
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.stat-label {
  font-size: clamp(11px, 1vw, 13px);
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* Hero-specific responsive overrides */
.hero .stat { text-align: center; padding: 4px 12px; }
.hero .stat-num { font-size: clamp(22px, 2.8vw, 34px); color: #0a2540; }
.hero .stat-label { color: #4a5568; }
.hero-stats { gap: 8px; padding: 28px 0; margin-bottom: 0; }

@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 20px;
  }
  .hero .stat { padding: 4px 8px; }
  .hero .stat-num { font-size: clamp(18px, 4vw, 24px); gap: 6px; }
  .hero .stat-label { font-size: clamp(10px, 2vw, 12px); }
}

/* ==========================================================================
   Section Styling
   ========================================================================== */
section { padding: 72px 0; }
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.section-header .section-tag {
  display: inline-block;
  padding: clamp(6px, 0.7vw, 8px) clamp(12px, 1.6vw, 16px);
  background: rgba(37, 99, 235, 0.1);
  color: var(--highlight);
  border-radius: 20px;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 600;
  margin-bottom: clamp(10px, 1.3vw, 16px);
  letter-spacing: 0.3px;
}
.section-tag {
  display: inline-block;
  padding: clamp(6px, 0.7vw, 8px) clamp(12px, 1.6vw, 16px);
  background: rgba(37, 99, 235, 0.08);
  color: var(--highlight);
  border-radius: 20px;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: clamp(10px, 1.3vw, 16px);
}
.section-title {
  font-size: clamp(22px, 3.4vw, 38px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: clamp(10px, 1.3vw, 16px);
  letter-spacing: -0.8px;
}
.section-desc {
  font-size: clamp(13px, 1.3vw, 17px);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   Unified Page Hero (Destinations, Process, Services, etc.)
   ========================================================================== */
.page-hero {
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(180deg, #f0f5ff 0%, #f7fafc 40%, #fff 100%);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--highlight);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(37, 99, 235, 0.15);
}
.page-hero-badge svg {
  width: 16px;
  height: 16px;
}
.page-hero h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.page-hero p {
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}
.page-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.page-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.page-hero-stat {
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(4px);
}
.page-hero-stat-num {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--highlight);
  margin-bottom: 4px;
}
.page-hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Unified Content Cards
   ========================================================================== */
.content-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: clamp(20px, 3vw, 32px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--highlight), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}
.content-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.content-card:hover::before {
  opacity: 1;
}
.content-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--highlight);
}
.content-card-icon svg {
  width: 28px;
  height: 28px;
}
.content-card h3 {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.content-card p {
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   Improved Timeline (Process Page)
   ========================================================================== */
.process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.flow-step {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.flow-step:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.flow-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--highlight), var(--primary-blue));
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.flow-step h3 {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.flow-step p {
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--text-secondary);
  line-height: 1.65;
}
.flow-step-icon {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  opacity: 0.15;
}
.flow-connector {
  display: none;
}

/* Vertical Timeline (for detailed view) */
.timeline-vertical {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}
.timeline-vertical::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--highlight), var(--accent));
  opacity: 0.2;
}
.timeline-item {
  position: relative;
  margin-bottom: 32px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--highlight);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
.timeline-item-num {
  position: absolute;
  left: -60px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--highlight), var(--primary-blue));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.timeline-item-content {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 20px 24px;
  transition: all 0.25s;
}
.timeline-item:hover .timeline-item-content {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-sm);
}
.timeline-item-content h3 {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.timeline-item-content p {
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   Service Detail Cards
   ========================================================================== */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-detail-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px;
  transition: all 0.25s;
}
.service-detail-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.service-detail-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.service-detail-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight);
  flex-shrink: 0;
}
.service-detail-card-icon svg {
  width: 24px;
  height: 24px;
}
.service-detail-card h3 {
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 700;
  color: var(--primary);
}
.service-detail-card p {
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   City Comparison Table
   ========================================================================== */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}
.compare-header-cell {
  background: var(--bg-alt);
  padding: 16px 20px;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 700;
  color: var(--primary);
  text-align: center;
}
.compare-header-cell:first-child {
  text-align: left;
}
.compare-cell {
  background: var(--bg-card);
  padding: 14px 16px;
  font-size: clamp(11px, 1vw, 13px);
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
}
.compare-cell:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--primary);
}
.compare-highlight {
  background: rgba(37, 99, 235, 0.05);
}

/* ==========================================================================
   Feature Cards
   ========================================================================== */
.features { background: var(--bg-alt); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}
.feature-card {
  background: #fff;
  padding: clamp(20px, 2.5vw, 32px) clamp(18px, 2vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.25s;
  box-sizing: border-box;
  min-width: 0;
}
.feature-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-icon {
  width: clamp(40px, 4vw, 48px);
  height: clamp(40px, 4vw, 48px);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(26, 74, 140, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 2vw, 24px);
  margin-bottom: clamp(12px, 1.5vw, 16px);
  color: var(--highlight);
}
.feature-icon svg {
  width: clamp(18px, 2vw, 24px);
  height: clamp(18px, 2vw, 24px);
}
.feature-card h3 {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.25s;
}
.service-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-image {
  height: 80px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.service-emoji {
  font-size: 48px;
  display: block;
}
.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-content p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.service-link {
  color: var(--highlight);
  font-weight: 600;
  font-size: 14px;
}
.service-link:hover { text-decoration: underline; }

/* ==========================================================================
   Process Steps - Which Stage Are You In?
   ========================================================================== */
.process-preview {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.stage-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.25s;
  text-align: left;
}
.stage-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.stage-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.stage-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.stage-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* NOTE: .process-steps container is now defined in the dedicated
   Destinations section below with 4-column responsive layout */
.step {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.step:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.step-num {
  font-size: 15px;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 12px;
  display: block;
  letter-spacing: 0.5px;
}
.step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.step p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.testimonial-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1a4a8c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.testimonial-author-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
  padding-top: 3px;
}
.author-name {
  font-weight: 700;
  color: #0a2540;
  font-size: 15px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.author-info {
  font-size: 13px;
  color: #4a5568;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
  background: linear-gradient(135deg, #0a2540 0%, #1a4a8c 100%);
  color: #fff;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.cta h2 {
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 800;
  margin-bottom: clamp(10px, 1.3vw, 16px);
  letter-spacing: -0.5px;
}
.cta p {
  font-size: clamp(13px, 1.3vw, 17px);
  opacity: 0.9;
  margin-bottom: clamp(18px, 2.5vw, 32px);
  line-height: 1.7;
}
.cta .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.cta .btn-primary:hover { background: #f0f5ff; }
.cta .btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #0a2540;
  color: #cbd5e0;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo .logo-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  box-shadow: none;
  width: clamp(36px, 4vw, 40px);
  height: clamp(36px, 4vw, 40px);
}
.footer-logo .logo-icon svg {
  width: clamp(16px, 1.8vw, 20px);
  height: clamp(16px, 1.8vw, 20px);
}
.footer-desc {
  font-size: 14px;
  color: #a0aec0;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #a0aec0;
}
.footer-col ul li a { transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: #a0aec0;
  flex-shrink: 0;
}
.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.social-links a {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 13px;
  color: #cbd5e0;
  transition: all 0.2s;
}
.social-links a:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: #a0aec0;
}

/* ==========================================================================
   Page Header (Inner Pages)
   ========================================================================== */
.page-header {
  background: linear-gradient(180deg, #f0f5ff 0%, #f7fafc 40%, #fff 100%);
  padding: 72px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.page-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--highlight);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.page-header h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.8px;
  line-height: 1.2;
}
.page-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}
.breadcrumb {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--highlight); }
.breadcrumb a:hover { text-decoration: underline; }

/* ==========================================================================
   Content Sections
   ========================================================================== */
.content-section { padding: 64px 0; }
.content-section.alt { background: var(--bg-alt); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}
.two-col-text p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.two-col-text ul {
  margin-bottom: 24px;
}
.two-col-text ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 15px;
}
.two-col-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--highlight);
  font-weight: 700;
  font-size: 14px;
}
.visual-box {
  height: 360px;
  background: linear-gradient(135deg, #f0f5ff 0%, #dbeafe 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
  color: var(--highlight);
  border: 1px solid var(--border);
}

/* ==========================================================================
   Service Details
   ========================================================================== */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.25s;
}
.service-detail-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-md);
}
.service-detail-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-detail-card p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 15px;
}
.service-detail-card ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
}
.service-detail-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--highlight);
  font-weight: 600;
}

/* ==========================================================================
   Hospital & Doctor Cards
   ========================================================================== */
.hospital-grid,
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hospital-card,
.doctor-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
}
.hospital-card:hover,
.doctor-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.hospital-image,
.doctor-image {
  height: 160px;
  background: linear-gradient(135deg, #f0f5ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}
.hospital-info,
.doctor-info { padding: 24px 28px; }
.hospital-card h3,
.doctor-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.hospital-loc {
  color: var(--highlight);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}
.hospital-card p,
.doctor-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.6;
}
.hospital-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hospital-tags span {
  background: rgba(37, 99, 235, 0.08);
  color: var(--highlight);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.hospital-tags-filter {
  justify-content: center;
  margin-bottom: 48px;
}
.hospital-tags-filter span {
  font-size: 13px;
  padding: 8px 18px;
}
.doctor-specialty {
  color: var(--highlight);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ==========================================================================
   Destination Grid
   NOTE: Destinations page now uses dedicated rules below — see the section
   starting with "Destinations — Complete Self-Contained Styles"
   ========================================================================== */

/* ==========================================================================
   Timeline - Process Page
   ========================================================================== */
.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}
.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}
.timeline-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #1a4a8c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.timeline-content {
  flex: 1;
  background: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.timeline-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.timeline-content p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  transition: all 0.25s;
  position: relative;
}
.pricing-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pricing-card.featured {
  border-color: var(--highlight);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb, #1a4a8c);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.pricing-card .pricing-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.price {
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.price-unit {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}
.pricing-card ul { margin-bottom: 28px; }
.pricing-card ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
}
.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--highlight);
  font-weight: 700;
}

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
}
.blog-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.blog-image {
  height: 180px;
  background: linear-gradient(135deg, #f0f5ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}
.blog-content { padding: 24px 28px; }
.blog-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.blog-category {
  color: var(--highlight);
  font-weight: 600;
}
.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  transition: all 0.2s;
  border: 1px solid var(--border);
}
.contact-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(26, 74, 140, 0.08));
  color: var(--highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.contact-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.contact-item p {
  color: var(--text-secondary);
  font-size: 14px;
}
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s;
  background: #fff;
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--highlight);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ==========================================================================
   Team Grid
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: #fff;
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.team-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--highlight);
}
.team-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.team-card .role {
  color: var(--text-muted);
  font-size: 14px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
}
.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  margin-top: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, #0a2540 0%, #1a4a8c 100%);
  color: #fff;
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stats-item .stat-num {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.stats-item .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

/* ==========================================================================
   Admin System
   ========================================================================== */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: var(--bg-alt);
}
.admin-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 240px;
  background: var(--primary);
  color: #fff;
  padding: 24px 0;
  z-index: 50;
}
.admin-logo {
  padding: 0 24px 24px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-logo .logo-icon {
  background: linear-gradient(135deg, #468faf, #2c7da0);
}
.admin-menu { display: flex; flex-direction: column; gap: 4px; padding: 0 12px; }
.admin-menu a {
  display: block;
  padding: 10px 16px;
  color: #a0aec0;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}
.admin-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.admin-menu a.active {
  background: rgba(37, 99, 235, 0.25);
  color: #fff;
  font-weight: 600;
}
.admin-main {
  flex: 1;
  background: #f8fafc;
  padding: clamp(20px, 3vw, 32px);
  min-height: 100vh;
  margin-left: 240px;
  box-sizing: border-box;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(16px, 2vw, 20px) clamp(20px, 3vw, 28px);
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}
.admin-header h1 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--primary);
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.admin-stat-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.admin-stat-card .label {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.admin-stat-card .value {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.admin-stat-card .trend {
  font-size: 12px;
  color: var(--highlight);
  margin-top: 6px;
  font-weight: 600;
}
.admin-card {
  background: #fff;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(10,37,64,0.04);
  margin-bottom: clamp(16px, 2.5vw, 24px);
}
.admin-card h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}
.admin-content-area {
  padding: 0 clamp(16px, 2.5vw, 28px) clamp(24px, 4vw, 40px);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 8px;
}
.admin-table-wrapper::-webkit-scrollbar {
  height: 8px;
}
.admin-table-wrapper::-webkit-scrollbar-track {
  background: #f1f5f9;
}
.admin-table-wrapper::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.admin-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
.admin-table th {
  text-align: left;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-table td {
  padding: 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg-soft); }
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.status-pending { background: rgba(251, 191, 36, 0.15); color: #b7791f; }
.status-confirmed { background: rgba(37, 99, 235, 0.12); color: var(--highlight); }
.status-completed { background: rgba(10, 37, 64, 0.08); color: var(--primary); }
.status-cancelled { background: rgba(245, 101, 101, 0.15); color: #c53030; }

/* ==========================================================================
   Login Page
   ========================================================================== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f5ff 0%, #f7fafc 100%);
  padding: 24px;
}
.login-box {
  background: #fff;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
  border: 1px solid var(--border);
}
.login-box .logo {
  justify-content: center;
  margin-bottom: 16px;
}
.login-box .logo span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}
.login-box h1 {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  color: var(--primary);
  margin-bottom: 8px;
}
.login-box .sub {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 14px;
}
.login-box .form-group {
  margin-bottom: 16px;
}
.login-box .login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 13px;
}
.login-box .login-options label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 0;
}
.login-box .login-options a {
  color: var(--highlight);
  font-weight: 500;
}
.login-box .btn-primary {
  width: 100%;
}
.login-box .hint {
  text-align: center;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 13px;
}
.login-box .hint strong {
  color: var(--primary);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in { animation: fadeIn 0.8s ease both; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title { font-size: 40px; }
  .page-header h1 { font-size: 36px; }
  .section-title { font-size: 32px; }
  /* 注意: .dest-grid / .process-steps 由文件末尾的专用多级断点处理 */
  .features-grid,
  .services-grid,
  .testimonials-grid,
  .hospital-grid,
  .doctor-grid,
  .destination-grid,
  .blog-grid,
  .pricing-grid,
  .team-grid,
  .service-detail-grid,
  .stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .stat + .stat { border-left: none; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 20px;
    gap: 4px;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
  }
  .nav-menu.active { display: flex; }
  .nav-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.25s ease;
  }
  .nav-menu a:hover {
    background: rgba(37, 99, 235, 0.06);
    transform: none;
  }
  .nav-menu a:hover::before {
    width: 0;
  }
  .nav-menu a.active {
    background: rgba(37, 99, 235, 0.1);
    font-weight: 600;
  }
  .nav-menu a.active::before {
    width: 0;
  }
  .hamburger { display: block; }
  .nav-actions .btn-sm { display: none; }
  .hero { padding: 56px 0 48px; }
  /* hero-title / hero-subtitle / section-title 已使用 clamp() 响应式，此处不再固定 */
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 20px; }
  .stat-num { font-size: clamp(20px, 2.5vw, 24px); }
  /* section 的 padding 由各区块专用类控制（如 .dest-section, .dest-process） */
  .page-header { padding: 56px 0 48px; }
  .page-header h1 { font-size: clamp(24px, 3vw, 30px); }
  /* 注意: .dest-grid / .features-grid / .process-steps 由文件末尾的专用多级断点处理 */
  .services-grid,
  .testimonials-grid,
  .hospital-grid,
  .doctor-grid,
  .destination-grid,
  .blog-grid,
  .pricing-grid,
  .team-grid,
  .service-detail-grid,
  .stage-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { gap: 32px; }
  .admin-sidebar { position: static; width: 100%; }
  .admin-main { flex: 1; padding: 16px; margin-left: 0; }
  .admin-content-area { padding: 0 16px 24px; }
  .admin-header { flex-direction: column; gap: 16px; padding: 16px 20px; }
  .admin-header > div:first-child { flex-direction: column; align-items: flex-start; gap: 8px; }
  .admin-header > div:last-child { flex-direction: column; align-items: flex-start; gap: 10px; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .contact-grid { gap: 32px; }
  .contact-form { padding: 28px; }
  .stats-grid { gap: 24px; }
  .stats-item .stat-num { font-size: 36px; }
  .pricing-card.featured { transform: none; }
  .dest-card { min-height: 300px; padding: 28px 24px; }
  .dest-card h3 { font-size: 22px; }
  .dest-card p { font-size: 14px; line-height: 1.65; }
  .dest-icon-wrap { width: 52px; height: 52px; margin-bottom: 18px; }
  .dest-icon-wrap svg { width: 26px; height: 26px; }
  .dest-tags span { font-size: 12px; padding: 6px 12px; }
  .dest-section { padding: 56px 0 8px; }
  .dest-section .section-header { margin-bottom: 36px; }
  .cta { padding: 56px 0; }
  .cta h2 { font-size: 28px; margin-bottom: 12px; }
  .cta p { font-size: 15px; margin-bottom: 24px; line-height: 1.6; }
  .cta .hero-actions { gap: 12px; }
  .cta .btn-lg { padding: 14px 28px; font-size: 14px; }
}

/* ==========================================================================
   SVG Line Icons System — 线稿图标
   ========================================================================== */
.svg-icon {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.svg-icon-sm { width: 16px; height: 16px; stroke-width: 1.8; }
.svg-icon-md { width: 20px; height: 20px; stroke-width: 1.7; }
.svg-icon-lg { width: 32px; height: 32px; stroke-width: 1.5; }
.svg-icon-xl { width: 48px; height: 48px; stroke-width: 1.4; }

.logo-icon {
  background: transparent;
  color: var(--highlight);
  border: 1.5px solid rgba(37, 99, 235, 0.3);
  box-shadow: none;
  width: 38px;
  height: 38px;
}
.logo-icon .svg-icon { width: 20px; height: 20px; stroke-width: 2; }

.admin-logo .logo-icon {
  background: linear-gradient(135deg, #2563eb, #1a4a8c);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
}
.admin-logo .logo-icon .svg-icon { stroke: #fff; width: 18px; height: 18px; }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: transparent;
  border: 1.5px solid rgba(37, 99, 235, 0.25);
  color: var(--highlight);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-sizing: border-box;
}
.feature-icon .svg-icon { width: 26px; height: 26px; stroke-width: 1.6; }

.service-image {
  height: 64px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.service-image .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: transparent;
  border: 1.5px solid rgba(37, 99, 235, 0.25);
  color: var(--highlight);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.service-image .service-icon .svg-icon { width: 28px; height: 28px; stroke-width: 1.5; }

.hospital-image,
.doctor-image {
  height: 120px;
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight);
}
.hospital-image .svg-icon,
.doctor-image .svg-icon { width: 48px; height: 48px; stroke-width: 1.4; }

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  border: 1.5px solid rgba(37, 99, 235, 0.25);
  color: var(--highlight);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex-shrink: 0;
}
.contact-icon .svg-icon { width: 22px; height: 22px; stroke-width: 1.6; }

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f7fafc;
  border: 1.5px solid rgba(37, 99, 235, 0.2);
  color: var(--highlight);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar .svg-icon { width: 30px; height: 30px; stroke-width: 1.5; }

.timeline-num {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: transparent;
  border: 1.5px solid rgba(37, 99, 235, 0.3);
  color: var(--highlight);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: none;
  box-sizing: border-box;
}

/* ==========================================================================
   Language Switcher — 语言切换
   ========================================================================== */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 6px 12px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  line-height: 1;
}
.lang-switcher:hover {
  border-color: var(--highlight);
  color: var(--highlight);
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}
.lang-switcher .lang-sep {
  color: var(--border);
  font-weight: 400;
}
.lang-switcher .lang-item {
  padding: 0 4px;
  color: var(--text-muted);
  transition: color 0.15s;
  border-radius: 4px;
}
.lang-switcher .lang-item.active {
  color: var(--highlight);
  font-weight: 700;
}
.lang-switcher .lang-item:hover:not(.active) { color: var(--primary); }

/* ==========================================================================
   Floating Sidebar — 右侧浮动联系栏
   ========================================================================== */
.floating-sidebar {
  position: fixed;
  right: clamp(12px, 1.5vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 12px);
}
.side-btn {
  width: clamp(44px, 5vw, 54px);
  height: clamp(44px, 5vw, 54px);
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  color: #0a2540;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.08);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  text-decoration: none;
  flex-shrink: 0;
}
.side-btn svg {
  width: clamp(18px, 2vw, 22px);
  height: clamp(18px, 2vw, 22px);
  stroke-width: 1.8;
}
.side-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1a4a8c);
  color: #fff;
  border-color: transparent;
  transform: translateX(-3px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.25);
}
.side-btn .svg-icon { width: 22px; height: 22px; stroke-width: 1.7; }
.side-btn .tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #0a2540;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: var(--shadow-md);
}
.side-btn .tip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #0a2540;
}
.side-btn:hover .tip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

@media (max-width: 768px) {
  .floating-sidebar {
    right: 12px;
    gap: 8px;
  }
  .side-btn { width: 44px; height: 44px; border-radius: 12px; }
  .side-btn .svg-icon { width: 20px; height: 20px; }
}

/* ==========================================================================
   Toast — 表单提交反馈提示
   ========================================================================== */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-left: 5px solid #2563eb;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.15);
  z-index: 200;
  max-width: 420px;
  animation: slide-in-right 0.3s ease-out;
}
.toast[data-type="error"] {
  border-left-color: #c53030;
}
.toast[data-type="error"] .toast-icon {
  color: #c53030;
}
.toast-title {
  font-size: 15px;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 4px;
}
.toast-body {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.6;
}
.toast-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: #a0aec0;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}
.toast-close:hover { color: #0a2540; }
.toast-icon {
  color: #2563eb;
  font-weight: 700;
  margin-right: 6px;
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slide-out-right {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(40px); }
}

@media (max-width: 768px) {
  .toast {
    top: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
    padding: 14px 18px;
  }
}

/* ==========================================================================
   Service Icon Wrapper (统一的线稿图标容器)
   ========================================================================== */
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Additional responsive tweaks
   ========================================================================== */

/* ==========================================================================
   WhatsApp Pulse Animation (呼吸灯闪烁效果)
   ========================================================================== */
.whatsapp-pulse {
  animation: whatsapp-breathe 2s ease-in-out infinite;
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.08), 0 0 0 0 rgba(37, 197, 94, 0.4) !important;
}

.whatsapp-pulse:hover {
  animation: none;
}

@keyframes whatsapp-breathe {
  0% {
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.08), 0 0 0 0 rgba(37, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.12), 0 0 0 8px rgba(37, 197, 94, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.08), 0 0 0 0 rgba(37, 197, 94, 0.4);
  }
}

/* ==========================================================================
   Destinations - Hero
   ========================================================================== */
.dest-hero {
  padding: 72px 0 64px;
  background: linear-gradient(180deg, #f0f6ff 0%, #f7fafc 55%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.dest-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.dest-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.dest-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  width: 100%;
}
.dest-hero-text { width: 100%; min-width: 0; }
.dest-hero-visual { width: 100%; min-width: 0; }
.dest-hero-title {
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 800;
  color: #0a2540;
  margin: 16px 0 18px;
  letter-spacing: -0.8px;
  line-height: 1.15;
}
.dest-hero-desc {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 620px;
}
.dest-hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.dest-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(37, 99, 235, 0.15);
}
.dest-stat-num {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: #2563eb;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 6px;
}
.dest-stat-num span { display: inline-block; }
.dest-stat-label {
  font-size: clamp(11px, 1.1vw, 13px);
  color: #4a5568;
  font-weight: 500;
  line-height: 1.4;
}

/* 右侧卡片 */
.dest-hero-card {
  background: #fff;
  border-radius: 24px;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 32px);
  box-shadow: 0 24px 48px rgba(10, 37, 64, 0.10), 0 2px 8px rgba(10, 37, 64, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.dest-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #4682b4, #63b3ed);
}
.dest-hero-label {
  display: inline-block;
  font-size: clamp(11px, 1vw, 12px);
  font-weight: 700;
  color: #1a4a8c;
  background: rgba(37, 99, 235, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.dest-hero-city {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 800;
  color: #0a2540;
  margin: 16px 0 20px;
  letter-spacing: -0.8px;
}
.dest-hero-metric {
  padding: 14px 0;
  border-bottom: 1px dashed #e2e8f0;
}
.dest-hero-metric:last-of-type {
  border-bottom: none;
}
.dest-hero-metric-label {
  font-size: clamp(10px, 0.9vw, 12px);
  color: #718096;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}
.dest-hero-metric-value {
  font-size: clamp(14px, 1.3vw, 16px);
  color: #0a2540;
  font-weight: 700;
}
.dest-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}
.dest-hero-tags span {
  background: rgba(37, 99, 235, 0.06);
  color: #1a4a8c;
  padding: 8px 14px;
  border-radius: 18px;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.12);
  white-space: normal;
}

/* ==========================================================================
   Destinations - Section base
   ========================================================================== */
.dest-section {
  padding: 80px 0 24px;
}

/* ==========================================================================
   Destinations - Cards
   ========================================================================== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
}
.dest-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: auto;
  color: #fff;
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, #0a2540 0%, #1a4a8c 100%);
  box-shadow: 0 12px 28px rgba(10, 37, 64, 0.18);
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}
.dest-card:nth-child(2) {
  background: linear-gradient(160deg, #1a4a8c 0%, #2563eb 60%, #468faf 100%);
}
.dest-card:nth-child(3) {
  background: linear-gradient(160deg, #2563eb 0%, #468faf 70%, #7fb0c4 100%);
}
.dest-card::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 56px rgba(10, 37, 64, 0.28);
}
.dest-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  position: relative;
}
.dest-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.dest-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.6;
}
.dest-card-badge {
  font-size: 11px;
  font-weight: 700;
  color: #0a2540;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 18px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.dest-card-badge--light {
  background: rgba(255, 255, 255, 0.95);
  color: #1a4a8c;
}
.dest-card-badge--warm {
  background: rgba(255, 255, 255, 0.95);
  color: #2c5282;
}
.dest-card-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.5px;
  position: relative;
}
.dest-card-subtitle {
  font-size: clamp(12px, 1.2vw, 14px);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin: 0 0 18px;
  line-height: 1.4;
  position: relative;
}
.dest-card-desc {
  font-size: clamp(13px, 1.2vw, 15px);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 24px;
  line-height: 1.75;
  position: relative;
}
.dest-card-section {
  margin-bottom: 24px;
  position: relative;
}
.dest-card-section h4 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.dest-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dest-tags span {
  background: rgba(255, 255, 255, 0.12);
  padding: 7px 14px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  color: #fff;
}
.dest-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dest-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dest-list li:last-child {
  border-bottom: none;
}
.dest-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: #68d391;
  font-weight: 800;
  font-size: 14px;
}
.dest-card-footer {
  margin-top: auto;
  padding-top: 8px;
  position: relative;
}
.dest-card-link {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.dest-card-link:hover {
  gap: 12px;
}

/* ==========================================================================
   Compare Table
   ========================================================================== */
.dest-compare {
  padding: 72px 0 24px;
}
.compare-table {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.08);
  border: 1px solid #e2e8f0;
  width: 100%;
  box-sizing: border-box;
}
.compare-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
}
.compare-row--head {
  background: linear-gradient(135deg, #0a2540 0%, #1a4a8c 100%);
}
.compare-row--head .compare-cell {
  color: #fff;
  font-weight: 700;
  font-size: clamp(11px, 1vw, 14px);
  padding: clamp(14px, 1.5vw, 20px) clamp(14px, 1.8vw, 24px);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.compare-row:not(.compare-row--head):nth-child(even) {
  background: #f7fafc;
}
.compare-cell {
  padding: clamp(12px, 1.3vw, 18px) clamp(14px, 1.8vw, 24px);
  font-size: clamp(12px, 1.1vw, 14px);
  color: #2d3748;
  line-height: 1.55;
  display: flex;
  align-items: center;
  border-left: 1px solid #e2e8f0;
  min-width: 0;
  word-break: break-word;
}
.compare-cell:first-child {
  border-left: none;
}
.compare-cell--label {
  font-weight: 700;
  color: #0a2540;
  background: rgba(37, 99, 235, 0.03);
}
.price-indicator {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 700;
}
.price-indicator--low {
  background: rgba(72, 187, 120, 0.12);
  color: #276749;
}
.price-indicator--mid {
  background: rgba(237, 137, 54, 0.12);
  color: #c05621;
}
.price-indicator--high {
  background: rgba(237, 100, 166, 0.12);
  color: #b83280;
}
.stars {
  color: #ed8936;
  font-size: 16px;
  letter-spacing: 2px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ==========================================================================
   Why choose us (reuses features-grid with subtle overrides)
   ========================================================================== */
.dest-why {
  padding: 72px 0 24px;
}

/* ==========================================================================
   Process steps
   ========================================================================== */
.dest-process {
  padding: 72px 0 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
  width: 100%;
}
.process-step {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: clamp(20px, 2.5vw, 32px) clamp(18px, 2vw, 28px) clamp(18px, 2vw, 28px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.04);
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}
.process-step-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #1a4a8c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.process-step h3 {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  color: #0a2540;
  margin: 0 0 10px;
  letter-spacing: -0.2px;
}
.process-step p {
  font-size: clamp(12px, 1.1vw, 14px);
  color: #4a5568;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.dest-faq {
  padding: 72px 0 24px;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item[open] {
  border-color: #2563eb;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}
.faq-item summary {
  padding: 20px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #0a2540;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary span:first-child {
  flex: 1;
  line-height: 1.5;
}
.faq-icon {
  font-size: 22px;
  color: #2563eb;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 28px 24px;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.75;
  border-top: 1px solid rgba(37, 99, 235, 0.08);
  padding-top: 16px;
  margin-top: 0;
}

/* ==========================================================================
   Utility helpers
   ========================================================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ==========================================================================
   Responsive — Multi-breakpoint smooth transitions
   (1100 → 1024 → 820 → 600 → 480 → 360)
   ========================================================================== */

/* --- Large Tablet / Small Desktop: 1100px ---
   3列 → 2列卡片；4列步骤 → 3列 */
@media (max-width: 1100px) {
  .dest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .dest-hero {
    padding: 64px 0 56px;
  }
  .section-header {
    margin: 0 auto 40px;
  }
}

/* --- Standard Tablet: 1024px ---
   hero 单列；对比表改用分组显示 */
@media (max-width: 1024px) {
  .dest-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .dest-hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }
  .dest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Compare table: 4列 → 2列分组块 */
  .compare-row {
    grid-template-columns: 1fr 1fr;
  }
  .compare-row--head {
    display: none;
  }
  .compare-row:not(.compare-row--head) {
    border-bottom: 1px solid #e2e8f0;
  }
  .compare-row:not(.compare-row--head):last-child {
    border-bottom: none;
  }
  .compare-cell {
    padding: 14px 18px;
    font-size: 13px;
  }
  .compare-cell--label {
    grid-column: 1 / -1;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2563eb;
    font-weight: 700;
    padding-bottom: 2px;
    background: transparent;
  }
}

/* --- Mid Tablet / Large Phone: 820px ---
   dest-grid 单列；process-steps 2列 */
@media (max-width: 820px) {
  .dest-hero {
    padding: 56px 0 48px;
  }
  .dest-hero-grid {
    gap: 32px;
  }
  .dest-section {
    padding: 56px 0 8px;
  }
  .dest-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .dest-card {
    padding: 28px 24px;
  }
  .dest-icon-wrap {
    width: 48px;
    height: 48px;
  }
  .dest-icon-wrap svg {
    width: 24px;
    height: 24px;
  }

  .dest-compare { padding: 56px 0 8px; }
  .dest-why, .dest-process, .dest-faq {
    padding: 56px 0 8px;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .process-step {
    padding: 22px 20px;
  }
  .process-step-num {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .process-step h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .process-step p {
    font-size: 13px;
    line-height: 1.6;
  }

  .dest-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding-top: 20px;
  }
  .dest-hero-actions {
    gap: 10px;
    margin-bottom: 32px;
  }
  .dest-hero-actions .btn {
    padding: 12px 22px;
    font-size: 14px;
  }

  /* FAQ */
  .faq-item summary {
    padding: 16px 20px;
    font-size: 14px;
  }
  .faq-icon {
    font-size: 18px;
  }
  .faq-body {
    padding: 0 20px 20px;
    font-size: 13px;
    line-height: 1.7;
  }

  /* Floating sidebar — adjust for touch */
  .floating-sidebar {
    right: 12px;
    gap: 10px;
  }
  .side-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  .side-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* --- Medium Phone: 600px ---
   process-steps 单列；对比表纯单列 */
@media (max-width: 600px) {
  .dest-hero {
    padding: 48px 0 40px;
  }
  .dest-hero-grid {
    gap: 28px;
  }
  .container {
    padding: 0 16px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Compare table: pure single-column card-like layout */
  .compare-table {
    border-radius: 14px;
  }
  .compare-row {
    grid-template-columns: 1fr;
    border-bottom: 1px solid #e2e8f0;
  }
  .compare-row:last-child {
    border-bottom: none;
  }
  .compare-row--head {
    display: none;
  }
  .compare-cell {
    padding: 12px 18px;
    font-size: 13px;
    border-left: none;
    position: relative;
    display: block;
  }
  .compare-cell--label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2563eb;
    padding-bottom: 4px;
    background: transparent;
  }

  .dest-hero-card {
    padding: 24px 20px;
  }
  .dest-hero-tags {
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
  }
  .dest-hero-tags span {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* --- Small Phone: 480px ---
   紧凑排版，内边距、间距进一步收缩 */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .dest-hero {
    padding: 40px 0 32px;
  }
  .dest-hero-title {
    line-height: 1.2;
    margin: 12px 0 12px;
  }
  .dest-hero-desc {
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.65;
  }
  .dest-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-top: 18px;
  }
  .dest-card {
    padding: 22px 20px;
    border-radius: 18px;
  }
  .dest-card-section {
    margin-bottom: 20px;
  }
  .dest-card-section h4 {
    font-size: 11px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }
  .dest-tags span {
    font-size: 12px;
    padding: 6px 12px;
  }
  .dest-list li {
    font-size: 13px;
    padding: 7px 0 7px 24px;
  }
  .dest-icon-wrap {
    width: 44px;
    height: 44px;
  }
  .dest-icon-wrap svg {
    width: 22px;
    height: 22px;
  }
  .dest-hero-card {
    padding: 22px 18px;
  }
}

/* --- Extra Small Phone: 360px ---
   极窄屏幕，浮动按钮更紧凑 */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }
  .dest-hero-actions .btn {
    padding: 10px 18px;
    font-size: 13px;
  }
  .floating-sidebar {
    right: 8px;
    gap: 8px;
  }
  .side-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .side-btn svg {
    width: 18px;
    height: 18px;
  }
  .dest-grid {
    gap: 14px;
  }
  .process-steps {
    gap: 12px;
  }
  .process-step {
    padding: 18px 16px;
  }
}

/* ==========================================================================
   Video Resources Section
   ========================================================================== */
.video-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
}

.video-grid-wrapper {
  position: relative;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 22px);
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.video-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s;
  box-sizing: border-box;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(10, 37, 64, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}
.video-card.hidden {
  display: none;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.video-thumb-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-thumb-bg svg {
  width: clamp(40px, 5vw, 56px);
  height: clamp(40px, 5vw, 56px);
  opacity: 0.85;
}
.video-card:hover .video-thumb-bg {
  transform: scale(1.06);
}
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(44px, 5vw, 56px);
  height: clamp(44px, 5vw, 56px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0a2540;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 2;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.video-play-btn svg {
  width: clamp(18px, 2vw, 24px);
  height: clamp(18px, 2vw, 24px);
  margin-left: 3px;
}
.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: #2563eb;
  color: #fff;
}
.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 3px 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  z-index: 2;
}

.video-info {
  padding: clamp(14px, 1.6vw, 18px) clamp(14px, 1.6vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.video-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
  align-self: flex-start;
}
.video-title {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 700;
  color: #0a2540;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Video pagination ===== */
.video-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.8vw, 10px);
  flex-wrap: wrap;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #0a2540;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-btn svg {
  width: 16px;
  height: 16px;
}
.page-btn:hover:not(:disabled) {
  border-color: #2563eb;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-1px);
}
.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.page-num {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page-num:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.05);
}
.page-num.active {
  background: linear-gradient(135deg, #2563eb, #1a4a8c);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.page-dots {
  padding: 0 4px;
  color: #a0aec0;
  font-weight: 600;
}

/* ===== Video modal ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 50, 0.78);
  backdrop-filter: blur(6px);
}
.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 920px;
  background: #0a2540;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-modal.active .video-modal-content {
  transform: scale(1);
}
.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0a2540;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.video-modal-close:hover {
  background: #fff;
  transform: rotate(90deg) scale(1.06);
}
.video-modal-close svg {
  width: 18px;
  height: 18px;
}
.video-modal-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px;
  background: linear-gradient(135deg, #0a2540, #1a4a8c);
  color: #fff;
  text-align: left;
}
.placeholder-icon {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-icon svg {
  width: 48px;
  height: 48px;
  color: #fff;
}
.placeholder-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}
.placeholder-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 16px;
  font-weight: 500;
}
.placeholder-note {
  display: inline-block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

/* ===== Video responsive ===== */
@media (max-width: 1100px) {
  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .page-num {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .video-modal-placeholder {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .placeholder-icon {
    width: 72px;
    height: 72px;
  }
  .placeholder-icon svg {
    width: 36px;
    height: 36px;
  }
  .placeholder-text h3 {
    font-size: 18px;
  }
}
