/*!------------------------------------------------------------------
[THEME LAYER — dark/light mode + motion + simplification]
Loaded after style.css. Only adds variables, dark-mode overrides,
transitions and scroll/hover animations — does not remove any
existing layout rule.
-------------------------------------------------------------------*/

/* 1. Color tokens
================================================== */
:root {
  --bg: #ffffff;
  --bg-alt: #f9f9f9;
  --surface: #ffffff;
  --text: #555555;
  --heading: #212121;
  --border: #e7e7e7;
  --shadow: rgba(20, 20, 20, 0.08);
  --shadow-strong: rgba(20, 20, 20, 0.16);
  --topbar-bg: #ffffff;
  --topbar-text: #111111;
  --dropdown-bg: #ffffff;
  --input-bg: #ffffff;
  --input-border: #e2e2e2;
  --accent: #ffb600;
  --accent-dark: #3a5371;

  color-scheme: light;
}

html[data-theme="dark"] {
  --bg: #14161a;
  --bg-alt: #1b1e23;
  --surface: #1c1f25;
  --text: #b9bec6;
  --heading: #f2f3f5;
  --border: #2b2f36;
  --shadow: rgba(0, 0, 0, 0.35);
  --shadow-strong: rgba(0, 0, 0, 0.55);
  --topbar-bg: #1a1d22;
  --topbar-text: #f2f3f5;
  --dropdown-bg: #1c1f25;
  --input-bg: #20242b;
  --input-border: #333844;
  --accent: #ffb600;
  --accent-dark: #6f93bd;

  color-scheme: dark;
}

/* Respect system preference before the toggle has been used
   (theme.js sets data-theme explicitly on first paint, this is a
   harmless fallback for edge-cases / no-js) */
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]):not([data-theme="dark"]) {
    --bg: #14161a;
    --bg-alt: #1b1e23;
    --surface: #1c1f25;
    --text: #b9bec6;
    --heading: #f2f3f5;
    --border: #2b2f36;
    --shadow: rgba(0, 0, 0, 0.35);
    --shadow-strong: rgba(0, 0, 0, 0.55);
    --topbar-bg: #1a1d22;
    --topbar-text: #f2f3f5;
    --dropdown-bg: #1c1f25;
    --input-bg: #20242b;
    --input-border: #333844;
    color-scheme: dark;
  }
}

/* 2. Smooth theme transition
================================================== */
body,
.header-one .bg-white,
.dropdown-menu,
.solid-bg,
.solid-row,
.pattern-bg,
blockquote,
.ts-pricing-box,
.quote-item .quote-text,
.accordion-group .card,
.card,
.form-control,
.footer,
a,
.btn {
  transition: background-color .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease, transform .25s ease;
}

/* 3. Apply tokens to structure
================================================== */
body {
  background: var(--bg);
  color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
}

.header-one .bg-white {
  background: var(--topbar-bg) !important;
}

.header-one ul.top-info-box li .info-box .info-box-subtitle,
.header-one .info-box-subtitle {
  color: var(--topbar-text) !important;
}

.header-one ul.top-info-box li .info-box .info-box-title,
.header-one .info-box-title {
  color: var(--topbar-text) !important;
  opacity: .72;
}

.dropdown-menu {
  background: var(--dropdown-bg);
  border-color: var(--border);
  box-shadow: 0 12px 30px var(--shadow-strong);
}

.dropdown-menu li a {
  color: var(--text);
}

.solid-bg,
blockquote,
.ts-pricing-box {
  background: var(--bg-alt);
}

.solid-row {
  background: var(--bg-alt);
}

.pattern-bg {
  background-color: var(--bg-alt);
}

.quote-item .quote-text {
  background-color: var(--surface);
}

.accordion-group .card,
.card {
  background: var(--surface);
  border-color: var(--border);
}

.form-control {
  background: var(--input-bg);
  border-color: var(--input-border);
  color: var(--text);
}

.form-control:focus {
  background: var(--input-bg);
  color: var(--text);
}

.accordion-group .card-header .btn {
  color: var(--heading);
}

.accordion-group .card-header .btn[aria-expanded="true"] {
  color: var(--accent);
}

/* Hardcoded near-black text/link colors used across blog & sidebar
   widgets in style.css — repoint to the theme heading token so they
   stay legible in dark mode. */
.featured-tab .lead,
.project-info-label,
.latest-post .post-title a,
.entry-header .entry-title a,
.post-meta a,
.comments-list .comment-reply,
.sidebar .widget ul li a,
.sidebar ul.nav-tabs li a,
.sidebar ul.nav-tabs li,
.widget.recent-posts .post-info .entry-title a,
.sidebar .widget-tags ul > li a,
.section-sub-title,
.service-box-title a,
.shuffle-btn-group label,
.ts-team-content-classic .ts-name {
  color: var(--heading);
}

hr {
  background-color: var(--border);
}

/* Simplify: softer, more consistent shadows on cards/boxes */
.card,
.accordion-group .card,
.ts-pricing-box,
.quote-item .quote-text {
  box-shadow: 0 4px 16px var(--shadow);
  border-radius: 6px;
  overflow: hidden;
}

/* 4. Theme toggle switch
================================================== */
.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 52px;
  height: 28px;
  padding: 0 6px;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-alt);
  cursor: pointer;
  vertical-align: middle;
  transition: background-color .35s ease, border-color .35s ease;
}

.theme-toggle:hover {
  border-color: var(--accent);
}

.theme-toggle i {
  font-size: 12px;
  line-height: 1;
  position: relative;
  z-index: 1;
  color: var(--topbar-text);
  opacity: .6;
  transition: opacity .3s ease;
}

.theme-toggle .fa-sun { color: #ffb600; }
.theme-toggle .fa-moon { color: #a9b6ff; }

.theme-toggle .toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px var(--shadow-strong);
  transition: transform .35s cubic-bezier(.65, -0.15, .25, 1.2), background-color .35s ease;
}

html[data-theme="dark"] .theme-toggle .toggle-thumb {
  transform: translateX(24px);
  background: #2a2e35;
}

html[data-theme="dark"] .theme-toggle .fa-sun { opacity: .35; }
html:not([data-theme="dark"]) .theme-toggle .fa-moon { opacity: .35; }

.top-info-box li.theme-toggle-item {
  display: flex;
  align-items: center;
  border-right: 0;
}

@media (max-width: 767px) {
  .top-info-box li.theme-toggle-item {
    flex: 0 0 100%;
    justify-content: center;
  }
}

/* 5. Scroll-reveal motion
================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in-view { transition-delay: var(--reveal-delay, 0ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 6. Hover motion on interactive elements
================================================== */
a {
  transition: color .25s ease;
}

.btn {
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px var(--shadow-strong);
}

.btn:active {
  transform: translateY(0);
}

.card,
.ts-pricing-box,
.quote-item .quote-text,
.footer-social ul li a {
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease, border-color .3s ease;
}

.card:hover,
.ts-pricing-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px var(--shadow-strong);
}

.footer-social ul li a:hover {
  transform: translateY(-3px) scale(1.05);
}

/* Nav links — soft rounded hover/active pill (minimal, professional) */
.header-one .site-navigation ul.navbar-nav > li > a:not(.mh-nav-cta) {
  position: relative;
  border-radius: 999px;
  padding: 8px 16px !important;
  margin: 9px 2px;
  transition: background-color .25s ease, color .25s ease;
}

.header-one .site-navigation ul.navbar-nav > li:hover > a:not(.mh-nav-cta),
.header-one .site-navigation ul.navbar-nav > li.active > a:not(.mh-nav-cta) {
  background: rgba(255, 182, 0, .16);
  color: var(--accent) !important;
}

.header-one .site-navigation ul.navbar-nav > li > a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 991px) {
  .header-one .site-navigation ul.navbar-nav > li > a:not(.mh-nav-cta) {
    margin: 4px 0;
  }
}

/* Image zoom on hover inside cards/links */
.card img,
.ts-pricing-box img {
  transition: transform .5s ease;
}

.card:hover img,
.ts-pricing-box:hover img {
  transform: scale(1.04);
}

/* Back to top: smoother appearance */
#back-to-top .btn {
  transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}

#back-to-top .btn:hover {
  transform: translateY(-4px) scale(1.05);
}

/* Logo subtle motion */
.logo img {
  transition: transform .3s ease;
}

.logo a:hover img {
  transform: scale(1.05);
}

/* Logo is navy-on-transparent (tuned for the light top bar); invert it to
   white in dark mode so it stays legible against the dark top bar/footer. */
html[data-theme="dark"] .logo img {
  filter: brightness(0) invert(1);
}

/* Footer band is always dark regardless of site theme, so its logo must
   always render inverted (navy-on-transparent would be unreadable on it). */
.footer-logo {
  filter: brightness(0) invert(1);
}

/* 7. Minh Hoàng — brief-driven content sections
================================================== */
.mh-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
}

@media (max-width: 1400px) {
  .mh-container { padding: 0 48px; }
}

@media (max-width: 991px) {
  .mh-container { padding: 0 32px; }
}

@media (max-width: 575px) {
  .mh-container { padding: 0 22px; }
}

.mh-section {
  padding: 120px 0;
}

@media (max-width: 991px) {
  .mh-section { padding: 80px 0; }
}

@media (max-width: 575px) {
  .mh-section { padding: 56px 0; }
}

.mh-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--accent-dark);
  font-size: .8rem;
  margin-bottom: 14px;
}

html[data-theme="dark"] .mh-eyebrow { color: var(--accent); }

.mh-section-title {
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 18px;
}

.mh-section-lead {
  max-width: 720px;
  margin: 0 auto 8px;
}

/* Hero
================================================== */
.mh-hero {
  position: relative;
  background-color: #0b0b0b;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 150px 0 90px;
}

.mh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 11, .55), rgba(11, 11, 11, .86));
}

.mh-hero .mh-container { position: relative; z-index: 1; }

.mh-hero-inner { max-width: 720px; }

.mh-hero-headline {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 20px;
}

.mh-hero-support {
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 0;
}

.mh-hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
  max-width: 920px;
}

@media (max-width: 767px) {
  .mh-hero-cards { grid-template-columns: 1fr; }
}

.mh-hero-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  padding: 28px 30px;
}

.mh-hero-card h3 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.mh-hero-card p {
  color: rgba(255, 255, 255, .8);
  margin: 0;
}

/* Vision / mission split
================================================== */
.mh-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mh-split-col { padding: 0 56px; }

.mh-split-col:first-child { padding-left: 0; }
.mh-split-col:last-child { padding-right: 0; }

.mh-split-col + .mh-split-col {
  border-left: 1px solid var(--border);
}

@media (max-width: 767px) {
  .mh-split { grid-template-columns: 1fr; }
  .mh-split-col,
  .mh-split-col:first-child,
  .mh-split-col:last-child { padding: 0; }
  .mh-split-col + .mh-split-col {
    border-left: 0;
    border-top: 1px solid var(--border);
    margin-top: 40px;
    padding-top: 40px;
  }
}

.mh-split-title {
  font-weight: 800;
  font-size: 1.5rem;
  margin: 10px 0 16px;
}

/* Services grid (asymmetric numbered cards)
================================================== */
.mh-service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.mh-service-card {
  position: relative;
  grid-column: span 3;
  min-height: 320px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.mh-service-card.mh-span-2 { grid-column: span 2; }
.mh-service-card.mh-span-6 { grid-column: span 6; min-height: 220px; }

@media (max-width: 991px) {
  .mh-service-card,
  .mh-service-card.mh-span-2,
  .mh-service-card.mh-span-6 { grid-column: span 3; }
}

@media (max-width: 575px) {
  .mh-service-card,
  .mh-service-card.mh-span-2,
  .mh-service-card.mh-span-6 { grid-column: span 6; min-height: 300px; }
}

.mh-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, .3);
}

.mh-service-num {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 3.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .3);
  line-height: 1;
  z-index: 1;
}

.mh-service-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 26px 26px 22px;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0) 0%, rgba(11, 11, 11, .6) 40%, rgba(11, 11, 11, .94) 100%);
}

.mh-service-overlay h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 0 8px;
}

.mh-service-overlay p {
  color: rgba(255, 255, 255, .85);
  font-size: .92rem;
  margin: 0 0 14px;
}

.mh-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.mh-service-tag {
  font-size: .72rem;
  letter-spacing: .02em;
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}

.mh-service-cta {
  color: var(--accent);
  font-weight: 700;
  font-size: .86rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mh-service-cta i { transition: transform .25s ease; }
.mh-service-card:hover .mh-service-cta i { transform: translateX(4px); }

/* Product category chips
================================================== */
.mh-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 44px;
}

@media (max-width: 575px) {
  .mh-chip-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
}

.mh-chip {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--heading);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  white-space: nowrap;
}

.mh-chip.is-active,
.mh-chip:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #1a1a1a;
}

.mh-product-panel { display: none; margin-top: 40px; }
.mh-product-panel.is-active { display: block; }

.mh-product-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.mh-product-panel-head h3 { margin: 0; }

.mh-product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 767px) {
  .mh-product-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575px) {
  .mh-product-gallery { grid-template-columns: 1fr; }
}

.mh-product-gallery img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* Certifications
================================================== */
.mh-cert-section { position: relative; overflow: hidden; }

.mh-cert-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(16vw, 200px);
  font-weight: 800;
  color: var(--heading);
  opacity: .035;
  letter-spacing: .04em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.mh-cert-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

@media (max-width: 767px) {
  .mh-cert-grid { grid-template-columns: 1fr; }
}

.mh-cert-card {
  display: flex;
  gap: 22px;
  padding: 30px;
}

.mh-cert-icon {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
}

.mh-cert-icon img { width: 100%; height: 100%; object-fit: cover; }

.mh-cert-card h4 { margin: 0 0 8px; }

.mh-cert-note {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: .82rem;
  color: var(--text);
  opacity: .75;
}

/* Core team grid
================================================== */
.mh-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 48px;
}

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

@media (max-width: 575px) {
  .mh-team-grid { grid-template-columns: 1fr; }
}

.mh-team-card { border-radius: 10px; overflow: hidden; }

.mh-team-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.mh-team-photo img { width: 100%; height: 100%; object-fit: cover; }

.mh-team-body { padding: 18px 20px 22px; }
.mh-team-body h3 { font-size: 1.05rem; margin: 0 0 4px; }

.mh-team-role {
  color: var(--accent-dark);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 10px;
}

html[data-theme="dark"] .mh-team-role { color: var(--accent); }

.mh-team-desc { font-size: .85rem; color: var(--text); margin: 0; }

/* Testimonials — 3 column
================================================== */
.mh-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

@media (max-width: 767px) {
  .mh-testi-grid { grid-template-columns: 1fr; gap: 28px; }
}

.mh-testi-card { padding: 8px 32px; }
.mh-testi-card:first-child { padding-left: 0; }
.mh-testi-card:last-child { padding-right: 0; }

.mh-testi-card + .mh-testi-card { border-left: 1px solid var(--border); }

@media (max-width: 767px) {
  .mh-testi-card,
  .mh-testi-card:first-child,
  .mh-testi-card:last-child { padding: 0; }
  .mh-testi-card + .mh-testi-card {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 28px;
  }
}

.mh-testi-quote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--heading);
}

.mh-testi-source {
  margin-top: 18px;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--text);
  opacity: .7;
}

/* Final CTA band
================================================== */
.mh-final-cta {
  background: var(--bg-alt);
  text-align: center;
  padding: 90px 24px;
}

.mh-final-cta h2 {
  font-weight: 800;
  margin-bottom: 22px;
}

/* Zalo floating button
================================================== */
.mh-zalo-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #0068ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .3);
  font-size: 1.5rem;
  text-decoration: none;
  animation: mh-zalo-pulse 2.4s ease-in-out infinite;
}

.mh-zalo-float:hover {
  color: #fff;
  transform: scale(1.08);
}

.mh-zalo-float span.mh-zalo-label {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: var(--surface);
  color: var(--heading);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}

.mh-zalo-float:hover span.mh-zalo-label {
  opacity: 1;
  transform: translateX(0);
}

@keyframes mh-zalo-pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(0, 0, 0, .3), 0 0 0 0 rgba(0, 104, 255, .45); }
  50% { box-shadow: 0 10px 26px rgba(0, 0, 0, .3), 0 0 0 10px rgba(0, 104, 255, 0); }
}

@media (max-width: 575px) {
  .mh-zalo-float { right: 14px; bottom: 14px; width: 52px; height: 52px; font-size: 1.3rem; }
  .mh-zalo-float span.mh-zalo-label { display: none; }
}

/* 8. About page — sections per Requirement 05
================================================== */
.mh-hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.mh-btn-ghost {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .55);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.mh-btn-ghost:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.mh-hero-badge {
  margin-top: 26px;
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
}

.mh-about-split {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 56px;
  align-items: center;
}

.mh-about-split-media img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

@media (max-width: 991px) {
  .mh-about-split { grid-template-columns: 1fr; }
  .mh-about-split-media { order: -1; }
}

.mh-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 34px;
}

.mh-stat-row-center { justify-content: center; text-align: center; }

.mh-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
}

.mh-stat-label {
  font-size: .82rem;
  color: var(--text);
}

.mh-stat-pending .mh-stat-num { color: var(--accent-dark); }
html[data-theme="dark"] .mh-stat-pending .mh-stat-num { color: var(--accent); }

.mh-stat-label em {
  display: block;
  font-style: normal;
  font-size: .72rem;
  opacity: .65;
  margin-top: 2px;
}

.mh-draft-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  background: rgba(255, 182, 0, .12);
  margin-bottom: 36px;
}

html[data-theme="dark"] .mh-draft-tag { color: var(--accent); }

.mh-production-media,
.mh-people-media {
  margin-top: 44px;
}

.mh-production-media img,
.mh-people-media img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.mh-flow-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.mh-flow-step {
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  font-weight: 600;
  font-size: .9rem;
}

.mh-flow-step span {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

html[data-theme="dark"] .mh-flow-step span { color: var(--accent); }

@media (max-width: 767px) { .mh-flow-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .mh-flow-row { grid-template-columns: 1fr; } }

.mh-field-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.mh-field-card {
  text-align: center;
  padding: 38px 20px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.mh-field-card i {
  font-size: 1.8rem;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

html[data-theme="dark"] .mh-field-card i { color: var(--accent); }

.mh-field-card h3 { font-size: 1rem; margin: 0; }

@media (max-width: 991px) { .mh-field-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .mh-field-grid { grid-template-columns: 1fr; } }

.mh-final-cta p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--text);
}

.mh-final-cta-row {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* 9. FAQ page — Requirement 06
================================================== */
.mh-page-header {
  padding: 64px 0 44px;
  background: var(--bg-alt);
  text-align: center;
}

.mh-page-header-title {
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 6px 0 14px;
}

.mh-page-header .mh-section-lead { margin-bottom: 30px; }

.mh-faq-search {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}

.mh-faq-search i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text);
  opacity: .55;
  font-size: .85rem;
}

.mh-faq-search input {
  width: 100%;
  padding: 13px 20px 13px 46px;
  border-radius: 999px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text);
  font-size: .92rem;
}

.mh-faq-search input:focus {
  outline: none;
  border-color: var(--accent);
}

.mh-faq-content {
  max-width: 840px;
  margin: 0 auto;
}

.mh-faq-cat-title {
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 0 20px;
  color: var(--heading);
}

.mh-faq-empty {
  display: none;
  text-align: center;
  padding: 40px 0;
  color: var(--text);
  opacity: .75;
}

.mh-faq-empty.is-visible { display: block; }

/* FAQ accordion — full-sentence questions need to wrap, not shout in caps */
.mh-faq-panel .accordion-group .card-header .btn {
  white-space: normal;
  text-transform: none;
  font-size: .98rem;
  font-weight: 700;
  padding: 16px 46px 16px 18px;
  line-height: 1.5;
}

.mh-faq-panel .accordion-group .card-header .btn:before {
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
}

.mh-faq-panel .accordion-group .card-body {
  padding: 4px 18px 20px;
  line-height: 1.7;
}

.mh-faq-panel .accordion-group .card-body a {
  color: var(--accent-dark);
  font-weight: 600;
}

html[data-theme="dark"] .mh-faq-panel .accordion-group .card-body a {
  color: var(--accent);
}

/* Footer address list — multi-line branch entries */
.mh-footer-address li {
  line-height: 1.55;
}

.mh-footer-address li strong {
  display: inline-block;
  color: #fff;
  margin-bottom: 2px;
  font-size: .92rem;
}

/* Nav CTA button in navbar row */
ul.navbar-nav > li > a.mh-nav-cta {
  display: inline-block;
  margin: 10px 0 10px 12px;
  padding: 9px 22px !important;
  border-radius: 999px;
  background: var(--accent);
  color: #1a1a1a !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

ul.navbar-nav > li > a.mh-nav-cta:hover {
  color: #1a1a1a !important;
  opacity: .9;
}

.mh-nav-cta::after { display: none !important; }

@media (max-width: 991px) {
  .mh-nav-cta { margin: 10px 0; }
}
