
/* Mobile Navigation Toggle (Hidden on Desktop) */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800;900&display=swap');

/* ==========================================================================
   WEBSITE CHI HỘI BỆNH VIỆN TƯ NHÂN TP.HCM VÀ CÁC TỈNH PHÍA NAM
   Phong Cách Thiết Kế Y Tế Quốc Tế Cao Cấp (Tham Khảo Chuẩn AIH - aih.com.vn)
   Nền Trắng Sáng, Tinh Tế, Bố Cục Thoáng Đãng, Chuẩn Mực Y Khoa
   ========================================================================== */

:root {
  /* Bảng màu nhận diện Chi Hội */
  --brand-navy: #2C3691;
  --brand-navy-dark: #161d52;
  --brand-cyan: #27AAE1;
  --brand-cyan-light: #f0f7fb;
  --brand-red: #e22b27;
  --brand-red-light: #fef2f2;
  
  /* Bảng màu nền & Không gian trắng (AIH Clean White Theme) */
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-subtle: #f1f5f9;
  
  --text-main: #1e293b;
  --text-heading: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --border-light: #e2e8f0;
  --border-subtle: #cbd5e1;
  --border-brand: #bae6fd;
  
  /* Đổ bóng tinh tế, tự nhiên, không lộ nét AI */
  --shadow-card: 0 2px 8px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
  --shadow-hover: 0 10px 25px rgba(15, 23, 42, 0.08), 0 4px 10px rgba(15, 23, 42, 0.03);
  --shadow-dropdown: 0 12px 30px rgba(15, 23, 42, 0.12);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 9999px;
  
  --transition: all 0.25s ease;
  --font-main: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Accessibility Focus Ring */
:focus-visible {
  outline: 2px solid var(--brand-cyan);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  
  
  
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   AIH UNIFIED HEADER (Chuẩn Bệnh viện Quốc tế Mỹ AIH: Gọn Gàng, Sang Trọng)
   ========================================================================== */
.aih-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(15, 23, 42, 0.04);
}

.aih-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  width: 100%;
}

.aih-brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.aih-logo-img {
  height: 44px;
  max-width: 300px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.aih-brand-group:hover .aih-logo-img {
  transform: scale(1.02);
}

.aih-gold-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* AIH Menu Navigation */
.aih-nav {
  display: flex;
  align-items: center;
}

.aih-menu-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.aih-menu-item {
  position: relative;
}

.aih-menu-link {
  font-size: 0.83rem;
  font-weight: 800;
  color: #0f172a !important; /* CHỮ ĐEN */
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 10px 2px;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.aih-menu-link .arrow-icon {
  display: none !important;
}

.aih-menu-item:hover .aih-menu-link,
.aih-menu-link:hover {
  color: var(--brand-red) !important;
}

.aih-menu-item:hover .arrow-icon {
  transform: rotate(180deg);
  color: var(--brand-red);
}

/* Active State with Bottom Indicator Bar */
.aih-menu-item.active > .aih-menu-link,
.aih-menu-link.active {
  color: #0f172a !important;
}

.aih-menu-item.active > .aih-menu-link::after,
.aih-menu-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-red);
  border-radius: 2px;
}

/* Dropdown Menu */
.dropdown-menu-list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--brand-red);
  box-shadow: var(--shadow-dropdown);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  text-align: left;
  z-index: 1010;
}

.aih-menu-item:hover .dropdown-menu-list,
.aih-menu-item.open .dropdown-menu-list,
.aih-menu-item.has-dropdown.open .dropdown-menu-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 10px 18px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-item a:hover {
  background: var(--bg-light);
  color: var(--brand-red);
  padding-left: 22px;
}

.dropdown-item.active a {
  color: var(--brand-red);
  background: var(--brand-red-light);
  font-weight: 800;
}

/* Header Utilities Tools */
.aih-header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aih-search-menu-item {
  display: flex;
  align-items: center;
  margin-left: -4px;
}

.aih-search-btn {
  background: transparent;
  border: none;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}

.aih-search-btn:hover {
  color: var(--brand-red);
  transform: scale(1.15);
  background: transparent;
  border: none;
}

/* Language Selector Box (Chi Hội Brand Theme: #2C3691 & #27AAE1) */
.lang-box {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: -6px;
}

.lang-current {
  background: transparent !important;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 2px 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-navy, #2C3691);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  height: 28px;
  user-select: none;
  box-shadow: none;
  white-space: nowrap !important;
}

.lang-box:hover .lang-current,
.lang-current:hover {
  background: #f1f5f9 !important;
  border-color: var(--brand-cyan, #27AAE1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}

.lang-flag img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  display: block;
}

.lang-chevron {
  color: #64748b;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.lang-box:hover .lang-chevron,
.lang-box.open .lang-chevron {
  transform: rotate(180deg);
  color: var(--brand-navy, #2C3691);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 8px;
  min-width: 175px !important;
  width: max-content !important;
  white-space: nowrap !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.14);
  z-index: 9999;
  list-style: none;
  margin: 0;
}

.lang-box:hover .lang-dropdown,
.lang-box.open .lang-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.lang-opt {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.18s ease;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 3px;
  user-select: none;
  white-space: nowrap !important;
}

.lang-opt .flag {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.lang-opt .lng {
  white-space: nowrap !important;
  display: inline-block !important;
  flex-shrink: 0;
}

.lang-opt:last-child {
  margin-bottom: 0;
}

.lang-opt .flag img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  display: block;
}

.lang-opt:hover {
  background: #f1f5f9;
  color: var(--brand-navy, #2C3691);
}

.lang-opt.active {
  background: #eff6ff;
  color: var(--brand-navy, #2C3691);
  font-weight: 700;
  box-shadow: none;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: var(--brand-navy);
}

.mobile-nav-toggle svg {
  width: 26px;
  height: 26px;
}

/* ==========================================================================
   AIH PANORAMIC HERO BANNER (Chuẩn 100% Hình Ảnh AIH Đính Kèm)
   ========================================================================== */
.aih-hero-banner-section {
  position: relative;
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  height: 536px;
  min-height: 536px;
  overflow: hidden;
  background: #c3e5f5;
  background: radial-gradient(circle at 75% 30%, #eef8fd 0%, #cceaf8 45%, #a8ddf5 100%);
}

.aih-hero-bg-nature {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: radial-gradient(circle at 10% 20%, rgba(134, 239, 172, 0.4) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(56, 189, 248, 0.35) 0%, transparent 50%);
  background-size: cover;
}

.aih-hero-wave-bottom {
  display: none !important;
}

.aih-banner-slides-wrap {
  position: relative;
  width: 100%;
  height: 536px;
  min-height: 536px;
}

.aih-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.aih-hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
}

.aih-slide-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 48px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}

/* Left Shield Visual */
.aih-shield-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.aih-shield-glow {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 135, 186, 0.2), 0 0 40px rgba(255, 255, 255, 0.8);
  border: 4px solid rgba(255, 255, 255, 0.85);
  background: #ffffff;
}

.aih-shield-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aih-shield-badge-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--brand-navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Right Content Column */
.aih-banner-content-col {
  display: flex;
  flex-direction: column;
}

.aih-pill-q3 {
  background: #e22b27;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 900;
  padding: 4px 16px;
  border-radius: 999px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 8px;
  box-shadow: 0 3px 8px rgba(217, 28, 36, 0.35);
  letter-spacing: 0.5px;
}

.aih-main-heading {
  font-size: 2.15rem;
  font-weight: 900;
  color: var(--brand-navy);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 2px;
  letter-spacing: -0.5px;
}

.aih-sub-heading {
  font-size: 1.35rem;
  font-weight: 900;
  font-style: italic;
  color: var(--brand-red);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Two Side-by-Side Rounded White Cards */
.aih-dual-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.aih-feature-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 20px rgba(44, 54, 145, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aih-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 54, 145, 0.14);
}

.aih-card-pill-header {
  background: linear-gradient(135deg, var(--brand-red) 0%, #c41e1a 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(226, 43, 39, 0.28);
}

.aih-card-item {
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.aih-card-item:last-child {
  border-bottom: none;
  padding-bottom: 2px;
}

.aih-item-title-vi {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.3;
}

.aih-item-title-en {
  font-size: 0.74rem;
  font-style: italic;
  color: #64748b;
  margin-top: 1px;
}

/* Bottom Information Strip in Teal Wave */
.aih-bottom-info-strip {
  display: none !important;
}

.aih-bottom-info-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.aih-bottom-brand-name {
  font-weight: 800;
  letter-spacing: 0.3px;
}

.aih-bottom-address {
  opacity: 0.9;
}

.aih-bottom-info-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.aih-bottom-web-link {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.95;
}

.aih-bottom-web-link:hover {
  text-decoration: underline;
}

.aih-bottom-hotline {
  font-weight: 800;
  color: #ffffff;
}

/* Circular Teal Slider Arrows */
.aih-slider-arrow {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #00729e;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 114, 158, 0.2);
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
  transition: all 0.25s ease;
}

.aih-slider-arrow:hover {
  background: #ffffff;
  color: #0284c7;
  border-color: #0284c7;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 114, 158, 0.25);
}

.aih-slider-arrow.prev { left: 16px; }
.aih-slider-arrow.next { right: 16px; }

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(44, 54, 145, 0.2);
  transition: var(--transition);
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--brand-navy);
  width: 24px;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   SECTIONS & LAYOUT (Chuẩn Nền Trắng Thoáng Kiểu AIH)
   ========================================================================== */
.site-section {
  padding: 32px 0 24px;
  background: var(--bg-white);
}

.site-section.bg-subtle {
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-main-title {
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-navy);
  letter-spacing: 0.3px;
  position: relative;
  display: inline-block;
}

.section-main-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 42px;
  height: 3px;
  background: var(--brand-red, #e22b27) !important;
  border-radius: 2px;
}

.section-label-tag {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-navy);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

/* White Box Card */
.white-box-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  padding: 28px;
  transition: var(--transition);
}

.white-box-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--border-subtle);
}

/* Buttons */
.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-navy);
  color: #ffffff !important;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--brand-navy);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(44, 54, 145, 0.22);
  transition: all 0.25s ease;
}

.btn-aih-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #ffffff !important;
  background: var(--brand-navy);
  border: 1px solid var(--brand-navy);
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(44, 54, 145, 0.18);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary-pill:hover,
.btn-aih-navy:hover {
  background: var(--brand-red);
  color: #ffffff !important;
  border-color: var(--brand-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(226, 43, 39, 0.38);
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: var(--brand-navy) !important;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-pill:hover {
  border-color: var(--brand-navy);
  background: var(--bg-light);
}

/* ==========================================================================
   GIỚI THIỆU SECTION
   ========================================================================== */
.intro-content-container {
  display: flex;
  flex-direction: column;
}

.intro-lead-text {
  font-size: 1.02rem;
  color: var(--text-heading);
  line-height: 1.75;
  margin-bottom: 16px;
}

.intro-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.intro-stat-item {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  transition: var(--transition);
}

.intro-stat-item:hover {
  background: #ffffff;
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-card);
}

.stat-number {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-cyan);
  text-transform: uppercase;
}

/* ==========================================================================
   HỘI VIÊN & ĐỐI TÁC SECTION (Infinite Loop Marquee Carousel)
   ========================================================================== */
.infinite-marquee-container {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.infinite-marquee-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.infinite-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  /* Animation handled smoothly via MarqueeController JS */
  animation: none !important;
}

.infinite-marquee-wrapper:hover .infinite-marquee-track {
  animation-play-state: paused;
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.member-partner-card {
  flex: 0 0 auto;
  width: 176px;
  height: 80px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(19, 46, 87, 0.05);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  cursor: default;
}

.member-partner-card:hover {
  border-color: var(--brand-cyan);
  box-shadow: 0 4px 14px rgba(0, 135, 186, 0.12);
  transform: translateY(-2px);
  background: #ffffff;
}

.member-partner-card .card-badge-type {
  display: none !important;
}

.member-partner-card .card-badge-type.hospital {
  background: #e0f2fe;
  color: #0284c7;
}

.member-partner-card .card-badge-type.partner {
  background: #fef3c7;
  color: #b45309;
}

.member-partner-card img {
  width: 100%;
  height: 100%;
  max-width: 148px;
  max-height: 58px;
  object-fit: contain;
  filter: none;
  transition: all 0.28s ease;
}

.member-partner-card:hover img {
  transform: scale(1.05);
}

.marquee-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 0 8px;
}

.marquee-status-hint {
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.marquee-status-hint .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.marquee-action-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-marquee-toggle {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #2C3691;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.btn-marquee-toggle:hover {
  border-color: var(--brand-cyan);
  color: var(--brand-cyan);
  background: #f0f9ff;
}

/* ==========================================================================
   FILTER TABS (Đào tạo & Tin tức)
   ========================================================================== */
.filter-tabs-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
}

.tab-btn {
  padding: 8px 18px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--brand-navy);
  border-color: var(--border-subtle);
  background: #ffffff;
}

.tab-btn.active {
  color: #ffffff;
  font-weight: 700;
  background: var(--brand-navy);
  border-color: var(--brand-navy);
}

/* ==========================================================================
   CHƯƠNG TRÌNH ĐÀO TẠO CARDS (CME)
   ========================================================================== */
.training-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cme-training-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.cme-training-card:hover {
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.cme-card-header {
  background: var(--bg-light);
  padding: 18px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.cme-header-tag {
  font-size: 0.68rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--brand-navy);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.cme-institute-seal {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-red);
  display: inline-block;
  margin-left: 6px;
}

.cme-course-type {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand-red);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cme-course-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-navy);
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 4px;
}

.cme-course-batch {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--brand-red);
  text-transform: uppercase;
}

.cme-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.cme-date-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cme-summary-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cme-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid var(--border-light) !important;
  padding-top: 12px !important;
  margin-top: 12px !important;
  text-align: right;
}

.link-read-more {
  font-size: 0.86rem;
  font-weight: 400;
  color: #000000 !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.link-read-more:hover {
  color: var(--brand-cyan);
}

/* ==========================================================================
   TIN TỨC SECTION (Chuẩn Tin tức AIH: Ảnh 16:9, Chữ Tinh Gọn)
   ========================================================================== */
.news-cards-grid {
  display: grid;
  margin-bottom: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-article-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.news-article-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--border-subtle);
}

.news-card-thumbnail-wrap {
  position: relative;
  height: 195px;
  overflow: hidden;
  background: var(--bg-light);
}

.news-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-article-card:hover .news-thumbnail-img {
  transform: scale(1.04);
}

.news-category-badge { display: none !important; }

.news-category-badge.event { background: var(--brand-cyan); }
.news-category-badge.offer { background: var(--brand-red); }
.news-category-badge.medical { background: var(--brand-navy); }

.news-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.news-publish-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.news-card-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.45;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition);
  min-height: 4.2em;
  text-align: justify;
}

.news-article-card:hover .news-card-title {
  color: var(--brand-navy);
  text-align: justify;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  text-align: right;
}

.news-card-footer .link-read-more,
.news-card-footer .btn-news-detail {
  margin-left: auto;
  text-align: right;
  display: inline-flex;
  align-items: center;
}

.news-card-footer .link-read-more,
.news-card-footer .btn-news-detail {
  margin-left: auto;
  text-align: right;
  display: inline-flex;
  align-items: center;
}

/* ==========================================================================
   ĐỐI TÁC ĐỒNG HÀNH SECTION
   ========================================================================== */
.partner-slider-wrap {
  position: relative;
  padding: 4px 44px;
}

.partner-logo-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 0;
}

.partner-logo-track::-webkit-scrollbar {
  display: none;
}

.partner-logo-card {
  flex: 0 0 calc(20% - 13px);
  min-width: 175px;
  height: 80px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.partner-logo-card:hover {
  border-color: var(--brand-navy);
  box-shadow: var(--shadow-hover);
}

.partner-logo-img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

/* ==========================================================================
   DANH SÁCH HỘI VIÊN (Bảng Tra Cứu Khoa Học, Sạch Sẽ)
   ========================================================================== */
.page-title-banner {
  padding: 0 !important;
  margin: 0 0 24px !important;
}

.page-main-heading {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-navy);
  letter-spacing: 0.3px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.page-main-heading::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 44px;
  height: 3px;
  background: var(--brand-red, #e22b27) !important;
  border-radius: 2px;
}

.table-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 16px;
  flex-wrap: wrap;
}

.table-search-input {
  padding: 10px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  width: 320px;
  max-width: 100%;
  outline: none;
  background: #ffffff;
  transition: var(--transition);
}

.table-search-input:focus {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 3px rgba(0, 135, 186, 0.12);
}

/* ==========================================================================
   BẢNG THÀNH VIÊN / HỘI VIÊN (Không Có Thanh Cuộn Ngang Trên Desktop)
   ========================================================================== */
.table-filter-bar {
  max-width: 1000px;
  margin: 0 auto 16px auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.member-table-container {
  max-width: 1000px;
  margin: 0 auto 30px auto;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.member-data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Noto Sans', sans-serif !important;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
  table-layout: auto;
}

.member-data-table th {
  background: var(--brand-navy, #2C3691);
  color: #ffffff !important;
  font-family: 'Noto Sans', sans-serif !important;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 12px 16px;
  border: 1px solid #1e293b;
  border-top: none;
  letter-spacing: 0.3px;
  text-align: center !important;
  vertical-align: middle;
}

.member-data-table th:first-child {
  border-left: none;
}

.member-data-table th:last-child {
  border-right: none;
}

.member-data-table td {
  padding: 11px 16px;
  font-family: 'Noto Sans', sans-serif !important;
  font-size: 0.90rem;
  line-height: 1.5;
  color: #111827 !important;
  border: 1px solid var(--border-light, #e2e8f0);
  vertical-align: middle;
  font-weight: 400 !important;
}

.member-data-table td:first-child {
  border-left: none;
}

.member-data-table td:last-child {
  border-right: none;
}

.member-data-table tr:last-child td {
  border-bottom: none;
}

.member-data-table tr:nth-child(even) {
  background-color: #f8fafc;
}

.member-data-table tr:hover {
  background-color: #f1f5f9;
}

.member-data-table th.col-stt,
.member-data-table th.col-name,
.member-data-table th.col-address {
  color: #ffffff !important;
  text-align: center !important;
  vertical-align: middle !important;
}

.member-data-table th.col-stt,
.member-data-table td.col-stt {
  width: 55px;
  text-align: center !important;
  white-space: nowrap;
}

.member-data-table td.col-name {
  width: 38%;
  text-align: left !important;
  color: #111827 !important;
}

.member-data-table td.col-address {
  width: 62%;
  text-align: left !important;
  color: #334155 !important;
}

/* ==========================================================================
   TỐI ƯU CHIỀU RỘNG CỘT BẢNG HỘI VIÊN & BAN CHẤP HÀNH TRÊN MOBILE
   ========================================================================== */
@media (max-width: 768px) {
  /* BẢNG HỘI VIÊN (3 Cột: STT, Bệnh viện, Địa chỉ) - Fit 100% bề ngang màn hình */
  .member-table-container {
    overflow-x: hidden !important;
    width: 100% !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
  }
  
  .member-data-table {
    min-width: 0 !important;
    width: 100% !important;
    table-layout: fixed !important;
    font-size: 0.8rem !important;
  }
  
  .member-data-table th,
  .member-data-table td {
    padding: 8px 6px !important;
    font-size: 0.8rem !important;
    line-height: 1.35 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  .member-data-table th.col-stt,
  .member-data-table td.col-stt {
    width: 32px !important;
    min-width: 32px !important;
    max-width: 34px !important;
    padding: 8px 2px !important;
    text-align: center !important;
    font-size: 0.78rem !important;
  }
  
  .member-data-table th,
  .member-data-table th.col-stt,
  .member-data-table th.col-name,
  .member-data-table th.col-address {
    color: #ffffff !important;
    background: var(--brand-navy, #2C3691) !important;
    font-weight: 800 !important;
    text-align: center !important;
    vertical-align: middle !important;
  }
  
  .member-data-table th.col-name {
    width: 44% !important;
    font-size: 0.82rem !important;
  }

  .member-data-table td.col-name {
    width: 44% !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
  }
  
  .member-data-table th.col-address {
    width: calc(56% - 32px) !important;
    font-size: 0.82rem !important;
  }

  .member-data-table td.col-address {
    width: calc(56% - 32px) !important;
    font-size: 0.78rem !important;
    color: #334155 !important;
  }

  /* BẢNG BAN CHẤP HÀNH & SƠ ĐỒ TỔ CHỨC (5 Cột) - Tối ưu chiều rộng gọn gàng */
  .table-responsive-rounded {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    border-radius: 12px !important;
    margin: 0 !important;
  }
  
  .bch-table,
  .org-data-table,
  .thuky-table {
    width: 100% !important;
    min-width: 520px !important;
    font-size: 0.78rem !important;
  }
  
  .bch-table th,
  .bch-table td,
  .thuky-table th,
  .thuky-table td,
  .org-data-table th,
  .org-data-table td {
    padding: 7px 6px !important;
    font-size: 0.78rem !important;
    line-height: 1.3 !important;
  }
  
  .bch-table th.col-stt,
  .bch-table td.col-stt,
  .thuky-table th.col-stt,
  .thuky-table td.col-stt {
    width: 30px !important;
    min-width: 30px !important;
    max-width: 32px !important;
    padding: 7px 2px !important;
  }
  
  .bch-table th.col-name,
  .bch-table td.col-name {
    width: 22% !important;
    min-width: 100px !important;
    font-size: 0.8rem !important;
  }
  
  .bch-table th.col-role,
  .bch-table td.col-role {
    width: 20% !important;
    min-width: 95px !important;
  }
  
  .bch-table th.col-pos,
  .bch-table td.col-pos {
    width: 28% !important;
    min-width: 125px !important;
  }
  
  .bch-table th.col-org,
  .bch-table td.col-org {
    width: 30% !important;
    min-width: 135px !important;
  }
  
  .thuky-table th.col-name,
  .thuky-table td.col-name {
    width: 26% !important;
    min-width: 110px !important;
  }
  
  .thuky-table th.col-pos,
  .thuky-table td.col-pos {
    width: 36% !important;
    min-width: 140px !important;
  }
  
  .thuky-table th.col-org,
  .thuky-table td.col-org {
    width: 38% !important;
    min-width: 150px !important;
  }
}

@media (max-width: 480px) {
  .member-data-table th.col-name,
  .member-data-table td.col-name {
    font-size: 0.8rem !important;
  }
  .member-data-table th.col-address,
  .member-data-table td.col-address {
    font-size: 0.75rem !important;
  }
}

/* ==========================================================================
   SƠ ĐỒ TỔ CHỨC
   ========================================================================== */
.org-tree-wrapper {
  background: #ffffff;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  margin-top: 20px;
}

.org-level-box {
  background: var(--brand-navy);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  margin: 0 auto 20px;
  max-width: 460px;
}

.org-level-title {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.org-level-name {
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-top: 4px;
}

.org-grid-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.org-sub-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--brand-navy);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  transition: var(--transition);
}

.org-sub-card:hover {
  background: #ffffff;
  border-top-color: var(--brand-cyan);
  box-shadow: var(--shadow-card);
}

.org-card-role {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand-cyan);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.org-card-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.org-card-duty {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.5;
}

/* ==========================================================================
   LIÊN HỆ & FORMS
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 20px;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.contact-detail-row {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-cyan-light);
  color: var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-brand);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  background: #ffffff;
}

.form-control:focus {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 3px rgba(0, 135, 186, 0.12);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  max-width: 660px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-dropdown);
  border: 1px solid var(--border-light);
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-content-box {
  transform: translateY(0);
}

.modal-header {
  padding: 18px 24px;
  background: var(--brand-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.1rem;
  font-weight: 800;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  padding: 24px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .aih-hero-banner-section,
  .aih-banner-slides-wrap {
    height: auto;
    min-height: auto;
  }
  .training-cards-grid,
  .news-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .intro-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1.35fr 1.25fr 0.95fr;
    gap: 16px;
  }
  
  .member-logo-card,
  .partner-logo-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}

@media (max-width: 1024px) {
  .aih-hero-banner-section,
  .aih-banner-slides-wrap {
    height: auto;
    min-height: auto;
  }
  .aih-slide-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 48px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}
  
  .aih-shield-glow {
    max-width: 100%;
    height: 300px;
  }

  .aih-menu-list {
    gap: 14px;
  }

  .aih-menu-link {
    font-size: 0.78rem;
  }

  .training-cards-grid,
  .news-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .intro-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1.35fr 1.25fr 0.95fr;
    gap: 16px;
  }
  
  .member-logo-card,
  .partner-logo-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}

@media (max-width: 768px) {
  .aih-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  width: 100%;
}

  .mobile-nav-toggle {
    display: block;
  }
  
  .aih-menu-list {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    margin-top: 10px;
    padding: 10px 0;
  }
  
  .aih-menu-list.show-mobile {
    display: flex;
  }
  
  .aih-menu-item {
    border-bottom: 1px solid var(--border-light);
    width: 100%;
  }
  
  .aih-menu-link {
    justify-content: space-between;
    padding: 12px 16px;
  }
  
  .dropdown-menu-list {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--bg-light);
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  
  .dropdown-menu-list.show-mobile-sub {
    display: block;
  }
  
  

  .aih-main-heading {
    font-size: 1.5rem;
  }

  .aih-sub-heading {
    font-size: 1.05rem;
  }

  .aih-dual-cards-row {
    grid-template-columns: 1fr;
  }

  .aih-bottom-info-strip {
  display: none !important;
}

  .aih-bottom-info-left,
  .aih-bottom-info-right {
    flex-direction: column;
    gap: 4px;
  }

  .aih-slider-arrow {
    width: 36px;
    height: 36px;
  }
  
  
  
  .member-logo-card,
  .partner-logo-card {
    flex: 0 0 calc(50% - 10px);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo-wrapper {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  margin-left: auto;
  margin-right: auto;
}

.footer-logo-img {
  height: 38px;
  max-width: 280px;
  width: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

.footer-affil-text {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  letter-spacing: 0.2px;
  text-align: center !important;
  margin-top: 8px !important;
  margin-bottom: 2px !important;
  line-height: 1.4 !important;
}

.footer-slogan-text {
  font-size: 0.82rem;
  font-weight: 800;
  color: #7dd3fc;
  letter-spacing: 0.6px;
  text-align: center;
  margin-top: 2px;
  line-height: 1.4;
  text-transform: uppercase;
  width: 100%;
}
/* Video Section Responsive */
@media (max-width: 768px) {
  
}

/* Hide Google Translate top bar for clean UI */
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate {
  display: none !important;
}
body {
  top: 0px !important;
}

/* ==========================================================================
   SECTION CAROUSEL / SLIDER ARROWS (TIN TỨC & CHƯƠNG TRÌNH ĐÀO TẠO)
   ========================================================================== */
.section-slider-container {
  position: relative;
  width: 100%;
}

.section-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff !important;
  border: 1.5px solid rgba(44, 54, 145, 0.22) !important;
  box-shadow: 0 4px 16px rgba(0, 50, 100, 0.18) !important;
  color: var(--brand-navy, #2C3691) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  user-select: none;
}

.section-slider-arrow svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand-navy, #2C3691) !important;
  color: var(--brand-navy, #2C3691) !important;
  display: block;
  pointer-events: none;
  transition: stroke 0.2s ease, color 0.2s ease;
}

/* Desktop Hover Only (Only applies when mouse actually hovers) */
@media (hover: hover) and (pointer: fine) {
  .section-slider-arrow:hover {
    background: var(--brand-navy, #2C3691) !important;
    color: #ffffff !important;
    border-color: var(--brand-navy, #2C3691) !important;
    box-shadow: 0 8px 24px rgba(44, 54, 145, 0.38) !important;
    transform: translateY(-50%) scale(1.08) !important;
  }
  .section-slider-arrow:hover svg {
    stroke: #ffffff !important;
    color: #ffffff !important;
  }
}

.section-slider-arrow.prev {
  left: -22px;
}

.section-slider-arrow.next {
  right: -22px;
}

@media (max-width: 1280px) {
  .section-slider-arrow.prev {
    left: -10px;
  }
  .section-slider-arrow.next {
    right: -10px;
  }
}

@media (max-width: 991px) {
  .section-slider-arrow {
    display: flex !important;
    width: 38px !important;
    height: 38px !important;
    background: #ffffff !important;
    color: var(--brand-navy, #2C3691) !important;
    border: 1.5px solid rgba(44, 54, 145, 0.25) !important;
    box-shadow: 0 4px 14px rgba(0, 50, 100, 0.22) !important;
    z-index: 30 !important;
  }

  .section-slider-arrow svg {
    width: 18px !important;
    height: 18px !important;
    stroke: var(--brand-navy, #2C3691) !important;
    color: var(--brand-navy, #2C3691) !important;
  }

  .section-slider-arrow.prev {
    left: -6px !important;
  }
  .section-slider-arrow.next {
    right: -6px !important;
  }

  /* Reset hover / focus on touch devices so color NEVER stays stuck */
  .section-slider-arrow:hover,
  .section-slider-arrow:focus,
  .section-slider-arrow:focus-visible {
    background: #ffffff !important;
    color: var(--brand-navy, #2C3691) !important;
    border-color: rgba(44, 54, 145, 0.25) !important;
    box-shadow: 0 4px 14px rgba(0, 50, 100, 0.22) !important;
    transform: translateY(-50%) !important;
    outline: none !important;
  }
  .section-slider-arrow:hover svg,
  .section-slider-arrow:focus svg,
  .section-slider-arrow:focus-visible svg {
    stroke: var(--brand-navy, #2C3691) !important;
    color: var(--brand-navy, #2C3691) !important;
  }

  /* Active state only while finger physically presses down */
  .section-slider-arrow:active {
    background: var(--brand-navy, #2C3691) !important;
    color: #ffffff !important;
    border-color: var(--brand-navy, #2C3691) !important;
    transform: translateY(-50%) scale(0.92) !important;
  }
  .section-slider-arrow:active svg {
    stroke: #ffffff !important;
    color: #ffffff !important;
  }
}

/* Video Grid & Card Styles */
.video-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.video-card-item {
  width: 100%;
}

.video-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
}

.video-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

@media (max-width: 768px) {
  /* Single Box Slider on Mobile for Training, News, and Video */
  .training-cards-grid,
  .news-cards-grid,
  .video-grid-2col {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 0 !important;
    padding: 6px 0 !important;
    width: 100% !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .training-cards-grid::-webkit-scrollbar,
  .news-cards-grid::-webkit-scrollbar,
  .video-grid-2col::-webkit-scrollbar {
    display: none !important;
  }

  .cme-training-card,
  .news-article-card,
  .video-card-item {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
  }

  /* Mobile slider arrows handled in main slider arrows section */
}

@media (max-width: 768px) {
  /* ==========================================================================
     MOBILE HEADER LAYOUT (Left: Hamburger, Center: Logo, Right: Lang Switcher)
     ========================================================================== */
  .aih-header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 8px 14px !important;
    position: relative !important;
    width: 100% !important;
  }

  /* 1. Left: Hamburger Icon */
  .mobile-nav-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    order: 1 !important;
    width: 42px !important;
    height: 42px !important;
    background: #ffffff !important;
    border: 1px solid rgba(44, 54, 145, 0.25) !important;
    border-radius: 8px !important;
    color: var(--brand-navy, #2C3691) !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 100 !important;
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 6px rgba(0, 50, 100, 0.08) !important;
  }

  .mobile-nav-toggle:hover,
  .mobile-nav-toggle:active {
    background: rgba(44, 54, 145, 0.08) !important;
    border-color: var(--brand-navy, #2C3691) !important;
  }

  .mobile-nav-toggle svg {
    width: 22px !important;
    height: 22px !important;
  }

  /* 2. Center: Brand Logo */
  .aih-brand-group {
    order: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
    margin: 0 8px !important;
    text-align: center !important;
  }

  .aih-brand-group a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .aih-logo-img {
    height: 35px !important;
    max-width: 221px !important;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
  }

  /* 3. Right: Language Switcher */
  .aih-header-tools {
    display: flex !important;
    order: 3 !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-shrink: 0 !important;
    margin-left: 0 !important;
  }

    .lang-box {
    position: relative !important;
  }

  .lang-current {
    padding: 2px 7px !important;
    font-size: 0.8rem !important;
    height: 28px !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
  }

  .lang-dropdown {
    right: 0 !important;
    left: auto !important;
    min-width: 170px !important;
    width: max-content !important;
    white-space: nowrap !important;
  }

  .lang-opt {
    white-space: nowrap !important;
    font-size: 0.88rem !important;
  }

  .lang-opt .lng {
    white-space: nowrap !important;
  }

  /* Mobile Dropdown Navigation Menu */
  .aih-nav {
    position: static !important;
  }

  .aih-menu-list {
    display: none;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18) !important;
    border-top: 1px solid var(--border-light, #e2e8f0) !important;
    z-index: 9999 !important;
    padding: 8px 0 !important;
    margin: 0 !important;
  }

  .aih-menu-list.show-mobile {
    display: flex !important;
  }

  .aih-menu-item {
    width: 100% !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.7) !important;
  }

  .aih-menu-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
    color: var(--brand-navy, #2C3691) !important;
    font-weight: 600 !important;
  }

  .dropdown-menu-list {
    position: static !important;
    box-shadow: none !important;
    background: #f8fafc !important;
    border-top: 1px solid #e2e8f0 !important;
    padding: 4px 0 !important;
    display: none;
  }

  .dropdown-menu-list.show-mobile-sub {
    display: block !important;
  }
}

/* Footer Copyright Inline under Email */
/* Footer Copyright Inline under Email (Single Line) */
.footer-copyright-inline { display: none !important; }

@media (max-width: 1280px) {
  .footer-copyright-inline { display: none !important; }
}

@media (max-width: 992px) {
  .footer-copyright-inline { display: none !important; }
}

.footer-bottom-strip {
  display: none !important;
}

/* Footer Map Styles */
.footer-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 230px;
  height: 105px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 4px;
}

.footer-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.footer-map-link-btn {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ffffff;
  color: #1e40af;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 5;
  transition: background 0.2s ease;
}

.footer-map-link-btn:hover {
  background: #f1f5f9;
}

/* Single Featured Video Container */
.single-video-container {
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}


/* ==========================================================================
   FOOTER (Rich Modern Medical Gradient)
   ========================================================================== */
.site-footer {
  margin-top: 0 !important;
  background: linear-gradient(135deg, #0b1536 0%, #16245e 30%, #1b3a72 65%, #0d2847 100%) !important;
  color: #ffffff !important;
  padding: 34px 0 18px !important;
  border-top: 4px solid var(--brand-cyan, #27AAE1) !important;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(39, 170, 225, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.site-footer p,
.site-footer span,
.site-footer strong,
.site-footer a:not(.btn-primary-pill):not(.footer-map-link-btn),
.footer-contact-item,
.footer-contact-item span,
.footer-contact-item strong,
.footer-brand-title,
.footer-brand-desc,
.footer-heading,
.footer-links-list a {
  color: #ffffff !important;
}

.footer-copyright-inline { display: none !important; }

.footer-copyright-inline { display: none !important; }

@media (max-width: 1280px) {
  .footer-copyright-inline { display: none !important; }
}

@media (max-width: 992px) {
  .footer-copyright-inline { display: none !important; }
}


/* ==========================================================================
   MODERN ABOUT US PAGE (VỀ CHI HỘI - THIẾT KẾ ĐẲNG CẤP HIỆN ĐẠI)
   ========================================================================== */

/* Page Hero Banner */
.about-hero-banner {
  background: linear-gradient(135deg, #161d52 0%, #2C3691 60%, #1e40af 100%);
  color: #ffffff;
  padding: 50px 0 45px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--brand-cyan);
}

.about-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(39, 170, 225, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-breadcrumb a:hover {
  color: var(--brand-cyan);
}

.about-hero-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.about-hero-subtitle {
  font-size: 1.05rem;
  color: #e2e8f0;
  line-height: 1.6;
  max-width: 860px;
  margin-bottom: 20px;
}

.about-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
}

.about-badge.highlight {
  background: rgba(39, 170, 225, 0.25);
  border-color: var(--brand-cyan);
  color: #bae6fd;
}

/* Stats Counter Grid */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -30px;
  position: relative;
  z-index: 20;
  margin-bottom: 45px;
}

.about-stat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--brand-navy);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(44, 54, 145, 0.14);
  border-top-color: var(--brand-cyan);
}

.about-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brand-navy);
  line-height: 1.1;
  margin-bottom: 6px;
  font-family: var(--font-main);
}

.about-stat-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #64748b;
  line-height: 1.4;
}

/* 2-Column Overview Section */
.about-overview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 50px;
}

.about-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand-cyan);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.about-section-heading {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: var(--brand-navy, #2C3691) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  line-height: 1.3 !important;
  margin: 0 0 20px 0 !important;
}

.about-overview-text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}

.about-quote-box {
  background: #f0fdf4;
  border-left: 4px solid #16a34a;
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  font-size: 0.9rem;
  color: #166534;
  line-height: 1.6;
  margin-top: 18px;
}

.about-photo-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  border: 1px solid #e2e8f0;
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-photo-card:hover img {
  transform: scale(1.03);
}

.about-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.6) 70%, transparent 100%);
  color: #ffffff;
  padding: 20px 16px 14px;
  font-size: 0.84rem;
  line-height: 1.45;
}

/* Vision & Mission Split Cards */
.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}

.about-vm-card {
  border-radius: 14px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-vm-card.vision {
  background: linear-gradient(145deg, #1e2667 0%, #2C3691 100%);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(44, 54, 145, 0.25);
}

.about-vm-card.mission {
  background: linear-gradient(145deg, #0f4c81 0%, #0369a1 100%);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(3, 105, 161, 0.25);
}

.about-vm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
}

.about-vm-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #ffffff;
}

.about-vm-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-vm-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  text-align: justify;
}

/* 5 Core Values (5 Giá Trị Cốt Lõi) */
.core-values-section {
  background: #f8fafc;
  border-radius: 16px;
  padding: 36px 30px;
  margin-bottom: 50px;
  border: 1px solid #e2e8f0;
}

.core-values-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 30px;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.core-value-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  transition: all 0.28s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.core-value-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-cyan);
  box-shadow: 0 10px 24px rgba(39, 170, 225, 0.15);
}

.core-value-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.core-value-card:nth-child(1) .core-value-icon-box { background: #eff6ff; color: #2563eb; }
.core-value-card:nth-child(2) .core-value-icon-box { background: #fef2f2; color: #dc2626; }
.core-value-card:nth-child(3) .core-value-icon-box { background: #f0fdf4; color: #16a34a; }
.core-value-card:nth-child(4) .core-value-icon-box { background: #faf5ff; color: #9333ea; }
.core-value-card:nth-child(5) .core-value-icon-box { background: #fffbeb; color: #d97706; }

.core-value-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.core-value-desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* 3 Pillars Section */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.pillar-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: all 0.28s ease;
}

.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.pillar-card:nth-child(1) { border-top: 4px solid #2C3691; }
.pillar-card:nth-child(2) { border-top: 4px solid #27AAE1; }
.pillar-card:nth-child(3) { border-top: 4px solid #e22b27; }

.pillar-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pillar-card-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  text-align: justify;
}

/* 10 Strategic Directions & 8 Action Programs */
.strategic-container {
  background: #ffffff;
  border-radius: 16px;
  padding: 34px 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  margin-bottom: 50px;
}

.directions-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 34px;
}

.direction-item-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 14px;
  transition: all 0.25s ease;
}

.direction-item-card:hover {
  background: #ffffff;
  border-color: var(--brand-cyan);
  box-shadow: 0 6px 18px rgba(39, 170, 225, 0.12);
  transform: translateY(-2px);
}

.direction-item-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand-navy);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.direction-item-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.direction-item-desc {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* 8 Programs Modern Grid */
.programs-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 10px;
}

.program-item-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 14px;
  transition: all 0.25s ease;
}

.program-item-card:nth-child(even) {
  background: #f0f9ff;
  border-color: #bae6fd;
}

.program-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.program-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: #166534;
  background: rgba(22, 101, 52, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
}

.program-item-card:nth-child(even) .program-tag {
  color: #0369a1;
  background: rgba(3, 105, 161, 0.1);
}

.program-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 4px;
  line-height: 1.35;
}

.program-desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

/* Document Gallery Modern */
.about-doc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}

.about-doc-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
  cursor: pointer;
}

.about-doc-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-cyan);
  box-shadow: 0 10px 24px rgba(39, 170, 225, 0.15);
}

.about-doc-card img {
  width: 100%;
  height: auto;
  display: block;
}

.about-doc-title {
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-navy);
  text-align: center;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

/* Call to Action Modern Section */
.about-cta-card {
  background: linear-gradient(135deg, #161d52 0%, #2C3691 70%, #1e40af 100%);
  border-radius: 16px;
  padding: 40px 30px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 16px 36px rgba(44, 54, 145, 0.25);
  margin-bottom: 20px;
}

.about-cta-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
}

.about-cta-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.about-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-cta-btns .btn-white {
  background: #ffffff;
  color: var(--brand-navy) !important;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-cta-btns .btn-white:hover {
  background: var(--brand-cyan);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.about-cta-btns .btn-outline-white {
  background: transparent;
  color: #ffffff !important;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.about-cta-btns .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); margin-top: 20px; }
  .about-overview-grid { grid-template-columns: 1fr; }
  .core-values-grid { grid-template-columns: repeat(3, 1fr); }
  .programs-grid-modern { grid-template-columns: repeat(2, 1fr); }
  .about-doc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-hero-title { font-size: 1.6rem; }
  .about-stats-grid { grid-template-columns: 1fr; }
  .about-vm-grid { grid-template-columns: 1fr; }
  .core-values-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .directions-grid-modern { grid-template-columns: 1fr; }
  .programs-grid-modern { grid-template-columns: 1fr; }
  .about-doc-grid { grid-template-columns: 1fr; }
}


/* Full Width Footer Divider & Copyright Row */
.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 22px;
  padding-top: 12px;
  width: 100%;
}

.footer-copyright-text {
  margin: 0;
  font-size: 0.8rem;
  color: #ffffff !important;
  line-height: 1.5;
  text-align: left;
}


/* Nút Xem Thêm Màu Đen (Không bold) */
.link-read-more,
.btn-news-detail,
.btn-cme-detail,
.news-card-footer .link-read-more,
.news-card-footer a {
  color: #000000 !important;
  font-weight: 400 !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.link-read-more:hover,
.btn-news-detail:hover,
.news-card-footer .link-read-more:hover,
.news-card-footer a:hover {
  color: #444444 !important;
  transform: translateX(3px);
}


/* ==========================================================================
   AIH PANORAMIC HERO BANNER SLIDER (Chuẩn Kiến Trúc & Kích Thước Bệnh Viện AIH)
   Desktop aspect-ratio: 1536/536 (~2.87:1) / 1920/600 (3.2:1)
   Mobile aspect-ratio: 526/357 (1.47:1)
   ========================================================================== */
.home-banner.banner-slider,
.aih-hero-banner-section {
  position: relative;
  width: 100%;
  max-width: 100% !important;
  margin: 0 auto;
  overflow: hidden;
  background: #0b1930;
  height: auto !important;
  min-height: unset !important;
}

.banner-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-slides-track {
  position: relative;
  width: 100%;
}

.banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease-in-out;
  z-index: 1;
}

.banner-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.home-banner .image,
.home-banner .img-cover,
.banner-slide .img-cover {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1920 / 600; /* Chuẩn Desktop AIH */
  background-color: #0b1930;
}

@media (max-width: 767.98px) {
  .home-banner .image,
  .home-banner .img-cover,
  .banner-slide .img-cover {
    aspect-ratio: 1522 / 1033 !important; /* Chuẩn Mobile AIH 1.47:1 */
  }
}

.home-banner .img-cover img,
.banner-slide .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Nút Chuyển Slide Chuẩn AIH */
.banner-nav-arrows .button-prev,
.banner-nav-arrows .button-next {
  position: absolute;
  top: 50%;
  left: 24px;
  z-index: 15;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  color: #2C3691;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.banner-nav-arrows .button-next {
  left: auto;
  right: 24px;
}

.banner-nav-arrows .button-prev:hover,
.banner-nav-arrows .button-next:hover {
  background: #2C3691 !important;
  border-color: #1e266d !important;
  color: #ffffff !important;
  transform: translateY(-50%) scale(1.08) !important;
  box-shadow: 0 6px 20px rgba(44, 54, 145, 0.45) !important;
}

@media (max-width: 767.98px) {
  .banner-nav-arrows .button-prev,
  .banner-nav-arrows .button-next {
    width: 36px;
    height: 36px;
    left: 10px;
    background: rgba(255, 255, 255, 0.75);
  }
  .banner-nav-arrows .button-next {
    left: auto;
    right: 10px;
  }
}

/* Pagination Dots Chuẩn AIH */
.banner-pagination-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(6px);
  border-radius: 999px;
}

.banner-pagination-dots .carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.banner-pagination-dots .carousel-dot.active {
  width: 28px;
  border-radius: 999px;
  background: #ffffff;
  border-color: #ffffff;
}


/* ==========================================================================
   CHI TIẾT BÀI VIẾT (SINGLE ARTICLE PAGE LAYOUT)
   ========================================================================== */
.article-layout-grid {
  display: block;
  max-width: 960px;
  margin: 0 auto;
}

.single-article-content {
  background: #ffffff;
  padding: 36px 40px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.single-article-content h1 {
  word-break: break-word;
}

.article-body-text p {
  margin-bottom: 16px;
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.85;
  text-align: justify !important;
}

.article-body-text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 991.98px) {
  .article-layout-grid {
  display: block;
  max-width: 960px;
  margin: 0 auto;
}

  .single-article-content {
    padding: 24px 20px !important;
  }

  .single-article-content h1 {
    font-size: 1.5rem !important;
  }
}


/* ==========================================================================
   FORM CONTROLS FONT RESET (Fix lỗi font chữ tiếng Việt trên Button & Input)
   ========================================================================== */
button,
input,
optgroup,
select,
textarea {
  font-family: var(--font-main) !important;
}

.site-footer button,
.site-footer .btn-primary-pill,
.footer-newsletter-btn {
  font-family: var(--font-main) !important;
  font-weight: 700 !important;
  letter-spacing: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ==========================================================================
   ARTICLE & NEWS CONTENT JUSTIFY (Canh đều 2 bên chuẩn báo chí & tin tức)
   ========================================================================== */
.single-article-content,
.single-article-content h1,
.single-article-content p,
.single-article-content div,
.single-article-content li,
.article-body-text,
.article-body-text p,
.article-body-text ul,
.article-body-text ol,
.article-body-text li,
.article-body-text blockquote,
.entry-content,
.entry-content p,
.entry-content li,
.news-card-title,
.news-card-excerpt,
.cme-card-title {
  text-align: justify !important;
  text-justify: inter-word;
}

.article-body-text p {
  margin-bottom: 16px;
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.85;
  text-align: justify !important;
}

.single-article-content h1 {
  text-align: justify !important;
  word-break: break-word;
}


.cme-card-thumb-link {
  display: block !important;
  width: 100% !important;
  position: relative !important;
  overflow: hidden !important;
}

.cme-card-thumb-wrap {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  overflow: hidden !important;
  background: #ffffff !important;
  display: block !important;
}

.cme-card-thumb-img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: contain !important;
  display: block !important;
  transition: transform 0.35s ease !important;
}

.cme-training-card:hover .cme-card-thumb-img {
  transform: scale(1.03) !important;
}

@media (max-width: 768px) {
  .cme-card-thumb-wrap {
    width: 100% !important;
    height: auto !important;
    min-height: 180px !important;
    aspect-ratio: 16 / 9 !important;
    display: block !important;
  }
  .cme-card-thumb-img {
    width: 100% !important;
    height: 100% !important;
    min-height: 180px !important;
    aspect-ratio: 16 / 9 !important;
    display: block !important;
    object-fit: contain !important;
  }
}


/* ═══════════════════════════════════════════════
   HÌNH ẢNH - VIDEO (1 BIG LEFT, 12 PHOTOS RIGHT WITH AUTO-PLAY & SCROLL)
═══════════════════════════════════════════════ */
.facilities-split-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
  width: 100%;
}

.facilities-split__left {
  width: 100%;
  height: 510px;
}

.facilities-main-view {
  width: 100%;
  height: 510px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.facility-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease, transform 0.35s ease;
}

.facility-main-image.fade-out {
  opacity: 0;
  transform: scale(0.98);
}

.facilities-split__right {
  width: 100%;
  height: 510px;
  display: flex;
  flex-direction: column;
}

.facilities-side-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 510px;
  max-height: 510px;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.facilities-side-grid::-webkit-scrollbar {
  display: none;
}

.facility-side-card {
  flex: 0 0 162px;
  height: 162px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: all 0.25s ease;
  position: relative;
  background: #f1f5f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.facility-side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.facility-side-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(44, 54, 145, 0.18);
  border-color: rgba(39, 170, 225, 0.5);
}

.facility-side-card:hover img {
  transform: scale(1.05);
}

.facility-side-card.active {
  border-color: #7dd3fc;
  box-shadow: 0 6px 20px rgba(39, 170, 225, 0.35);
  transform: scale(1.01);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .facilities-split-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .facilities-split__left,
  .facilities-main-view {
    height: 360px;
    min-height: 360px;
  }
  .facilities-split__right {
    height: auto;
  }
  .facilities-side-grid {
    flex-direction: row;
    height: 110px;
    max-height: 110px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .facility-side-card {
    flex: 0 0 160px;
    height: 110px;
  }
}

@media (max-width: 640px) {
  .facilities-split__left,
  .facilities-main-view {
    height: 240px;
    min-height: 240px;
    border-radius: 16px;
  }
  .facilities-side-grid {
    height: 85px;
    max-height: 85px;
    gap: 8px;
  }
  .facility-side-card {
    flex: 0 0 120px;
    height: 85px;
    border-radius: 12px;
  }
}


/* ═══════════════════════════════════════════════
   SITE SEARCH MODAL & LIVE SEARCH
═══════════════════════════════════════════════ */
.site-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 16px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.site-search-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.site-search-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.site-search-dialog {
  position: relative;
  width: 100%;
  max-width: 680px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transform: translateY(-20px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  max-height: 80vh;
}

.site-search-modal.is-open .site-search-dialog {
  transform: translateY(0) scale(1);
}

.site-search-header {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  gap: 12px;
}

.site-search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 8px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search-input-wrap:focus-within {
  border-color: #7dd3fc;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(39, 170, 225, 0.15);
}

.site-search-icon {
  color: #64748b;
  flex-shrink: 0;
}

.site-search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  color: #1e293b;
  font-family: inherit;
  width: 100%;
}

.site-search-clear-btn {
  background: #e2e8f0;
  color: #64748b;
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.site-search-clear-btn:hover {
  background: #cbd5e1;
  color: #0f172a;
}

.site-search-close-btn {
  background: #f1f5f9;
  color: #475569;
  border: none;
  border-radius: 10px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.site-search-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.site-search-body {
  padding: 16px 20px 20px;
  overflow-y: auto;
}

.site-search-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.site-search-tag-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #64748b;
  margin-right: 4px;
}

.site-search-tag {
  background: #f1f5f9;
  color: #2C3691;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.site-search-tag:hover {
  background: #2C3691;
  color: #ffffff;
  border-color: #2C3691;
}

.site-search-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-search-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  transition: all 0.2s;
}

.site-search-item:hover {
  background: #ffffff;
  border-color: #7dd3fc;
  box-shadow: 0 4px 12px rgba(39, 170, 225, 0.12);
  transform: translateY(-1px);
}

.site-search-item-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: #e0f2fe;
  color: #0369a1;
  flex-shrink: 0;
  margin-top: 2px;
}

.site-search-item-badge.badge-dao-tao {
  background: #fef3c7;
  color: #b45309;
}

.site-search-item-badge.badge-hoi-vien {
  background: #dcfce7;
  color: #15803d;
}

.site-search-item-content {
  flex: 1;
}

.site-search-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 4px;
  line-height: 1.4;
}

.site-search-item-desc {
  font-size: 0.83rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.site-search-empty {
  text-align: center;
  padding: 30px 10px;
  color: #64748b;
  font-size: 0.92rem;
}


/* Video Overlay inside Thumbnail Cards */
.facility-side-card.card-video {
  position: relative;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
  border-radius: 14px;
}

.facility-side-card.card-video:hover .video-play-overlay {
  background: rgba(44, 54, 145, 0.45);
}

.video-play-icon {
  width: 36px;
  height: 36px;
  background: #dc2626;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding-left: 3px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}

.facility-side-card.card-video:hover .video-play-icon {
  transform: scale(1.15);
  background: #ef4444;
}

.video-card-badge {
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}


/* Responsive Break Utilities for Footer */
.br-desktop {
  display: block;
}
.br-mobile {
  display: none;
}

@media (max-width: 768px) {
  .br-desktop {
    display: none !important;
  }
  .br-mobile {
    display: block !important;
  }
}

/* Remove underline on phone numbers and links in footer */
.footer-contact-item a,
.footer-contact-item a:hover,
a[href^="tel:"],
a[href*="1900"] {
  text-decoration: none !important;
  color: inherit !important;
  border-bottom: none !important;
}


/* Section Slider Arrows on Subpages (Desktop vs Mobile) */
@media (min-width: 769px) {
  .page-template-page-tin-tuc .section-slider-arrow,
  .page-template-page-dao-tao .section-slider-arrow {
    display: none !important;
  }
}


/* ==========================================================================
   HOMEPAGE 3 CORE VALUES / QUICK BOXES (AIH Style Pastel Cards - 3 Boxes 1 Row)
   ========================================================================== */
.core-values-section {
  padding: 24px 0 10px !important;
  background: transparent;
}

.core-values-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
}

.core-value-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 22px 16px !important;
  border-radius: 18px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  cursor: pointer !important;
  border: none !important;
  position: relative !important;
  overflow: hidden !important;
}

.core-value-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08) !important;
}

.core-value-card::before {
  display: none !important;
}

/* Card 1: Đoàn kết (Pastel Sky Blue) */
.core-value-card.card-doan-ket {
  background: #9be0f7 !important;
  color: #0369a1 !important;
}
.core-value-card.card-doan-ket .core-value-icon {
  color: #0284c7 !important;
}
.core-value-card.card-doan-ket .core-value-title {
  color: #0284c7 !important;
}

/* Card 2: Hợp tác (Pastel Green) */
.core-value-card.card-hop-tac {
  background: #bcf0a5 !important;
  color: #15803d !important;
}
.core-value-card.card-hop-tac .core-value-icon {
  color: #15803d !important;
}
.core-value-card.card-hop-tac .core-value-title {
  color: #15803d !important;
}

/* Card 3: Phát triển (Pastel Yellow) */
.core-value-card.card-phat-trien {
  background: #fde398 !important;
  color: #a16207 !important;
}
.core-value-card.card-phat-trien .core-value-icon {
  color: #a16207 !important;
}
.core-value-card.card-phat-trien .core-value-title {
  color: #a16207 !important;
}

.core-value-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 10px !important;
}

.core-value-icon svg {
  width: 32px !important;
  height: 32px !important;
  display: block !important;
}

.core-value-title {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  margin: 0 !important;
  letter-spacing: 0.3px !important;
  font-family: 'Noto Sans', sans-serif !important;
  white-space: nowrap !important;
}

/* Mobile & Tablet: Always 3 boxes in 1 single row */
@media (max-width: 991px) {
  .core-values-section {
    padding: 16px 0 8px !important;
  }
  
  .core-values-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }

  .core-value-card {
    padding: 16px 8px !important;
    border-radius: 14px !important;
  }

  .core-value-icon {
    margin-bottom: 6px !important;
  }

  .core-value-icon svg {
    width: 24px !important;
    height: 24px !important;
  }

  .core-value-title {
    font-size: 0.82rem !important;
    letter-spacing: 0 !important;
  }
}

@media (max-width: 480px) {
  .core-values-grid {
    gap: 6px !important;
  }

  .core-value-card {
    padding: 12px 4px !important;
    border-radius: 12px !important;
  }

  .core-value-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .core-value-title {
    font-size: 0.72rem !important;
  }
}


/* Red Background for Footer Newsletter Button */
.footer-newsletter-btn,
.site-footer .footer-newsletter-btn,
.site-footer button.footer-newsletter-btn {
  background: #e22b27 !important;
  background-color: #e22b27 !important;
  border-color: #e22b27 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  transition: all 0.25s ease !important;
}

.footer-newsletter-btn:hover,
.site-footer .footer-newsletter-btn:hover,
.site-footer button.footer-newsletter-btn:hover {
  background: #b91c1c !important;
  background-color: #b91c1c !important;
  border-color: #b91c1c !important;
  border-radius: 8px !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(226, 43, 39, 0.45) !important;
}


/* ==========================================================================
   VIBRANT ABOUT PAGE (FV Hospital & Pinterest Medical UI Style)
   ========================================================================== */
.about-hero-banner {
  background: linear-gradient(135deg, #161d52 0%, #2C3691 60%, #1e3a8a 100%);
  color: #ffffff;
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.about-hero-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(39, 170, 225, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  color: #ffffff;
}

.about-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #e2e8f0;
  max-width: 820px;
  margin-bottom: 24px;
}

.about-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.about-badge.badge-gold {
  background: #fef3c7;
  color: #b45309;
  border-color: #fde68a;
}

.about-badge.badge-blue {
  background: #e0f2fe;
  color: #0284c7;
  border-color: #bae6fd;
}

.about-badge.badge-green {
  background: #dcfce7;
  color: #15803d;
  border-color: #bbf7d0;
}

/* 1. Color-Coded Stats Cards */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.about-stat-card {
  padding: 24px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  text-align: center;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.stat-card-blue {
  background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%);
  border-color: #bae6fd;
}
.stat-card-blue .about-stat-num { color: #0284c7; }
.stat-card-blue .stat-icon-wrapper { background: #bae6fd; color: #0284c7; }

.stat-card-green {
  background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
  border-color: #bbf7d0;
}
.stat-card-green .about-stat-num { color: #16a34a; }
.stat-card-green .stat-icon-wrapper { background: #bbf7d0; color: #16a34a; }

.stat-card-amber {
  background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #fde68a;
}
.stat-card-amber .about-stat-num { color: #d97706; }
.stat-card-amber .stat-icon-wrapper { background: #fde68a; color: #d97706; }

.stat-card-rose {
  background: linear-gradient(145deg, #fff1f2 0%, #fee2e2 100%);
  border-color: #fecaca;
}
.stat-card-rose .about-stat-num { color: #e11d48; }
.stat-card-rose .stat-icon-wrapper { background: #fecaca; color: #e11d48; }

.stat-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.about-stat-num {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Noto Sans', sans-serif !important;
}

.about-stat-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
  line-height: 1.4;
}

/* 2. Overview & Leadership Quote */
.about-overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 48px;
}

.about-overview-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 14px;
}

.about-quote-box {
  background: #f8fafc;
  border-left: 4px solid var(--brand-navy, #2C3691);
  border-radius: 0 16px 16px 0;
  padding: 18px 22px;
  margin-top: 20px;
  display: flex;
  gap: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.quote-icon {
  font-size: 2.8rem;
  line-height: 1;
  color: var(--brand-navy, #2C3691);
  font-family: Georgia, serif;
  opacity: 0.4;
}

.quote-content strong {
  color: var(--brand-navy, #2C3691);
  font-size: 0.92rem;
}

.quote-content p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin: 4px 0 0;
}

.about-photo-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.about-photo-card:hover {
  transform: translateY(-4px);
}

.photo-img-wrapper {
  overflow: hidden;
  height: 260px;
}

.photo-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-photo-card:hover .photo-img-wrapper img {
  transform: scale(1.05);
}

.about-photo-caption {
  padding: 16px 20px;
  background: #ffffff;
}

.about-photo-caption strong {
  display: block;
  font-size: 0.96rem;
  color: var(--brand-navy, #2C3691);
  margin-bottom: 2px;
}

.about-photo-caption span {
  font-size: 0.82rem;
  color: #64748b;
}

/* 3. Strategic Directions (10 Vibrant Colorful Cards) */
.strategic-container {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  margin-bottom: 48px;
}

.strategic-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 16px;
}

.strategic-motto {
  font-size: 0.9rem;
  color: #e22b27;
  font-weight: 700;
}

.strategic-approved-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: var(--brand-navy, #2C3691);
  font-weight: 800;
  font-size: 0.84rem;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
}

.directions-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 16px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.direction-item-card {
  background: #ffffff !important;
  border: 1px solid #e0f2fe !important;
  border-radius: 16px !important;
  padding: 18px 20px !important;
  display: flex !important;
  gap: 16px !important;
  align-items: flex-start !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04) !important;
  transition: all 0.25s ease !important;
  position: relative !important;
  z-index: 1 !important;
}

.direction-item-card:hover {
  background: #ffffff !important;
  border-color: #38bdf8 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 26px rgba(39, 170, 225, 0.18) !important;
}

.direction-item-num {
  width: 42px !important;
  height: 42px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #0284c7 0%, #27AAE1 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 3px 10px rgba(39, 170, 225, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  flex-shrink: 0 !important;
  font-family: 'Noto Sans', sans-serif !important;
}

.direction-item-title {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: var(--brand-navy, #2C3691) !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.35 !important;
  font-family: 'Noto Sans', sans-serif !important;
}

.direction-item-desc {
  font-size: 0.88rem !important;
  color: #475569 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

/* Programs Section */
.directions-wrapper-modern,
.programs-wrapper-modern {
  border-top: 2px solid #f1f5f9;
  padding-top: 30px;
}

.directions-header-row,
.programs-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.programs-heading-title {
  color: var(--brand-navy, #2C3691);
  font-size: 1.18rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.3px;
}

.programs-motto-badge {
  font-size: 0.85rem;
  color: #e22b27;
  font-weight: 800;
}

.programs-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.program-item-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 14px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.program-item-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.program-card-special {
  background: #fef2f2;
  border-color: #fecaca;
}
.program-card-special:hover {
  background: #fee2e2;
  border-color: #fca5a5;
}

.program-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.tag-blue { background: #dbeafe; color: #1d4ed8; }
.tag-teal { background: #ccfbf1; color: #0f766e; }
.tag-indigo { background: #e0e7ff; color: #4338ca; }
.tag-purple { background: #f3e8ff; color: #7e22ce; }
.tag-green { background: #dcfce7; color: #15803d; }
.tag-amber { background: #fef3c7; color: #b45309; }
.tag-sky { background: #e0f2fe; color: #0369a1; }
.tag-red { background: #fee2e2; color: #b91c1c; }

.program-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 6px;
  line-height: 1.35;
}

.program-desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
  flex: 1;
}

/* 4. Activity Photo Highlights Gallery (Mosaic Grid) */
.about-gallery-section {
  margin-bottom: 48px;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-photo-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: all 0.28s ease;
}

.gallery-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.09);
}

.gallery-photo-wrap {
  height: 160px;
  overflow: hidden;
}

.gallery-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-photo-card:hover .gallery-photo-wrap img {
  transform: scale(1.06);
}

.gallery-photo-info {
  padding: 14px;
}

.gallery-photo-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-red, #e22b27);
  margin-bottom: 4px;
}

.gallery-photo-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin: 0;
}

/* 5. Call To Action (High Impact Card) */
.about-cta-card {
  background: linear-gradient(135deg, #161d52 0%, #2C3691 60%, #1e3a8a 100%);
  border-radius: 24px;
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(22, 29, 82, 0.22);
}

.about-cta-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(circle, rgba(226, 43, 39, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.about-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.about-cta-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.about-cta-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #e2e8f0;
  margin-bottom: 24px;
}

.about-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-red {
  background: var(--brand-red, #e22b27);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(226, 43, 39, 0.3);
}

.btn-primary-red:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(226, 43, 39, 0.4);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-overview-grid {
    grid-template-columns: 1fr;
  }
  .directions-grid-modern {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
  }
  .programs-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .about-hero-title {
    font-size: 1.5rem;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: -15px;
  }
  .about-stat-card {
    padding: 16px 12px;
  }
  .about-stat-num {
    font-size: 1.9rem;
  }
  .about-stat-label {
    font-size: 0.78rem;
  }
  .strategic-container {
    padding: 20px 16px;
  }
  .programs-grid-modern {
    grid-template-columns: 1fr;
  }
  .about-gallery-grid {
    grid-template-columns: 1fr;
  }
  .about-cta-card {
    padding: 28px 18px;
  }
  .about-cta-title {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   RELATED NEWS (Below Article - 3 Box Layout with 2-Side Arrows)
   ========================================================================== */
.single-article-main-container {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.related-news-section {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 2px solid #e2e8f0;
  width: 100%;
}

.related-news-slider-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: 100%;
}

@media (max-width: 991px) {
  .related-news-slider-track {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
    gap: 16px !important;
    padding: 6px 2px 14px !important;
    scrollbar-width: none !important;
  }
  .related-news-slider-track::-webkit-scrollbar {
    display: none !important;
  }
  .related-news-slider-track .news-article-card {
    flex: 0 0 calc(85% - 8px) !important;
    min-width: calc(85% - 8px) !important;
    max-width: calc(85% - 8px) !important;
    scroll-snap-align: start !important;
  }
}


/* Footer Newsletter Input White Background */
.site-footer input[type="email"],
.footer-newsletter-input {
  background: #ffffff !important;
  color: #1e293b !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 8px !important;
  padding: 8px 16px !important;
  font-size: 0.88rem !important;
}

.site-footer input[type="email"]::placeholder,
.footer-newsletter-input::placeholder {
  color: #64748b !important;
  opacity: 1 !important;
}

.site-footer input[type="email"]:focus,
.footer-newsletter-input:focus {
  border-color: var(--brand-cyan, #27AAE1) !important;
  box-shadow: 0 0 0 3px rgba(39, 170, 225, 0.25) !important;
  outline: none !important;
}


/* ==========================================================================
   BẢNG SƠ ĐỒ TỔ CHỨC: BO TRÒN GÓC & FIT BỀ RỘNG CỘT VỪA VẶN
   ========================================================================== */
.table-responsive-rounded {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  background: #ffffff;
  margin-bottom: 24px;
  -webkit-overflow-scrolling: touch;
}

.org-data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Noto Sans', sans-serif !important;
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.org-data-table thead tr {
  background: var(--brand-navy, #2C3691) !important;
  color: #ffffff !important;
}

.org-data-table th,
.org-data-table th.col-stt,
.org-data-table th.col-name,
.org-data-table th.col-role,
.org-data-table th.col-pos,
.org-data-table th.col-org {
  padding: 13px 16px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  border: 1px solid #1e293b;
  border-top: none;
  vertical-align: middle;
  background: var(--brand-navy, #2C3691) !important;
  color: #ffffff !important;
  text-align: left;
}

.org-data-table th.col-stt,
.org-data-table th.col-role {
  text-align: center !important;
}

.org-data-table th:first-child {
  border-left: none;
}

.org-data-table th:last-child {
  border-right: none;
}

.org-data-table td {
  padding: 11px 16px;
  border: 1px solid var(--border-light, #e2e8f0);
  vertical-align: middle;
  font-weight: 400;
  line-height: 1.55;
}

.org-data-table td:first-child {
  border-left: none;
}

.org-data-table td:last-child {
  border-right: none;
}

.org-data-table tr:last-child td {
  border-bottom: none;
}

.org-data-table tr:nth-child(even) {
  background-color: #f8fafc;
}

.org-data-table tr:hover {
  background-color: #f1f5f9;
}

/* Specific column widths for Ban Chấp Hành (5 cols) */
.bch-table th.col-stt,
.bch-table td.col-stt {
  width: 55px;
  min-width: 50px;
  max-width: 65px;
  text-align: center !important;
  white-space: nowrap;
}

.bch-table th.col-name,
.bch-table td.col-name {
  width: 18%;
  min-width: 190px;
}

.bch-table td.col-name {
  color: var(--brand-navy, #2C3691) !important;
  font-weight: 600;
}

.bch-table th.col-role,
.bch-table td.col-role {
  width: 18%;
  min-width: 160px;
  text-align: center !important;
}

.bch-table td.col-role {
  color: #0f172a !important;
}

.bch-table th.col-pos,
.bch-table td.col-pos {
  width: 28%;
  min-width: 210px;
}

.bch-table td.col-pos {
  color: #334155 !important;
}

.bch-table th.col-org,
.bch-table td.col-org {
  width: auto;
  min-width: 240px;
}

.bch-table td.col-org {
  color: #334155 !important;
}

/* All Thu Ky & BCH headers: center align */
.thuky-table th,
.bch-table th {
  text-align: center !important;
  vertical-align: middle !important;
}

/* Specific column widths for Ban Thư Ký (4 cols) */
.thuky-table {
  width: 100% !important;
  max-width: 100% !important;
}

.thuky-table th.col-stt,
.thuky-table td.col-stt {
  width: 52px !important;
  min-width: 48px;
  max-width: 56px;
  text-align: center !important;
  white-space: nowrap;
}

.thuky-table th.col-name,
.thuky-table td.col-name {
  width: 24% !important;
  min-width: 200px;
  white-space: nowrap;
}

.thuky-table td.col-name {
  color: var(--brand-navy, #2C3691) !important;
  font-weight: 600;
}

.thuky-table th.col-pos,
.thuky-table td.col-pos {
  width: 38% !important;
  min-width: 320px;
}

.thuky-table td.col-pos {
  color: #334155 !important;
}

.thuky-table th.col-org,
.thuky-table td.col-org {
  width: auto !important;
  min-width: 220px;
}

.thuky-table td.col-org {
  color: #334155 !important;
}




/* ==========================================================================
   FOOTER OVERRIDES (3-cột, Logo trái + Slogan giữa, Gạch chân 42px, Responsive)
   ========================================================================== */
.footer-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 28px !important;
  align-items: start !important;
}

.footer-logo-col {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  text-align: left !important;
  width: auto !important;
  justify-self: start !important;
}

/* Cột giữa: LIÊN HỆ canh giữa đều 2 bên */
.footer-grid > div:nth-child(2) {
  justify-self: center !important;
}

/* Cột phải: ĐĂNG KÝ NHẬN TIN canh phải */
.footer-grid > div:nth-child(3),
.footer-grid > div:last-child {
  justify-self: end !important;
}

.footer-logo-wrapper {
  background: #ffffff !important;
  padding: 6px 14px !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.footer-logo-img {
  height: 38px !important;
  max-width: 280px !important;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-affil-text {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  letter-spacing: 0.2px;
  text-align: center !important;
  margin-top: 8px !important;
  margin-bottom: 2px !important;
  line-height: 1.4 !important;
}

.footer-slogan-text {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  color: #7dd3fc !important;
  letter-spacing: 0.6px;
  text-align: center !important;
  margin-top: 4px;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Newsletter form: match input width with "nhất." text edge */
.footer-grid > div:last-child form {
  max-width: 340px;
  width: fit-content;
}

.footer-newsletter-input {
  width: 248px !important;
  max-width: 248px !important;
  border-radius: 8px !important;
}

.footer-newsletter-btn {
  padding: 8px 18px !important;
  flex-shrink: 0;
  border-radius: 8px !important;
}

.footer-heading {
  color: #ffffff !important;
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: none !important;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 3px;
  background: #7dd3fc !important;
  border-radius: 2px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem !important;
  line-height: 1.5;
  color: #ffffff;
}

/* Footer Responsive (Mobile & Tablet) */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .footer-logo-col,
  .footer-grid > div:nth-child(2),
  .footer-grid > div:last-child {
    justify-self: stretch !important;
  }

  .footer-logo-col {
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 4px;
  }

  .footer-logo-wrapper {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-affil-text {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  letter-spacing: 0.2px;
  text-align: center !important;
  margin-top: 8px !important;
  margin-bottom: 2px !important;
  line-height: 1.4 !important;
}

.footer-slogan-text {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-heading {
    font-size: 0.95rem !important;
    margin-bottom: 10px !important;
    border-bottom: none !important;
    padding-bottom: 6px;
  }

  .footer-newsletter-input {
    width: 248px !important;
    max-width: 248px !important;
    font-size: 0.84rem !important;
    padding: 8px 14px !important;
  }

  .footer-newsletter-btn {
    padding: 8px 16px !important;
    font-size: 0.84rem !important;
  }

  .footer-bottom-row {
    margin-top: 20px !important;
    padding-top: 14px !important;
  }

  .footer-copyright-text {
    font-size: 0.76rem !important;
  }
}


/* ==========================================================================
   10 ĐỊNH HƯỚNG CHIẾN LƯỢC & 08 CHƯƠNG TRÌNH HÀNH ĐỘNG
   ========================================================================== */
.directions-wrapper-modern {
  margin-top: 36px !important;
  padding: 36px 32px 40px !important;
  background-color: #071f46 !important;
  background: 
    linear-gradient(135deg, rgba(6, 25, 56, 0.75) 0%, rgba(10, 42, 92, 0.62) 50%, rgba(6, 25, 56, 0.75) 100%),
    url('../photo/bg/vietnamese_medical_bg.jpg') center right / cover no-repeat !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  border-radius: 24px !important;
  box-shadow: 0 16px 45px rgba(7, 31, 70, 0.22) !important;
  position: relative !important;
  overflow: hidden !important;
}

.directions-header-row .about-section-heading {
  color: #ffffff !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
  margin: 0 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

.programs-wrapper-modern {
  margin-top: 36px !important;
  padding: 32px 28px 36px !important;
  background: #f0f7ff !important;
  border: 1px solid #dbeafe !important;
  border-radius: 20px !important;
  border-top: none !important;
}

.directions-header-row,
.programs-header-row {
  margin-bottom: 24px !important;
  text-align: left !important;
  position: relative !important;
  z-index: 1 !important;
}

.programs-heading-title {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: var(--brand-navy, #2C3691) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  margin: 0 !important;
}

.programs-grid-modern {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

.program-item-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 18px !important;
  padding: 26px 18px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}

.program-item-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 28px rgba(39, 170, 225, 0.16) !important;
  border-color: #7dd3fc !important;
  background: #ffffff !important;
}

.program-icon-box {
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #0284c7 0%, #27AAE1 50%, #38bdf8 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  margin: 0 auto 16px auto !important;
  box-shadow: 0 4px 14px rgba(39, 170, 225, 0.28) !important;
  flex-shrink: 0 !important;
  transition: transform 0.25s ease !important;
}

.program-item-card:hover .program-icon-box {
  transform: scale(1.08) !important;
}

.program-item-card .program-title {
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  color: var(--brand-navy, #2C3691) !important;
  line-height: 1.35 !important;
  margin: 0 0 10px 0 !important;
  min-height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-wrap: balance !important;
  text-align: center !important;
}

.program-item-card .program-desc {
  font-size: 0.85rem !important;
  color: #475569 !important;
  line-height: 1.55 !important;
  margin: 0 0 14px 0 !important;
  text-align: center !important;
  flex-grow: 1 !important;
}

.program-item-card .program-meta {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: #2563eb !important;
  margin-top: auto !important;
  letter-spacing: 0.2px !important;
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
}

@media (max-width: 1100px) {
  .programs-grid-modern {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 768px) {
  .directions-wrapper-modern,
.programs-wrapper-modern {
    padding: 20px 14px 24px !important;
    border-radius: 16px !important;
    margin-top: 20px !important;
  }
  .programs-heading-title {
    font-size: 1.12rem !important;
    text-align: center !important;
    line-height: 1.35 !important;
  }
  .programs-grid-modern {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .program-item-card {
    padding: 18px 14px 16px !important;
    border-radius: 14px !important;
  }
  .program-item-card .program-title {
    min-height: auto !important;
    font-size: 0.98rem !important;
  }
  .program-item-card .program-desc {
    font-size: 0.84rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
  }
}



/* ==========================================================================
   VỀ CHI HỘI HERO BANNER (CHUẨN THEO ẢNH THIẾT KẾ MẪU - TỐI GIẢN CAO CẤP)
   ========================================================================== */
.fv-hero-card {
  background: #071f46 !important;
  background: linear-gradient(135deg, #071f46 0%, #0b326c 40%, #114894 75%, #0284c7 100%) !important;
  border-radius: 28px !important;
  box-shadow: 0 18px 45px rgba(2, 132, 199, 0.22) !important;
  border: 1px solid rgba(56, 189, 248, 0.25) !important;
  display: grid !important;
  grid-template-columns: 1.15fr 1fr !important;
  gap: 36px !important;
  padding: 30px 36px 32px 44px !important;
  margin-top: 10px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden !important;
  align-items: stretch !important;
  min-height: 370px !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.fv-hero-card:hover {
  box-shadow: 0 22px 55px rgba(2, 132, 199, 0.32) !important;
  border-color: rgba(56, 189, 248, 0.45) !important;
}

/* Subtle Ambient Glow & Single Faint Medical ECG Accent */
.fv-hero-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 30%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(39, 170, 225, 0.12) 0%, transparent 45%);
  pointer-events: none !important;
  z-index: 1 !important;
}

/* Single Delicate Animated ECG Wave at Bottom-Left */
.fv-hero-card::after {
  content: '' !important;
  position: absolute !important;
  bottom: 4px;
  left: 24px;
  width: 220px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='220' height='32' viewBox='0 0 220 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 L60 20 L70 8 L77 28 L84 2 L91 22 L98 16 L105 20 L220 20' fill='none' stroke='%2338bdf8' stroke-width='1.8' stroke-opacity='0.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  pointer-events: none !important;
  z-index: 1 !important;
  animation: ecgPulseGlow 3.5s ease-in-out infinite !important;
}

@keyframes ecgPulseGlow {
  0%, 100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.04);
  }
}

.fv-hero-content-col {
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  position: relative !important;
  z-index: 2 !important;
}
.fv-hero-title {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #ef4444 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  line-height: 1.3 !important;
  margin: 0 0 20px 0 !important;
  position: relative !important;
  display: inline-block !important;
  padding-bottom: 8px !important;
}

.fv-hero-title::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 42px !important;
  height: 3px !important;
  background: #38bdf8 !important;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6) !important;
  border-radius: 2px !important;
}

.fv-hero-paragraph {
  position: relative !important;
  padding-left: 22px !important;
  font-size: 0.98rem !important;
  line-height: 1.65 !important;
  color: #e2e8f0 !important;
  margin-bottom: 10px !important;
  text-align: justify !important;
}

.fv-hero-paragraph::before {
  content: '' !important;
  position: absolute !important;
  left: 2px !important;
  top: 9px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #38bdf8 !important;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.8) !important;
  animation: cyanDotPulse 2.8s ease-in-out infinite !important;
}

@keyframes cyanDotPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 6px rgba(56, 189, 248, 0.7);
  }
  50% {
    transform: scale(1.35);
    box-shadow: 0 0 16px rgba(56, 189, 248, 1), 0 0 22px rgba(39, 170, 225, 0.8);
  }
}

.fv-hero-btn-wrap {
  margin-top: 10px !important;
  margin-bottom: 8px !important;
  padding-left: 22px !important;
}


/* Floating Medical Cross Icons in Hero Banner */
.fv-medical-cross {
  position: absolute !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.fv-cross-1 {
  top: 24px !important;
  left: 45% !important;
  opacity: 0.22 !important;
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.5)) !important;
  animation: crossFloat 4.5s ease-in-out infinite !important;
}

.fv-cross-2 {
  top: 18px !important;
  left: 18px !important;
  opacity: 0.18 !important;
  animation: crossFloat 5.2s ease-in-out infinite 1s !important;
}

.fv-cross-3 {
  bottom: 22px !important;
  left: 46% !important;
  opacity: 0.16 !important;
  animation: crossFloat 4s ease-in-out infinite 0.5s !important;
}

@keyframes crossFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(6deg);
  }
}

.about-hero-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, #ff4d4f 0%, #e22b27 50%, #c81e1e 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  padding: 8px 24px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(226, 43, 39, 0.4) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  position: relative !important;
  overflow: hidden !important;
}

.about-hero-btn::after {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  left: -60% !important;
  width: 40% !important;
  height: 200% !important;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.45), transparent) !important;
  transform: rotate(25deg) !important;
  animation: btnShineSweep 4.5s ease-in-out infinite !important;
}

@keyframes btnShineSweep {
  0%, 75% {
    left: -60%;
  }
  100% {
    left: 140%;
  }
}

.about-hero-btn:hover {
  background: linear-gradient(135deg, #e22b27 0%, #b91c1c 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 24px rgba(200, 30, 30, 0.55) !important;
}

.fv-hero-image-col {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.fv-hero-main-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 20px !important;
  display: block !important;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.fv-hero-image-col:hover .fv-hero-main-img {
  transform: scale(1.05) !important;
}

/* ==========================================================================
   RESPONSIVE OPTIMIZATION CHO VỀ CHI HỘI HERO CARD
   ========================================================================== */
@media (max-width: 992px) {
  .fv-hero-card {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    border-radius: 24px !important;
    padding: 30px 24px 28px !important;
    gap: 24px !important;
  }
  
  .fv-hero-content-col {
    padding: 0 !important;
  }
  
  .fv-hero-image-col {
    border-radius: 18px !important;
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    aspect-ratio: 16 / 9 !important;
    max-height: 340px !important;
  }
  
  .fv-hero-main-img {
    border-radius: 18px !important;
  }
}

@media (max-width: 768px) {
  .fv-hero-card {
    border-radius: 20px !important;
    padding: 24px 18px 22px !important;
    gap: 20px !important;
    margin-top: 5px !important;
    margin-bottom: 24px !important;
  }
  
  .fv-hero-title {
    font-size: 1.18rem !important;
    margin-bottom: 14px !important;
  }
  
  .fv-hero-paragraph {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    padding-left: 18px !important;
    margin-bottom: 12px !important;
    text-align: justify !important;
  }
  
  .fv-hero-paragraph::before {
    top: 7px !important;
    left: 2px !important;
    width: 6px !important;
    height: 6px !important;
  }
  
  .fv-hero-btn-wrap {
    padding-left: 18px !important;
  }
  
/* Floating Medical Cross Icons in Hero Banner */
.fv-medical-cross {
  position: absolute !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.fv-cross-1 {
  top: 24px !important;
  left: 45% !important;
  opacity: 0.22 !important;
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.5)) !important;
  animation: crossFloat 4.5s ease-in-out infinite !important;
}

.fv-cross-2 {
  top: 18px !important;
  left: 18px !important;
  opacity: 0.18 !important;
  animation: crossFloat 5.2s ease-in-out infinite 1s !important;
}

.fv-cross-3 {
  bottom: 22px !important;
  left: 46% !important;
  opacity: 0.16 !important;
  animation: crossFloat 4s ease-in-out infinite 0.5s !important;
}

@keyframes crossFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(6deg);
  }
}

.about-hero-btn {
    padding: 7px 20px !important;
    font-size: 0.85rem !important;
  }
  
  .fv-hero-image-col {
    border-radius: 14px !important;
    aspect-ratio: 16 / 9 !important;
    max-height: 230px !important;
  }
  
  .fv-hero-main-img {
    border-radius: 14px !important;
  }
  
  .fv-hero-card::after {
    width: 160px !important;
    height: 28px !important;
    bottom: 6px !important;
    left: 12px !important;
    opacity: 0.2 !important;
  }
}

@media (max-width: 480px) {
  .fv-hero-btn-wrap {
    padding-left: 16px !important;
  }
  .fv-hero-card {
    padding: 20px 15px 18px !important;
    border-radius: 16px !important;
    gap: 16px !important;
  }
  
  .fv-hero-title {
    font-size: 1.1rem !important;
    margin-bottom: 10px !important;
  }
  
  .fv-hero-paragraph {
    font-size: 0.86rem !important;
    line-height: 1.55 !important;
    padding-left: 16px !important;
    margin-bottom: 10px !important;
    text-align: justify !important;
  }
  
  .fv-hero-image-col {
    border-radius: 12px !important;
    max-height: 200px !important;
  }
  
  .fv-hero-main-img {
    border-radius: 12px !important;
  }
}



/* Contact Form Title Red Underline Override */
.contact-form-title {
  text-transform: uppercase !important;
}
.contact-form-title::after {
  background: #e22b27 !important;
}

/* Contact Form Submit Button Dark Blue Gradient Theme */
.btn-submit-contact {
  width: 100% !important;
  padding: 0.9rem 2rem !important;
  background: #071f46 !important;
  background: linear-gradient(135deg, #071f46 0%, #0b326c 40%, #114894 75%, #0284c7 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px rgba(7, 31, 70, 0.35) !important;
  transition: all 0.25s ease !important;
}

.btn-submit-contact:hover {
  background: linear-gradient(135deg, #061938 0%, #08295a 40%, #0e3d7d 75%, #0274b3 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.45) !important;
  border-color: rgba(56, 189, 248, 0.5) !important;
}

.btn-submit-contact:active,
.btn-submit-contact:focus {
  background: linear-gradient(135deg, #041228 0%, #072248 100%) !important;
  color: #ffffff !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.35) !important;
}

/* ==========================================================================
   SCROLL REVEAL & ENTRANCE ANIMATIONS (CHUẨN BỆNH VIỆN PHƯƠNG CHÂU / PHƯƠNG NAM)
   ========================================================================== */
.fv-hero-card {
  opacity: 0;
  transform: translateY(35px) scale(0.98);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
  will-change: opacity, transform;
}

.fv-hero-card.is-revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.fv-hero-card .fv-hero-title {
  opacity: 0;
  transform: translateX(-25px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s !important;
}

.fv-hero-card.is-revealed .fv-hero-title {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.fv-hero-card .fv-hero-paragraph:nth-of-type(1) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.28s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.28s !important;
}

.fv-hero-card.is-revealed .fv-hero-paragraph:nth-of-type(1) {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.fv-hero-card .fv-hero-paragraph:nth-of-type(2) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.42s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.42s !important;
}

.fv-hero-card.is-revealed .fv-hero-paragraph:nth-of-type(2) {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.fv-hero-card .fv-hero-btn-wrap {
  opacity: 0;
  transform: translateY(18px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s !important;
}

.fv-hero-card.is-revealed .fv-hero-btn-wrap {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.fv-hero-card .fv-hero-image-col {
  opacity: 0;
  transform: translateX(35px) scale(0.96);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s !important;
}

.fv-hero-card.is-revealed .fv-hero-image-col {
  opacity: 1 !important;
  transform: translateX(0) scale(1) !important;
}

/* 10 Định hướng Scroll Reveal */
.directions-wrapper-modern {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.directions-wrapper-modern.is-revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.directions-wrapper-modern .direction-item-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.directions-wrapper-modern.is-revealed .direction-item-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Course Registration Submit Button Dark Blue Gradient Theme */
.btn-submit-course,
#courseRegisterForm button[type="submit"],
#quickRegisterForm button[type="submit"] {
  width: 100% !important;
  padding: 12px 24px !important;
  background: #071f46 !important;
  background: linear-gradient(135deg, #071f46 0%, #0b326c 40%, #114894 75%, #0284c7 100%) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 16px rgba(7, 31, 70, 0.28) !important;
  transition: all 0.25s ease !important;
  display: block !important;
  text-align: center !important;
}

.btn-submit-course:hover,
#courseRegisterForm button[type="submit"]:hover,
#quickRegisterForm button[type="submit"]:hover {
  background: linear-gradient(135deg, #061938 0%, #08295a 40%, #0e3d7d 75%, #0274b3 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4) !important;
  border-color: rgba(56, 189, 248, 0.5) !important;
}

/* ==========================================================================
   SMART MOBILE LINE BREAK HELPER (.mobile-br)
   ========================================================================== */
.mobile-br {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-br {
    display: block !important;
    content: "" !important;
  }
}
