/* ══════════════════════════════════════════════
   WebSolutions Theme v1.0 — theme.css
   Author: bizcare.com.vn
   Font: Plus Jakarta Sans 500 headings, Inter body
   ══════════════════════════════════════════════ */

/* Font Awesome — @import fallback */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --wsc-primary:      #2563eb;
  --wsc-primary-dark: #1d4ed8;
  --wsc-accent:       #06b6d4;
  --wsc-green:        #10b981;
  --wsc-orange:       #f59e0b;
  --wsc-purple:       #7c3aed;
  --wsc-bg:           #f8fafc;
  --wsc-text:         #1e293b;
  --wsc-muted:        #64748b;
  --wsc-border:       #e2e8f0;
  --wsc-radius:       14px;
  --wsc-shadow:       0 4px 24px rgba(37,99,235,.08);
  --wsc-font:         'Inter', -apple-system, sans-serif;
  --wsc-heading-font: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--wsc-font);
  background: var(--wsc-bg);
  color: var(--wsc-text);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}
a { color: var(--wsc-primary); text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; height: auto; }
::selection { background: #dbeafe; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--wsc-primary); border-radius: 3px; }

/* ── Container ── */
.wst-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════════════════
   TOPBAR (disabled in header markup)
   ══════════════════════════════════════════════ */
.wst-topbar {
  background: linear-gradient(90deg,var(--wsc-primary),var(--wsc-accent));
  padding: 6px 0;
}
.wst-topbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .78rem;
  color: rgba(255,255,255,.8);
}
.wst-topbar-spacer { flex: 1; }
.wst-topbar-phone { color: #fff; font-weight: 700; }
.wst-topbar-social { color: rgba(255,255,255,.8); margin-left: 4px; transition: color .2s; }
.wst-topbar-social:hover { color: #fff; }

/* ══════════════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════════════ */
.wst-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wsc-border);
  box-shadow: 0 2px 16px rgba(37,99,235,.06);
}
.wst-nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 8px;
}
/* Logo */
.wst-logo { display: flex; align-items: center; gap: 10px; margin-right: 16px; text-decoration: none; flex-shrink: 0; }
.wst-logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg,var(--wsc-primary),var(--wsc-accent)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .9rem; flex-shrink: 0; }
.wst-logo-text { display: flex; flex-direction: column; }
.wst-logo-name { font-size: 1.05rem; font-weight: 800; color: var(--wsc-text); letter-spacing: -.5px; }
.wst-logo-sub  { font-size: .58rem; color: var(--wsc-muted); text-transform: uppercase; letter-spacing: 1px; }
.wst-logo img  { height: 40px; width: auto; }

/* Menu */
.wst-nav-links { flex: 1; }
.wst-menu { list-style: none; display: flex; align-items: center; gap: 0; }
.wst-menu > li { position: relative; }
.wst-menu > li > a {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 14px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--wsc-muted);
  border-bottom: 2.5px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.wst-menu > li > a:hover,
.wst-menu > li.current-menu-item > a,
.wst-menu > li.current-menu-ancestor > a {
  color: var(--wsc-primary);
  border-bottom-color: var(--wsc-primary);
}
/* Dropdown */
.wst-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: #fff;
  border: 1.5px solid var(--wsc-border);
  border-radius: var(--wsc-radius);
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  min-width: 220px;
  z-index: 200;
  list-style: none;
  overflow: hidden;
}
.wst-menu .menu-item-has-children:hover .sub-menu { display: block; }
.wst-menu .sub-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: .85rem;
  color: var(--wsc-text);
  border-bottom: 1px solid var(--wsc-border);
  transition: all .15s;
}
.wst-menu .sub-menu li:last-child a { border-bottom: none; }
.wst-menu .sub-menu li a:hover { background: #eff6ff; color: var(--wsc-primary); }

/* Nav right */
.wst-nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.wst-nav-search {
  position: relative;
  display: flex; align-items: center;
  background: var(--wsc-bg);
  border: 1.5px solid var(--wsc-border);
  border-radius: 8px;
  padding: 7px 12px; gap: 7px;
  width: 200px;
  transition: all .2s;
}
.wst-nav-search:focus-within { border-color: var(--wsc-primary); box-shadow: 0 0 0 3px rgba(37,99,235,.1); background: #fff; }
.wst-nav-search i { color: var(--wsc-muted); font-size: .85rem; }
.wst-nav-search input { background: none; border: none; outline: none; font-size: .85rem; font-family: var(--wsc-font); color: var(--wsc-text); flex: 1; min-width: 0; }
.wst-nav-icon, .wst-nav-phone {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--wsc-primary); color: #fff;
  border-radius: 10px; font-size: .95rem;
  white-space: nowrap; text-decoration: none; transition: all .2s;
}
.wst-nav-icon:hover, .wst-nav-phone:hover { background: var(--wsc-primary-dark); color: #fff; transform: translateY(-1px); }

/* Hamburger */
.wst-hamburger {
  display: none;
  flex-direction: column; justify-content: space-between;
  width: 28px; height: 20px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.wst-hamburger span {
  display: block;
  width: 100%; height: 2.5px;
  background: var(--wsc-text); border-radius: 2px;
  transition: all .3s;
}
.wst-hamburger.open span:nth-child(1) { transform: translateY(8.75px) rotate(45deg); }
.wst-hamburger.open span:nth-child(2) { opacity: 0; }
.wst-hamburger.open span:nth-child(3) { transform: translateY(-8.75px) rotate(-45deg); }

/* Fullpage overlay nav */
.wst-mobile-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: radial-gradient(circle at 80% 12%, rgba(37,99,235,.10), transparent 30%), #fff;
  z-index: 1200;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .32s ease, opacity .24s ease;
  overflow-y: auto;
  padding: max(24px, env(safe-area-inset-top)) 28px 32px;
}
.wst-mobile-overlay.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.wst-mobile-overlay-head { display:flex; align-items:center; justify-content:space-between; gap:16px; min-height:54px; }
.wst-mobile-brand { display:flex; align-items:center; color:var(--wsc-text); font-weight:800; font-size:1.15rem; }
.wst-mobile-brand img { max-height:46px; width:auto; }
.wst-mobile-close { width:46px; height:46px; border:1px solid var(--wsc-border); border-radius:14px; background:#fff; color:var(--wsc-text); font-size:2rem; line-height:1; cursor:pointer; }
.wst-mobile-nav { margin-top: 44px; }
.wst-mobile-menu { list-style: none; padding: 0; display:grid; gap: 4px; }
.wst-mobile-menu li a {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  font-size: clamp(1.45rem, 7vw, 3rem); font-weight: 800; line-height:1.1;
  color: var(--wsc-text);
  border-bottom: 1px solid var(--wsc-border);
  transition: all .2s;
}
.wst-mobile-menu li a:hover { color: var(--wsc-primary); padding-left: 8px; }
.wst-mobile-menu li a i { width: 30px; text-align: center; color: var(--wsc-primary); font-size:.8em; }
.wst-mobile-menu .sub-menu { list-style:none; padding: 6px 0 10px 42px; }
.wst-mobile-menu .sub-menu a { font-size: 1.05rem; font-weight: 600; padding: 10px 0; color: var(--wsc-muted); }
.wst-mobile-overlay-actions { display:flex; gap:12px; margin-top:34px; }
.wst-mobile-overlay-actions a { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; color:#fff; background:var(--wsc-primary); }

/* Mobile bottom nav */
.wst-mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--wsc-border);
  z-index: 700;
  padding: 6px 0 env(safe-area-inset-bottom, 6px);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  justify-content: space-around;
}
.wst-mobile-nav-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  padding: 4px 10px;
  font-size: .62rem; font-weight: 600;
  color: var(--wsc-muted);
  text-decoration: none;
  transition: color .2s;
  flex: 1;
}
.wst-mobile-nav-item i { font-size: 1.1rem; }
.wst-mobile-nav-item:hover, .wst-mobile-nav-item.active { color: var(--wsc-primary); }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.wst-hero {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 45%, #06b6d4 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.wst-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.wst-hs { position: absolute; border-radius: 50%; }
.wst-hs1 { width: 500px; height: 500px; background: radial-gradient(circle,rgba(255,255,255,.06) 0%,transparent 70%); top: -150px; right: -100px; }
.wst-hs2 { width: 350px; height: 350px; background: radial-gradient(circle,rgba(255,255,255,.04) 0%,transparent 70%); bottom: -80px; left: -60px; }
.wst-dots { position: absolute; inset: 0; background-image: radial-gradient(circle,rgba(255,255,255,.07) 1px,transparent 1px); background-size: 36px 36px; }

.wst-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }

/* Eyebrow */
.wst-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: 20px; font-size: .78rem; font-weight: 600; color: #fff; margin-bottom: 16px; }
.wst-eyebrow-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: wst-blink 2s infinite; }
@keyframes wst-blink { 0%,100%{opacity:1;}50%{opacity:.3;} }

.wst-hero-title { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 14px; letter-spacing: -1.5px; }
.wst-hero-highlight { color: #bfdbfe; }
.wst-hero-sub { font-size: 1rem; color: rgba(255,255,255,.85); line-height: 1.75; max-width: 480px; margin-bottom: 28px; }

/* Hero search */
.wst-hero-search-wrap { max-width: 560px; }
.wst-hero-tabs { display: flex; gap: 4px; margin-bottom: -1px; }
.wst-hero-search-box {
  position: relative;
  display: flex; align-items: center;
  background: #fff; border-radius: 0 var(--wsc-radius) var(--wsc-radius) var(--wsc-radius);
  padding: 6px 6px 6px 16px; gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  margin-bottom: 14px;
}
.wst-hero-search-box i { color: var(--wsc-muted); }
.wst-hero-search-box input { flex: 1; border: none; outline: none; font-size: .95rem; font-family: var(--wsc-font); color: var(--wsc-text); }
.wst-search-btn { background: var(--wsc-primary); color: #fff; border: none; padding: 11px 20px; border-radius: 8px; font-weight: 600; font-size: .87rem; cursor: pointer; font-family: var(--wsc-font); transition: background .2s; white-space: nowrap; }
.wst-search-btn:hover { background: var(--wsc-primary-dark); }
.wst-popular-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.wst-popular-tags span { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6); }

/* Stats */
.wst-hero-stats { display: flex; gap: 0; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: var(--wsc-radius); overflow: hidden; margin-top: 24px; }
.wst-stat { flex: 1; padding: 14px 20px; border-right: 1px solid rgba(255,255,255,.15); text-align: center; }
.wst-stat:last-child { border-right: none; }
.wst-stat-num   { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.wst-stat-label { font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .5px; margin-top: 3px; }

/* Hero visual */
.wst-hero-visual { position: relative; min-height: 360px; }
.wst-hero-card-main {
  background: #fff; border-radius: 20px; padding: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
  position: relative; z-index: 2;
}
.wst-hc-icon { font-size: 2rem; margin-bottom: 8px; }
.wst-hc-title { font-size: 1rem; font-weight: 700; margin-bottom: 3px; color: var(--wsc-text); }
.wst-hc-sub   { font-size: .78rem; color: var(--wsc-muted); margin-bottom: 16px; }
.wst-hc-item  { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px solid var(--wsc-border); }
.wst-hc-item-av { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: .8rem; flex-shrink: 0; }
.wst-hc-item-info { flex: 1; font-size: .82rem; font-weight: 500; color: var(--wsc-text); }
.wst-hc-item-price { font-size: .85rem; font-weight: 700; color: var(--wsc-primary); }

/* Floating badges */
.wst-float-badge {
  position: absolute; background: #fff; border-radius: 30px;
  padding: 8px 14px; font-size: .78rem; font-weight: 600;
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border: 1px solid var(--wsc-border);
  animation: wst-float 4s ease-in-out infinite;
  z-index: 3; white-space: nowrap;
}
@keyframes wst-float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.wst-fb1 { top: -20px; right: 0px; animation-delay: 0s; }
.wst-fb2 { bottom: 80px; right: -10px; animation-delay: 1.3s; }
.wst-fb3 { top: 50%; left: -10px; animation-delay: 2.6s; }

/* ══════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════ */
.wst-section { padding: 60px 0; }
.wst-bg-light { background: #f0f6ff; }
.wst-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.wst-section-title { font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; gap: 10px; margin: 0; }

/* Filter tabs for homepage sections */
.wst-filter-tabs, .wst-ftabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.wst-ftab {
  padding: 7px 18px; border-radius: 20px;
  font-size: .82rem; font-weight: 600;
  border: 1.5px solid var(--wsc-border); background: #fff;
  color: var(--wsc-muted); cursor: pointer; transition: all .2s;
}
.wst-ftab:hover, .wst-ftab.on { background: var(--wsc-primary); color: #fff; border-color: var(--wsc-primary); }

/* ══════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════ */
.wst-cta-banner {
  background: linear-gradient(135deg, var(--wsc-primary), var(--wsc-accent));
  padding: 56px 0;
}
.wst-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.wst-cta-inner h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin: 0 0 8px; }
.wst-cta-inner p  { color: rgba(255,255,255,.8); font-size: .95rem; margin: 0; }
.wst-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.wsc-btn-white { background: #fff; color: var(--wsc-primary); box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.wsc-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.18); }

/* ══════════════════════════════════════════════
   WHY GRID
   ══════════════════════════════════════════════ */
.wst-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wst-why-item {
  background: #fff; border-radius: var(--wsc-radius); padding: 28px 24px;
  border: 1.5px solid var(--wsc-border); box-shadow: var(--wsc-shadow);
  text-align: center; transition: all .25s;
}
.wst-why-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(37,99,235,.1); }
.wst-why-icon { width: 56px; height: 56px; background: linear-gradient(135deg,#eff6ff,#dbeafe); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--wsc-primary); font-size: 1.4rem; margin: 0 auto 16px; }
.wst-why-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.wst-why-item p  { font-size: .85rem; color: var(--wsc-muted); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════════════ */
.wst-contact-section { background: #f8fafc; }
.wst-contact-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.wst-contact-home-info { padding: 28px; background: #fff; border-radius: var(--wsc-radius); border: 1.5px solid var(--wsc-border); box-shadow: var(--wsc-shadow); }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.wst-footer { background: #0f172a; color: #94a3b8; margin-top: 0; }
.wst-footer-main { padding: 60px 0 40px; }
.wst-footer-col {}
.wst-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.wst-footer-logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg,var(--wsc-primary),var(--wsc-accent)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .9rem; }
.wst-footer-logo-name { font-size: 1.05rem; font-weight: 800; color: #fff; }
.wst-footer-logo img  { height: 36px; }
.wst-footer-desc { font-size: .85rem; line-height: 1.65; margin-bottom: 16px; max-width: 260px; }
.wst-footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: .85rem; margin-bottom: 8px; text-decoration: none; color: #94a3b8; }
.wst-footer-contact-item i { color: var(--wsc-primary); margin-top: 2px; width: 14px; flex-shrink: 0; }
.wst-footer-contact-item:hover { color: #fff; }
.wst-footer-social { display: flex; gap: 8px; margin-top: 16px; }

.wst-footer-heading { font-size: .85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; display: flex; align-items: center; gap: 7px; }
.wst-footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.wst-footer-links li a { display: flex; align-items: center; gap: 7px; font-size: .85rem; color: #94a3b8; text-decoration: none; transition: color .2s; }
.wst-footer-links li a:hover { color: #fff; }
.wst-footer-links li a i { font-size: .7rem; color: var(--wsc-primary); }

.wst-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; }
.wst-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .8rem; }
.wst-footer-bottom a { color: #94a3b8; }
.wst-footer-bottom a:hover { color: #fff; }
.wst-footer-bottom-links { display: flex; gap: 16px; }

/* Widget title in footer */
.footer-widget-title { font-size: .85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; }
.widget { color: #94a3b8; font-size: .85rem; }
.widget a { color: #94a3b8; }
.widget a:hover { color: #fff; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .wst-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .wst-hero-visual { display: none; }
  .wst-why-grid { grid-template-columns: repeat(2, 1fr); }
  .wst-contact-home-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .wst-container { padding: 0 16px; }
  .wst-topbar { display: none; }
  /* Nav */
  .wst-nav-links  { display: none; }
  .wst-nav-icon, .wst-nav-phone { width: 38px; height: 38px; }
  .wst-hamburger  { display: flex; }
  .wst-nav-search { display: none; }
  /* Hero */
  .wst-hero { padding: 48px 0 40px; }
  .wst-hero-title { font-size: 1.8rem; }
  .wst-hero-stats { flex-wrap: wrap; }
  .wst-stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  /* Sections */
  .wst-section { padding: 40px 0; }
  .wst-why-grid { grid-template-columns: 1fr; }
  .wst-cta-inner { flex-direction: column; text-align: center; }
  /* Footer */
  body { padding-bottom: 64px; } /* space for mobile nav */
  .wst-mobile-bottom-nav { display: flex; }
  .wsc-floating-btns { bottom: 80px; }
}
@media (max-width: 480px) {
  .wst-nav-search { display: none; }
  .wst-hero-title { font-size: 1.5rem; }
  .wst-cta-btns { flex-direction: column; }
  .wst-cta-btns .wsc-btn { width: 100%; }
}

/* ══════════════════════════════════════════════
   EYEBROW BADGES (section labels)
   ══════════════════════════════════════════════ */
.wst-ey {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.wst-ey-blue   { background: #dbeafe; color: #1d4ed8; }
.wst-ey-green  { background: #d1fae5; color: #065f46; }
.wst-ey-orange { background: #fef3c7; color: #92400e; }
.wst-ey-purple { background: #ede9fe; color: #5b21b6; }

/* ══════════════════════════════════════════════
   HERO SEARCH TYPE TABS
   ══════════════════════════════════════════════ */
.wst-type-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wst-type-tab i { font-size: .8rem; }

/* ══════════════════════════════════════════════
   SECTION FILTER TABS — per-section
   ══════════════════════════════════════════════ */
.wst-filter-tabs[data-section] .wst-ftab {
  font-size: .8rem;
}

/* ══════════════════════════════════════════════
   SECTION DIVIDERS
   ══════════════════════════════════════════════ */
#sec-giao-dien,
#sec-moi,
#sec-dich-vu { background: #fff; }

#sec-plugin,
#sec-noi-bat { background: var(--wsc-bg, #f8fafc); }


/* Bizcarecom typography + menu fixes */
h1,h2,h3,h4,h5,h6,.wst-logo-name,.wst-section-title,.wst-hero-title,.widget-title,.footer-widget-title{font-family:var(--wsc-heading-font);font-weight:500!important;}
p,.wst-hero-sub,.wst-logo-sub,.wsc-card-tagline,.widget,body{font-family:var(--wsc-font);}
.wst-menu a,.wst-mobile-menu a{text-decoration:none!important;border-bottom-color:transparent!important;}
.wst-menu>li>a:hover,.wst-menu>li.current-menu-item>a,.wst-menu>li.current-menu-ancestor>a{border-bottom-color:transparent!important;}
.wst-menu>.menu-item-has-children>a::after{content:"+";display:inline-flex;margin-left:7px;font-family:var(--wsc-font);font-weight:500;color:currentColor;line-height:1;}
.wst-menu .sub-menu .menu-item-has-children>a::after{content:"+";float:right;margin-left:12px;font-weight:500;}
.wst-menu .sub-menu .sub-menu{top:0;left:100%;margin-left:8px;}
.wst-mobile-menu>.menu-item-has-children>a::after{content:"+";margin-left:auto;font-family:var(--wsc-font);font-weight:500;}

/* Blog single/archive sidebar + related posts */
.wst-content-wrap{padding-top:36px;padding-bottom:60px}.wst-layout-with-sidebar{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:32px;align-items:start}.wst-main-content{min-width:0}.wst-sidebar{position:sticky;top:92px}.wst-single-article,.wst-sidebar-box,.wst-list-card{background:#fff;border:1px solid #e2e8f0;border-radius:16px;box-shadow:0 8px 28px rgba(15,45,84,.06)}.wst-single-article{padding:32px}.wst-single-article h1{font-size:32px;line-height:1.22;margin:0 0 12px;color:#0f172a}.wst-post-meta{display:flex;gap:14px;flex-wrap:wrap;font-size:13px;color:#64748b;margin-bottom:18px}.wst-post-meta a{color:#2563eb;text-decoration:none}.wst-single-thumb{margin:0 0 24px;border-radius:14px;overflow:hidden}.wst-single-thumb img{width:100%;height:auto;display:block}.entry-content{font-size:16px;line-height:1.78;color:#334155}.entry-content p{margin:0 0 1em}.wst-tags{margin-top:24px;padding-top:18px;border-top:1px solid #e2e8f0}.wst-tags a{display:inline-flex;margin:0 6px 6px 0;padding:6px 10px;border-radius:999px;background:#eff6ff;color:#2563eb;text-decoration:none;font-size:13px}.wst-sidebar-box,.widget{padding:20px;margin-bottom:18px}.wst-sidebar-box .widget-title,.widget-title{font-size:18px;margin:0 0 14px;color:#0f172a}.wst-sidebar-list{list-style:none;margin:0;padding:0}.wst-sidebar-list li+li{border-top:1px solid #edf2f7}.wst-sidebar-list a{display:block;padding:9px 0;color:#334155;text-decoration:none;font-weight:500}.wst-sidebar-list a:hover{color:#2563eb}.wst-sidebar-posts{display:grid;gap:12px}.wst-side-post{display:grid;grid-template-columns:70px 1fr;gap:12px;align-items:center;text-decoration:none}.wst-side-post img{width:70px;height:54px;object-fit:cover;border-radius:10px;background:#f1f5f9}.wst-side-post strong{display:block;color:#0f172a;font-size:14px;line-height:1.35;font-weight:500}.wst-side-post small{display:block;color:#64748b;margin-top:4px}.wst-sidebar-search .search-form{display:flex;gap:8px}.wst-sidebar-search input[type=search]{min-width:0;flex:1;border:1px solid #dbe3ef;border-radius:10px;padding:9px 10px}.wst-sidebar-search input[type=submit]{border:0;border-radius:10px;background:#2563eb;color:#fff;padding:9px 12px;font-weight:500}.wst-related{margin-top:28px}.wst-related h2{font-size:24px;margin:0 0 16px;color:#0f172a}.wst-related-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.wst-related-card{background:#fff;border:1px solid #e2e8f0;border-radius:14px;overflow:hidden;box-shadow:0 8px 24px rgba(15,45,84,.05)}.wst-related-thumb{display:block;aspect-ratio:16/10;background:#f1f5f9}.wst-related-thumb img{width:100%;height:100%;object-fit:cover}.wst-related-body{padding:14px}.wst-related-body h3{font-size:16px;line-height:1.35;margin:0 0 6px}.wst-related-body a{text-decoration:none;color:#0f172a}.wst-related-date{font-size:12px;color:#64748b}.wst-archive-head{margin-bottom:22px}.wst-archive-head h1{font-size:32px;line-height:1.2;margin:0 0 8px;color:#0f172a}.wst-archive-desc{color:#64748b}.wst-post-list{display:grid;gap:18px}.wst-list-card{display:grid;grid-template-columns:240px 1fr;overflow:hidden;padding:0}.wst-list-thumb{display:block;min-height:160px;background:#f1f5f9}.wst-list-thumb img{width:100%;height:100%;object-fit:cover}.wst-list-body{padding:20px}.wst-list-body h2{font-size:22px;line-height:1.3;margin:0 0 8px}.wst-list-body h2 a{text-decoration:none;color:#0f172a}.wst-list-excerpt{color:#475569;line-height:1.65}.wst-pagination{margin-top:24px}.wst-pagination .page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:36px;height:36px;margin:0 3px;border-radius:10px;border:1px solid #dbe3ef;text-decoration:none;color:#334155}.wst-pagination .current{background:#2563eb;color:#fff;border-color:#2563eb}@media(max-width:900px){.wst-layout-with-sidebar{grid-template-columns:1fr}.wst-sidebar{position:static}.wst-list-card{grid-template-columns:1fr}.wst-list-thumb{aspect-ratio:16/9}.wst-related-grid{grid-template-columns:1fr}.wst-single-article{padding:22px}.wst-single-article h1,.wst-archive-head h1{font-size:26px}}

/* ══════════════════════════════════════════════
   Bizcare final layout fixes
   ══════════════════════════════════════════════ */
.wst-header .wst-container{max-width:none;width:100%;padding-left:34px;padding-right:34px;}
.wst-nav-inner{height:68px;gap:14px;}
.wst-logo{margin-right:22px;}
.wst-nav-links{min-width:0;}
.wst-menu{min-width:0;flex-wrap:nowrap;}
.wst-menu>li>a{height:68px;padding:0 12px;font-size:.86rem;border-bottom:0!important;text-decoration:none!important;}
.wst-menu>li>a:hover,.wst-menu>li.current-menu-item>a,.wst-menu>li.current-menu-ancestor>a{border-bottom:0!important;text-decoration:none!important;}
.wst-menu>li.menu-item-has-children>a::after,.wst-menu .sub-menu li.menu-item-has-children>a::after{content:"+";display:inline-flex;margin-left:7px;font-family:var(--wsc-font);font-weight:500;color:currentColor;}
.wst-menu .sub-menu li.menu-item-has-children>a::after{float:right;margin-left:12px;}
.wst-nav-search{width:170px;}
.wst-nav-icon{width:38px;height:38px;border-radius:8px;}
@media(max-width:1180px){.wst-nav-search{width:150px}.wst-menu>li>a{padding:0 9px;font-size:.82rem}.wst-logo{margin-right:10px}}
@media(max-width:980px){.wst-nav-links{display:none}.wst-hamburger{display:flex}.wst-nav-search{display:flex;width:210px}}
@media(max-width:768px){.wst-header .wst-container{padding-left:16px;padding-right:16px}.wst-nav-search{display:none}.wst-nav-inner{height:62px}.wst-mobile-menu>.menu-item-has-children>a::after{content:"+";margin-left:auto;font-family:var(--wsc-font);font-weight:500}}

/* Footer fix */
.wsc-footer-grid{display:grid;grid-template-columns:1.35fr 1fr 1fr 1fr;gap:34px;align-items:start;}
.wst-footer-logo img{max-height:42px;width:auto;object-fit:contain;}
@media(max-width:900px){.wsc-footer-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}}
@media(max-width:520px){.wsc-footer-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.wst-footer-main{padding:38px 0 26px}.wst-footer-heading{font-size:.78rem}.wst-footer-links li a,.wst-footer-contact-item,.wst-footer-desc{font-size:.78rem}}

/* Blog/sidebar natural layout */
.wst-content-wrap{padding-top:36px;padding-bottom:64px;}
.wst-layout-with-sidebar{display:grid!important;grid-template-columns:minmax(0,calc(100% - 360px)) 328px!important;gap:32px!important;align-items:start;}
.wst-main-content{min-width:0;width:100%;}
.wst-sidebar{width:328px;max-width:328px;position:sticky;top:92px;}
.wst-sidebar-box,.wst-sidebar .widget{padding:18px!important;border-radius:12px!important;}
.wst-sidebar-posts{display:grid!important;gap:14px!important;}
.wst-side-post{display:grid!important;grid-template-columns:92px minmax(0,1fr)!important;gap:12px!important;align-items:center!important;padding:0!important;}
.wst-side-post img{width:92px!important;height:62px!important;object-fit:cover!important;border-radius:6px!important;display:block!important;}
.wst-side-post span{min-width:0;display:block;}
.wst-side-post strong{font-size:13.5px!important;line-height:1.35!important;font-weight:500!important;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.wst-list-card{grid-template-columns:260px minmax(0,1fr)!important;border-radius:12px!important;}
.wst-list-thumb{min-height:166px!important;}
@media(max-width:980px){.wst-layout-with-sidebar{grid-template-columns:1fr!important}.wst-sidebar{position:static;width:auto;max-width:none}.wst-list-card{grid-template-columns:1fr!important}.wst-list-thumb{aspect-ratio:16/9}}

/* Homepage */
.dbz-home{background:#fff;color:#1e293b;font-family:var(--wsc-font);}
.dbz-home h1,.dbz-home h2,.dbz-home h3{font-family:var(--wsc-heading-font);font-weight:500!important;letter-spacing:-.02em;}
.dbz-hero{position:relative;min-height:440px;display:flex;align-items:center;background:#061b3f;background-image:linear-gradient(90deg,rgba(3,14,38,.92) 0%,rgba(4,22,58,.72) 42%,rgba(4,22,58,.24) 100%),var(--dbz-hero-image);background-size:cover;background-position:center right;overflow:hidden;color:#fff;}
.dbz-hero-overlay{position:absolute;inset:0;background:radial-gradient(circle at 78% 28%,rgba(37,99,235,.28),transparent 32%);pointer-events:none;}
.dbz-hero-inner{position:relative;z-index:2;width:100%;padding-top:72px;padding-bottom:72px;}
.dbz-hero-content{max-width:640px;}
.dbz-kicker{display:inline-flex;align-items:center;padding:5px 12px;border:1px solid rgba(255,255,255,.28);border-radius:999px;color:#dbeafe;font-size:12px;text-transform:uppercase;letter-spacing:.08em;margin-bottom:16px;}
.dbz-hero h1{font-size:clamp(34px,4.6vw,58px);line-height:1.04;margin:0 0 18px;color:#fff;}
.dbz-hero p{font-size:16px;line-height:1.72;max-width:570px;color:#dbeafe;margin:0 0 24px;}
.dbz-hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:18px;}
.dbz-btn{min-height:43px;padding:0 20px;border-radius:4px;display:inline-flex;align-items:center;justify-content:center;font-weight:500;text-decoration:none!important;border:1px solid transparent;}
.dbz-btn-primary{background:#2563eb;color:#fff;}
.dbz-btn-light{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.22);backdrop-filter:blur(8px);}
.dbz-hero-points{display:flex;gap:18px;flex-wrap:wrap;font-size:13px;color:#bfdbfe;}
.dbz-section{padding:34px 0;}
.dbz-alt{background:#f8fbff;}
.dbz-section-head{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:18px;}
.dbz-section-head h2{font-size:24px;line-height:1.25;margin:0;color:#0f172a;display:flex;align-items:center;gap:9px;}
.dbz-section-head h2 span{color:#334155;}
.dbz-section-head a{color:#2563eb;font-size:14px;font-weight:500;text-decoration:none!important;white-space:nowrap;}
.dbz-product-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:16px;}
.dbz-product-card{position:relative;background:#fff;border:1px solid #dbe6f3;border-radius:2px;box-shadow:0 6px 18px rgba(15,45,84,.055);padding:11px;min-height:0;overflow:hidden;display:flex;flex-direction:column;}
.dbz-product-card:hover{box-shadow:0 10px 28px rgba(15,45,84,.09);}
.dbz-card-badge{position:absolute;left:10px;top:10px;z-index:2;background:#2563eb;color:#fff;border-radius:2px;padding:2px 7px;font-size:10px;line-height:1.4;}
.dbz-card-image{height:120px;border-radius:0;background:#f1f5f9;display:grid;place-items:center;overflow:hidden;margin-bottom:10px;color:#2563eb;text-decoration:none!important;}
.dbz-card-image img{width:100%;height:100%;object-fit:cover;display:block;}
.dbz-app-logo-text{font-size:22px;font-weight:500;letter-spacing:-.04em;color:#2563eb;}
.dbz-product-card h3{font-size:14px!important;line-height:1.32!important;margin:0 0 5px!important;color:#0f172a;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:36px;}
.dbz-product-card h3 a{color:inherit;text-decoration:none!important;}
.dbz-card-price{font-size:13px!important;line-height:1.35;color:#2563eb;font-weight:500;margin-top:auto;}
.dbz-card-price small{font-size:11px;color:#64748b;font-weight:400;}
.dbz-card-price del{color:#94a3b8;font-size:11px;margin-right:4px;}
.dbz-card-price .consult{font-size:13px;color:#2563eb;}
.dbz-video-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:16px;}
.dbz-video{background:#fff;border:1px solid #dbe6f3;border-radius:2px;overflow:hidden;box-shadow:0 6px 18px rgba(15,45,84,.055);text-decoration:none!important;color:#0f172a;}
.dbz-video-thumb{height:92px;background:linear-gradient(135deg,#0f172a,#2563eb);position:relative;}
.dbz-play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:42px;height:42px;border-radius:50%;background:rgba(0,0,0,.45);border:2px solid rgba(255,255,255,.8);}
.dbz-play:before{content:"";position:absolute;left:16px;top:11px;border-left:12px solid #fff;border-top:8px solid transparent;border-bottom:8px solid transparent;}
.dbz-duration{position:absolute;right:7px;bottom:7px;background:rgba(0,0,0,.65);color:#fff;border-radius:2px;padding:2px 6px;font-size:11px;}
.dbz-video h3{font-size:13px!important;line-height:1.35;margin:10px 11px 4px;color:#0f172a;}
.dbz-video p{font-size:12px;color:#64748b;margin:0 11px 11px;}
.dbz-news-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;}
.dbz-news-card{background:#fff;border:1px solid #dbe6f3;border-radius:2px;overflow:hidden;box-shadow:0 6px 18px rgba(15,45,84,.055);}
.dbz-news-thumb{display:block;aspect-ratio:16/9;background:#eef2f7;}
.dbz-news-thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.dbz-news-body{padding:13px;}
.dbz-news-body h3{font-size:15px!important;line-height:1.35;margin:0 0 6px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.dbz-news-body h3 a{color:#0f172a;text-decoration:none!important;}
.dbz-news-body time{font-size:12px;color:#64748b;}
.dbz-empty{grid-column:1/-1;color:#64748b;margin:0;}
.dbz-review-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;}
.dbz-review-card{background:#fff;border:1px solid #dbe6f3;border-radius:2px;padding:22px;box-shadow:0 6px 18px rgba(15,45,84,.055);}
.dbz-stars{color:#f59e0b;font-size:15px;letter-spacing:1px;margin-bottom:10px;}
.dbz-review-card p{font-size:14px;line-height:1.65;color:#334155;margin:0 0 14px;}
.dbz-review-card strong{display:block;color:#0f172a;font-weight:500;margin-bottom:2px;}
.dbz-review-card span{font-size:12px;color:#64748b;}
@media(max-width:1100px){.dbz-product-grid,.dbz-video-grid{grid-template-columns:repeat(4,minmax(0,1fr));}.dbz-card-image{height:112px}}
@media(max-width:860px){.dbz-hero{min-height:380px;background-position:center}.dbz-product-grid,.dbz-video-grid,.dbz-news-grid,.dbz-review-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.dbz-section-head h2{font-size:21px}}
@media(max-width:560px){.dbz-product-grid,.dbz-video-grid,.dbz-news-grid,.dbz-review-grid{grid-template-columns:1fr}.dbz-section-head{align-items:flex-start}.dbz-hero-inner{padding-top:48px;padding-bottom:48px}.dbz-hero h1{font-size:32px}.dbz-card-image{height:160px}}

/* Banner update: user-provided background + search box on right */
.dbz-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) 370px;gap:34px;align-items:center;}
.dbz-hero-search-panel{display:flex;justify-content:flex-end;}
.dbz-search-card{width:100%;max-width:370px;background:rgba(255,255,255,.96);border:1px solid rgba(219,234,254,.85);box-shadow:0 18px 48px rgba(2,8,23,.18);border-radius:10px;padding:22px;color:#0f172a;backdrop-filter:blur(8px);}
.dbz-search-kicker{font-size:12px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:#2563eb;margin-bottom:8px;}
.dbz-search-card h3{font-size:24px;line-height:1.2;margin:0 0 16px;color:#0f172a;}
.dbz-search-form{display:grid;grid-template-columns:22px minmax(0,1fr) auto;align-items:center;gap:10px;border:1px solid #dbe6f3;background:#fff;border-radius:6px;padding:10px 10px 10px 12px;}
.dbz-search-icon{font-size:18px;line-height:1;color:#64748b;display:inline-flex;align-items:center;justify-content:center;}
.dbz-search-form input[type="text"]{border:0;outline:0;min-width:0;font-family:var(--wsc-font);font-size:14px;color:#0f172a;background:transparent;}
.dbz-search-form button{height:40px;padding:0 16px;border:0;border-radius:4px;background:#2563eb;color:#fff;font-family:var(--wsc-font);font-size:14px;font-weight:500;cursor:pointer;white-space:nowrap;}
.dbz-search-form button:hover{background:#1d4ed8;}
.dbz-search-tags{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin-top:14px;}
.dbz-search-tags span{font-size:12px;color:#64748b;}
.dbz-search-tags a{display:inline-flex;align-items:center;height:28px;padding:0 10px;border-radius:999px;background:#eff6ff;color:#2563eb;font-size:12px;font-weight:500;text-decoration:none!important;}
.dbz-search-contact{display:grid;gap:8px;margin-top:16px;padding-top:16px;border-top:1px solid #e2e8f0;}
.dbz-search-contact a{font-size:13px;color:#334155;text-decoration:none!important;}
.dbz-search-contact strong{font-weight:500;color:#0f172a;}
@media(max-width:980px){.dbz-hero-grid{grid-template-columns:1fr}.dbz-hero-search-panel{justify-content:flex-start}.dbz-search-card{max-width:560px}}
@media(max-width:560px){.dbz-search-form{grid-template-columns:18px minmax(0,1fr)}.dbz-search-form button{grid-column:1/-1;width:100%}.dbz-search-card h3{font-size:21px}}
