/* ================================================================
   IN HOÀNG GIA – MAIN CSS
   Custom theme, no Flatsome dependency.
   ================================================================ */

/* ── 1. CSS Variables ── */
:root {
  --primary:     #183565;
  --primary-lt:  #1e4280;
  --secondary:   #f6872c;
  --secondary-dk:#e07520;
  --gold:        #c89b39;
  --dark:        #04142d;
  --text:        #111111;
  --text-muted:  #666666;
  --border:      #e8e8e8;
  --bg:          #f5f6f8;
  --bg-card:     #ffffff;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 36px rgba(0,0,0,.14);
  --transition:  .25s ease;
  --container:   1260px;
  --font-main:   'Roboto', 'Inter', system-ui, sans-serif;
}

/* ── 2. Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── 3. Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── 4. Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}
h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* Section heading */
.section-head { margin-bottom: 36px; }
.section-head h2 { margin-bottom: 10px; }
.section-line {
  width: 56px; height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}
.section-head--center { text-align: center; }
.section-line--center { margin: 10px auto 0; }
.section-subtitle { color: var(--text-muted); font-size: 15px; margin-top: 8px; }

/* ── 5. Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  transition: var(--transition);
  font-size: 15px;
}
.btn-primary:hover { background: var(--secondary-dk); color: #fff; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  border-radius: 6px;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* BÁO GIÁ CTA button */
.btn-baogia {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--secondary);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-baogia:hover { background: var(--secondary-dk); transform: translateY(-1px); }

/* ── 6. Header ── */

/* Top bar */
.header-topbar {
  background: #03142d;
  color: rgba(255,255,255,.85);
  font-size: 13px;
}
.header-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  gap: 10px;
}
.header-topbar__left,
.header-topbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.82);
  transition: color var(--transition);
}
.topbar-item:hover { color: #fff; }
.topbar-item--phone { font-weight: 700; color: var(--secondary); }
.topbar-item--phone:hover { color: #fff; }
.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.2);
}
.topbar-social {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: 13px;
  transition: var(--transition);
}
.topbar-social:hover { background: var(--secondary); color: #fff; }
.topbar-social--zalo {
  font-size: 11px;
  font-weight: 700;
  width: auto;
  padding: 0 8px;
  border-radius: 4px;
  background: #0068ff;
  color: #fff;
  letter-spacing: .03em;
}

/* Main header */
.header-main {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .2s, transform .3s ease;
  will-change: transform;
}
.header-main.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.14); }
.header-main.header-hidden { transform: translateY(-100%); }
.header-main__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 80px;
}
.header-logo { flex-shrink: 0; }
.header-logo img, .header-logo a { display: block; }
.header-logo img { height: 52px; width: auto; }

/* Desktop nav */
.header-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-list > li { position: relative; }
.nav-list > li > a.nav-top-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 15px;
  height: 80px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-list > li > a.nav-top-link:hover,
.nav-list > li.current-menu-item > a.nav-top-link {
  color: var(--secondary);
}
.nav-arrow {
  font-size: 10px;
  transition: transform var(--transition);
}
.nav-list > li:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
  border-top: 3px solid var(--secondary);
}
.nav-list > li:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 13.5px;
  color: var(--text);
  transition: var(--transition);
}
.nav-dropdown li a:hover {
  background: #f5f6f8;
  color: var(--secondary);
  padding-left: 26px;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-action-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--dark);
  font-size: 16px;
  transition: var(--transition);
}
.header-action-btn:hover { background: var(--bg); color: var(--secondary); }
.header-cart { position: relative; }
.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--secondary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cart-count.hidden { display: none; }

/* Hamburger */
.hamburger {
  width: 40px; height: 40px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Search drawer */
.search-drawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--dark);
  padding: 20px 0;
  z-index: 2000;
  transform: translateY(-100%);
  transition: transform .3s ease;
}
.search-drawer.open { transform: translateY(0); }
.search-drawer form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-drawer input[type="search"] {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  background: rgba(255,255,255,.1);
  color: #fff;
  outline: none;
}
.search-drawer input::placeholder { color: rgba(255,255,255,.5); }
.search-drawer button {
  padding: 14px 18px;
  background: var(--secondary);
  color: #fff;
  border-radius: 8px;
  font-size: 18px;
  transition: var(--transition);
}
.search-drawer button:hover { background: var(--secondary-dk); }
.search-close { background: rgba(255,255,255,.1) !important; }

/* Mobile menu */
.mobile-menu-drawer {
  position: fixed;
  top: 0; left: -320px;
  width: 300px; height: 100vh;
  background: #fff;
  z-index: 3000;
  box-shadow: var(--shadow-lg);
  transition: left .3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu-drawer.open { left: 0; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.mobile-menu-close { color: #fff; font-size: 20px; }
.mobile-nav { padding: 10px 0; flex: 1; }
.mobile-nav-list > li > a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav-list > li > a:hover { color: var(--secondary); background: var(--bg); padding-left: 28px; }
.mobile-nav-list .sub-menu { padding-left: 20px; background: var(--bg); }
.mobile-nav-list .sub-menu li a { padding: 10px 20px; font-size: 13px; border-bottom: 1px solid #eee; }
.mobile-menu-contact {
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  background: var(--bg);
}
.mobile-menu-contact a {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 10px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 2999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-overlay.show { opacity: 1; visibility: visible; }

/* ── Breadcrumb bar in header ── */
.hg-bc-bar {
  background: #04142d;
  padding: 8px 0;
  font-size: 13px;
}
.hg-bc-bar__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  color: rgba(255,255,255,.85);
}
.hg-bc-bar__nav a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .2s;
}
.hg-bc-bar__nav a:hover { color: #fff; }
.hg-bc-bar__nav span { color: #fff; font-weight: 700; }
.hg-bc-bar__sep { font-size: 10px; color: rgba(255,255,255,.45); }

/* Breadcrumbs */
.hg-breadcrumbs {
  display: inline-flex; align-items: center; flex-wrap: wrap;
  gap: 2px; padding: 7px 16px; border-radius: 30px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  font-size: 12px; margin-bottom: 16px; letter-spacing: .01em;
}
.hg-breadcrumbs a {
  color: rgba(255,255,255,.8); text-decoration: none;
  padding: 1px 4px; border-radius: 4px;
  transition: color .2s, background .2s;
}
.hg-breadcrumbs a:hover { color: #fff; background: rgba(255,255,255,.12); }
.hg-breadcrumbs span:last-child {
  color: var(--secondary); font-weight: 700;
  padding: 1px 4px;
}
.bc-sep {
  color: rgba(255,255,255,.35); font-size: 10px; margin: 0 2px;
  font-style: normal;
}
/* Hide recaptcha badge */
.grecaptcha-badge { visibility: hidden !important; width: 0 !important; }


/* ── 7. Floating contact – right-side icon column ── */
/* ── Floating CTA (Zalo / Call / Page) ── */
/* ── Floating CTA – always visible, 3 icons ── */
.hg-fcta {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.hg-fcta__item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.hg-fcta__label {
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}
.hg-fcta__item:hover .hg-fcta__label {
  opacity: 1;
  transform: translateX(0);
}
.hg-fcta__dot {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  transition: transform .2s, box-shadow .2s;
}
.hg-fcta__item:hover .hg-fcta__dot { transform: scale(1.1); box-shadow: 0 6px 22px rgba(0,0,0,.35); }
.hg-fcta__item--call .hg-fcta__dot { background: var(--secondary); }
.hg-fcta__item--zalo .hg-fcta__dot { background: #0068ff; }
.hg-fcta__item--fb   .hg-fcta__dot { background: #1877f2; }
.hg-fcta__item--zalo .hg-fcta__dot svg { width: 26px; height: 26px; }

/* Desktop: luôn hiện label SĐT & Zalo */
@media (min-width: 769px) {
  .hg-fcta__item--call .hg-fcta__label,
  .hg-fcta__item--zalo .hg-fcta__label {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Mobile: ẩn tất cả label */
@media (max-width: 768px) {
  .hg-fcta__label { display: none !important; }
}


/* ── 8. Blog Archive ── */

/* Archive hero */
.archive-hero {
  position: relative;
  background: linear-gradient(115deg, var(--primary) 0%, #1e4a8a 100%);
  padding: 52px 0 44px;
  overflow: hidden;
}
.archive-hero__overlay {
  position: absolute; inset: 0;
  background: url('https://inhoanggia.com/wp-content/uploads/hero-bg-pattern.png') center/cover;
  opacity: .06;
}
.archive-hero__inner {
  position: relative; z-index: 2;
}
.archive-hero__inner .hg-breadcrumbs { margin-bottom: 12px; }
.archive-hero__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: 10px;
}
.archive-hero__desc { color: rgba(255,255,255,.7); font-size: 15px; margin: 0; }

.blog-archive-page { padding: 36px 0 64px; background: var(--bg); }
.blog2__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}
.blog2__archiveTitle {
  margin-bottom: 28px;
}
.blog2__archiveTitle h1 { font-size: 1.6rem; }
.blog2__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Post card */
.blog2__card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.blog2__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog2__thumbLink { display: block; }
.blog2__thumbWrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog2__thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog2__card:hover .blog2__thumb { transform: scale(1.05); }
.blog2__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--secondary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.blog2__cardBody {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog2__cardTitle {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog2__cardTitle a { color: var(--dark); }
.blog2__cardTitle a:hover { color: var(--secondary); }
.blog2__cardExcerpt {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog2__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #999;
  margin-bottom: 14px;
}
.blog2__readmore {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.blog2__readmore:hover { gap: 8px; color: var(--secondary-dk); }

/* Blog sidebar */
.blog2__right { position: sticky; top: 100px; }
.blog2__sidebarBox {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.blog2__sidebarTitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary);
}
.blog2__searchForm {
  position: relative;
  display: flex;
  align-items: center;
}
.blog2__searchIcon {
  position: absolute;
  left: 12px;
  color: var(--text-muted);
  font-size: 15px;
  pointer-events: none;
}
.blog2__searchInput {
  width: 100%;
  padding: 10px 12px 10px 36px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.blog2__searchInput:focus { border-color: var(--primary); }
.blog2__featuredList { display: flex; flex-direction: column; gap: 14px; }
.blog2__featured {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.blog2__featuredThumbLink { flex-shrink: 0; }
.blog2__featuredThumb {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: 8px;
}
.blog2__featuredTitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}
.blog2__featuredTitle:hover { color: var(--secondary); }
.blog2__featuredDate { font-size: 11px; color: #999; margin-top: 4px; }
.blog2__catList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 0;
}
.blog2__catList li { list-style: none; border: none; }
.blog2__catList li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary, #1b4d90);
  background: #eef2fb;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: all .18s;
  white-space: nowrap;
}
.blog2__catList li a:hover {
  background: var(--primary, #1b4d90);
  color: #fff;
  border-color: var(--primary, #1b4d90);
}
.blog2__catList .children { display: contents; }
.blog2__catList li a .count {
  background: rgba(27,77,144,.15);
  color: var(--primary, #1b4d90);
  font-size: 11px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 20px;
  transition: all .18s;
}
.blog2__catList li a:hover .count {
  background: rgba(255,255,255,.25);
  color: #fff;
}

/* Pagination */
.hg-pagination { margin-top: 36px; }
.hg-pagination ul { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.hg-pagination li a,
.hg-pagination li span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.hg-pagination li a:hover,
.hg-pagination li.active span {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ── WooCommerce category hero ── */
.woo-archive-hero {
  position: relative;
  background: linear-gradient(115deg, var(--primary) 0%, #1e4a8a 100%);
  background-size: cover; background-position: center;
  padding: 52px 0 44px; overflow: hidden;
}
.woo-archive-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(4,20,45,.85) 0%, rgba(24,53,101,.75) 100%);
}
.woo-archive-hero__inner { position: relative; z-index: 2; }
.woo-archive-hero__inner .hg-breadcrumbs { margin-bottom: 12px; }
.woo-archive-hero__title { font-size: clamp(1.7rem,3vw,2.3rem); color: #fff; margin-bottom: 8px; }
.woo-archive-hero__desc { color: rgba(255,255,255,.75); font-size: 15px; max-width: 600px; }

/* ── 9. Single Post ── */
.post-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}
.post-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.post-hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.post-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4,20,45,.2) 0%, rgba(4,20,45,.8) 100%);
  z-index: 1;
}
.post-hero__overlay--solid {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-lt) 100%);
}
.post-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0 50px;
  color: #fff;
}
.post-hero__content .hg-breadcrumbs { padding: 0 0 14px; }
.post-hero__content .hg-breadcrumbs,
.post-hero__content .hg-breadcrumbs a { color: rgba(255,255,255,.7); }
.post-hero__content .hg-breadcrumbs a:hover { color: #fff; }
.post-hero__cats { margin-bottom: 12px; }
.post-hero__cats a {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.post-hero__title {
  color: #fff !important;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.35;
  max-width: 860px;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.post-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255,255,255,.82);
}
.post-hero__meta .meta-sep { opacity: .4; }
.post-hero__meta i { margin-right: 4px; color: var(--secondary); }
.post-hero__meta a { color: rgba(255,255,255,.9); }
.post-hero__meta a:hover { color: #fff; text-decoration: underline; }

/* Post body */
.post-body { padding: 44px 0 60px; background: var(--bg); }
.post-body__row {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 28px;
  align-items: start;
}
.post-body__main { min-width: 0; }
.post-body__sidebar { position: sticky; top: var(--sidebar-top, 80px); min-width: 0; transition: top .3s; }

/* Share bar */
.post-share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 20px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary);
}
.share-bar__label { font-weight: 700; font-size: 13px; color: #555; margin-right: 4px; }
.share-bar__btns { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 7px; padding: 7px 16px;
  border-radius: 6px; font-size: 13px; font-weight: 600;
  color: #fff !important; transition: .2s;
}
.share-btn--fb { background: #1877f2; }
.share-btn--fb:hover { background: #1260cc; }
.share-btn--tw { background: #1da1f2; }
.share-btn--tw:hover { background: #0d8ed8; }
.share-btn--tg { background: #29a8e0; }
.share-btn--tg:hover { background: #1791c4; }

/* Article content */
.post-content {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  line-height: 1.85;
  color: #333;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ── Post headings – styled boxes ── */
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  line-height: 1.35;
  font-weight: 700;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.post-content h1 {
  font-size: clamp(1.1rem, 3.5vw, 1.65rem);
  margin: 2em 0 .8em;
  padding: 12px 16px;
  background: linear-gradient(115deg, var(--primary) 0%, #1e4a8a 100%);
  color: #fff !important;
  border-radius: var(--radius);
  border-left: 5px solid var(--secondary);
}
.post-content h2 {
  font-size: clamp(1rem, 3vw, 1.3rem);
  margin: 2em 0 .8em;
  padding: 11px 18px 11px 20px;
  background: linear-gradient(135deg, #183565 0%, #1e4a8a 100%);
  color: #fff !important;
  border-left: 5px solid var(--secondary);
  border-radius: var(--radius);
  font-weight: 700;
}
.post-content h3 {
  font-size: clamp(.95rem, 2.5vw, 1.15rem);
  margin: 1.8em 0 .6em;
  padding: 8px 14px;
  background: linear-gradient(90deg, rgba(246,135,44,.08) 0%, transparent 100%);
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--dark);
  font-weight: 700;
}
.post-content h4 {
  font-size: clamp(.9rem, 2.2vw, 1.05rem);
  margin: 1.5em 0 .4em;
  color: var(--primary);
  padding-left: 12px;
  border-left: 3px solid #c4d9f5;
}
.post-content h5 {
  font-size: .9rem;
  margin: 1.3em 0 .4em;
  color: #444;
  padding-bottom: 4px;
  border-bottom: 1px dashed var(--border);
}
.post-content h6 {
  font-size: .85rem;
  margin: 1.2em 0 .4em;
  color: #666;
  font-style: italic;
}

/* ── Post images – 80% width, centered, override WP alignment classes ── */

/* Reset ALL WordPress image alignment to centered */
.post-content .alignleft,
.post-content .alignright,
.post-content .aligncenter,
.post-content .alignnone,
.post-content figure.alignleft,
.post-content figure.alignright,
.post-content figure.aligncenter,
.post-content figure.alignnone,
.post-content .wp-caption.alignleft,
.post-content .wp-caption.alignright,
.post-content .wp-caption.aligncenter,
.post-content .wp-caption.alignnone,
.post-content .wp-block-image.alignleft,
.post-content .wp-block-image.alignright,
.post-content .wp-block-image.aligncenter,
.post-content .wp-block-image.alignfull,
.post-content .wp-block-image.alignwide {
  float: none !important;
  clear: both !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 80% !important;
  max-width: 80% !important;
}

.post-content img {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 1.5em auto !important;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  float: none !important;
  clear: both !important;
}

/* figure / wp-caption wrappers */
.post-content figure,
.post-content .wp-caption {
  display: block !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 1.5em 0 !important;
  padding: 0 !important;
  text-align: center !important;
}
.post-content figure img,
.post-content .wp-caption img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 !important;
}

/* Gutenberg block images inside posts */
.post-content .wp-block-image,
.post-content .wp-block-image figure {
  width: 100% !important; max-width: 100% !important;
  margin: 1.4em auto !important; float: none !important; clear: both !important;
}
.post-content .wp-block-image img {
  width: 100% !important; height: auto !important; display: block !important;
}
/* Gutenberg gallery block */
.post-content .wp-block-gallery .wp-block-image img {
  width: 100% !important; height: auto !important; object-fit: cover !important;
}
/* WP align classes — prevent float-overflow */
.post-content .alignleft,
.post-content .alignright {
  float: none !important; display: block !important;
  width: 100% !important; max-width: 100% !important;
  margin: 1.4em auto !important;
}

/* Caption text */
.post-content figcaption,
.post-content .wp-caption-text {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 6px;
  font-style: italic;
}

/* Mobile: let images fill full width */
@media (max-width: 600px) {
  .post-content > p > img,
  .post-content > img,
  .post-content figure,
  .post-content .wp-caption,
  .post-content .alignleft,
  .post-content .alignright,
  .post-content .aligncenter,
  .post-content .alignnone,
  .post-content .wp-block-image {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.post-content a { color: var(--primary); }
.post-content blockquote {
  position: relative;
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f2ff 100%);
  border: 1px solid #ccddf5;
  border-radius: var(--radius);
  padding: 20px 24px 20px 60px;
  margin: 24px 0;
  font-style: italic; color: #334;
  font-size: 1.02em; line-height: 1.85;
  box-shadow: 0 2px 12px rgba(24,53,101,.08);
}
.post-content blockquote::before {
  content: '\201C';
  position: absolute; left: 16px; top: 4px;
  font-size: 52px; line-height: 1;
  color: var(--primary); opacity: .25;
  font-style: normal; font-family: Georgia, serif;
}
.post-content ul { padding-left: 0; margin-bottom: 1em; list-style: none; }
.post-content ol { padding-left: 24px; margin-bottom: 1em; list-style: decimal; }
.post-content ul > li {
  position: relative; padding-left: 22px; margin-bottom: 6px;
}
.post-content ul > li::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute; left: 0; top: 3px;
  color: var(--secondary); font-size: 13px; line-height: 1.7;
}
.post-content ol > li { margin-bottom: 6px; }
.post-content table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 15px; }
.post-content table th { background: var(--primary); color: #fff; padding: 11px 15px; text-align: left; }
.post-content table td { padding: 10px 15px; border: 1px solid var(--border); }
.post-content table tr:nth-child(even) td { background: #f9f9f9; }

/* Post footer bar */
.post-footer-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border);
}
.post-tags {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 8px; font-size: 13px; color: #555;
}
.post-tags i { color: var(--secondary); }
.post-tags a {
  background: #fff5ec; border: 1px solid #ffd9b3;
  color: var(--secondary); padding: 3px 11px;
  border-radius: 20px; font-size: 12px; transition: .2s;
}
.post-tags a:hover { background: var(--secondary); color: #fff !important; }
.post-share-icons { display: flex; gap: 8px; }
.share-icon {
  width: 38px; height: 38px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff !important; transition: .2s;
}
.share-icon--fb { background: #1877f2; }
.share-icon--tw { background: #1da1f2; }
.share-icon--tg { background: #29a8e0; }
.share-icon:hover { transform: scale(1.1); }

/* Author box */
.post-author-box {
  margin-top: 36px;
  display: flex; gap: 18px; align-items: flex-start;
  background: linear-gradient(135deg, var(--bg), #eef5ff);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid #dde8f5;
}
.author-box__avatar img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: var(--shadow-sm); }
.author-box__name { font-size: 16px; color: var(--dark); margin-bottom: 5px; }
.author-box__bio { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* Post nav */
.post-nav { display: flex; gap: 16px; margin-top: 36px; }
.post-nav__item {
  flex: 1; display: block;
  background: #fff; border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: .25s;
}
.post-nav__item:hover { border-color: var(--secondary); box-shadow: 0 6px 24px rgba(246,135,44,.15); transform: translateY(-2px); }
.post-nav__item--prev { text-align: left; }
.post-nav__item--next { text-align: right; }
.nav-label { display: block; font-size: 11px; color: var(--secondary); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 7px; }
.nav-title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 14px; color: #333; font-weight: 600; line-height: 1.4; }

/* Related posts */
.related-posts-section { padding: 60px 0; background: #fff; }
.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.related-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); transition: .3s ease; }
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.related-card__link { display: block; color: inherit; }
.related-card__img { aspect-ratio: 16/9; overflow: hidden; }
.related-card__img img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.related-card:hover .related-card__img img { transform: scale(1.06); }
.related-card__body { padding: 16px 18px; }
.related-card__date { font-size: 12px; color: #999; margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.related-card__title { font-size: 15px; font-weight: 600; color: var(--dark); line-height: 1.45; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: .2s; }
.related-card:hover .related-card__title { color: var(--secondary); }
.related-card__more { font-size: 13px; color: var(--secondary); font-weight: 600; }

/* Consultant */
.consultant-section { padding: 60px 0 55px; background: linear-gradient(135deg, var(--bg), #edfaf9); }
.consultant-swiper { padding-bottom: 40px !important; }
.consultant-card { background: #fff; border-radius: 18px; padding: 28px 20px; text-align: center; box-shadow: var(--shadow-md); border: 1px solid var(--border); transition: .3s; height: auto !important; }
.consultant-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(24,53,101,.15); }
.consultant-card__avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 3px solid var(--secondary); box-shadow: 0 0 0 4px rgba(246,135,44,.15); }
.consultant-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.consultant-card__role { font-size: 13px; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 5px; }
.consultant-card__phone { font-size: 15px; color: var(--secondary); font-weight: 700; margin-bottom: 16px; }
.consultant-card__actions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.consultant-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 600; transition: .2s;
}
.consultant-btn--zalo { background: #e5f0ff; color: #0068ff !important; }
.consultant-btn--zalo:hover { background: #0068ff; color: #fff !important; }
.consultant-btn--mail { background: #fff4e5; color: var(--secondary) !important; }
.consultant-btn--mail:hover { background: var(--secondary); color: #fff !important; }
.zalo-icon { width: 18px; height: 18px; }

/* ── 10. Pages ── */
.site-page { padding: 40px 0 60px; background: var(--bg); }
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 30px; align-items: start; }
.page-main { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.page-title { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--border); }
.page-content { font-size: 16px; line-height: 1.85; }
.page-content img { border-radius: 10px; margin: 20px auto; }
.page-content h2 { margin-top: 1.8em; margin-bottom: .6em; }
.page-content a { color: var(--primary); }

/* ── 11. 404 ── */
.error-404-page { padding: 100px 0; background: var(--bg); text-align: center; }
.error-404__inner { max-width: 500px; margin: 0 auto; }
.error-404__code { font-size: 120px; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 16px; opacity: .15; }
.error-404__title { font-size: 2rem; margin-bottom: 12px; }
.error-404__desc { color: var(--text-muted); margin-bottom: 32px; }

/* ── 12. Comments ── */
.hg-comments { margin-top: 48px; padding-top: 36px; border-top: 2px solid var(--border); }
.comments-title { font-size: 1.3rem; margin-bottom: 24px; }
.comment-list { list-style: none; }
.comment-list li { padding: 20px 0; border-bottom: 1px solid var(--border); }
.comment-body { display: flex; gap: 14px; }
.comment-body .avatar { border-radius: 50%; }
.comment-content { flex: 1; }
.comment-author .fn { font-weight: 700; }
.comment-metadata { font-size: 12px; color: #999; }
.comment-form input,
.comment-form textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; margin-bottom: 14px; outline: none;
  transition: border-color var(--transition);
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--primary); }
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form .submit {
  padding: 12px 28px; background: var(--primary); color: #fff;
  border-radius: 6px; font-weight: 700; font-size: 15px; cursor: pointer;
  transition: var(--transition);
}
.comment-form .submit:hover { background: var(--secondary); }

/* ── 13. Footer (dark edition) ── */
.hgf { background: #1c1d20; color: rgba(255,255,255,.6); }

/* Top: logo + hotline */
.hgf__top {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hgf__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hgf__logo-link { display: inline-block; flex-shrink: 0; }
.hgf__logo-link:hover { opacity: .85; }
.hgf__logo-card { display: inline-flex; align-items: center; }
.hgf__logo { height: 56px; width: auto; display: block; }
.hgf__top-right { text-align: right; }
.hgf__tagline {
  max-width: 680px; margin: 0 auto;
  font-size: 14.5px; line-height: 1.75; color: rgba(255,255,255,.55);
}
.hgf__tagline strong { color: #fff; }
.hgf__tagline--bold {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; color: #fff;
  letter-spacing: .02em; line-height: 1.2;
}
@media (max-width: 600px) {
  .hgf__top-inner { flex-direction: column; align-items: flex-start; }
  .hgf__top-right { text-align: left; }
}

/* CTA bar: hotline + subscribe */
.hgf__cta-bar {
  padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.hgf__cta-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hgf__cta-left {}
.hgf__hotline-label {
  font-size: 12px; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.hgf__hotline {
  display: block; font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900; color: #fff; text-decoration: none;
  letter-spacing: .06em; margin-bottom: 10px; transition: color .2s;
  line-height: 1.1;
}
.hgf__hotline:hover { color: var(--secondary); }
@media (max-width: 700px) {
  .hgf__cta-inner { grid-template-columns: 1fr; }
}
.hgf__cta-right {}
.hgf__subscribe-label {
  font-size: 13px; color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}

/* ── Office cards ── */
.hgf__offices {
  padding: 0 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hgf__offices-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 16px; display: flex; align-items: center; gap: 7px;
}
.hgf__offices-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hgf__office {
  position: relative;
  border-radius: 14px;
  padding: 22px 24px 20px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  transition: background .2s, border-color .2s;
}
.hgf__office:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
}
.hgf__office--hn { border-top: 3px solid var(--gold, #d4a017); }
.hgf__office--hcm { border-top: 3px solid var(--secondary, #f6872c); }

.hgf__office-badge {
  position: absolute; top: -1px; right: 18px;
  font-size: 10px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 0 0 8px 8px;
  background: var(--gold, #d4a017); color: #04142d;
}
.hgf__office-badge--hcm { background: var(--secondary, #f6872c); color: #fff; }

.hgf__office-top {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.hgf__office-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,.8);
}
.hgf__office-city {
  font-size: 1.15rem; font-weight: 900; color: #fff;
  letter-spacing: .02em; line-height: 1.2;
}
.hgf__office-addr {
  font-size: 14.5px; color: rgba(255,255,255,.8);
  line-height: 1.5; margin: 0 0 12px; font-weight: 500;
}
.hgf__office-tel {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 1.25rem; font-weight: 900; color: #fff;
  text-decoration: none; letter-spacing: .04em;
  transition: color .2s; margin-bottom: 10px;
  display: block;
}
.hgf__office--hn .hgf__office-tel:hover { color: var(--gold, #d4a017); }
.hgf__office--hcm .hgf__office-tel:hover { color: var(--secondary, #f6872c); }
.hgf__office-tel i { font-size: 13px; opacity: .7; }
.hgf__office-map {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; color: rgba(255,255,255,.4);
  text-decoration: none; transition: color .2s;
}
.hgf__office-map:hover { color: rgba(255,255,255,.8); }

@media (max-width: 640px) {
  .hgf__offices-grid { grid-template-columns: 1fr; }
}
.hgf__subscribe {
  display: flex; border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px; overflow: hidden; background: rgba(255,255,255,.05);
}
.hgf__subscribe input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 12px 16px; font-size: 14px; color: #fff;
}
.hgf__subscribe input::placeholder { color: rgba(255,255,255,.35); }
.hgf__subscribe button {
  background: var(--gold); color: #fff; border: none;
  padding: 0 20px; font-size: 15px; cursor: pointer;
  transition: background .2s; flex-shrink: 0;
}
.hgf__subscribe button:hover { background: #b8890f; }

/* Nav columns */
.hgf__nav { padding: 48px 0 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.hgf__nav-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.hgf__col-heading {
  font-size: 15px; font-weight: 800; color: #fff;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 0; padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  width: 100%;
}
.hgf__col-menu {
  list-style: none; margin-top: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.hgf__col-menu li a {
  font-size: 13.5px; color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: 7px;
  transition: color .2s; text-decoration: none;
}
.hgf__col-menu li a::before {
  content: '›'; color: var(--secondary); font-size: 17px;
  line-height: 1; transition: transform .2s; flex-shrink: 0;
}
.hgf__col-menu li a:hover { color: #fff; }
.hgf__col-menu li a:hover::before { transform: translateX(3px); }

/* Social column */
.hgf__social-desc {
  font-size: 13px; color: rgba(255,255,255,.45);
  line-height: 1.65; margin-top: 18px; margin-bottom: 18px;
}
.hgf__socials { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.hgf__social {
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: 15px;
  background: rgba(255,255,255,.05);
  text-decoration: none; transition: .2s;
}
.hgf__social:hover {
  background: var(--secondary); border-color: var(--secondary);
  color: #fff; transform: translateY(-2px);
}
.hgf__mst {
  font-size: 11.5px; color: rgba(255,255,255,.4);
  line-height: 1.6; border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
}
.hgf__mst strong { color: rgba(255,255,255,.65); }

/* Bottom bar */
.hgf__bottom { padding: 18px 0; background: #141416; }
.hgf__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.hgf__bottom-inner p { font-size: 12px; color: rgba(255,255,255,.35); margin: 0; }
.hgf__bottom-inner strong { color: rgba(255,255,255,.6); }

/* Legacy selectors kept so any inline references don't break */
.footer-bottom, .footer-main, .footer-locations { display: none; }

/* Footer responsive */
@media (max-width: 900px) {
  .hgf__nav-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .hgf__cta-inner { flex-direction: column; }
  .hgf__cta-right { max-width: 100%; width: 100%; }
}
@media (max-width: 600px) {
  .hgf__top { padding: 36px 0 28px; }
  .hgf__nav-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hgf__bottom-inner { flex-direction: column; text-align: center; }
}

/* ── Table of Contents ── */
.hg-toc {
  background: #f8fafd; border: 1px solid #dde5f3;
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  margin: 0 0 28px; overflow: hidden;
  max-width: 680px;
}
.hg-toc__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; cursor: pointer; user-select: none;
  font-size: 14px; font-weight: 700; color: var(--primary);
  background: #eef3fb; gap: 10px;
}
.hg-toc__header i.fa-list-ul { color: var(--secondary); margin-right: 2px; }
.hg-toc__arrow { font-size: 11px; color: var(--primary); transition: transform .3s; flex-shrink: 0; }
.hg-toc.collapsed .hg-toc__arrow { transform: rotate(180deg); }
.hg-toc__body { padding: 14px 18px 16px; }
.hg-toc.collapsed .hg-toc__body { display: none; }
.hg-toc__list { list-style: none; padding: 0; margin: 0; counter-reset: none; }
.hg-toc__item { margin: 0; }
.hg-toc__link {
  display: flex; align-items: baseline; gap: 8px;
  padding: 5px 6px; border-radius: 6px;
  font-size: 13.5px; color: #444; text-decoration: none;
  transition: background .15s, color .15s;
  line-height: 1.4;
}
.hg-toc__link:hover { background: #e8eef8; color: var(--primary); }
.hg-toc__link.active { background: var(--primary); color: #fff; }
.hg-toc__link.active .hg-toc__num { color: var(--secondary); }
.hg-toc__num {
  font-size: 11.5px; font-weight: 700; color: var(--secondary);
  flex-shrink: 0; min-width: 28px;
}
.hg-toc__text { flex: 1; }
.hg-toc__item--h3 .hg-toc__link { padding-left: 20px; font-size: 13px; color: #666; }
.hg-toc__item--h3 .hg-toc__num { color: #aab; min-width: 36px; }

/* Product variant: compact */
.hg-toc--product { max-width: 100%; }

/* ── Sticky TOC in blog sidebar ── */
.post-body__sidebar .hg-toc {
  position: sticky;
  top: var(--sidebar-top, 80px);
  z-index: 10;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  margin-bottom: 0;
  scrollbar-width: thin;
  transition: top .3s;
}
.post-body__sidebar .hg-toc::-webkit-scrollbar { width: 4px; }
.post-body__sidebar .hg-toc::-webkit-scrollbar-thumb { background: #ccd; border-radius: 4px; }

/* ── Sticky TOC in product description (block flow) ── */
.hg-toc--product {
  position: sticky;
  top: var(--sidebar-top, 80px);
  z-index: 10;
  transition: top .3s;
  max-width: 100%;
}

@media (max-width: 600px) {
  .hg-toc { margin-bottom: 20px; }
  .hg-toc__link { font-size: 13px; }
  .post-body__sidebar .hg-toc,
  .hg-toc--product { position: static; max-height: none; top: auto; }
}

/* ── 14. Responsive ── */
@media (max-width: 1100px) {
  .related-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 1024px) {
  .blog2__layout { grid-template-columns: 1fr 280px; }
  .post-body__row { grid-template-columns: 1fr 260px; }
}
@media (max-width: 960px) {
  .blog2__grid { grid-template-columns: 1fr 1fr; }
  .blog2__layout { grid-template-columns: 1fr; }
  .blog2__right { position: static; }
  .post-body__row { grid-template-columns: 1fr; }
  .post-body__sidebar { position: static; }
  .page-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .blog2__grid { grid-template-columns: 1fr; }
}

@media (max-width: 849px) {
  .header-nav,
  .topbar-item--phone + .topbar-divider,
  .header-topbar__left { display: none; }
  .hamburger { display: flex; }
  .btn-baogia { display: none; }
  .header-main__inner { height: 70px; justify-content: space-between; }
  .header-actions { margin-left: auto; }
  .header-logo img { height: 44px; }
  .post-hero { min-height: 380px; }
  .post-hero__content { padding: 50px 0 32px; }
  .post-hero__title { font-size: 1.5rem; }
  .post-content { padding: 28px 22px; }
  .post-nav { flex-direction: column; }
  .related-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
}

@media (max-width: 600px) {
  .header-topbar { display: none; }
  .post-hero { min-height: 300px; }
  .post-hero__title { font-size: 1.3rem; }
  .post-content { padding: 18px 14px; }
  .post-content h1 { font-size: 1.05rem; padding: 10px 12px; }
  .post-content h2 { font-size: .95rem; padding: 9px 12px 9px 14px; }
  .post-content h3 { font-size: .9rem; padding: 6px 12px; }
  .post-content h4 { font-size: .85rem; }
  .post-content h5, .post-content h6 { font-size: .82rem; }
  .post-share-bar { padding: 12px 14px; }
  .share-btn span { display: none; }
  .share-btn { width: 38px; height: 38px; padding: 0; border-radius: 50%; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col--info, .footer-col--social { grid-column: span 1; }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
  .hg-fcta { right: 10px; bottom: 80px; }
  .hg-fcta__dot { width: 44px; height: 44px; font-size: 18px; }
}

/* ================================================================
   ── 15. Homepage Sections ──
   ================================================================ */

/* Shared section helpers */
.section-header { text-align: center; margin-bottom: 44px; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--secondary);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--dark); line-height: 1.3;
  margin-bottom: 14px;
}
.section-desc { font-size: 15px; color: var(--text-muted); max-width: 640px; margin: 0 auto; }
.section-eyebrow--light { color: rgba(255,255,255,.75); }
.section-title--light { color: #fff; }
.section-footer-cta { text-align: center; margin-top: 36px; }

/* ── homepage1 – Hero Slider ── */
.homepage1__section { position: relative; }
.hp-hero-swiper { width: 100%; }
.homepage1__slide {
  min-height: 660px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.homepage1__slide--1 {
  background: #020c1e;
}
.homepage1__bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.homepage1__slide--2 {
  background: linear-gradient(135deg, #050f20 0%, #112244 45%, #b85510 100%);
}
/* Dot-grid texture */
.homepage1__slide::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
/* Orange glow orb */
.homepage1__slide::after {
  content: '';
  position: absolute; z-index: 1;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(246,135,44,.15) 0%, transparent 65%);
  top: -180px; right: -120px; pointer-events: none;
}
.homepage1__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(100deg, rgba(2,12,30,.88) 30%, rgba(2,12,30,.15) 65%, transparent 100%);
}
.homepage1__inner {
  position: relative; z-index: 3;
  display: flex; align-items: center;
  padding: 80px 0;
}
/* Split layout: text left + machine right */
.homepage1__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.homepage1__content { max-width: 640px; color: #fff; }

/* Machine image column */
.homepage1__machine {
  display: flex; align-items: center; justify-content: flex-end;
  position: relative;
}
/* Soft glow halo behind the machine */
.homepage1__machine::before {
  content: '';
  position: absolute;
  width: 85%; height: 60%;
  bottom: 0; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(246,135,44,.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none; z-index: 0;
}
.homepage1__machine-img {
  position: relative; z-index: 1;
  width: 100%; max-width: 560px;
  height: auto; display: block;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.45))
          drop-shadow(0 0 30px rgba(100,150,255,.2));
  transform: translateY(0) scale(1);
  animation: hp1-machine-float 6s ease-in-out infinite;
}
@keyframes hp1-machine-float {
  0%,100% { transform: translateY(0px) scale(1); }
  50%      { transform: translateY(-10px) scale(1.01); }
}
/* Active slide: entrance animation */
.swiper-slide-active .homepage1__machine-img {
  animation: hp1-machine-enter .8s cubic-bezier(.22,1,.36,1) both,
             hp1-machine-float 6s ease-in-out 0.8s infinite;
}
@keyframes hp1-machine-enter {
  from { opacity: 0; transform: translateX(60px) scale(.95); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

@media (max-width: 960px) {
  .homepage1__inner--split {
    grid-template-columns: 1fr;
  }
  .homepage1__machine { display: none; } /* hide on tablet/mobile to save space */
}
.homepage1__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--secondary);
  background: rgba(246,135,44,.12); border: 1px solid rgba(246,135,44,.35);
  padding: 6px 16px; border-radius: 30px; margin-bottom: 22px;
}
.homepage1__title {
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  line-height: 1.12; font-weight: 900;
  color: #fff !important; margin-bottom: 20px;
  letter-spacing: -.01em;
}
.homepage1__title span {
  color: var(--secondary);
  position: relative;
}
.homepage1__desc {
  font-size: 16px; color: rgba(255,255,255,.78);
  margin-bottom: 32px; line-height: 1.75; max-width: 520px;
}
.homepage1__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline--white {
  border-color: rgba(255,255,255,.4); color: #fff !important;
  background: rgba(255,255,255,.08); backdrop-filter: blur(4px);
}
.btn-outline--white:hover { background: rgba(255,255,255,.18); border-color: #fff; }

/* Swiper nav */
.hp-hero-prev, .hp-hero-next {
  color: #fff !important;
  width: 48px !important; height: 48px !important;
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  border-radius: 50% !important;
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s !important;
}
.hp-hero-prev:hover, .hp-hero-next:hover {
  background: var(--secondary) !important;
  border-color: var(--secondary) !important;
}
.hp-hero-prev::after, .hp-hero-next::after { font-size: 15px !important; font-weight: 900 !important; }
.hp-hero-pagination { bottom: 24px !important; }
.hp-hero-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.4); opacity: 1;
  transition: all .3s;
}
.hp-hero-pagination .swiper-pagination-bullet-active {
  background: var(--secondary); width: 24px; border-radius: 4px;
}

/* Trust bar */
.homepage1__trustbar {
  background: #fff;
  border-bottom: 3px solid #f0f4fb;
  box-shadow: 0 6px 24px rgba(0,0,0,.07);
}
.homepage1__trustitems {
  display: flex; align-items: stretch; justify-content: space-between;
  flex-wrap: wrap;
}
.homepage1__trustitem {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 24px;
  font-size: 13.5px; font-weight: 600; color: var(--dark);
  border-right: 1px solid #eef1f6; flex: 1; min-width: 160px;
  transition: background .2s;
}
.homepage1__trustitem:hover { background: #fafbfd; }
.homepage1__trustitem:last-child { border-right: none; }
.homepage1__trustitem i {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--secondary), #e5721a);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: #fff; flex-shrink: 0;
}

/* ── homepage2 – Stats ── */
.homepage2__section {
  background: linear-gradient(135deg, #08193a 0%, #0f2d5e 50%, #0a1e40 100%);
  position: relative; overflow: hidden;
}
.homepage2__section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.homepage2__section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(246,135,44,.1) 0%, transparent 65%);
  bottom: -150px; left: -100px; pointer-events: none;
}
.homepage2__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; z-index: 1;
}
.homepage2__item {
  text-align: center; color: #fff;
  padding: 56px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.homepage2__item::before {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform .4s; border-radius: 0 0 4px 4px;
}
.homepage2__item:hover { background: rgba(255,255,255,.04); }
.homepage2__item:hover::before { transform: scaleX(1); }
.homepage2__item:last-child { border-right: none; }
.homepage2__icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(246,135,44,.1);
  border: 1.5px solid rgba(246,135,44,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--secondary); margin: 0 auto 20px;
  transition: transform .3s, background .3s;
}
.homepage2__item:hover .homepage2__icon {
  transform: scale(1.1); background: rgba(246,135,44,.18);
}
.homepage2__num {
  display: inline-block;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 900; line-height: 1; color: #fff;
  letter-spacing: -.02em;
}
.homepage2__plus {
  display: inline-block; font-size: 1.8rem; font-weight: 900;
  color: var(--secondary); vertical-align: top; margin-top: 6px; margin-left: 2px;
}
.homepage2__label {
  font-size: 13.5px; color: rgba(255,255,255,.6);
  margin-top: 12px; font-weight: 500; letter-spacing: .02em;
}

/* ── homepage3 – About ── */
.homepage3__section { padding: 80px 0; background: var(--bg); }
.homepage3__layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.homepage3__images { position: relative; }
.homepage3__imgMain {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.homepage3__imgMain img {
  width: 100%; height: 420px; object-fit: cover; display: block;
  background: linear-gradient(135deg, #183565 0%, #1e4a8a 100%);
}
.homepage3__imgSub {
  position: absolute; bottom: -30px; right: -30px;
  width: 220px; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid #fff;
}
.homepage3__imgSub img { width: 100%; height: 160px; object-fit: cover; display: block; }
.homepage3__yearbadge {
  position: absolute; top: 24px; left: -20px;
  background: var(--secondary); color: #fff;
  border-radius: 14px; padding: 16px 20px;
  text-align: center; box-shadow: var(--shadow-md);
}
.homepage3__yearbadge-num { display: block; font-size: 2.2rem; font-weight: 900; line-height: 1; }
.homepage3__yearbadge-text { font-size: 12px; font-weight: 600; opacity: .9; }
.homepage3__content .section-eyebrow { margin-bottom: 8px; display: block; }
.homepage3__content .section-title { margin-bottom: 16px; }
.homepage3__desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }
.homepage3__features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.homepage3__feature {
  display: flex; gap: 14px; align-items: flex-start;
}
.homepage3__feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary), #e0650c);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; flex-shrink: 0;
}
.homepage3__feature-body h4 { font-size: 14px; color: var(--dark); margin-bottom: 4px; }
.homepage3__feature-body p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ── homepage4 – Image slide ── */
.homepage4__section {
  position: relative;
  overflow: hidden;
  background: #04142d;
}
.homepage4__bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  z-index: 0;
}
.homepage4__bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(4,20,45,.68) 0%, rgba(4,20,45,.80) 100%);
}
.homepage4__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 24px;
  padding: 100px 0;
}
.homepage4__content-col { color: #fff; max-width: 760px; }
.homepage4__content-col .section-eyebrow { display: block; margin-bottom: 10px; }
.homepage4__content-col .section-title { margin-bottom: 16px; }
.homepage4__desc { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.8; margin-bottom: 36px; }
.homepage4__stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  justify-content: center;
}
.homepage4__stat {
  text-align: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 18px 28px;
  min-width: 110px;
  backdrop-filter: blur(6px);
}
.homepage4__stat-num { display: block; font-size: 2rem; font-weight: 900; color: var(--secondary); line-height: 1.1; }
.homepage4__stat-label { font-size: 12.5px; color: rgba(255,255,255,.7); margin-top: 6px; display: block; }

/* Video lightbox overlay */
.hp4-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
}
.hp4-lightbox-inner { position: relative; width: 90vw; max-width: 900px; }
.hp4-lightbox-inner iframe { width: 100%; height: 506px; border: none; border-radius: 8px; }
.hp4-lightbox-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none;
  color: #fff; font-size: 28px; cursor: pointer;
  line-height: 1;
}

/* ── homepage5 – Product Categories ── */
.homepage5__section { padding: 80px 0; background: #fff; }
.homepage5__grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 22px;
}
.homepage5__catcard {
  display: block; border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-sm); transition: .3s ease;
  text-decoration: none;
}
.homepage5__catcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.homepage5__catcard-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.homepage5__catcard-img img { width: 100%; height: 100%; object-fit: cover; transition: .4s; display: block; }
.homepage5__catcard:hover .homepage5__catcard-img img { transform: scale(1.07); }
.homepage5__catcard-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,20,45,.65) 0%, transparent 60%);
}
.homepage5__catcard-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
}
.homepage5__catcard-name {
  font-size: 15px; font-weight: 700; color: #fff;
  margin-bottom: 4px; line-height: 1.3;
}
.homepage5__catcard-count { font-size: 12px; color: rgba(255,255,255,.75); }

/* ── homepage6 – Portfolio ── */
.homepage6__section { padding: 80px 0; background: var(--bg); }
.homepage6__tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 32px;
}
.homepage6__tab {
  padding: 9px 22px; border-radius: 50px;
  font-size: 13.5px; font-weight: 600;
  border: 2px solid var(--border); background: #fff; color: var(--text);
  cursor: pointer; transition: .2s;
}
.homepage6__tab:hover, .homepage6__tab.active {
  background: var(--primary); border-color: var(--primary); color: #fff;
}
.homepage6__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}
.homepage6__item { border-radius: var(--radius); overflow: hidden; position: relative; }
.homepage6__item-link { display: block; position: relative; overflow: hidden; }
.homepage6__item-link img {
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover; display: block; transition: .4s;
}
.homepage6__item:hover .homepage6__item-link img { transform: scale(1.06); }
.homepage6__item-overlay {
  position: absolute; inset: 0;
  background: rgba(4,20,45,.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: .3s;
}
.homepage6__item:hover .homepage6__item-overlay { opacity: 1; }
.homepage6__item-info {
  color: #fff; text-align: center; padding: 16px;
}
.homepage6__item-info h4 { font-size: 15px; margin-bottom: 8px; }
.homepage6__item-info span { font-size: 20px; }
.homepage6__item--hidden { display: none; }

/* ── hp6new – 8 sản phẩm nổi bật ── */
.hp6new__section {
  padding: 80px 0;
  background: linear-gradient(160deg, #f4f7fc 0%, #eef2f9 100%);
}
.hp6new__section .section-desc {
  margin-top: 10px;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hp6new__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.hp6new__card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 2px 12px rgba(4,20,45,.07);
  border: 1px solid rgba(4,20,45,.06);
  transition: transform .28s ease, box-shadow .28s ease;
}
.hp6new__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(4,20,45,.14);
}
.hp6new__card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e8edf5;
}
.hp6new__card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.hp6new__card:hover .hp6new__card-img img { transform: scale(1.07); }
.hp6new__card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(4,20,45,.52) 100%);
  opacity: 0; transition: opacity .3s;
}
.hp6new__card:hover .hp6new__card-overlay { opacity: 1; }
.hp6new__card-noimg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #dde5f5 0%, #c8d6ee 100%);
  color: var(--primary); font-size: 48px; opacity: .4;
}
.hp6new__card-body {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column; gap: 6px; flex: 1;
}
.hp6new__card-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, #eef3fb 0%, #dde8f8 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 15px; margin-bottom: 2px;
}
.hp6new__card-title {
  font-size: 15px; font-weight: 700;
  color: var(--dark); margin: 0; line-height: 1.35;
}
.hp6new__card-cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 600;
  color: var(--secondary); margin-top: auto;
  padding-top: 6px; transition: gap .2s;
}
.hp6new__card:hover .hp6new__card-cta { gap: 9px; }
.hp6new__card-cta i { font-size: 11px; }
.hp6new__footer { text-align: center; margin-top: 40px; }

@media (max-width: 768px) {
  .hp6new__grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .hp6new__card-title { font-size: 13.5px; }
}
@media (max-width: 480px) {
  .hp6new__grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .hp6new__card-body { padding: 12px 14px 14px; }
}

/* ── homepage7 – Process Steps ── */
.homepage7__section { padding: 80px 0; background: #fff; }
.homepage7__steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  position: relative;
}
.homepage7__steps::before {
  content: '';
  position: absolute;
  top: 52px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--secondary), var(--primary));
  z-index: 0;
}
.homepage7__step {
  text-align: center; padding: 0 16px 28px;
  position: relative; z-index: 1;
}
.homepage7__step-badge {
  position: relative; display: inline-flex;
  align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-size: 26px; margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(24,53,101,.3);
  transition: background .3s, box-shadow .3s;
  z-index: 2;
}
.homepage7__step:hover .homepage7__step-badge { background: var(--secondary); box-shadow: 0 6px 20px rgba(246,135,44,.4); }
.homepage7__step-badge .homepage7__step-num {
  position: absolute; top: -5px; right: -5px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--secondary); color: #fff;
  font-size: 9px; font-weight: 900; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.homepage7__step:hover .homepage7__step-badge .homepage7__step-num { background: var(--primary); }
.homepage7__step-title {
  font-size: 14px; font-weight: 700; color: var(--dark);
  margin-bottom: 8px;
}
.homepage7__step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ── homepage8 – Testimonials ── */
.homepage8__section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7f9fb 0%, #eef4fb 100%);
}
.homepage8__swiper { padding-bottom: 48px !important; }
.homepage8__slide { height: auto; padding: 4px; }
.homepage8__card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  height: 100%;
  display: flex; flex-direction: column; gap: 16px;
}
.homepage8__stars { color: #f6c90e; font-size: 15px; display: flex; gap: 4px; }
.homepage8__content {
  font-size: 15px; color: #444; line-height: 1.75; flex: 1;
  font-style: italic;
}
.homepage8__author { display: flex; gap: 14px; align-items: center; }
.homepage8__avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1a4585);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: rgba(255,255,255,.8);
  flex-shrink: 0;
}
.homepage8__author-info strong { display: block; font-size: 14px; color: var(--dark); }
.homepage8__author-info span { font-size: 12.5px; color: var(--text-muted); }
.homepage8__pagination { bottom: 0 !important; }
.homepage8__pagination .swiper-pagination-bullet-active { background: var(--secondary); }

/* ── homepage9 – Partners static grid ── */
.homepage9__section { padding: 60px 0 50px; background: #fff; }

/* Partner logos grid */
.homepage9__partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.homepage9__partner-item {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 10px; min-height: 76px;
  background: #fafbfe; border: 1px solid #eaecf5;
  border-radius: 12px; transition: .2s;
}
.homepage9__partner-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(24,53,101,.08);
  background: #fff;
}
.homepage9__partner-item--img img {
  max-width: 130px; max-height: 54px;
  width: auto; height: auto; object-fit: contain;
  filter: grayscale(30%) opacity(.8); transition: .25s;
}
.homepage9__partner-item--img:hover img { filter: grayscale(0%) opacity(1); }
.homepage9__partner-item span {
  font-size: 13px; font-weight: 700; color: var(--text-muted); text-align: center;
}
.homepage9__partner-item:hover span { color: var(--primary); }

/* Machine brands row */
.homepage9__machines {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.homepage9__machine-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: #f0f5ff; border: 1px solid #ccd6f5;
  border-radius: 30px; font-weight: 600; font-size: 13px; color: var(--primary);
}
.homepage9__machine-item i { color: var(--secondary); font-size: 14px; }

/* ── homepage10 – FAQ ── */
.homepage10__section { padding: 80px 0; background: var(--bg); }
.homepage10__layout {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start;
}
.homepage10__left .section-title { margin-bottom: 16px; }
.homepage10__left p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.homepage10__faqs { display: flex; flex-direction: column; gap: 12px; }
.homepage10__faq-item {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden; transition: box-shadow .2s;
}
.homepage10__faq-item.active, .homepage10__faq-item:focus-within {
  box-shadow: 0 4px 20px rgba(24,53,101,.1);
  border-color: var(--primary);
}
.homepage10__faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 14px;
  padding: 18px 22px; background: none; border: none;
  cursor: pointer; text-align: left;
  font-size: 15px; font-weight: 600; color: var(--dark);
  transition: color .2s;
}
.homepage10__faq-q:hover { color: var(--primary); }
.homepage10__faq-q i {
  flex-shrink: 0; font-size: 13px; color: var(--secondary);
  transition: transform .3s;
}
.homepage10__faq-item.active .homepage10__faq-q i { transform: rotate(180deg); }
.homepage10__faq-a { padding: 0 22px 18px; display: none; }
.homepage10__faq-item.active .homepage10__faq-a { display: block; }
.homepage10__faq-a p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── Homepage Blog ── */
.homepage-blog { padding: 80px 0; background: #fff; }
.homepage-blog__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.homepage-blog__card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: .3s ease;
  display: flex; flex-direction: column;
}
.homepage-blog__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.homepage-blog__card-img { aspect-ratio: 16/9; overflow: hidden; display: block; }
.homepage-blog__card-img img { width: 100%; height: 100%; object-fit: cover; transition: .4s; display: block; }
.homepage-blog__card:hover .homepage-blog__card-img img { transform: scale(1.05); }
.homepage-blog__card-body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.homepage-blog__card-meta { font-size: 12px; color: #999; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.homepage-blog__card-meta i { color: var(--secondary); }
.homepage-blog__card-title {
  font-size: 16px; font-weight: 700; color: var(--dark);
  margin-bottom: 10px; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  flex: 1;
}
.homepage-blog__card-title a { color: inherit; transition: .2s; }
.homepage-blog__card-title a:hover { color: var(--secondary); }
.homepage-blog__card-excerpt {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.homepage-blog__card-more { font-size: 13px; font-weight: 700; color: var(--secondary); display: inline-flex; align-items: center; gap: 5px; margin-top: auto; transition: gap .2s; }
.homepage-blog__card-more:hover { gap: 10px; }

/* ================================================================
   ── 16. Contact Page ──
   ================================================================ */

.lienhe1__hero {
  position: relative; min-height: 220px;
  background: linear-gradient(130deg, #0d2248 0%, var(--primary) 60%, #1e4a8a 100%);
  display: flex; align-items: center; overflow: hidden;
}
.lienhe1__hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(246,135,44,.15) 0%, transparent 60%);
}
.lienhe1__hero-overlay { display: none; }
.lienhe1__hero-inner { position: relative; z-index: 2; padding: 52px 0; }
.lienhe1__hero-title { font-size: clamp(1.8rem, 3vw, 2.4rem); color: #fff; margin-bottom: 10px; }
.lienhe1__hero-inner .hg-breadcrumbs { color: rgba(255,255,255,.65); padding: 0 0 10px; }
.lienhe1__hero-inner .hg-breadcrumbs a { color: rgba(255,255,255,.65); }
.lienhe1__hero-inner .hg-breadcrumbs a:hover { color: #fff; }

.lienhe1__section { padding: 52px 0 72px; background: #f4f6fb; }

/* Location cards */
.lienhe1__locations {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
  margin-bottom: 52px;
}
.lienhe1__loccard {
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  border-top: 4px solid var(--border);
  transition: .3s;
}
.lienhe1__loccard:hover { border-top-color: var(--secondary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.lienhe1__loccard--hq { border-top-color: var(--primary); }
.lienhe1__loccard-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--secondary), #e0650c);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  margin-bottom: 16px;
}
.lienhe1__loccard-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.lienhe1__loccard-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lienhe1__loccard-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: var(--text);
}
.lienhe1__loccard-list i { color: var(--secondary); margin-top: 2px; flex-shrink: 0; width: 14px; text-align: center; }
.lienhe1__loccard-list a { color: var(--text); transition: .2s; }
.lienhe1__loccard-list a:hover { color: var(--secondary); }
.lienhe1__loccard-map {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 18px; padding: 8px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--primary);
  transition: .2s;
}
.lienhe1__loccard-map:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Form + Map layout */
.lienhe1__layout {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: start;
}
.lienhe1__form-box {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px 36px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.lienhe1__form-title {
  font-size: 1.3rem; color: var(--dark);
  margin-bottom: 8px; display: flex; align-items: center; gap: 10px;
}
.lienhe1__form-title i { color: var(--secondary); }
.lienhe1__form-desc { font-size: 13.5px; color: var(--text-muted); margin-bottom: 24px; }

/* Native form fields */
.lienhe1__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lienhe1__form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.lienhe1__form-group label {
  font-size: 12px; font-weight: 700; color: #445; letter-spacing: .05em; text-transform: uppercase;
}
.lienhe1__native-form input,
.lienhe1__native-form select,
.lienhe1__native-form textarea {
  padding: 12px 16px; border: 1.5px solid #dce4f0;
  border-radius: 10px; font-size: 14px; outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s; font-family: inherit;
  background: #f8fafd; color: var(--text); width: 100%;
}
.lienhe1__native-form input:hover,
.lienhe1__native-form select:hover,
.lienhe1__native-form textarea:hover { border-color: #b0c4e8; background: #fff; }
.lienhe1__native-form input:focus,
.lienhe1__native-form select:focus,
.lienhe1__native-form textarea:focus {
  border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 3px rgba(24,53,101,.1);
}
.lienhe1__native-form input::placeholder,
.lienhe1__native-form textarea::placeholder { color: #b8c6d8; }
.lienhe1__native-form select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23183565' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.lienhe1__native-form textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.lienhe1__submit {
  width: 100%; justify-content: center; margin-top: 6px;
  padding: 14px 24px; font-size: 15px; font-weight: 700; border-radius: 10px;
  background: linear-gradient(135deg, var(--secondary) 0%, #d96010 100%);
  box-shadow: 0 4px 16px rgba(246,135,44,.35); letter-spacing: .02em;
}
.lienhe1__submit:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(246,135,44,.5); }

/* Map column */
.lienhe1__map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 340px; box-shadow: var(--shadow-sm); }
.lienhe1__quick-info {
  background: #fff; border-radius: var(--radius-lg);
  padding: 22px 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); margin-top: 20px;
  display: flex; flex-direction: column; gap: 18px;
}
.lienhe1__qi-item { display: flex; align-items: center; gap: 14px; }
.lienhe1__qi-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #1a4585);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff; flex-shrink: 0;
}
.lienhe1__qi-item strong { display: block; font-size: 13px; color: var(--dark); }
.lienhe1__qi-item a, .lienhe1__qi-item span { font-size: 13.5px; color: var(--text-muted); }
.lienhe1__qi-item a:hover { color: var(--secondary); }

/* CF7 overrides inside form box */
.lienhe1__form-box .wpcf7-form input,
.lienhe1__form-box .wpcf7-form select,
.lienhe1__form-box .wpcf7-form textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; outline: none;
  transition: border-color .2s; margin-bottom: 14px;
  font-family: inherit;
}
.lienhe1__form-box .wpcf7-form input:focus,
.lienhe1__form-box .wpcf7-form select:focus,
.lienhe1__form-box .wpcf7-form textarea:focus { border-color: var(--primary); }
.lienhe1__form-box .wpcf7-form .wpcf7-submit {
  padding: 14px 32px; background: var(--secondary); color: #fff;
  font-size: 15px; font-weight: 700; border-radius: 8px;
  border: none; cursor: pointer; transition: .2s; width: 100%;
}
.lienhe1__form-box .wpcf7-form .wpcf7-submit:hover { background: var(--secondary-dk); }

/* ── Homepage responsive ── */
@media (max-width: 1100px) {
  .homepage5__grid { grid-template-columns: repeat(4,1fr); }
  .homepage7__steps { grid-template-columns: repeat(4,1fr); }
  .homepage9__partners-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 960px) {
  .homepage1__slide { min-height: 480px; }
  .homepage2__grid { grid-template-columns: repeat(2,1fr); }
  .homepage3__layout { grid-template-columns: 1fr; gap: 40px; }
  .homepage3__imgSub { right: 0; }
  .homepage4__section { padding: 60px 0; }
  .homepage4__stats { gap: 16px; }
  .homepage4__stat { padding: 14px 18px; min-width: 90px; }
  .homepage5__grid { grid-template-columns: repeat(2,1fr); }
  .homepage6__grid { grid-template-columns: repeat(2,1fr); }
  .homepage7__steps { grid-template-columns: repeat(2,1fr); }
  .homepage7__steps::before { display: none; }
  .homepage10__layout { grid-template-columns: 1fr; gap: 36px; }
  .lienhe1__layout { grid-template-columns: 1fr; }
  .lienhe1__locations { grid-template-columns: 1fr 1fr; }
  .homepage-blog__grid { grid-template-columns: 1fr 1fr; }
  .homepage9__partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 849px) {
  .homepage1__slide { min-height: 420px; }
  .homepage1__title { font-size: 2rem; }
  .homepage1__trustitem { min-width: 140px; }
  .homepage3__features { grid-template-columns: 1fr; }
  .homepage8__swiper .swiper-slide { width: 80%; }
  .lienhe1__locations { grid-template-columns: 1fr; }
  .lienhe1__form-row { grid-template-columns: 1fr; }
  .lienhe1__form-box { padding: 24px 20px; }
  .homepage7__steps { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px) {
  .homepage1__slide { min-height: 360px; }
  .homepage1__title { font-size: 1.7rem; }
  .homepage1__desc { font-size: 14px; }
  .homepage2__grid { grid-template-columns: repeat(2,1fr); }
  .homepage2__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding: 20px 16px; }
  .homepage5__grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .homepage6__grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .homepage7__steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .homepage-blog__grid { grid-template-columns: 1fr; }
  .hp-hero-prev, .hp-hero-next { display: none !important; }
  .homepage1__ctas { flex-direction: column; align-items: center; }
  .homepage1__ctas .btn-primary,
  .homepage1__ctas .btn-outline { width: 100%; max-width: 320px; justify-content: center; text-align: center; }
  .header-main { margin-bottom: 0 !important; }
  .homepage1__section { margin-top: 0 !important; padding-top: 0 !important; }
  .homepage9__partners-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .homepage9__machines { gap: 8px; }
  .homepage9__machine-item { font-size: 12px; padding: 8px 14px; }
}

/* ================================================================
   ── GIỚI THIỆU PAGE  (gt__)
   ================================================================ */

/* Hero */
.gt__hero {
  position: relative; min-height: 400px;
  background: linear-gradient(115deg, #04142d 0%, #183565 60%, #1e4a8a 100%);
  display: flex; align-items: center; overflow: hidden;
}
.gt__hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(246,135,44,.18) 0%, transparent 65%);
}
.gt__hero-inner { position: relative; z-index: 2; padding: 80px 20px 70px; }
.gt__hero-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--secondary); margin-bottom: 14px;
}
.gt__hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800;
  color: #fff; line-height: 1.25; margin-bottom: 18px;
}
.gt__hero-title span { color: var(--secondary); }
.gt__hero-sub { font-size: 16px; color: rgba(255,255,255,.78); max-width: 580px; margin-bottom: 32px; line-height: 1.7; }
.gt__hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.gt__hero-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border: 2px solid rgba(255,255,255,.4);
  color: #fff; border-radius: 6px; font-weight: 600; font-size: 15px;
  transition: .25s;
}
.gt__hero-btn-outline:hover { border-color: var(--secondary); color: var(--secondary); background: rgba(246,135,44,.08); }

/* Stats bar */
.gt__stats { background: var(--secondary); padding: 0; }
.gt__stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.gt__stat {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.gt__stat:last-child { border-right: none; }
.gt__stat-num { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #fff; line-height: 1.1; }
.gt__stat-label { font-size: 13px; color: rgba(255,255,255,.82); margin-top: 4px; font-weight: 600; }

/* Intro section */
.gt__intro { padding: 80px 0; background: #fff; }
.gt__intro-layout {
  display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start;
}
.gt__intro-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--secondary); margin-bottom: 14px;
}
.gt__intro-eyebrow--light { color: rgba(255,255,255,.75); }
.gt__intro-title { font-size: clamp(1.4rem, 2.8vw, 2rem); color: var(--dark); line-height: 1.3; margin-bottom: 20px; }
.gt__intro-text p { font-size: 15.5px; line-height: 1.8; color: #444; margin-bottom: 14px; }
.gt__intro-list { list-style: none; padding: 0; margin: 20px 0 0; }
.gt__intro-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: #333; margin-bottom: 10px; line-height: 1.6;
}
.gt__intro-list li i { color: var(--secondary); font-size: 15px; flex-shrink: 0; margin-top: 3px; }
.gt__intro-visual { display: flex; flex-direction: column; gap: 16px; }
.gt__intro-card {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 28px 26px; border: 1px solid var(--border);
  transition: .25s;
}
.gt__intro-card:hover { box-shadow: var(--shadow-md); border-color: rgba(246,135,44,.3); }
.gt__intro-card--main { background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 100%); border-color: #c4d9f5; }
.gt__intro-card--main i { color: var(--primary); margin-bottom: 14px; display: block; }
.gt__intro-card--accent i { color: var(--secondary); margin-bottom: 10px; display: block; }
.gt__intro-card h3 { font-size: 1rem; color: var(--dark); margin-bottom: 8px; }
.gt__intro-card p { font-size: 14px; color: #666; margin: 0; line-height: 1.6; }

/* Section head shared */
.gt__section-head { text-align: center; margin-bottom: 52px; }
.gt__section-head h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); color: var(--dark); line-height: 1.3; margin-top: 10px; }
.gt__section-head h2 span { color: var(--secondary); }
.gt__section-head--light h2 { color: #fff; }
.gt__section-head--light h2 span { color: var(--secondary); }

/* Why choose us */
.gt__why { padding: 80px 0; background: #f4f7fc; }
.gt__why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.gt__why-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid #e8ecf5;
  transition: .28s;
}
.gt__why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(246,135,44,.3); }
.gt__why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, #fff0e6, #ffe8d0);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.gt__why-icon i { font-size: 22px; color: var(--secondary); }
.gt__why-card h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 10px; }
.gt__why-card p { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }

/* Services */
.gt__services { padding: 80px 0; background: linear-gradient(135deg, #04142d 0%, #183565 100%); }
.gt__svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px;
}
.gt__svc-card {
  display: block; text-decoration: none;
  background: rgba(255,255,255,.07); border-radius: var(--radius-lg);
  padding: 28px 22px; border: 1px solid rgba(255,255,255,.12);
  text-align: center; transition: .25s;
}
.gt__svc-card:hover { background: rgba(255,255,255,.13); border-color: rgba(246,135,44,.4); transform: translateY(-4px); }
.gt__svc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(246,135,44,.15); border: 1px solid rgba(246,135,44,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.gt__svc-icon i { font-size: 20px; color: var(--secondary); }
.gt__svc-card h3 { font-size: .95rem; color: #fff; margin-bottom: 8px; }
.gt__svc-card p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; margin: 0 0 12px; }
.gt__svc-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--secondary);
  text-transform: uppercase; letter-spacing: .06em;
}
.gt__svc-more i { font-size: 10px; transition: transform .2s; }
.gt__svc-card:hover .gt__svc-more i { transform: translateX(3px); }
.gt__svc-cta { text-align: center; }

/* Featured products on gioi-thieu page */
.gt__featured { padding: 80px 0; background: #fff; }
.gt__featured-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px;
}
.gt__feat-card {
  display: block; text-decoration: none;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid #e8edf5; background: #fff;
  box-shadow: var(--shadow-sm); transition: .25s;
}
.gt__feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(24,53,101,.15); }
.gt__feat-img { aspect-ratio: 4/3; overflow: hidden; background: #f0f4fa; }
.gt__feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gt__feat-card:hover .gt__feat-img img { transform: scale(1.05); }
.gt__feat-body { padding: 16px 18px; }
.gt__feat-body h4 { font-size: .95rem; color: var(--dark); margin: 0 0 10px; line-height: 1.4; }
.gt__feat-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: .05em;
}
.gt__feat-more i { font-size: 10px; transition: transform .2s; }
.gt__feat-card:hover .gt__feat-more i { transform: translateX(3px); }

/* Process */
.gt__process { padding: 80px 0; background: #fff; }
.gt__process-steps {
  display: flex; align-items: flex-start; gap: 0;
  justify-content: center;
}
.gt__process-step {
  flex: 1; text-align: center; padding: 0 20px;
  position: relative; max-width: 240px;
}
.gt__process-num {
  font-size: 3.5rem; font-weight: 900; line-height: 1;
  color: rgba(24,53,101,.07); margin-bottom: -10px;
  font-family: 'Roboto', sans-serif;
}
.gt__process-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1e4a8a);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 6px 20px rgba(24,53,101,.22);
}
.gt__process-icon i { font-size: 22px; color: #fff; }
.gt__process-step h3 { font-size: 1rem; color: var(--dark); margin-bottom: 10px; }
.gt__process-step p { font-size: 13.5px; color: #666; line-height: 1.6; margin: 0; }
.gt__process-arrow {
  flex-shrink: 0; align-self: center; font-size: 22px;
  color: rgba(246,135,44,.5); margin-top: -20px;
}

/* Locations */
.gt__locations { padding: 80px 0; background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 100%); }
.gt__loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.gt__loc-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px 30px; border: 1px solid #e0e8f8;
  box-shadow: var(--shadow-sm); position: relative;
}
.gt__loc-card--main { border-color: rgba(24,53,101,.2); }
.gt__loc-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; background: var(--primary); color: #fff;
  padding: 3px 12px; border-radius: 20px; margin-bottom: 16px;
}
.gt__loc-badge--secondary { background: var(--secondary); }
.gt__loc-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: #eef3fb; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.gt__loc-icon i { font-size: 22px; color: var(--primary); }
.gt__loc-card h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 16px; }
.gt__loc-list { list-style: none; padding: 0; margin: 0 0 20px; }
.gt__loc-list li { display: flex; gap: 10px; font-size: 14px; color: #555; padding: 6px 0; border-bottom: 1px solid #f2f4f8; align-items: flex-start; }
.gt__loc-list li:last-child { border-bottom: none; }
.gt__loc-list li i { color: var(--secondary); flex-shrink: 0; margin-top: 3px; font-size: 13px; }
.gt__loc-list li a { color: var(--primary); font-weight: 600; }
.gt__loc-list li a:hover { color: var(--secondary); }
.gt__loc-map {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: var(--primary); color: #fff;
  border-radius: 8px; font-size: 13.5px; font-weight: 700; transition: .2s;
}
.gt__loc-map:hover { background: var(--secondary); color: #fff; }
.gt__loc-map i { font-size: 14px; }

/* CTA section */
.gt__cta {
  padding: 64px 0;
  background: linear-gradient(115deg, var(--secondary) 0%, #e07520 100%);
}
.gt__cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.gt__cta-text h2 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); color: #fff; margin-bottom: 8px; }
.gt__cta-text p { color: rgba(255,255,255,.85); font-size: 15px; margin: 0; }
.gt__cta-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.gt__cta-phone {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: #fff; color: var(--secondary);
  border-radius: 8px; font-weight: 800; font-size: 18px; transition: .2s;
}
.gt__cta-phone:hover { background: var(--dark); color: #fff; }
.gt__cta-actions .btn-primary { background: var(--dark) !important; }
.gt__cta-actions .btn-primary:hover { background: var(--primary) !important; }

/* ── Giới thiệu responsive ── */
@media (max-width: 1024px) {
  .gt__intro-layout { grid-template-columns: 1fr 360px; }
  .gt__svc-grid { grid-template-columns: repeat(4, 1fr); }
  .gt__featured-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
  .gt__intro-layout { grid-template-columns: 1fr; }
  .gt__intro-visual { flex-direction: row; }
  .gt__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gt__why-grid { grid-template-columns: repeat(2, 1fr); }
  .gt__svc-grid { grid-template-columns: repeat(4, 1fr); }
  .gt__featured-grid { grid-template-columns: repeat(2, 1fr); }
  .gt__loc-grid { grid-template-columns: 1fr; }
  .gt__cta-inner { flex-direction: column; text-align: center; }
  .gt__cta-actions { justify-content: center; }
  .gt__process-steps { flex-wrap: wrap; gap: 32px; }
  .gt__process-arrow { display: none; }
  .gt__process-step { max-width: 45%; }
}
@media (max-width: 640px) {
  .gt__hero { min-height: 320px; }
  .gt__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gt__stat { padding: 20px 12px; }
  .gt__why-grid { grid-template-columns: 1fr; }
  .gt__svc-grid { grid-template-columns: repeat(2, 1fr); }
  .gt__featured-grid { grid-template-columns: repeat(2, 1fr); }
  .gt__intro-visual { flex-direction: column; }
  .gt__hero-btns { flex-direction: column; }
  .gt__hero-btn-outline, .gt__hero-btns .btn-primary { width: 100%; justify-content: center; text-align: center; }
  .gt__process-step { max-width: 100%; }
  .gt__cta-phone { font-size: 16px; }
}

/* ================================================================
   ── LIÊN HỆ PAGE v2  (lh2__)
   ================================================================ */

.lh2__hero {
  position: relative; min-height: 280px;
  background: linear-gradient(115deg, #04142d 0%, #183565 60%, #1e4a8a 100%);
  display: flex; align-items: center; overflow: hidden;
}
.lh2__hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(246,135,44,.15) 0%, transparent 60%);
}
.lh2__hero-inner { position: relative; z-index: 2; padding: 60px 20px 50px; }
.lh2__hero-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: #fff; margin: 14px 0 12px; }
.lh2__hero-sub { font-size: 15px; color: rgba(255,255,255,.75); max-width: 520px; margin: 0; line-height: 1.7; }
.lh2__hero-sub strong { color: var(--secondary); }

/* Quick contact strip */
.lh2__strip { background: #fff; border-bottom: 1px solid #e8ecf5; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.lh2__strip-inner {
  display: flex; align-items: stretch; min-height: 72px; flex-wrap: wrap;
}
.lh2__strip-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 28px; flex: 1; min-width: 200px;
  transition: .2s; text-decoration: none;
}
.lh2__strip-item:hover { background: #fafbfe; }
.lh2__strip-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.lh2__strip-item--phone .lh2__strip-icon { background: #fff0e6; color: var(--secondary); }
.lh2__strip-item--zalo .lh2__strip-icon { background: #e6f0ff; }
.lh2__strip-item--fb .lh2__strip-icon { background: #e7f0ff; color: #0068ff; }
.lh2__strip-item--email .lh2__strip-icon { background: #eef3fb; color: var(--primary); }
.lh2__strip-item span { display: block; font-size: 12px; color: #888; }
.lh2__strip-item strong { display: block; font-size: 14px; color: var(--dark); font-weight: 700; }
.lh2__strip-divider { width: 1px; background: #eaecf0; flex-shrink: 0; align-self: stretch; margin: 12px 0; }

/* Main layout */
.lh2__main { padding: 52px 0 72px; background: #f4f6fb; }
.lh2__main-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start;
}

/* Form column */
.lh2__form-box {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px 36px; box-shadow: var(--shadow-sm);
  border: 1px solid #e8ecf5;
}
.lh2__form-title {
  font-size: 1.2rem; color: var(--dark); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.lh2__form-title i { color: var(--secondary); }
.lh2__form-desc { font-size: 14px; color: #666; margin-bottom: 24px; line-height: 1.6; }
.lh2__form-desc strong { color: var(--secondary); }

/* Trust */
.lh2__trust {
  display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap;
}
.lh2__trust-item {
  display: flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid #e4ecf8;
  border-radius: 20px; padding: 7px 14px;
  font-size: 12.5px; color: #555; font-weight: 600; flex: 1; min-width: 120px;
}
.lh2__trust-item i { color: var(--secondary); font-size: 13px; }

/* Map column */
.lh2__map-wrap {
  height: 280px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid #e0e8f8; margin-bottom: 18px;
}
.lh2__map-wrap iframe { display: block; }

/* Branches */
.lh2__branches { display: flex; flex-direction: column; gap: 14px; }
.lh2__branch {
  background: #fff; border-radius: var(--radius-lg);
  padding: 22px 24px; border: 1px solid #e0e8f8;
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
}
.lh2__branch--main { border-color: rgba(24,53,101,.2); }
.lh2__branch-badge {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; background: var(--primary); color: #fff;
  padding: 2px 10px; border-radius: 20px; margin-bottom: 10px;
}
.lh2__branch-badge--alt { background: var(--secondary); }
.lh2__branch-badge--offset { background: #2e7d32; }
.lh2__branch h4 {
  font-size: .95rem; color: var(--dark); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.lh2__branch h4 i { color: var(--secondary); }
.lh2__branch ul { list-style: none; padding: 0; margin: 0; }
.lh2__branch ul li { display: flex; gap: 9px; font-size: 13.5px; color: #555; padding: 5px 0; align-items: flex-start; }
.lh2__branch ul li i { color: var(--secondary); flex-shrink: 0; font-size: 12px; margin-top: 3px; }
.lh2__branch ul li a { color: var(--primary); font-weight: 600; }
.lh2__branch ul li a:hover { color: var(--secondary); }

/* Responsive */
@media (max-width: 960px) {
  .lh2__main-layout { grid-template-columns: 1fr; }
  .lh2__strip-inner { flex-wrap: wrap; }
  .lh2__strip-divider { display: none; }
  .lh2__strip-item { flex-basis: 45%; }
  .gt__loc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .lh2__form-box { padding: 24px 18px; }
  .lh2__strip-item { flex-basis: 100%; }
  .lh2__trust { flex-direction: column; }
}

/* ════════════════════════════════════════
   MOBILE GLOBAL OPTIMIZATIONS
   ════════════════════════════════════════ */
@media (max-width: 849px) {

  /* Header topbar – hide on mobile */
  .header-topbar { display: none; }

  /* Floating buttons – smaller */
  .hg-fcta { right: 10px; bottom: 70px; }

  /* Stats section */
  .homepage2__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .homepage2__num { font-size: 2.2rem; }

  /* About section */
  .homepage3__layout { grid-template-columns: 1fr; gap: 40px; }
  .homepage3__images { padding-bottom: 40px; margin-right: 0; }
  .homepage3__imgSub { right: 0; bottom: -20px; width: 160px; }
  .homepage3__imgSub img { height: 110px; }
  .homepage3__yearbadge { left: 0; top: 16px; padding: 12px 16px; }

  /* Section headers */
  .section-title { font-size: clamp(1.2rem, 5vw, 1.6rem); }

  /* Portfolio grid */
  .homepage6__grid { grid-template-columns: repeat(2, 1fr); }
  .homepage6__tabs { overflow-x: auto; justify-content: flex-start; }
  .homepage6__tab { flex-shrink: 0; font-size: 12.5px; padding: 8px 14px; }

  /* Process steps */
  .homepage7__steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Testimonials */
  .homepage8__card { padding: 24px 20px; }

  /* FAQ */
  .homepage9__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {

  /* Stats */
  .homepage2__grid { grid-template-columns: repeat(2, 1fr); }
  .homepage2__num { font-size: 2rem; }

  /* Category cards: 2 columns */
  .homepage5__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .homepage5__catcard-img { aspect-ratio: 1/1; }

  /* Portfolio grid: 2 columns */
  .homepage6__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Process steps */
  .homepage7__steps { grid-template-columns: 1fr 1fr; gap: 14px; }
  .homepage7__step { padding: 18px 14px; }
  .homepage7__step-badge { width: 54px; height: 54px; font-size: 20px; }

  /* Hero slider */
  .homepage1__title { font-size: clamp(1.3rem, 6vw, 2rem); }
  .homepage1__sub { font-size: .9rem; }
  .homepage1__trust { display: none; }

  /* Footer */
  /* Section spacing */
  section { padding-top: 52px; padding-bottom: 52px; }
  .homepage2__section { padding: 36px 0; }

  /* 2mm side margin on all content */
  .container { padding-left: 8px; padding-right: 8px; }
}

/* ═══════════════════════════════════════════════════
   PARTNER LOGOS GRID  (hp9-partners)
═══════════════════════════════════════════════════ */
.hp9-partners {
  padding: 56px 0 52px; background: #f8fafd;
  border-top: 1px solid #eaecf0; border-bottom: 1px solid #eaecf0;
}
.hp9-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.hp9-logo-item {
  display: flex; align-items: center; justify-content: center;
  height: 80px;
  padding: 12px 20px;
  background: #fff; border: 1px solid #e8ecf5;
  border-radius: 12px; transition: box-shadow .2s, border-color .2s;
}
.hp9-logo-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); border-color: #c8d5ee; }
.hp9-logo-item img {
  max-width: 120px; max-height: 56px; width: auto; height: auto;
  object-fit: contain; filter: grayscale(30%); transition: filter .2s;
}
.hp9-logo-item:hover img { filter: grayscale(0%); }
.hp9-logo-item--text { background: #eef3fb; }
.hp9-logo-item--text span { font-size: 13px; font-weight: 700; color: var(--primary); }
@media (max-width: 960px) {
  .hp9-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .hp9-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hp9-logo-item { height: 64px; padding: 8px 12px; }
  .hp9-logo-item img { max-width: 90px; max-height: 44px; }
}

/* ═══════════════════════════════════════════════════
   CONTACT FORM – PREMIUM REDESIGN  (hg-qf)
═══════════════════════════════════════════════════ */

/* Form box wrapper */
.hg-qf-box {
  padding: 0 !important; overflow: hidden;
  border: 1px solid #dce6f5 !important;
  box-shadow: 0 8px 40px rgba(24,53,101,.1) !important;
}
.hg-qf-box__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; gap: 16px;
  background: linear-gradient(120deg, #0f2554 0%, #183565 60%, #1e4c8a 100%);
}
.hg-qf-box__header-left { display: flex; align-items: center; gap: 14px; }
.hg-qf-box__icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(246,135,44,.2); color: var(--secondary);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.hg-qf-box__title {
  font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0 0 2px;
}
.hg-qf-box__sub {
  font-size: 12.5px; color: rgba(255,255,255,.65); margin: 0;
}
.hg-qf-box__sub strong { color: var(--secondary); }
.hg-qf-box__badge {
  background: rgba(246,135,44,.18); color: var(--secondary);
  border: 1px solid rgba(246,135,44,.35);
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 20px;
  display: flex; align-items: center; gap: 5px; white-space: nowrap; flex-shrink: 0;
}
.hg-qf-box__body { padding: 28px 28px 24px; }

/* The form itself */
.hg-quote-form {}
.hg-qf__section { margin-bottom: 8px; }
.hg-qf__section-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.hg-qf__step {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 900; display: flex; align-items: center; justify-content: center;
  letter-spacing: .02em;
}
.hg-qf__section-label {
  font-size: 13px; font-weight: 800; color: var(--dark);
  text-transform: uppercase; letter-spacing: .07em;
}
.hg-qf__divider {
  border: none; border-top: 1px dashed #dce6f5; margin: 20px 0 24px;
}
.hg-qf__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 0;
}
.hg-qf__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.hg-qf__label {
  font-size: 12px; font-weight: 700; color: #455;
  text-transform: uppercase; letter-spacing: .05em;
}
.hg-qf__label em { color: var(--secondary); font-style: normal; margin-left: 2px; }

/* Input wrapper with icon */
.hg-qf__input-wrap { position: relative; }
.hg-qf__icon {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  font-size: 13px; color: #9aabcc; pointer-events: none; z-index: 1;
  transition: color .2s;
}
.hg-qf__input-wrap:focus-within .hg-qf__icon { color: var(--primary); }

.hg-quote-form input,
.hg-quote-form select,
.hg-quote-form textarea {
  width: 100%; padding: 11px 14px 11px 38px;
  border: 1.5px solid #dce4f0; border-radius: 10px;
  font-size: 13.5px; font-family: inherit; color: var(--text);
  background: #f7f9fd; outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.hg-quote-form input:focus,
.hg-quote-form select:focus,
.hg-quote-form textarea:focus {
  border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 3px rgba(24,53,101,.1);
}
.hg-quote-form input:hover,
.hg-quote-form select:hover { border-color: #b0c4e8; background: #fff; }
.hg-quote-form input::placeholder,
.hg-quote-form textarea::placeholder { color: #b8c6d8; }
.hg-quote-form textarea {
  resize: vertical; min-height: 110px; line-height: 1.65; padding-top: 12px;
}

/* Select */
.hg-qf__input-wrap--select select {
  appearance: none; cursor: pointer; padding-right: 36px;
}
.hg-qf__chevron {
  position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
  font-size: 10px; color: #9aabcc; pointer-events: none;
}

/* Footer */
.hg-qf__footer {
  display: flex; flex-direction: column; gap: 14px; margin-top: 6px;
}
.hg-qf__privacy {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #888; line-height: 1.5;
}
.hg-qf__privacy i { color: #4ade80; flex-shrink: 0; font-size: 13px; }
.hg-qf__submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px 24px;
  background: linear-gradient(120deg, #f6872c 0%, #d96010 100%);
  color: #fff; border: none; border-radius: 12px;
  font-size: 15.5px; font-weight: 800; cursor: pointer; letter-spacing: .02em;
  box-shadow: 0 6px 20px rgba(246,135,44,.4);
  transition: transform .2s, box-shadow .2s;
  font-family: inherit;
}
.hg-qf__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(246,135,44,.5);
}
.hg-qf__submit-arrow { margin-left: auto; font-size: 13px; opacity: .8; }

@media (max-width: 600px) {
  .hg-qf__row { grid-template-columns: 1fr; }
  .hg-qf-box__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hg-qf-box__body { padding: 20px 16px; }
}

/* ═══════════════════════════════════════════════════
   PAGE: THI CÔNG BACKDROP  (tcb__)
═══════════════════════════════════════════════════ */

/* ── Shared ── */
.tcb-section-header { text-align: center; margin-bottom: 48px; }
.tcb-section-header--light { color: #fff; }
.tcb-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--secondary); margin-bottom: 10px;
  padding: 4px 14px; background: rgba(255,120,20,.1); border-radius: 20px;
}
.tcb-eyebrow--light { color: #f5a54a; background: rgba(255,165,60,.15); }
.tcb-title { font-size: clamp(1.5rem,3.5vw,2.1rem); font-weight: 800; color: var(--dark); line-height: 1.25; margin-bottom: 14px; }
.tcb-title--light { color: #fff; }
.tcb-sub { font-size: 15px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.tcb-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 50px;
  background: var(--secondary); color: #fff;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(255,120,20,.35);
}
.tcb-btn-primary:hover { background: #e06510; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,120,20,.45); }
.tcb-btn-primary--sm { padding: 10px 20px; font-size: 14px; margin-top: 16px; }
.tcb-btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.6); color: #fff;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: background .2s, border-color .2s;
}
.tcb-btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ── Hero ── */
.tcb-hero {
  position: relative; min-height: 540px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #030e25 0%, #0c2248 50%, #1a4585 100%);
  overflow: hidden;
}
.tcb-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,120,20,.18) 0%, transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(26,69,133,.5) 0%, transparent 50%);
}
.tcb-hero__overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}
.tcb-hero__inner { position: relative; z-index: 2; padding: 80px 0 60px; }
.tcb-hero__badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,165,60,.2); border: 1px solid rgba(255,165,60,.4);
  color: #f5a54a; font-size: 13px; font-weight: 600;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 20px;
}
.tcb-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
  color: #fff; line-height: 1.15; margin-bottom: 18px;
}
.tcb-hero__title span { color: #f5a54a; }
.tcb-hero__sub { font-size: 16px; color: rgba(255,255,255,.75); max-width: 560px; margin-bottom: 32px; line-height: 1.7; }
.tcb-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.tcb-hero__stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 16px;
  padding: 20px 28px; width: fit-content;
}
.tcb-hero__stat { text-align: center; padding: 0 24px; }
.tcb-hero__stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #f5a54a; line-height: 1; }
.tcb-hero__stat span { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 4px; display: block; }
.tcb-hero__stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

/* ── Services ── */
.tcb-services { padding: 80px 0; background: #f8fafd; }
.tcb-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcb-service-card {
  background: #fff; border-radius: 16px; padding: 32px 28px;
  border: 1px solid #e8ecf5;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: transform .25s, box-shadow .25s;
}
.tcb-service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.tcb-service-card--accent { background: linear-gradient(135deg, #0c2248, #1a4585); border-color: transparent; }
.tcb-service-card--accent h3, .tcb-service-card--accent p { color: #fff; }
.tcb-service-card--accent .tcb-service-card__list li { color: rgba(255,255,255,.85); }
.tcb-service-card--accent .tcb-service-card__list .fa-check { color: #f5a54a; }
.tcb-service-card--accent .tcb-service-card__icon { background: rgba(255,255,255,.12); color: #f5a54a; }
.tcb-service-card--cta { background: linear-gradient(135deg, #ff7814, #e06510); border-color: transparent; }
.tcb-service-card--cta h3, .tcb-service-card--cta p { color: #fff; }
.tcb-service-card--cta .tcb-service-card__icon { background: rgba(255,255,255,.2); color: #fff; }
.tcb-service-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,120,20,.08); color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.tcb-service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.tcb-service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.tcb-service-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.tcb-service-card__list li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text); }
.tcb-service-card__list .fa-check { color: var(--secondary); font-size: 11px; flex-shrink: 0; }

/* ── Why Us ── */
.tcb-why {
  position: relative; padding: 80px 0;
  background: linear-gradient(135deg, #030e25 0%, #0d2450 60%, #1a4585 100%);
  overflow: hidden;
}
.tcb-why__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,120,20,.15) 0%, transparent 60%);
}
.tcb-why .container { position: relative; z-index: 1; }
.tcb-why__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.tcb-why__item {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 28px 24px; transition: background .2s;
}
.tcb-why__item:hover { background: rgba(255,255,255,.11); }
.tcb-why__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,165,60,.2); color: #f5a54a;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}
.tcb-why__item h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.tcb-why__item p { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ── Materials ── */
.tcb-materials { padding: 80px 0; }
.tcb-materials__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.tcb-mat {
  border: 2px solid #e8ecf5; border-radius: 16px; padding: 28px 22px;
  transition: border-color .2s, box-shadow .2s;
}
.tcb-mat:hover { border-color: var(--secondary); box-shadow: 0 6px 24px rgba(255,120,20,.12); }
.tcb-mat--featured { border-color: var(--secondary); background: rgba(255,120,20,.03); }
.tcb-mat__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.tcb-mat__head i { font-size: 20px; color: var(--secondary); }
.tcb-mat__head h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 0; }
.tcb-mat p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.tcb-mat__tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 12px; border-radius: 12px;
  background: #eef3fb; color: var(--primary);
}
.tcb-mat__tag--gold { background: #fff3e0; color: #b85500; }

/* ── Process ── */
.tcb-process { padding: 80px 0; background: #f8fafd; }
.tcb-process__steps {
  display: flex; align-items: flex-start; gap: 0;
  justify-content: space-between;
}
.tcb-process__step {
  flex: 1; text-align: center; padding: 0 12px; position: relative;
}
.tcb-process__num {
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  color: var(--secondary); margin-bottom: 12px; display: block;
}
.tcb-process__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), #e06510);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px; box-shadow: 0 6px 20px rgba(255,120,20,.35);
}
.tcb-process__step h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.tcb-process__step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.tcb-process__arrow {
  color: #c8d5ee; font-size: 20px;
  padding-top: 28px; flex-shrink: 0;
}

/* ── Page content ── */
.tcb-content { padding: 60px 0; }
.tcb-content__body { max-width: 860px; margin: 0 auto; font-size: 15px; line-height: 1.8; color: var(--text); }
.tcb-content__body h2 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin: 1.8em 0 .6em; }
.tcb-content__body h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin: 1.4em 0 .5em; }
.tcb-content__body p { margin-bottom: 1em; }
.tcb-content__body img { max-width: 80% !important; height: auto !important; border-radius: 10px; margin: 1.5em auto !important; display: block !important; }

/* ── CTA ── */
.tcb-cta {
  position: relative; padding: 80px 0;
  background: linear-gradient(135deg, #020c1e 0%, #0d2450 60%, #1a4585 100%);
  overflow: hidden;
}
.tcb-cta__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,120,20,.2) 0%, transparent 60%);
}
.tcb-cta__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.tcb-cta__left h2 { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.25; }
.tcb-cta__left p { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 28px; }
.tcb-cta__contacts { display: flex; flex-direction: column; gap: 12px; }
.tcb-cta__contact {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px; padding: 14px 18px; text-decoration: none;
  transition: background .2s;
}
.tcb-cta__contact:hover { background: rgba(255,255,255,.16); }
.tcb-cta__contact > i, .tcb-cta__contact > svg { color: #f5a54a; font-size: 20px; flex-shrink: 0; }
.tcb-cta__contact span { display: block; font-size: 12px; color: rgba(255,255,255,.6); }
.tcb-cta__contact strong { display: block; font-size: 15px; font-weight: 700; color: #fff; }

/* ── Form ── */
.tcb-form {
  background: #fff; border-radius: 20px; padding: 36px 32px;
  box-shadow: 0 16px 60px rgba(0,0,0,.3);
}
.tcb-form__title {
  font-size: 1rem; font-weight: 700; color: var(--dark);
  margin-bottom: 24px; display: flex; align-items: center; gap: 8px;
}
.tcb-form__title i { color: var(--secondary); }
.tcb-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.tcb-form__field {
  position: relative; display: flex; align-items: center;
  background: #f4f7fb; border-radius: 10px;
  border: 1.5px solid #dce6f5; margin-bottom: 12px;
  transition: border-color .2s;
}
.tcb-form__row .tcb-form__field { margin-bottom: 0; }
.tcb-form__field:focus-within { border-color: var(--secondary); }
.tcb-form__field > i { padding: 0 12px; color: var(--secondary); font-size: 14px; flex-shrink: 0; }
.tcb-form__field input, .tcb-form__field textarea {
  flex: 1; border: none; background: transparent; padding: 12px 14px 12px 0;
  font-size: 14px; color: var(--dark); outline: none;
  font-family: inherit;
}
.tcb-form__field textarea { padding-top: 12px; resize: none; width: 100%; }
.tcb-form__field--full { display: flex; }
.tcb-form__field--textarea { align-items: flex-start; }
.tcb-form__field--textarea i { padding-top: 14px; }
.tcb-form__submit {
  width: 100%; padding: 14px; border: none; border-radius: 10px;
  background: linear-gradient(90deg, var(--secondary), #e06510);
  color: #fff; font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  cursor: pointer; transition: opacity .2s, transform .2s;
  box-shadow: 0 6px 20px rgba(255,120,20,.35);
  margin-top: 4px;
}
.tcb-form__submit:hover { opacity: .9; transform: translateY(-1px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .tcb-services__grid { grid-template-columns: repeat(2,1fr); }
  .tcb-materials__grid { grid-template-columns: repeat(2,1fr); }
  .tcb-why__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .tcb-hero__stats { flex-wrap: wrap; gap: 12px; }
  .tcb-hero__stat-divider { display: none; }
  .tcb-cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .tcb-process__steps { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .tcb-process__arrow { display: none; }
  .tcb-process__step { flex: 0 0 40%; }
}
@media (max-width: 600px) {
  .tcb-hero { min-height: auto; }
  .tcb-hero__inner { padding: 60px 0 40px; }
  .tcb-hero__btns { flex-direction: column; }
  .tcb-services__grid, .tcb-why__grid, .tcb-materials__grid { grid-template-columns: 1fr; }
  .tcb-form__row { grid-template-columns: 1fr; }
  .tcb-form { padding: 24px 20px; }
  .tcb-process__step { flex: 0 0 100%; }
}

/* ═══════════════════════════════════════════
   CEO PROFILE PAGE  (cap__)
   Used by: author.php + page-ceo-navi-nguyen.php
═══════════════════════════════════════════ */

.cap-section-eyebrow {
  display: inline-block; font-size: 11.5px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--secondary); margin-bottom: 10px;
}
.cap-section-eyebrow--light { color: #f5a54a; }
.cap-section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 900;
  color: var(--dark); line-height: 1.2; margin-bottom: 20px;
}
.cap-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.cap-btn--lg { padding: 14px 30px; font-size: 15px; margin-top: 24px; }
.cap-btn--orange { background: var(--secondary); color: #fff; box-shadow: 0 6px 20px rgba(255,120,20,.35); }
.cap-btn--orange:hover { background: #e06510; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,120,20,.45); }
.cap-btn--zalo { background: #0068ff; color: #fff; box-shadow: 0 4px 14px rgba(0,104,255,.3); }
.cap-btn--zalo:hover { background: #0055d4; color: #fff; }
.cap-btn--ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.cap-btn--ghost:hover { background: rgba(255,255,255,.2); color: #fff; }

/* Hero */
.cap-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #030c1f 0%, #0c1f42 50%, #162f5e 100%);
  padding: 90px 0 70px;
}
.cap-hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cap-hero__orb { position: absolute; border-radius: 50%; }
.cap-hero__orb--1 { width: 700px; height: 700px; top: -250px; right: -180px; background: radial-gradient(circle, rgba(246,135,44,.15) 0%, transparent 65%); }
.cap-hero__orb--2 { width: 400px; height: 400px; bottom: -100px; left: -80px; background: radial-gradient(circle, rgba(30,80,180,.3) 0%, transparent 65%); }
.cap-hero__grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cap-hero__wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 480px; gap: 72px; align-items: center; }
.cap-hero__company { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #f5a54a; margin-bottom: 16px; }
.cap-hero__name { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 18px; letter-spacing: -.02em; }
.cap-hero__tagline { font-size: 16px; font-style: italic; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 18px; border-left: 3px solid var(--secondary); padding-left: 16px; }
.cap-hero__tagline em { color: #f5a54a; font-style: normal; font-weight: 600; }
.cap-hero__bio { font-size: 14.5px; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 520px; margin-bottom: 28px; }
.cap-hero__stats { display: flex; align-items: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 16px 24px; width: fit-content; margin-bottom: 28px; backdrop-filter: blur(6px); }
.cap-hero__stat { text-align: center; padding: 0 20px; }
.cap-hero__stat strong { display: block; font-size: 1.4rem; font-weight: 900; color: #f5a54a; line-height: 1; }
.cap-hero__stat span { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 3px; display: block; white-space: nowrap; }
.cap-hero__stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.12); }
.cap-hero__cta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.cap-hero__photo-col { position: relative; display: flex; justify-content: center; padding: 36px 40px 48px; }
.cap-hero__photo-card { position: relative; display: inline-block; padding: 6px; background: linear-gradient(135deg, rgba(255,120,20,.5), rgba(30,80,180,.5)); border-radius: 24px; }
.cap-hero__photo-ring { position: absolute; inset: -12px; border-radius: 30px; border: 2px solid rgba(246,135,44,.25); animation: cap-pulse 3s ease-in-out infinite; }
@keyframes cap-pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.03); opacity: .6; } }
.cap-hero__photo { width: 400px; height: 400px; border-radius: 20px; object-fit: cover; display: block; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.cap-hero__photo-badge { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, var(--secondary), #e06510); color: #fff; font-size: 13px; font-weight: 800; padding: 8px 24px; border-radius: 30px; white-space: nowrap; display: flex; align-items: center; gap: 7px; box-shadow: 0 6px 20px rgba(246,135,44,.5); }
.cap-hero__photo-since { position: absolute; top: 0; right: 0; background: rgba(255,255,255,.12); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); border-radius: 12px; padding: 10px 16px; font-size: 12px; color: rgba(255,255,255,.8); text-align: center; line-height: 1.5; }
.cap-hero__photo-since strong { color: #f5a54a; display: block; font-size: 14px; }
.cap-hero__float { position: absolute; background: #fff; border-radius: 12px; padding: 10px 16px; box-shadow: 0 8px 28px rgba(0,0,0,.18); display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; color: var(--dark); animation: cap-float 4s ease-in-out infinite; }
@keyframes cap-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.cap-hero__float i { color: var(--secondary); font-size: 16px; }
.cap-hero__float--1 { bottom: 8px; left: 0; }
.cap-hero__float--2 { top: 8px; left: 0; animation-delay: 1.5s; }

/* Skills */
.cap-skills { background: #fff; border-top: 3px solid var(--secondary); border-bottom: 1px solid #e8ecf5; padding: 16px 0; }
.cap-skills__inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cap-skills__label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); display: flex; align-items: center; gap: 6px; white-space: nowrap; flex-shrink: 0; }
.cap-skills__label i { color: var(--secondary); }
.cap-skills__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.cap-skill-tag { padding: 5px 14px; border-radius: 20px; background: #eef3fb; color: var(--primary); font-size: 12.5px; font-weight: 600; border: 1px solid #d4e0f5; cursor: default; transition: background .2s, color .2s; }
.cap-skill-tag:hover { background: var(--primary); color: #fff; }

/* About */
.cap-about { padding: 80px 0; background: #f8fafd; }
.cap-about__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.cap-timeline { position: relative; }
.cap-timeline__label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--secondary); display: flex; align-items: center; gap: 7px; margin-bottom: 32px; }
/* Timeline – simple vertical layout (all items left-aligned) */
.cap-timeline__track { position: relative; padding-left: 60px; }
.cap-timeline__line { position: absolute; left: 15px; top: 0; bottom: 0; transform: none; width: 2px; background: linear-gradient(to bottom, var(--secondary), var(--primary)); z-index: 0; }
.cap-tl-item { position: relative; margin-bottom: 24px; display: flex; align-items: flex-start; }
.cap-tl-item--left  { flex-direction: row; margin-right: 0; padding-right: 0; padding-left: 0; }
.cap-tl-item--right { margin-left: 0; padding-left: 0; }
.cap-tl-item__dot { position: absolute; left: -48px; right: auto; top: 6px; transform: none; width: 32px; height: 32px; border-radius: 50%; z-index: 1; background: linear-gradient(135deg, var(--secondary), #e06510); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; box-shadow: 0 2px 10px rgba(255,120,20,.4); }
.cap-tl-item--right .cap-tl-item__dot { left: -48px; transform: none; }
.cap-tl-item--left  .cap-tl-item__dot { left: -48px; right: auto; transform: none; }
.cap-tl-item__card { background: #fff; border-radius: 12px; padding: 14px 18px; box-shadow: 0 2px 12px rgba(0,0,0,.07); border: 1px solid #e8ecf5; max-width: 180px; }
.cap-tl-item__year { font-size: 12px; font-weight: 800; color: var(--secondary); letter-spacing: .05em; display: block; margin-bottom: 4px; }
.cap-tl-item__card strong { font-size: 13px; font-weight: 700; color: var(--dark); display: block; margin-bottom: 4px; }
.cap-tl-item__card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin: 0; }
.cap-story__text p { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; }
.cap-story__text strong { color: var(--dark); }
.cap-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0 0; }
.cap-svc { display: flex; align-items: flex-start; gap: 12px; background: #fff; border-radius: 12px; padding: 14px 16px; border: 1px solid #e8ecf5; transition: border-color .2s, box-shadow .2s; }
.cap-svc:hover { border-color: var(--secondary); box-shadow: 0 4px 16px rgba(255,120,20,.1); }
.cap-svc__icon { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; background: rgba(255,120,20,.08); color: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 15px; }
.cap-svc strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.cap-svc span { font-size: 12px; color: var(--text-muted); }

/* Achievements */
.cap-achievements { padding: 64px 0; background: linear-gradient(135deg, #050f28 0%, #0d2248 55%, #173a78 100%); }
.cap-achievements__grid { display: grid; grid-template-columns: repeat(6,1fr); background: rgba(255,255,255,.08); border-radius: 20px; overflow: hidden; }
.cap-ach { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 32px 16px; text-align: center; background: rgba(255,255,255,.04); border-right: 1px solid rgba(255,255,255,.08); transition: background .2s; }
.cap-ach:last-child { border-right: none; }
.cap-ach:hover { background: rgba(255,255,255,.08); }
.cap-ach__icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(246,135,44,.2); color: #f5a54a; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 12px; }
.cap-ach__num { font-size: 1.7rem; font-weight: 900; color: #fff; line-height: 1; display: block; margin-bottom: 6px; }
.cap-ach__label { font-size: 12px; color: rgba(255,255,255,.55); }

/* Posts */
.cap-posts { padding: 72px 0; background: #fff; }
.cap-posts__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 2px solid #eaecf0; gap: 16px; }
.cap-posts__badge { background: #eef3fb; color: var(--primary); font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; white-space: nowrap; }
.cap-posts__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.cap-post-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e8ecf5; transition: transform .25s, box-shadow .25s; }
.cap-post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.cap-post-card__thumb { display: block; overflow: hidden; aspect-ratio: 16/9; position: relative; }
.cap-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cap-post-card:hover .cap-post-card__thumb img { transform: scale(1.05); }
.cap-post-card__cat { position: absolute; top: 12px; left: 12px; background: var(--secondary); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 10px; }
.cap-post-card__body { padding: 20px 22px; }
.cap-post-card__meta { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.cap-post-card__title { font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.45; }
.cap-post-card__title a { color: var(--dark); text-decoration: none; }
.cap-post-card__title a:hover { color: var(--primary); }
.cap-post-card__excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.cap-post-card__more { font-size: 13px; font-weight: 700; color: var(--secondary); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.cap-post-card__more:hover { gap: 10px; }
.cap-no-posts { text-align: center; padding: 80px 0; color: var(--text-muted); }
.cap-no-posts i { font-size: 3rem; display: block; margin-bottom: 14px; opacity: .35; }

/* CTA */
.cap-cta { position: relative; padding: 72px 0; background: linear-gradient(135deg, #030c20 0%, #0c1f42 60%, #162f5e 100%); overflow: hidden; }
.cap-cta__bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(255,120,20,.18) 0%, transparent 55%), radial-gradient(ellipse at 80% 20%, rgba(30,70,160,.3) 0%, transparent 50%); }
.cap-cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cap-cta__title { font-size: clamp(1.6rem,3.2vw,2.2rem); font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.cap-cta__sub { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; }
.cap-cta__contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cap-cta-contact { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 16px 18px; text-decoration: none; transition: background .2s, transform .2s; }
.cap-cta-contact:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.cap-cta-contact__icon { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff; }
.cap-cta-contact__icon--orange { background: rgba(255,120,20,.3); color: #f5a54a; }
.cap-cta-contact__icon--blue   { background: rgba(0,104,255,.3); }
.cap-cta-contact__icon--fb     { background: rgba(24,119,242,.3); color: #6aabff; }
.cap-cta-contact span  { display: block; font-size: 11px; color: rgba(255,255,255,.55); margin-bottom: 2px; }
.cap-cta-contact strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }

/* Responsive */
@media (max-width: 1100px) {
  .cap-hero__wrap { grid-template-columns: 1fr 380px; gap: 48px; }
  .cap-hero__photo { width: 340px; height: 340px; }
  .cap-achievements__grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 960px) {
  .cap-hero { padding: 60px 0 50px; }
  .cap-hero__wrap { grid-template-columns: 1fr; gap: 40px; }
  .cap-hero__photo-col { order: -1; }
  .cap-hero__photo { width: 240px; height: 240px; }
  .cap-hero__photo-since, .cap-hero__float { display: none; }
  .cap-hero__stats { justify-content: center; }
  .cap-about__wrap { grid-template-columns: 1fr; gap: 48px; }
  .cap-timeline__track { padding-left: 0; }
  .cap-timeline__line { left: 24px; transform: none; }
  .cap-tl-item { flex-direction: row !important; margin: 0 0 24px 60px !important; padding: 0 !important; }
  .cap-tl-item__dot { position: absolute; left: -48px !important; right: auto !important; top: 6px; transform: none !important; }
  .cap-tl-item__card { max-width: 100%; }
  .cap-cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .cap-posts__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .cap-hero__name { font-size: 2rem; }
  .cap-hero__stats { flex-wrap: wrap; }
  .cap-hero__stat-sep { display: none; }
  .cap-hero__stat { padding: 8px 12px; }
  .cap-services-grid, .cap-cta__contacts { grid-template-columns: 1fr; }
  .cap-achievements__grid { grid-template-columns: repeat(2,1fr); }
  .cap-posts__grid { grid-template-columns: 1fr; }
  .cap-skills__inner { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════════════
   DESIGN SYSTEM REFRESH — Hoàng Gia Royal Edition
   Consistent royal/professional styling across all pages
═══════════════════════════════════════════════════════ */

/* ── Gold accent utility ── */
.text-gold { color: var(--gold) !important; }
.bg-gold   { background: var(--gold) !important; }

/* ── Section eyebrow (royal gold) ── */
.section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  padding: 4px 14px; border-radius: 20px;
  background: rgba(200,155,57,.1); border: 1px solid rgba(200,155,57,.25);
  margin-bottom: 10px;
}

/* ── Universal section heading pattern ── */
.hg-section-head {
  text-align: center; margin-bottom: 44px;
}
.hg-section-head__eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  padding: 5px 14px; border-radius: 20px;
  background: rgba(200,155,57,.08); border: 1px solid rgba(200,155,57,.22);
  margin-bottom: 12px;
}
.hg-section-head__eyebrow i { font-size: 10px; }
.hg-section-head h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem); color: var(--dark);
  margin-bottom: 12px; font-weight: 900;
}
.hg-section-head__line {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--secondary));
  border-radius: 2px; margin: 0 auto 14px;
}
.hg-section-head__sub { color: var(--text-muted); font-size: 15px; max-width: 580px; margin: 0 auto; }

/* ── Royal divider ── */
.hg-divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0;
}

/* ── Professional breadcrumbs ── */
.hg-breadcrumbs {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.6);
}
.hg-breadcrumbs a { color: rgba(255,255,255,.65); transition: .2s; }
.hg-breadcrumbs a:hover { color: var(--gold); }
.hg-breadcrumbs .sep { opacity: .45; }
.hg-breadcrumbs span { color: rgba(255,255,255,.9); }

/* On light backgrounds */
.hg-breadcrumbs--dark { color: var(--text-muted); }
.hg-breadcrumbs--dark a { color: var(--text-muted); }
.hg-breadcrumbs--dark a:hover { color: var(--secondary); }
.hg-breadcrumbs--dark span { color: var(--dark); }
.hg-breadcrumbs--dark .sep { color: #ccc; opacity: 1; }

/* ── Consistent CTA button ── */
.btn-royal {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 30px; border-radius: 6px;
  font-size: 15px; font-weight: 700;
  background: var(--secondary); color: #fff;
  transition: .2s; border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(246,135,44,.25);
  white-space: nowrap;
}
.btn-royal:hover { background: var(--secondary-dk); color: #fff; transform: translateY(-2px); }
.btn-royal--outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary); box-shadow: none;
}
.btn-royal--outline:hover { background: var(--primary); color: #fff; }

/* ── Page hero standard (light pages, non-WC) ── */
.hg-page-hero {
  background: linear-gradient(115deg, #04142d 0%, #0d2750 55%, #183565 100%);
  padding: 52px 0 44px; position: relative; overflow: hidden;
}
.hg-page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,155,57,.4), transparent);
}
.hg-page-hero__inner { position: relative; z-index: 2; }
.hg-page-hero__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem); color: #fff; font-weight: 900;
  margin-bottom: 8px; margin-top: 12px;
}
.hg-page-hero__sub { color: rgba(255,255,255,.68); font-size: 15px; max-width: 540px; }

/* ── Footer gold accent override ── */
.hgf__col-heading { border-bottom-color: var(--gold); }
.hgf__subscribe button { background: var(--gold); }
.hgf__subscribe button:hover { background: #b8890f; }

/* ── Notices cleanup (remove WC emoji) ── */
.woocommerce-message::before,
.woocommerce-info::before { display: none !important; }

/* ── Admin notice style (clean) ── */
.hg-notice-royal {
  background: linear-gradient(90deg, #0d2750 0%, #183565 100%);
  color: #fff; border-radius: 8px; padding: 16px 20px;
  border-left: 4px solid var(--gold) !important;
  font-size: 14px;
}

/* ── Contact CTA (form replaced by Zalo/Call) ── */
.hg-contact-cta {
  background: linear-gradient(135deg, #eef3fb 0%, #e4edf8 100%);
  border: 1px solid #c8d9f0;
  border-radius: 14px;
  padding: 28px 32px;
  text-align: center;
}
.hg-contact-cta__lead {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.6;
}
.hg-contact-cta__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hg-contact-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.hg-contact-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.hg-contact-cta__btn--zalo {
  background: #0068ff;
  color: #fff;
}
.hg-contact-cta__btn--call {
  background: var(--secondary);
  color: #fff;
}
