@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Noto+Serif+SC:wght@600;700;900&display=swap');

:root {
  /* Typography & Network-Resilient Fallbacks */
  --font-serif: "Cinzel", "Playfair Display", -apple-system, BlinkMacSystemFont, "Songti SC", "Noto Serif SC", "STSong", "SimSun", "Georgia", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;

  /* Style 01: Executive Clinical Prestige Design Tokens */
  --primary: #0B1E36;
  --primary-navy: #0B1E36;
  --primary-dark: #071324;
  --primary-light: #F4F7FB;
  --primary-border: #CBD7E6;

  /* Champagne Gold Luxury Accents */
  --accent-gold: #C5A880;
  --accent-gold-hover: #B38F5B;
  --accent-gold-light: #FAF6F0;
  --accent-gold-border: #E8DCC8;

  /* Direction 1: Executive Clinical Prestige Accents (Obsidian Navy + Champagne Gold) */
  --accent-bronze: #8C6D3B;
  --accent-gold-glow: rgba(197, 168, 128, 0.35);
  --navy-soft: #152E50;
  --accent-teal: #C5A880;
  --accent-teal-light: #FAF6F0;
  --medical-blue: #0B1E36;

  --text-main: #0B1E36;
  --text-muted: #4B5E77;
  --text-light: #8A9CAE;

  --bg-page: #FBFDFE;
  --bg-card: #FFFFFF;
  --border-color: #E2E8F0;
  --border-gold: #E8DCC8;
  --success: #059669;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(11, 30, 54, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(11, 30, 54, 0.08);
  --shadow-lg: 0 16px 36px -6px rgba(11, 30, 54, 0.12);
  --shadow-gold: 0 8px 24px -4px rgba(197, 168, 128, 0.25);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

section[id], div[id], header[id] {
  scroll-margin-top: 85px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 155px;
  }
  section[id], div[id], header[id] {
    scroll-margin-top: 155px;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.25);
  box-shadow: 0 4px 20px rgba(7, 19, 36, 0.04);
  z-index: 100;
  padding: 10px 20px;
}

.header-container {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-main);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0B1E36 url('assets/images/brand_badge_gold.png') no-repeat center center;
  background-size: cover;
  box-shadow: 0 3px 12px rgba(11, 30, 54, 0.35), 0 0 0 1px rgba(197, 168, 128, 0.4);
  flex-shrink: 0;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  user-select: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.logo-area:hover .logo-badge {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(197, 168, 128, 0.5), 0 0 0 1.5px #C5A880;
}

/* Cross-Border Commercial Insurance Direct-Billing Showcase */
.aegis-insurance-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 64px 24px;
}

.aegis-insurance-container {
  max-width: 1160px;
  margin: 0 auto;
}

.aegis-insurance-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.aegis-insurance-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(11, 30, 54, 0.06);
  border: 1px solid #C5A880;
  color: #0B1E36;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.aegis-insurance-title {
  font-family: 'Cinzel', 'Noto Serif SC', serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #0B1E36;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.aegis-insurance-desc {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.6;
}

.aegis-insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.aegis-ins-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 2px 8px rgba(11, 30, 54, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aegis-ins-card:hover {
  transform: translateY(-3px);
  border-color: #C5A880;
  box-shadow: 0 10px 24px rgba(11, 30, 54, 0.08);
}

.aegis-ins-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.aegis-ins-brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: #0B1E36;
  display: flex;
  align-items: center;
  gap: 10px;
}

.aegis-ins-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #0B1E36;
  color: #C5A880;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  font-family: 'Cinzel', serif;
  border: 1px solid rgba(197, 168, 128, 0.4);
  flex-shrink: 0;
}

.aegis-ins-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  background: #F1F5F9;
  color: #0B1E36;
  border: 1px solid #CBD5E1;
}

.aegis-ins-pill.direct {
  background: rgba(16, 185, 129, 0.1);
  color: #065F46;
  border-color: rgba(16, 185, 129, 0.3);
}

.aegis-ins-body {
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 14px;
}

.aegis-ins-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed #E2E8F0;
  padding-top: 12px;
  font-size: 0.78rem;
  color: #64748B;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aegis-ins-features li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.aegis-ins-features li svg {
  color: #10B981;
  flex-shrink: 0;
}

.aegis-ins-bottom-banner {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-left: 4px solid #C5A880;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.aegis-ins-bottom-banner .banner-text {
  font-size: 0.86rem;
  color: #334155;
  line-height: 1.5;
}

.aegis-ins-bottom-banner .banner-text strong {
  color: #0B1E36;
}

/* Persistent Sticky Bottom Booking Bar */
.aegis-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 30, 54, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(197, 168, 128, 0.4);
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.35);
  padding: 10px 24px;
  z-index: 990;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.aegis-sticky-bar.visible {
  transform: translateY(0);
}

.aegis-sticky-bar .sticky-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aegis-sticky-bar .sticky-brand-name {
  font-family: 'Cinzel', 'Noto Serif SC', serif;
  font-weight: 800;
  color: #FFFFFF;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.aegis-sticky-bar .sticky-brand-desc {
  font-size: 0.74rem;
  color: #C5A880;
  font-weight: 600;
}

.aegis-sticky-bar .sticky-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .aegis-sticky-bar .sticky-brand-desc {
    display: none;
  }
  .aegis-sticky-bar {
    padding: 8px 14px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-links li {
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links a {
  text-decoration: none;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover {
  color: var(--primary, #0B1E36);
}

.hero {
  padding: 64px 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.25;
}

.hero p.lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 24px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 40px auto 60px;
  max-width: 1100px;
}

.stat-card {
  background: white;
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.comparison-table-wrapper {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
}

.comp-table th, .comp-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
  font-size: 0.92rem;
}

.comp-table th {
  background: #F8FAFC;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.comp-table tr.highlight {
  background: #F0FDF4;
}

.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 100;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .header-container { flex-direction: column; gap: 12px; align-items: flex-start; }
  .nav-links {
    display: flex;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 4px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links li { flex-shrink: 0; }
  .nav-links a {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-block;
  }
  .comp-table { display: block; overflow-x: auto; }
}

/* ========================================================================= */
/* Universal Comprehensive Global Multi-Channel Footer Styles (Embedded)     */
/* ========================================================================= */
.tw-global-footer {
  background: #0B132B !important;
  color: #E2E8F0 !important;
  padding: 60px 20px 30px !important;
  border-top: 2px solid #1E293B !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang TC", "Noto Sans TC", sans-serif !important;
  margin-top: 60px !important;
  text-align: left !important;
}
.tw-gf-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  gap: 32px;
}
@media (max-width: 980px) {
  .tw-gf-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .tw-gf-container {
    grid-template-columns: 1fr;
  }
}
.tw-gf-brand {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tw-gf-logo-dot {
  width: 10px;
  height: 10px;
  background: #C5A880;
  border-radius: 50%;
  display: inline-block;
}
.tw-gf-desc {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.65;
  margin-bottom: 16px;
}
.tw-gf-hub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tw-gf-tag {
  background: #1E293B;
  color: #CBD5E1;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid #334155;
}
.tw-gf-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #1E293B;
  padding-bottom: 8px;
}
.tw-gf-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tw-gf-link-btn {
  background: transparent;
  border: none;
  color: #CBD5E1;
  font-size: 0.85rem;
  text-align: left;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
  line-height: 1.5;
}
.tw-gf-link-btn:hover {
  color: #38BDF8;
}
.tw-gf-link-btn code {
  background: #1E293B;
  padding: 2px 6px;
  border-radius: 4px;
  color: #FBBF24;
  font-family: monospace;
}
.tw-gf-link {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.6;
  transition: color 0.15s;
}
.tw-gf-link:hover {
  color: #38BDF8;
}
.tw-gf-office {
  font-size: 0.82rem;
  color: #94A3B8;
  line-height: 1.55;
  margin-bottom: 12px;
}
.tw-gf-office strong {
  color: #E2E8F0;
}
.tw-gf-bottom {
  max-width: 1140px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid #1E293B;
}
.tw-gf-disclaimer {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 14px;
}
.tw-gf-copyright {
  font-size: 0.8rem;
  color: #94A3B8;
  text-align: center;
}

/* ==========================================================================
   Aegis Global Health · AI Chat Widget & Dynamic Booking Styles
   ========================================================================== */

/* Floating Trigger */
.tmh-chat-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #0B1E36 0%, #152E50 100%);
  color: #FAF6F0;
  border: 1.5px solid #C5A880;
  border-radius: 9999px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 10px 25px -5px rgba(11, 30, 54, 0.5), 0 0 16px rgba(197, 168, 128, 0.25);
  cursor: pointer;
  z-index: 9999;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
body:has(#aegis-sticky-bar.visible) .tmh-chat-trigger {
  bottom: 72px;
}
.tmh-chat-trigger:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #152E50 0%, #071324 100%);
  border-color: #D8C3A5;
  box-shadow: 0 14px 30px -5px rgba(11, 30, 54, 0.6), 0 0 20px rgba(197, 168, 128, 0.4);
}
.tmh-chat-trigger.tmh-open {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: scale(0.85) translateY(12px);
}
.tmh-pulse-badge {
  width: 8px;
  height: 8px;
  background: #34D399;
  border-radius: 50%;
  animation: tmh-pulse 1.8s infinite;
}
@keyframes tmh-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* Chat Modal Box */
.tmh-chat-box {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 420px;
  max-width: calc(100vw - 28px);
  height: 600px;
  max-height: calc(100vh - 100px);
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 20px 45px -8px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  z-index: 10000;
  overflow: hidden;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), bottom 0.25s ease;
}
body:has(#aegis-sticky-bar.visible) .tmh-chat-box {
  bottom: 74px;
}
.tmh-chat-box.tmh-hidden {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  visibility: hidden;
}

/* Header */
.tmh-chat-header {
  background: #0F172A;
  color: #FFFFFF;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tmh-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tmh-avatar {
  width: 34px;
  height: 34px;
  background: #0B1E36;
  color: #C5A880;
  border: 1.5px solid #C5A880;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.tmh-header-title {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}
.tmh-header-subtitle {
  font-size: 0.72rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.tmh-status-dot {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
}
.tmh-btn-icon {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.tmh-btn-icon:hover {
  color: #FFFFFF;
}

/* Language Switcher Bar */
.tmh-lang-bar {
  background: #FDFBF7;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #64748B;
  border-bottom: 1px solid #E5DCCF;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tmh-lang-bar::-webkit-scrollbar {
  display: none;
}
.tmh-lang-chip {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 12px;
  padding: 3px 9px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #1E293B;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}
.tmh-lang-chip:hover {
  border-color: #C5A880;
  color: #0B1E36;
  background: #FAF6F0;
}

/* Messages */
.tmh-chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #FAF9F6;
  box-sizing: border-box;
}
.tmh-msg {
  display: flex;
  flex-direction: column;
  max-width: 94%;
  box-sizing: border-box;
}
.tmh-msg-user {
  align-self: flex-end;
}
.tmh-msg-user .tmh-msg-bubble {
  background: #0B1E36;
  color: #FAF6F0;
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 14px 14px 2px 14px;
  padding: 10px 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}
.tmh-msg-bot {
  align-self: flex-start;
  width: 100%;
}
.tmh-msg-bot .tmh-msg-bubble {
  background: #FFFFFF;
  color: #1E293B;
  border: 1px solid #E2E8F0;
  border-radius: 14px 14px 14px 2px;
  padding: 12px 14px;
  font-size: 0.86rem;
  line-height: 1.55;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  word-break: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

/* Dots typing animation */
.tmh-dots span {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #94A3B8;
  border-radius: 50%;
  margin-right: 4px;
  animation: tmh-dots 1.4s infinite ease-in-out both;
}
.tmh-dots span:nth-child(1) { animation-delay: -0.32s; }
.tmh-dots span:nth-child(2) { animation-delay: -0.16s; }
@keyframes tmh-dots {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* Handoff Card */
.tmh-handoff-card {
  margin-top: 10px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 12px;
  padding: 12px;
  box-sizing: border-box;
  width: 100%;
}
.tmh-handoff-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 4px;
}
.tmh-handoff-desc {
  font-size: 0.76rem;
  color: #15803D;
  line-height: 1.4;
  margin-bottom: 8px;
}
.tmh-handoff-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tmh-btn-handoff {
  flex: 1 1 130px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-break: break-word;
  line-height: 1.3;
}
.tmh-btn-wa {
  background: #25D366;
  color: #FFFFFF;
}
.tmh-btn-wx {
  background: #07C160;
  color: #FFFFFF;
}
.tmh-btn-book {
  background: linear-gradient(135deg, #0B1E36 0%, #152E50 100%);
  color: #F3E8D8;
  border: 1px solid #C5A880;
}
.tmh-btn-book:hover {
  background: #C5A880;
  color: #071324;
}
.tmh-btn-phone {
  background: #0284C7;
  color: #FFFFFF;
}
.tmh-btn-tg {
  background: #0088CC;
  color: #FFFFFF;
}
.tmh-btn-line {
  background: #06C755;
  color: #FFFFFF;
}
.tmh-btn-kakao {
  background: #FEE500;
  color: #191919;
}
.tmh-btn-zalo {
  background: #0068FF;
  color: #FFFFFF;
}
.tmh-btn-email {
  background: #475569;
  color: #FFFFFF;
}

/* Quick Question Chips */
.tmh-quick-chips {
  padding: 8px 12px;
  background: #FFFFFF;
  border-top: 1px solid #F1F5F9;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  white-space: nowrap;
}
.tmh-chip {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 9999px;
  padding: 4px 10px;
  font-size: 0.74rem;
  color: #334155;
  cursor: pointer;
  transition: all 0.15s;
}
.tmh-chip:hover {
  background: #E0F2FE;
  border-color: #BAE6FD;
  color: #0284C7;
}

/* Chat Input */
.tmh-chat-form {
  padding: 10px 14px;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  display: flex;
  gap: 8px;
}
.tmh-chat-form input {
  flex: 1;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.15s;
}
.tmh-chat-form input:focus {
  border-color: #C5A880;
}
.tmh-btn-send {
  background: linear-gradient(135deg, #C5A880 0%, #B38F5B 100%);
  color: #071324;
  border: 1px solid #D8C3A5;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
}
.tmh-btn-send:hover {
  background: linear-gradient(135deg, #B38F5B 0%, #9C7744 100%);
  color: #FFFFFF;
}
.tmh-chat-footer {
  background: #F8FAFC;
  padding: 5px 12px;
  text-align: center;
  font-size: 0.68rem;
  color: #94A3B8;
  border-top: 1px solid #F1F5F9;
}

/* ==========================================================================
   Dynamic Booking Section & Card Styling
   ========================================================================== */
.tmh-booking-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  padding: 70px 24px;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}
.tmh-booking-container {
  max-width: 960px;
  margin: 0 auto;
}
.tmh-booking-card {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}
.tmh-input, .tmh-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #1E293B;
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.15s;
}
.tmh-input:focus, .tmh-select:focus {
  border-color: #C5A880;
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}
.tmh-searching-indicator {
  text-align: center;
  padding: 24px;
  background: #FAF6F0;
  border: 1px solid #E8DCC8;
  border-radius: 12px;
  margin-top: 18px;
}
.tmh-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #E8DCC8;
  border-top-color: #C5A880;
  border-radius: 50%;
  margin: 0 auto 12px;
  animation: tmh-spin 0.8s linear infinite;
}
@keyframes tmh-spin {
  to { transform: rotate(360deg); }
}
.tmh-slot-card {
  margin-top: 20px;
  background: #FFFFFF;
  border: 2px solid #C5A880;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 8px 24px -4px rgba(197, 168, 128, 0.25);
}
.tmh-slot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E2E8F0;
}
.tmh-badge-green {
  background: #FAF6F0;
  color: #8C6D3B;
  border: 1px solid #E8DCC8;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.tmh-badge-scarcity {
  background: #FAF6F0;
  color: #B38F5B;
  border: 1px solid #E8DCC8;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.tmh-btn-lock {
  background: linear-gradient(135deg, #C5A880 0%, #B38F5B 100%);
  color: #071324;
  border: 1px solid #D8C3A5;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.25);
}
.tmh-btn-lock:hover {
  background: linear-gradient(135deg, #B38F5B 0%, #9C7744 100%);
  color: #FFFFFF;
}
.tmh-confirm-slip {
  margin-top: 20px;
  background: #FFFFFF;
  border: 2px solid #C5A880;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 25px -5px rgba(197, 168, 128, 0.2);
}
.tmh-hidden {
  display: none !important;
}

/* Regional Contact Channel Buttons */
.tmh-btn-tg {
  background: #0088cc;
  color: #FFFFFF;
}
.tmh-btn-line {
  background: #06C755;
  color: #FFFFFF;
}
.tmh-btn-kakao {
  background: #FEE500;
  color: #191919 !important;
}
.tmh-btn-zalo {
  background: #0068FF;
  color: #FFFFFF;
}
.tmh-btn-email {
  background: #334155;
  color: #FFFFFF;
}

/* RTL Support for Arabic */
html[dir="rtl"] {
  direction: rtl;
  text-align: right;
}
html[dir="rtl"] .tw-gf-brand,
html[dir="rtl"] .tw-gf-col,
html[dir="rtl"] .stat-card,
html[dir="rtl"] .comp-table th,
html[dir="rtl"] .comp-table td {
  text-align: right;
}
html[dir="rtl"] .nav-links {
  direction: rtl;
}
html[dir="rtl"] .tmh-chat-button {
  right: auto;
  left: 24px;
}
html[dir="rtl"] .tmh-chat-modal {
  right: auto;
  left: 24px;
}

/* ==========================================================================
   Executive Clinical Prestige & Visualizer Upgrades (Anti-Rigidity Suite)
   ========================================================================== */

/* Modern Card Hover Elevation */
.tmh-elevate-card {
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.tmh-elevate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 118, 110, 0.15) !important;
}

/* Clinical Parameter Badge (JetBrains Mono style) */
.tmh-mono-badge {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.tmh-badge-teal, .tmh-badge-gold {
  background: #FAF6F0;
  color: #8C6D3B;
  border: 1px solid #E8DCC8;
}
.tmh-badge-amber {
  background: #FAF6F0;
  color: #B38F5B;
  border: 1px solid #E8DCC8;
}
.tmh-badge-slate {
  background: #F4F7FB;
  color: #0B1E36;
  border: 1px solid #CBD7E6;
  font-weight: 700;
}

/* Interactive Clinical Concern Visualizer Container */
.tmh-vis-box {
  background: #FFFFFF;
  border: 1px solid #E5DCCF;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 36px -8px rgba(11, 30, 54, 0.08);
}
.tmh-vis-tabs {
  display: flex;
  background: #FDFBF7;
  border-bottom: 1px solid #E5DCCF;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tmh-vis-tabs::-webkit-scrollbar {
  display: none;
}
.tmh-vis-tab-btn {
  flex: 1;
  min-width: 170px;
  padding: 16px 18px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.tmh-vis-tab-btn:hover {
  background: rgba(255, 255, 255, 0.85);
}
.tmh-vis-tab-btn.active {
  background: #FFFFFF;
  border-bottom-color: #C5A880;
}
.tmh-vis-tab-btn.active .tmh-vis-tab-title {
  color: #0B1E36;
  font-weight: 800;
}
.tmh-vis-tab-btn.active .tmh-vis-tab-sub {
  color: #B38F5B;
  font-weight: 700;
}
.tmh-vis-tab-icon {
  font-size: 1.4rem;
}
.tmh-vis-tab-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #1E293B;
  white-space: nowrap;
}
.tmh-vis-tab-sub {
  font-size: 0.72rem;
  color: #64748B;
}

/* Visualizer Panels */
.tmh-vis-panel {
  display: none;
  padding: 32px 28px;
  animation: tmhFadeIn 0.3s ease-in-out;
}
.tmh-vis-panel.active {
  display: block;
}
@keyframes tmhFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.tmh-vis-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 860px) {
  .tmh-vis-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* 4-Step Border-to-Bedside VIP Journey */
.tmh-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 980px) {
  .tmh-journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .tmh-journey-grid {
    grid-template-columns: 1fr;
  }
}
.tmh-journey-card {
  background: #FFFFFF;
  border: 1px solid #E5DCCF;
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(11, 30, 54, 0.04);
}
.tmh-journey-card:hover {
  transform: translateY(-4px);
  border-color: #C5A880;
  box-shadow: 0 14px 30px -6px rgba(197, 168, 128, 0.22);
}
.tmh-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.tmh-step-num {
  font-family: "Cinzel", "JetBrains Mono", monospace;
  font-size: 0.92rem;
  font-weight: 800;
  color: #0B1E36;
  background: #FAF6F0;
  border: 1px solid #E8DCC8;
  padding: 3px 10px;
  border-radius: 6px;
}
.tmh-step-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #8C6D3B;
  background: #FAF6F0;
  border: 1px solid #E8DCC8;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Equipment Showcase Card */
.tmh-eq-card {
  background: #FFFFFF;
  border: 1px solid #E5DCCF;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(11, 30, 54, 0.04);
}
.tmh-eq-card:hover {
  transform: translateY(-3px);
  border-color: #C5A880;
  box-shadow: 0 12px 28px -4px rgba(197, 168, 128, 0.2);
}
.tmh-eq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.tmh-eq-modality {
  font-size: 0.74rem;
  font-weight: 700;
  color: #8C6D3B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Comprehensive Inclusion Matrix Table */
.tmh-matrix-wrapper {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}
.tmh-matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.tmh-matrix-table th {
  background: #F8FAFC;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: #1E293B;
  border-bottom: 1px solid #E2E8F0;
}
.tmh-matrix-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #F1F5F9;
  color: #334155;
}
.tmh-matrix-table tr:hover td {
  background: #F8FAFD;
}
.tmh-check-yes {
  color: #B38F5B;
  font-weight: 800;
}
.tmh-check-no {
  color: #CBD5E1;
}

/* ==========================================================================
   Dynamic Intent Router, Low-Cost Micro-Interactions & Zero-Fee Shield
   ========================================================================== */
.tmh-dynamic-router-box {
  background: linear-gradient(135deg, #0A192F 0%, #0F2A4A 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0 36px 0;
  box-shadow: 0 16px 36px -8px rgba(10, 25, 47, 0.4);
  color: #FFFFFF;
}
.tmh-micro-intent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.tmh-micro-intent-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 14px 16px;
  color: #F1F5F9;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}
.tmh-micro-intent-btn:hover {
  background: rgba(197, 168, 128, 0.18);
  border-color: #C5A880;
  transform: translateY(-2px);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.25);
}
.tmh-micro-intent-btn.active {
  background: linear-gradient(135deg, #C5A880 0%, #B38F5B 100%);
  border-color: #D8C3A5;
  color: #071324;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.35);
}

/* Zero Middleman Fee Guarantee Shield (Direction 1 Luxury Alabaster & Gold) */
.tmh-zero-fee-shield {
  background: #FAF6F0;
  border: 1px solid #E8DCC8;
  border-radius: 14px;
  padding: 18px 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 14px rgba(11, 30, 54, 0.05);
}
.tmh-zero-fee-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.tmh-zero-fee-text h4 {
  margin: 0 0 4px 0;
  color: #0B1E36;
  font-size: 0.98rem;
  font-weight: 800;
}
.tmh-zero-fee-text p {
  margin: 0;
  color: #5A6A80;
  font-size: 0.84rem;
  line-height: 1.5;
}

/* Bespoke Concierge & Travel Checkbox Builder (Style 03: Luxury Hospitality & Wellness) */
.tmh-concierge-builder-card {
  background: linear-gradient(135deg, #FBF9F5 0%, #FFFFFF 100%);
  border: 1px solid #E5DCCF;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 16px 40px -8px rgba(179, 143, 91, 0.12);
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.tmh-concierge-builder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C5A880, #D4AF37, #C5A880);
}
.tmh-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.tmh-checkbox-item {
  background: #FFFFFF;
  border: 1px solid #EAE3D6;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}
.tmh-checkbox-item:hover {
  background: #FDFBF8;
  border-color: #C5A880;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(197, 168, 128, 0.12);
}
.tmh-checkbox-item.checked {
  background: #FBF8F2;
  border-color: #B38F5B;
  box-shadow: 0 6px 18px rgba(197, 168, 128, 0.18);
}
.tmh-checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #B38F5B;
  margin-top: 2px;
  cursor: pointer;
}
.tmh-checkbox-content h4 {
  margin: 0 0 4px 0;
  font-size: 0.95rem;
  color: #0B1E36;
  font-weight: 700;
}
.tmh-checkbox-content p {
  margin: 0;
  font-size: 0.82rem;
  color: #5A6A80;
  line-height: 1.45;
}
.tmh-builder-cta-box {
  background: #FAF7F2;
  border-top: 1px solid #E8DCC8;
  padding: 22px 26px;
  border-radius: 16px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Executive Clinical Prestige & Academic Badges */
.btn-gold {
  background: linear-gradient(135deg, #C5A880 0%, #B38F5B 100%);
  color: #071324 !important;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid #D8C3A5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(197, 168, 128, 0.3);
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #B38F5B 0%, #9C7744 100%);
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.45);
}

.tmh-doi-citation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #CBD7E6;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #334155;
  box-shadow: 0 1px 3px rgba(11, 30, 54, 0.05);
}
.tmh-doi-citation-badge strong {
  color: #0284C7;
}

.tmh-green-channel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0B1E36 0%, #173258 100%);
  color: #FAF6F0;
  border: 1px solid #C5A880;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(11, 30, 54, 0.15);
}
.tmh-green-channel-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C5A880;
  display: inline-block;
  box-shadow: 0 0 8px #C5A880;
}

/* ==================== AEGIS CLINICAL FACULTY & ADVISORY WALL ==================== */
.agh-faculty-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.agh-faculty-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px -2px rgba(11, 30, 54, 0.05);
}
.agh-faculty-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #E2E8F0;
  transition: background 0.25s ease;
}
.agh-faculty-card:hover {
  border-color: #C5A880;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -4px rgba(11, 30, 54, 0.12);
}
.agh-faculty-card:hover::before {
  background: linear-gradient(90deg, #C5A880, #B38F5B);
}
.agh-faculty-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.agh-faculty-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0B1E36;
}
.agh-faculty-dept {
  font-size: 0.85rem;
  font-weight: 700;
  color: #B38F5B;
  margin: 4px 0 10px;
}
.agh-faculty-badge {
  background: #F4F7FB;
  border: 1px solid #CBD7E6;
  color: #0B1E36;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.agh-faculty-badge.gold {
  background: #FAF6F0;
  border-color: #E8DCC8;
  color: #8C6D3F;
}
.agh-faculty-metrics {
  background: #F8FAFD;
  border: 1px solid #E8EEF5;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.8rem;
  color: #334155;
  line-height: 1.5;
  margin: 12px 0 16px;
}
.agh-faculty-metrics strong {
  color: #0B1E36;
}
.agh-faculty-desc {
  font-size: 0.84rem;
  color: #4B5E77;
  line-height: 1.6;
  flex-grow: 1;
}
.agh-faculty-action {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.agh-btn-inquire {
  background: #F4F7FB;
  border: 1px solid #CBD7E6;
  color: #0B1E36;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.agh-btn-inquire:hover {
  background: #0B1E36;
  color: #FAF6F0;
  border-color: #0B1E36;
}

/* ==================== AEGIS EXECUTIVE PRESTIGE HERO (MOCKUP ACCURATE) ==================== */
.aegis-hero-section {
  background: #08162B;
  background-image: radial-gradient(circle at 50% 15%, #0F223D 0%, #08162B 75%);
  padding: 24px 20px 48px;
  position: relative;
}
.aegis-hero-container {
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(197, 168, 128, 0.3);
  background: #FDFBF7;
  min-height: 640px;
  display: flex;
}
.aegis-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero_surgeon_or_bg.jpg');
  background-size: cover;
  background-position: center right;
  z-index: 1;
}
.aegis-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(253, 251, 247, 0.98) 0%,
    rgba(253, 251, 247, 0.95) 30%,
    rgba(253, 251, 247, 0.45) 42%,
    rgba(253, 251, 247, 0) 52%,
    rgba(253, 251, 247, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.aegis-hero-grid {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.65fr 1.05fr;
  gap: 20px;
  padding: 40px 36px;
  align-items: center;
}

/* Left Content */
.aegis-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aegis-hero-title {
  font-family: "Cinzel", "Playfair Display", "Times New Roman", "Georgia", serif;
  font-size: 2.55rem;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0.02em;
  color: #0B1E36;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.aegis-hero-desc {
  font-size: 0.98rem;
  color: #4B5E77;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 490px;
}
.aegis-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}
.btn-vip-gold {
  background: linear-gradient(135deg, #C5A880 0%, #B38F5B 100%);
  color: #071324 !important;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(197, 168, 128, 0.35);
  border: 1px solid #D8C3A5;
  transition: all 0.25s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-vip-gold:hover {
  background: linear-gradient(135deg, #B38F5B 0%, #9C7744 100%);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 168, 128, 0.45);
}
.btn-outline-navy {
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid #CBD7E6;
  color: #0B1E36 !important;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline-navy:hover {
  background: #FFFFFF;
  border-color: #0B1E36;
}
.aegis-doi-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #CBD7E6;
  border-radius: 10px;
  padding: 8px 14px;
  box-shadow: 0 2px 8px rgba(11, 30, 54, 0.06);
  font-size: 0.78rem;
  color: #334155;
  width: fit-content;
}
.aegis-doi-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #0B1E36;
  color: #C5A880;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.82rem;
}

/* Center Column (Floating Gold Seal) */
.aegis-hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: -90px;
  z-index: 4;
}
.aegis-gold-seal {
  background: radial-gradient(circle at 40% 30%, #152E50 0%, #08162B 80%);
  border: 2.5px solid #C5A880;
  outline: 1px solid rgba(197, 168, 128, 0.4);
  outline-offset: -5px;
  border-radius: 50%;
  width: 142px;
  height: 142px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  box-shadow: 0 14px 34px rgba(11, 30, 54, 0.45), inset 0 0 20px rgba(197, 168, 128, 0.25);
  animation: floatSeal 4.5s ease-in-out infinite;
}
@keyframes floatSeal {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.aegis-gold-seal .seal-hours {
  font-family: "Cinzel", serif;
  font-size: 1.65rem;
  font-weight: 900;
  color: #FDFBF7;
  line-height: 1;
}
.aegis-gold-seal .seal-title {
  font-size: 0.64rem;
  font-weight: 800;
  color: #C5A880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}
.aegis-gold-seal .seal-sub {
  font-size: 0.52rem;
  color: #94A3B8;
  margin-top: 2px;
  line-height: 1.2;
}

/* Right Column (Floating Consultation Box) */
.aegis-booking-card {
  background: #FFFFFF;
  border: 1px solid #E5DCCF;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 18px 45px -8px rgba(11, 30, 54, 0.22);
  width: 100%;
  max-width: 360px;
  margin-left: auto;
}
.aegis-booking-card h3 {
  font-family: "Cinzel", "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0B1E36;
  text-align: center;
  margin-bottom: 6px;
}
.aegis-booking-badge {
  background: #0B1E36;
  color: #FAF6F0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 12px;
  border: 1px solid #C5A880;
}
.aegis-form-row {
  margin-bottom: 8px;
}
.aegis-form-row label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 2px;
}
.aegis-form-row input, .aegis-form-row select {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid #CBD5E1;
  border-radius: 7px;
  font-size: 0.8rem;
  color: #0F172A;
  background: #FAF9F6;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.aegis-form-row input:focus, .aegis-form-row select:focus {
  outline: none;
  border-color: #C5A880;
  background: #FFFFFF;
}
.btn-confirm-appt {
  width: 100%;
  background: linear-gradient(135deg, #C5A880 0%, #B38F5B 100%);
  color: #071324;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 11px;
  border-radius: 7px;
  border: 1px solid #D8C3A5;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 4px 14px rgba(197, 168, 128, 0.3);
  transition: all 0.2s ease;
}
.btn-confirm-appt:hover {
  background: linear-gradient(135deg, #B38F5B 0%, #9C7744 100%);
  color: #FFFFFF;
}

/* Metric Strip Under Hero */
.aegis-metrics-strip {
  max-width: 1320px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.aegis-metric-item {
  background: rgba(11, 30, 54, 0.75);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 14px;
  padding: 18px 20px;
  color: #F8FAFC;
  backdrop-filter: blur(10px);
  transition: transform 0.2s, border-color 0.2s;
}
.aegis-metric-item:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 168, 128, 0.6);
}

@media (max-width: 1100px) {
  .aegis-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .aegis-hero-center {
    display: none;
  }
  .aegis-booking-card {
    margin: 0 auto;
  }
  .aegis-metrics-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .aegis-hero-grid {
    padding: 24px 18px;
  }
  .aegis-hero-title {
    font-size: 1.9rem;
  }
  .aegis-metrics-strip {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   AEGIS GLOBAL HEALTH: DROPDOWN, HERO INTRO, EQUIPMENT & FACULTY STYLES
   ========================================================================== */

/* Top Regional Switcher Bar */
.aegis-top-bar {
  background: #08162B;
  color: #94A3B8;
  font-size: 0.78rem;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(197, 168, 128, 0.25);
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1000;
}

/* Language Dropdown Selector */
.aegis-lang-selector-wrap {
  position: relative;
  display: inline-block;
}
.aegis-lang-btn {
  background: rgba(197, 168, 128, 0.18);
  border: 1px solid #C5A880;
  color: #FAF6F0;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.aegis-lang-btn:hover {
  background: rgba(197, 168, 128, 0.32);
  border-color: #E6D2B5;
  color: #FFFFFF;
}
.aegis-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #0B1E36;
  border: 1px solid #C5A880;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  min-width: 220px;
  padding: 8px 0;
  display: none;
  z-index: 1000;
  backdrop-filter: blur(12px);
}
.aegis-lang-selector-wrap:hover .aegis-lang-menu,
.aegis-lang-selector-wrap.open .aegis-lang-menu {
  display: block;
}
.aegis-lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.aegis-lang-option:hover {
  background: rgba(197, 168, 128, 0.18);
  color: #C5A880;
}
.aegis-lang-option.active {
  color: #C5A880;
  font-weight: 800;
  background: rgba(197, 168, 128, 0.12);
}

/* Executive Intro Hero (Brand First, Form Deferred) */
.aegis-hero-intro-grid {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 44px;
}
.aegis-hero-feature-panel {
  background: rgba(11, 30, 54, 0.65);
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 18px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.aegis-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
  text-align: left;
}
.aegis-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 10px;
  padding: 10px 14px;
  transition: border-color 0.2s;
}
.aegis-feature-item:hover {
  border-color: rgba(197, 168, 128, 0.6);
}
.aegis-feature-icon {
  font-size: 1.25rem;
  line-height: 1.2;
}
.aegis-feature-title {
  color: #FAF6F0;
  font-weight: 700;
  font-size: 0.88rem;
}
.aegis-feature-desc {
  color: #94A3B8;
  font-size: 0.76rem;
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .aegis-hero-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
}

/* Equipment Showcase Section */
.aegis-equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
@media (max-width: 1024px) {
  .aegis-equip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .aegis-equip-grid {
    grid-template-columns: 1fr;
  }
}
.aegis-equip-card {
  background: #FFFFFF;
  border: 1px solid #E5DCCF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(11, 30, 54, 0.05);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.aegis-equip-card:hover {
  transform: translateY(-4px);
  border-color: #C5A880;
  box-shadow: 0 14px 30px rgba(197, 168, 128, 0.25);
}
.aegis-equip-img-wrap {
  height: 200px;
  background: #FAF6F0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid #EAE2D5;
}
.aegis-equip-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.aegis-equip-card:hover .aegis-equip-img {
  transform: scale(1.05);
}
.aegis-equip-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Faculty Board Section */
.aegis-faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}
@media (max-width: 1100px) {
  .aegis-faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .aegis-faculty-grid {
    grid-template-columns: 1fr;
  }
}
.aegis-faculty-card {
  background: #FFFFFF;
  border: 1px solid #E5DCCF;
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 6px 20px rgba(11, 30, 54, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.25s ease;
}
.aegis-faculty-card:hover {
  transform: translateY(-4px);
  border-color: #C5A880;
  box-shadow: 0 14px 30px rgba(197, 168, 128, 0.25);
}
.aegis-faculty-avatar-wrap {
  width: 104px;
  height: 136px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #C5A880;
  box-shadow: 0 4px 14px rgba(11, 30, 54, 0.12);
  margin-bottom: 14px;
  background: #FAF6F0;
}
.aegis-faculty-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dedicated VIP Consultation Section */
.aegis-consultation-section {
  padding: 70px 24px;
  background: linear-gradient(180deg, #FAF6F0 0%, #F4ECE1 100%);
  border-top: 1px solid #E8DCBE;
  border-bottom: 1px solid #E8DCBE;
}
.aegis-consultation-container {
  max-width: 1140px;
  margin: 0 auto;
  background: #0B1E36;
  border: 2px solid #C5A880;
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 20px 50px rgba(11, 30, 54, 0.25);
  color: #FAF6F0;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
}
@media (max-width: 900px) {
  .aegis-consultation-container {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }
}

/* ==========================================================================
   NEW: Why China Clinical Excellence Compass (WO-01)
   ========================================================================== */
.aegis-why-china-strip {
  background: #08162B;
  border-top: 1px solid #C5A880;
  border-bottom: 1px solid rgba(197, 168, 128, 0.4);
  padding: 44px 24px;
  position: relative;
  overflow: hidden;
}
.aegis-why-china-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.aegis-why-china-header {
  text-align: center;
  margin-bottom: 28px;
}
.aegis-why-china-compass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .aegis-why-china-compass-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .aegis-why-china-compass-grid {
    grid-template-columns: 1fr;
  }
}
.aegis-compass-card {
  background: rgba(11, 30, 54, 0.7);
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 14px;
  padding: 22px 18px;
  position: relative;
  transition: all 0.28s ease;
  backdrop-filter: blur(8px);
}
.aegis-compass-card:hover {
  transform: translateY(-4px);
  border-color: #C5A880;
  box-shadow: 0 12px 28px rgba(197, 168, 128, 0.18);
  background: rgba(14, 38, 68, 0.9);
}
.aegis-compass-num {
  font-size: 1.55rem;
  font-weight: 800;
  color: #C5A880;
  line-height: 1.2;
  font-family: var(--font-serif);
}
.aegis-compass-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: #FAF6F0;
  margin: 6px 0 4px;
}
.aegis-compass-sub {
  font-size: 0.78rem;
  color: #CBD5E1;
  line-height: 1.5;
}

/* ==========================================================================
   NEW: Regional Fast-Track Anchor Bar & Pill Strip (WO-02)
   ========================================================================== */
.aegis-fast-track-strip {
  background: #0B1E36;
  border-top: 1px solid rgba(197, 168, 128, 0.25);
  border-bottom: 1px solid rgba(197, 168, 128, 0.35);
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(8, 22, 43, 0.3);
  padding: 12px 16px;
}
.aegis-fast-track-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.aegis-fast-track-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #C5A880;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.aegis-fast-track-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  flex-wrap: wrap;
}
.aegis-pill-btn {
  background: rgba(250, 246, 240, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.4);
  color: #FAF6F0;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.22s ease;
  text-decoration: none;
  white-space: nowrap;
}
.aegis-pill-btn:hover {
  background: #C5A880;
  color: #08162B;
  border-color: #FAF6F0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.35);
}
.aegis-drawer-toggle-btn {
  background: linear-gradient(135deg, #C5A880 0%, #B38F5B 100%);
  color: #08162B;
  border: 1.5px solid #FAF6F0;
  padding: 8px 22px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  margin-left: auto;
  box-shadow: 0 4px 18px rgba(197, 168, 128, 0.45);
  animation: aegis-btn-pulse 2.4s infinite ease-in-out;
}
.aegis-drawer-toggle-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 22px rgba(197, 168, 128, 0.65);
}
@keyframes aegis-btn-pulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(197, 168, 128, 0.4);
    border-color: #FAF6F0;
  }
  50% {
    box-shadow: 0 0 24px rgba(197, 168, 128, 0.85);
    border-color: #FFFFFF;
  }
}

/* ==========================================================================
   NEW: Specialty Matrix Drawer & Search Engine (WO-03)
   ========================================================================== */
.aegis-specialty-drawer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: #08162B;
  border-bottom: 2px solid #C5A880;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.aegis-specialty-drawer.active {
  max-height: 2800px;
  opacity: 1;
  padding: 30px 20px 36px;
  overflow-y: auto;
}
.aegis-drawer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.aegis-drawer-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(11, 30, 54, 0.8);
  border: 1px solid #C5A880;
  border-radius: 12px;
  padding: 8px 16px;
  max-width: 600px;
  margin: 0 auto 24px;
}
.aegis-drawer-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #FAF6F0;
  font-size: 0.92rem;
  flex: 1;
}
.aegis-drawer-search-input::placeholder {
  color: #94A3B8;
}
.aegis-specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1080px) {
  .aegis-specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .aegis-specialty-grid {
    grid-template-columns: 1fr;
  }
}
.aegis-specialty-tile {
  background: #0B1E36;
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.22s ease;
}
.aegis-specialty-tile:hover {
  border-color: #C5A880;
  background: #112847;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(197, 168, 128, 0.2);
}
.aegis-specialty-title {
  color: #FAF6F0;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aegis-specialty-sub {
  color: #B38F5B;
  font-size: 0.74rem;
  margin: 4px 0 10px;
  font-weight: 600;
}
.aegis-disease-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.aegis-disease-tag {
  background: rgba(250, 246, 240, 0.06);
  border: 1px solid rgba(197, 168, 128, 0.2);
  color: #CBD5E1;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 6px;
}
.aegis-specialty-footer {
  border-top: 1px solid rgba(197, 168, 128, 0.15);
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: #C5A880;
  font-weight: 700;
}

/* Golden Pulse Highlight Animation */
@keyframes goldPulse {
  0% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.85); outline: 3px solid #C5A880; }
  50% { box-shadow: 0 0 28px 10px rgba(197, 168, 128, 0.5); outline: 3px solid #E6D2B5; }
  100% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0); outline: 3px solid transparent; }
}
.aegis-pulse-target {
  animation: goldPulse 2.3s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
  border-radius: 14px;
}

/* ==========================================================================
   NEW: Progressive Disclosure Accordions for Long Content (WO-06)
   ========================================================================== */
.aegis-accordion {
  border: 1px solid #E5DCCF;
  border-radius: 12px;
  margin: 16px 0;
  overflow: hidden;
  background: #FFFFFF;
}
.aegis-accordion-header {
  padding: 16px 20px;
  background: #F8FAFD;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  color: #0B1E36;
  font-size: 0.95rem;
  user-select: none;
  transition: background 0.2s;
}
.aegis-accordion-header:hover {
  background: #F1F5F9;
}
.aegis-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 20px;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
}
.aegis-accordion.open .aegis-accordion-body {
  max-height: 1000px;
  padding: 18px 20px 22px;
  border-top: 1px solid #E2E8F0;
}
.aegis-accordion-icon {
  font-size: 1.1rem;
  color: #B38F5B;
  transition: transform 0.25s ease;
}
.aegis-accordion.open .aegis-accordion-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   NEW: Micro-Commitment CTAs & Modals (WO-05)
   ========================================================================== */
.btn-micro-cta {
  background: linear-gradient(135deg, #0B1E36 0%, #163254 100%);
  color: #C5A880;
  border: 1px solid #C5A880;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  margin-top: 8px;
}
.btn-micro-cta:hover {
  background: #C5A880;
  color: #0B1E36;
  border-color: #0B1E36;
  transform: translateY(-1px);
}
.aegis-micro-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 22, 43, 0.75);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   NEW: Care Continuity & Payment Reassurance Badges (WO-07)
   ========================================================================== */
.aegis-reassurance-strip {
  background: #FAF6F0;
  border: 1px solid #E5DCCF;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .aegis-reassurance-strip {
    grid-template-columns: 1fr;
  }
}
.aegis-reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.aegis-reassurance-item .icon {
  font-size: 1.3rem;
  line-height: 1.2;
}
.aegis-reassurance-item .title {
  font-size: 0.84rem;
  font-weight: 800;
  color: #0B1E36;
}
.aegis-reassurance-item .desc {
  font-size: 0.74rem;
  color: #64748B;
  margin-top: 2px;
  line-height: 1.4;
}

/* ==========================================================================
   ELEVATED: Mayo Clinic-Style Clinical Specialty & Disease Search Console
   ========================================================================== */
.aegis-clinical-search-console {
  background: #08162B;
  padding: 0 20px 36px;
  position: relative;
  z-index: 5;
}
.aegis-console-card {
  max-width: 1320px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(15, 34, 61, 0.95) 0%, rgba(8, 22, 43, 0.98) 100%);
  border: 1.5px solid rgba(197, 168, 128, 0.45);
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(197, 168, 128, 0.12);
  backdrop-filter: blur(12px);
}
.aegis-console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
  padding-bottom: 12px;
}
.aegis-console-title-area {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.aegis-console-tag {
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid #C5A880;
  color: #C5A880;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.aegis-console-title {
  color: #FAF6F0;
  font-size: 1.05rem;
  font-weight: 800;
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
}
.aegis-console-desc {
  color: #94A3B8;
  font-size: 0.8rem;
}
.aegis-console-search-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.aegis-console-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(8, 22, 43, 0.9);
  border: 1.5px solid rgba(197, 168, 128, 0.4);
  border-radius: 10px;
  padding: 4px 8px 4px 16px;
  transition: all 0.25s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}
.aegis-console-input-wrap:focus-within {
  border-color: #C5A880;
  box-shadow: 0 0 16px rgba(197, 168, 128, 0.35), inset 0 2px 4px rgba(0, 0, 0, 0.4);
}
.aegis-console-search-icon {
  width: 18px;
  height: 18px;
  color: #C5A880;
  margin-right: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aegis-console-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  font-family: inherit;
  padding: 10px 0;
}
.aegis-console-input::placeholder {
  color: #64748B;
  font-size: 0.88rem;
  font-weight: 400;
}
.aegis-console-btn {
  background: linear-gradient(135deg, #C5A880 0%, #B38F5B 100%);
  color: #08162B;
  border: 1px solid #D8C3A5;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.22s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.aegis-console-btn:hover {
  background: linear-gradient(135deg, #D8C3A5 0%, #C5A880 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(197, 168, 128, 0.4);
}
.aegis-console-pills-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.aegis-console-pills-label {
  color: #C5A880;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-right: 4px;
}
.aegis-console-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: #FAF6F0;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}
.aegis-console-pill:hover {
  background: rgba(197, 168, 128, 0.2);
  border-color: #C5A880;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(197, 168, 128, 0.25);
}

/* Clinical Intent Filter Bar */
.aegis-intent-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.aegis-intent-label {
  color: #C5A880;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-right: 4px;
  white-space: nowrap;
}
.aegis-intent-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(197, 168, 128, 0.35);
  color: #FAF6F0;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.aegis-intent-pill:hover {
  background: rgba(197, 168, 128, 0.2);
  border-color: #C5A880;
  color: #FFFFFF;
  transform: translateY(-1px);
}
.aegis-intent-pill.active {
  background: linear-gradient(135deg, #C5A880 0%, #B38F5B 100%);
  border-color: #D8C3A5;
  color: #08162B;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.3);
}

/* Ensure Bespoke Concierge Builder button has prestigious high contrast */
#tmh-builder-submit-btn,
.tmh-builder-cta-box .tmh-btn-lock {
  background: linear-gradient(135deg, #C5A880 0%, #B38F5B 100%) !important;
  color: #08162B !important;
  font-weight: 800 !important;
  border: 1px solid #D8C3A5 !important;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.35) !important;
  text-shadow: none !important;
}
#tmh-builder-submit-btn:hover,
.tmh-builder-cta-box .tmh-btn-lock:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #C5A880 100%) !important;
  color: #08162B !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.45) !important;
}

/* Hairline Vector Icon Utilities */
.aegis-svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .aegis-console-card {
    padding: 16px 18px;
  }
  .aegis-console-search-row {
    flex-direction: column;
    align-items: stretch;
  }
  .aegis-console-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==================== AEGIS EXECUTIVE PRIORITY CASE DESK ==================== */
.aegis-priority-desk-section {
  padding: 88px 24px;
  background: linear-gradient(180deg, #050E1A 0%, #08162B 50%, #050E1A 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(197, 168, 128, 0.2);
}
.aegis-priority-desk-container {
  max-width: 1080px;
  margin: 0 auto;
}
.aegis-priority-desk-card {
  background: rgba(11, 30, 54, 0.85);
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 20px;
  padding: 56px 44px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
}
.aegis-priority-desk-header {
  max-width: 780px;
  margin: 0 auto 36px;
}
.aegis-priority-desk-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid #C5A880;
  color: #C5A880;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.aegis-priority-desk-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #FAF6F0;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.aegis-priority-desk-desc {
  font-size: 0.96rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin: 0;
}
.aegis-priority-direct-channels {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 36px 0 28px;
}
.aegis-channel-btn-primary {
  background: linear-gradient(135deg, #C5A880 0%, #B38F5B 100%);
  color: #08162B !important;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 10px;
  border: 1px solid #D8C3A5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 22px rgba(197, 168, 128, 0.4);
  transition: all 0.25s ease;
  cursor: pointer;
}
.aegis-channel-btn-primary:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #C5A880 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(197, 168, 128, 0.55);
}
.aegis-channel-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(197, 168, 128, 0.45);
  color: #FAF6F0 !important;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.aegis-channel-btn-secondary:hover {
  background: rgba(197, 168, 128, 0.15);
  border-color: #C5A880;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}
.aegis-priority-callback-box {
  background: rgba(8, 22, 43, 0.7);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: 12px;
  padding: 22px 28px;
  max-width: 720px;
  margin: 0 auto;
}
.aegis-callback-form-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.aegis-callback-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.35);
  color: #FAF6F0;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 0.92rem;
  outline: none;
  transition: all 0.2s ease;
}
.aegis-callback-input:focus {
  border-color: #C5A880;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 12px rgba(197, 168, 128, 0.25);
}
.aegis-callback-btn {
  background: linear-gradient(135deg, #C5A880 0%, #B38F5B 100%);
  color: #08162B;
  border: 1px solid #D8C3A5;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.aegis-callback-btn:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #C5A880 100%);
  transform: translateY(-1px);
}
.aegis-priority-guarantee-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .aegis-priority-desk-card {
    padding: 32px 20px;
  }
  .aegis-priority-desk-title {
    font-size: 1.6rem;
  }
  .aegis-priority-direct-channels {
    flex-direction: column;
  }
  .aegis-channel-btn-primary,
  .aegis-channel-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .aegis-callback-form-row {
    flex-direction: column;
  }
  .aegis-callback-btn {
    width: 100%;
  }
}

/* ========================================================================= */
/* Luxury Clinical Video Showcase Section                                     */
/* ========================================================================= */
.aegis-video-showcase-section {
  padding: 48px 20px 52px;
  background: radial-gradient(circle at 50% 30%, #0F2847 0%, #071324 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.aegis-video-showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 168, 128, 0.4), transparent);
}

.aegis-video-container {
  max-width: 860px;
  margin: 0 auto;
}

.aegis-video-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 24px;
}

.aegis-video-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid rgba(197, 168, 128, 0.4);
  color: #E6D2B5;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.aegis-video-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1.32;
  margin-bottom: 10px;
}

.aegis-video-subtitle {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.55;
}

.aegis-video-frame-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 14px;
  padding: 6px;
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.35) 0%, rgba(11, 30, 54, 0.6) 50%, rgba(197, 168, 128, 0.2) 100%);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45), 0 0 30px rgba(197, 168, 128, 0.12);
}

.aegis-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 460px;
  border-radius: 10px;
  overflow: hidden;
  background: #020712;
}

.aegis-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aegis-video-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 0.85rem;
  color: #CBD5E1;
  flex-wrap: wrap;
  gap: 12px;
}

.aegis-video-meta-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.aegis-video-meta-badge {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34D399;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ========================================================================= */
/* Official Media Coverage & Academic Evidence Citations Grid                */
/* ========================================================================= */
.aegis-media-citations-section {
  padding: 80px 24px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.aegis-media-container {
  max-width: 1400px;
  margin: 0 auto;
}

.aegis-media-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 48px;
}

.aegis-media-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(11, 30, 54, 0.06);
  border: 1px solid rgba(197, 168, 128, 0.4);
  color: #0B1E36;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.aegis-media-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 800;
  color: #0B1E36;
  margin-bottom: 12px;
}

.aegis-media-desc {
  font-size: 0.94rem;
  color: #64748B;
  line-height: 1.6;
}

.aegis-media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.aegis-media-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(11, 30, 54, 0.03);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.aegis-media-card:hover {
  transform: translateY(-4px);
  border-color: #C5A880;
  box-shadow: 0 16px 32px rgba(11, 30, 54, 0.08);
}

.aegis-media-source-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 14px;
  align-self: flex-start;
}

.aegis-source-xinhua {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: #B91C1C;
}

.aegis-source-people {
  background: rgba(185, 28, 28, 0.08);
  border: 1px solid rgba(185, 28, 28, 0.25);
  color: #991B1B;
}

.aegis-source-xinmin {
  background: rgba(15, 76, 129, 0.08);
  border: 1px solid rgba(15, 76, 129, 0.25);
  color: #0F4C81;
}

.aegis-source-tongji {
  background: rgba(180, 83, 9, 0.08);
  border: 1px solid rgba(180, 83, 9, 0.25);
  color: #B45309;
}

.aegis-media-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.45;
  margin-bottom: 10px;
}

.aegis-media-card-excerpt {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.aegis-media-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F1F5F9;
  padding-top: 14px;
  font-size: 0.78rem;
  color: #94A3B8;
}

.aegis-media-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #B38F5B;
  font-weight: 700;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.aegis-media-card:hover .aegis-media-link-btn {
  color: #8C6A36;
}

@media (max-width: 1024px) {
  .aegis-media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .aegis-media-grid {
    grid-template-columns: 1fr;
  }
  .aegis-video-title {
    font-size: 1.6rem;
  }
}




/* ==================== VIDEO PLAY OVERLAY & EQUIPMENT CALLOUT ==================== */
.aegis-video-frame {
  position: relative;
  overflow: hidden;
}
.aegis-video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(7, 20, 36, 0.42);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  pointer-events: auto;
}
.aegis-video-play-overlay:hover {
  background: rgba(7, 20, 36, 0.22);
}
.aegis-video-play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #071424;
  box-shadow: 0 0 0 10px rgba(197, 168, 128, 0.25), 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  animation: aegisPlayPulse 2.4s infinite;
}
.aegis-video-play-overlay:hover .aegis-video-play-btn {
  transform: scale(1.1);
  background: #E2CCA8;
  box-shadow: 0 0 0 16px rgba(197, 168, 128, 0.35), 0 12px 35px rgba(0, 0, 0, 0.6);
}
@keyframes aegisPlayPulse {
  0% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.5), 0 8px 25px rgba(0,0,0,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(197, 168, 128, 0), 0 8px 25px rgba(0,0,0,0.5); }
  100% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0), 0 8px 25px rgba(0,0,0,0.5); }
}
.aegis-video-play-text {
  margin-top: 14px;
  color: #FAF6F0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}
.aegis-equipment-callout-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11, 30, 54, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 8px;
  padding: 8px 14px;
  color: #FAF6F0;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

.aegis-video-sound-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(11, 30, 54, 0.9);
  backdrop-filter: blur(8px);
  border: 1.5px solid #C5A880;
  border-radius: 20px;
  padding: 6px 14px;
  color: #FAF6F0;
  font-size: 0.78rem;
  font-weight: 600;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

.aegis-video-sound-toggle:hover {
  background: #C5A880;
  color: #071324;
  border-color: #FAF6F0;
}

.aegis-video-sound-toggle.active {
  background: rgba(16, 185, 129, 0.92);
  border-color: #34D399;
  color: #FFFFFF;
}

/* ==================== INTERACTIVE SPECIALTY PILLS ==================== */
.aegis-specialty-pills-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 24px;
}
.aegis-pill-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #1E293B;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.aegis-pill-item:hover, .aegis-pill-item.active {
  background: #0B1E36;
  color: #C5A880;
  border-color: #C5A880;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 30, 54, 0.15);
}
.aegis-pill-item .pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C5A880;
}

/* ==================== DECISION FAQ SECTION ==================== */
.aegis-faq-section {
  padding: 80px 24px;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
}
.aegis-faq-container {
  max-width: 1080px;
  margin: 0 auto;
}
.aegis-faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.aegis-faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(197, 168, 128, 0.12);
  color: #8C6A36;
  border: 1px solid rgba(197, 168, 128, 0.35);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.aegis-faq-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 800;
  color: #0B1E36;
  line-height: 1.3;
  margin-bottom: 12px;
}
.aegis-faq-subtitle {
  font-size: 0.95rem;
  color: #64748B;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}
.aegis-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.aegis-faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}
.aegis-faq-item:hover {
  border-color: #CBD5E1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.aegis-faq-question {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.aegis-faq-q-text {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.45;
}
.aegis-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.25s ease;
}
.aegis-faq-item.open .aegis-faq-icon {
  background: #0B1E36;
  color: #C5A880;
  transform: rotate(45deg);
}
.aegis-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.7;
}
.aegis-faq-item.open .aegis-faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ==================== 3-STEP PRIORITY BOOKING PASS ==================== */
.aegis-booking-steps-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
  text-align: left;
}
.aegis-step-block {
  background: rgba(15, 40, 71, 0.6);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 12px;
  padding: 18px 20px;
}
.aegis-step-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FAF6F0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aegis-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #C5A880;
  color: #071424;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}
.aegis-chip-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.aegis-chip-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #E2E8F0;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.aegis-chip-btn:hover, .aegis-chip-btn.selected {
  background: #C5A880;
  color: #071424;
  border-color: #E2CCA8;
  font-weight: 700;
}
.aegis-pipl-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #94A3B8;
  margin: 12px 0 16px;
  justify-content: center;
}
.aegis-pipl-row a {
  color: #C5A880;
  text-decoration: underline;
}
.aegis-booking-pass-card {
  display: none;
  background: linear-gradient(135deg, #0B1E36 0%, #071424 100%);
  border: 1.5px solid #C5A880;
  border-radius: 14px;
  padding: 24px;
  margin-top: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  animation: fadeInPass 0.5s ease forwards;
  text-align: left;
}
@keyframes fadeInPass {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.aegis-pass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed rgba(197, 168, 128, 0.35);
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.aegis-pass-ref {
  font-family: 'Cinzel', monospace;
  font-size: 1.1rem;
  font-weight: 800;
  color: #C5A880;
  letter-spacing: 0.05em;
}
.aegis-pass-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 700;
}
.aegis-pass-body {
  font-size: 0.88rem;
  color: #E2E8F0;
  line-height: 1.7;
  margin-bottom: 20px;
}
.aegis-pass-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Luxury Toast & Glassmorphism Modal System (Zero Native alert())
   ========================================================================== */
.aegis-toast-container {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999999;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.aegis-toast-container.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.aegis-toast-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0B1E36;
  border: 1px solid #C5A880;
  color: #FAF6F0;
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(7, 19, 36, 0.45);
  font-size: 0.88rem;
  line-height: 1.4;
  backdrop-filter: blur(8px);
}

.aegis-toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aegis-glass-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 19, 36, 0.78);
  backdrop-filter: blur(8px);
  z-index: 999990;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.aegis-glass-modal-backdrop.active {
  display: flex;
}

.aegis-glass-modal-card {
  background: #FFFFFF;
  border: 1px solid #E2D9CC;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(7, 19, 36, 0.35);
  overflow: hidden;
  animation: aegisFadeInUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.aegis-glass-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid #F1F5F9;
  background: #FAF8F5;
}

.aegis-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #64748B;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.aegis-modal-close:hover {
  color: #0B1E36;
}

.aegis-glass-modal-body {
  padding: 24px;
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.7;
  max-height: 60vh;
  overflow-y: auto;
}

.aegis-glass-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #F1F5F9;
  display: flex;
  justify-content: flex-end;
  background: #FAF8F5;
}

/* Embedded Package B Popular Badge (Anti-clipping & Zero Sticky Collision) */
.aegis-pkg-popular-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  background: linear-gradient(135deg, #0B1E36, #152E50);
  border: 1px solid #C5A880;
  color: #FAF6F0;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(11, 30, 54, 0.2);
  letter-spacing: 0.04em;
  z-index: 2;
}

@keyframes aegisFadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Multi-Currency Estimator Toolbar */
.aegis-currency-selector-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 30px auto;
  padding: 8px 18px;
  background: #FFFFFF;
  border: 1px solid #E2D9CC;
  border-radius: 9999px;
  width: fit-content;
  box-shadow: 0 4px 14px rgba(11, 30, 54, 0.05);
}
.aegis-curr-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0B1E36;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}
.aegis-curr-pills {
  display: inline-flex;
  gap: 4px;
  background: #F1F5F9;
  padding: 3px;
  border-radius: 9999px;
}
.aegis-curr-btn {
  background: transparent;
  border: none;
  border-radius: 9999px;
  padding: 5px 13px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}
.aegis-curr-btn:hover {
  color: #0B1E36;
}
.aegis-curr-btn.active {
  background: #0B1E36;
  color: #FAF6F0;
  box-shadow: 0 2px 8px rgba(11, 30, 54, 0.25);
}
@media (max-width: 640px) {
  .aegis-currency-selector-bar {
    border-radius: 12px;
    padding: 10px 14px;
    flex-direction: column;
    gap: 8px;
  }
  .aegis-curr-pills {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .aegis-curr-btn {
    padding: 4px 10px;
    font-size: 0.74rem;
  }
}

