/*
Theme Name: K Office v3
Theme URI: https://koffice.vn
Author: K Office - Kimland
Description: Văn phòng dịch vụ TP.HCM — Balance Space. Chuẩn Design System 8pt grid.
Version: 3.0.0
License: Private
Text Domain: koffice
*/

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Colors */
  --orange:        #EF9F27;
  --orange-dark:   #412402;
  --orange-light:  #FAEEDA;
  --orange-mid:    #BA7517;
  --blue:          #0430B4;
  --blue-dark:     #021078;
  --dark:          #141414;
  --body-text:     #444444;
  --muted:         #888888;
  --white:         #FBFFFE;
  --surface:       #F4F3EE;
  --cool-surface:  #EEF0F2;
  --border:        rgba(20,20,20,0.10);
  --border-med:    rgba(20,20,20,0.18);

  /* 8pt Spacing */
  --s4:  4px;
  --s8:  8px;
  --s12: 12px;
  --s16: 16px;
  --s24: 24px;
  --s32: 32px;
  --s48: 48px;
  --s64: 64px;
  --s80: 80px;

  /* Typography */
  --font: 'Inter', 'SVN-Gilroy', system-ui, Arial, sans-serif;

  /* Radius */
  --r4:  4px;
  --r8:  8px;
  --r12: 12px;
  --r16: 16px;
  --r100: 100px;

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   220ms ease;
  --t-slow:   350ms ease;

  /* Layout */
  --max-w: 1180px;
  --pad-x: 24px;
  --header-h: 72px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--t-base);
}
a:hover { color: var(--orange); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea {
  font-family: var(--font);
  font-size: 1rem;
}
h1, h2, h3, h4, h5 {
  line-height: 1.25;
  color: var(--dark);
  font-weight: 700;
}

/* ============================================================
   3. TYPOGRAPHY SCALE
   ============================================================ */
.t-display { font-size: clamp(2.4rem, 5.5vw, 3.5rem); font-weight: 700; line-height: 1.15; }
.t-h1      { font-size: clamp(2rem,   4.5vw, 2.75rem); font-weight: 700; line-height: 1.2; }
.t-h2      { font-size: clamp(1.5rem, 3vw,   2rem);    font-weight: 700; line-height: 1.25; }
.t-h3      { font-size: clamp(1.15rem,2vw,   1.35rem); font-weight: 600; line-height: 1.3; }
.t-h4      { font-size: 1.05rem; font-weight: 600; }
.t-body    { font-size: 1rem;    line-height: 1.75; color: var(--body-text); }
.t-small   { font-size: 0.9rem;  line-height: 1.6; }
.t-caption { font-size: 0.8rem;  line-height: 1.5; color: var(--muted); }
.t-label   {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.t-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
}

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section       { padding: var(--s80) 0; }
.section-sm    { padding: var(--s48) 0; }
.section-white  { background: var(--white); }
.section-surface{ background: var(--surface); }
.section-blue  { background: var(--blue); }
.section-dark  { background: var(--dark); }

/* Grid system */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--s32); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--s24); }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--s24); }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: var(--s48); }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: var(--s48); }

/* Flex utilities */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-start   { display: flex; align-items: flex-start; }
.flex-col     { display: flex; flex-direction: column; }
.gap-8  { gap: var(--s8); }
.gap-12 { gap: var(--s12); }
.gap-16 { gap: var(--s16); }
.gap-24 { gap: var(--s24); }
.gap-32 { gap: var(--s32); }

/* Spacing utilities */
.mt-8  { margin-top: var(--s8); }
.mt-12 { margin-top: var(--s12); }
.mt-16 { margin-top: var(--s16); }
.mt-24 { margin-top: var(--s24); }
.mt-32 { margin-top: var(--s32); }
.mt-48 { margin-top: var(--s48); }
.mb-8  { margin-bottom: var(--s8); }
.mb-16 { margin-bottom: var(--s16); }
.mb-24 { margin-bottom: var(--s24); }
.mb-40 { margin-bottom: 40px; }
.mb-56 { margin-bottom: 56px; }

/* Text alignment */
.text-center { text-align: center; }
.text-left   { text-align: left; }

/* Color utilities */
.c-orange { color: var(--orange); }
.c-blue   { color: var(--blue); }
.c-dark   { color: var(--dark); }
.c-muted  { color: var(--muted); }
.c-white  { color: var(--white); }

/* ============================================================
   5. SECTION HEADERS
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  background: var(--orange-light);
  color: var(--orange-mid);
  padding: 4px 12px;
  border-radius: var(--r4);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--s12);
}
.section-label.on-dark {
  background: rgba(239,159,39,0.15);
  color: var(--orange);
}
.section-header { margin-bottom: 56px; }
.section-header .section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-top: var(--s12);
}
.section-header.text-center .section-sub { margin: var(--s12) auto 0; }
.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s16);
  margin-bottom: 48px;
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
  height: 48px;
  padding: 0 var(--s24);
  border-radius: var(--r8);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--t-base), background var(--t-base), color var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--orange);
  color: var(--orange-dark);
  box-shadow: 0 4px 16px rgba(239,159,39,0.3);
}
.btn-primary:hover {
  background: #d88e1f;
  color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239,159,39,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-secondary:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--orange);
  color: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--orange);
  border-color: transparent;
  padding: 0;
  height: auto;
}
.btn-ghost:hover { color: var(--orange-mid); gap: var(--s12); }

.btn-sm { height: 40px; padding: 0 var(--s16); font-size: 0.88rem; }
.btn-lg { height: 56px; padding: 0 var(--s32); font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ============================================================
   7. BADGE / LABEL CHIPS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--r100);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}
.badge-orange   { background: var(--orange-light); color: var(--orange-mid); }
.badge-blue     { background: #E6F1FB; color: #0C447C; }
.badge-green    { background: #EAF3DE; color: #27500A; }
.badge-red      { background: #FCEBEB; color: #791F1F; }
.badge-dark     { background: var(--dark); color: var(--white); }

/* ============================================================
   8. HEADER & NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(251,255,254,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
}
#site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(4,48,180,0.07);
}
#site-header.hero-mode {
  background: transparent;
}
#site-header.hero-mode .site-logo span { color: var(--white); }
#site-header.hero-mode .site-logo span em { color: var(--orange); }
#site-header.hero-mode .main-nav a { color: rgba(255,255,255,0.88); }
#site-header.hero-mode .main-nav a:hover { color: var(--orange); }
#site-header.hero-mode .btn-outline-header { border-color: rgba(255,255,255,0.5); color: var(--white); }
#site-header.hero-mode .btn-outline-header:hover { background: var(--white); color: var(--blue); }
#site-header.hero-mode.scrolled { background: rgba(251,255,254,0.97); }
#site-header.hero-mode.scrolled .site-logo span { color: var(--dark); }
#site-header.hero-mode.scrolled .main-nav a { color: var(--dark); }
#site-header.hero-mode.scrolled .btn-outline-header { border-color: var(--blue); color: var(--blue); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.site-logo span {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.site-logo span em {
  color: var(--orange);
  font-style: normal;
}
.custom-logo-link { display: flex; align-items: center; }
.custom-logo { height: 40px !important; width: auto !important; max-width: 180px !important; }

/* Main nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.main-nav a {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 var(--s12);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--r8);
  transition: color var(--t-base), background var(--t-base);
}
.main-nav a:hover { color: var(--blue); background: var(--cool-surface); }
.main-nav a.active { color: var(--blue); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--s8);
  flex-shrink: 0;
}
.btn-outline-header {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 var(--s16);
  border: 1.5px solid var(--blue);
  border-radius: var(--r8);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  transition: all var(--t-base);
  white-space: nowrap;
}
.btn-outline-header:hover { background: var(--blue); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--r8);
  cursor: pointer;
  transition: background var(--t-base);
}
.hamburger:hover { background: var(--cool-surface); }
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: var(--s24);
  transform: translateX(100%);
  transition: transform var(--t-slow);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav ul { flex-direction: column; gap: var(--s4); }
.mobile-menu nav a {
  display: block;
  padding: var(--s12) var(--s16);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--r8);
  transition: background var(--t-base), color var(--t-base);
}
.mobile-menu nav a:hover { background: var(--cool-surface); color: var(--blue); }
.mobile-menu .mobile-cta { margin-top: var(--s24); display: flex; flex-direction: column; gap: var(--s12); }

/* ============================================================
   9. HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
  background: linear-gradient(140deg, #021078 0%, #0430B4 55%, #0a1a60 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  transition: opacity 0.6s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(2,16,120,0.94) 0%, rgba(4,48,180,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s8);
  background: rgba(239,159,39,0.12);
  border: 1px solid rgba(239,159,39,0.35);
  color: var(--orange);
  padding: 6px var(--s16);
  border-radius: var(--r100);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: var(--s24);
  letter-spacing: 0.3px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: var(--s16);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  line-height: 1.15;
}
.hero-content h1 span { color: var(--orange); }
.hero-content .hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: var(--s40);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s12);
  margin-bottom: var(--s48);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s32);
  padding-top: var(--s40);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat {}
.hero-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.3px;
}

/* ============================================================
   10. SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r16);
  padding: var(--s32);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 16px 48px rgba(239,159,39,0.12);
}
.service-card.featured {
  border-color: var(--orange);
  position: relative;
}
.service-card.featured::before {
  content: 'Phổ biến nhất';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 14px;
  border-radius: var(--r100);
  white-space: nowrap;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--s20);
  background: var(--blue);
  flex-shrink: 0;
}
.service-card.featured .service-icon { background: var(--orange); }
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--s8);
}
.service-card > p {
  color: var(--body-text);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--s20);
}
.service-price {
  padding: var(--s12) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s20);
  font-size: 0.85rem;
  color: var(--muted);
}
.service-price strong {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
  margin-top: 2px;
}
.service-features {
  margin-bottom: var(--s24);
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--s8);
  padding: 5px 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}
.service-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange-light);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23BA7517' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
}

/* ============================================================
   11. STATS BANNER
   ============================================================ */
.stats-banner { background: var(--blue); padding: var(--s64) 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 var(--s24);
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-num {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: var(--s8);
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ============================================================
   12. PROPERTY CARDS
   ============================================================ */
.property-card {
  background: var(--white);
  border-radius: var(--r16);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(4,48,180,0.12);
}
.property-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cool-surface);
}
.property-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.property-card:hover .property-thumb img { transform: scale(1.04); }
.property-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--muted);
}
.property-badge {
  position: absolute;
  top: var(--s12); left: var(--s12);
  padding: 4px 12px;
  border-radius: var(--r100);
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-available { background: #EAF3DE; color: #27500A; }
.badge-full      { background: #FCEBEB; color: #791F1F; }

.property-body { padding: var(--s20) var(--s24) var(--s24); }
.property-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--s8);
}
.property-address {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: var(--s12);
  display: flex; align-items: flex-start; gap: 4px;
  line-height: 1.5;
}
.property-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s8);
  margin-bottom: var(--s16);
}
.property-tag {
  display: inline-block;
  background: var(--cool-surface);
  color: var(--blue);
  padding: 3px 10px;
  border-radius: var(--r100);
  font-size: 0.75rem;
  font-weight: 600;
}
.property-price {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: var(--s16);
}
.property-price strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
}
.property-actions { display: flex; gap: var(--s8); }

/* ============================================================
   13. WHY CARDS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s20);
}
.why-card {
  background: var(--white);
  border-radius: var(--r12);
  padding: var(--s24) var(--s24) var(--s24) var(--s20);
  border-left: 3px solid var(--orange);
  box-shadow: 0 2px 12px rgba(4,48,180,0.05);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.why-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 24px rgba(4,48,180,0.10);
}
.why-icon { font-size: 1.6rem; margin-bottom: var(--s12); display: block; }
.why-card h4 { color: var(--blue); font-size: 1rem; margin-bottom: var(--s8); }
.why-card p  { font-size: 0.9rem; color: #555; line-height: 1.65; }

/* ============================================================
   14. ABOUT PAGE COMPONENTS
   ============================================================ */
.page-hero {
  background: linear-gradient(140deg, #021078 0%, #0430B4 100%);
  padding: calc(var(--header-h) + 64px) 0 80px;
}
.page-hero h1, .page-hero p { color: var(--white); }
.page-hero h1 { margin-bottom: var(--s16); }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; line-height: 1.75; }
.page-hero .section-label { background: rgba(239,159,39,0.15); color: var(--orange); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s20);
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: var(--s32) var(--s24);
  text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(4,48,180,0.10); }
.value-k {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-mid);
  padding: 4px 12px;
  border-radius: var(--r4);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--s12);
}
.value-card h3 { color: var(--blue); margin-bottom: var(--s12); }
.value-card p  { font-size: 0.9rem; color: #555; line-height: 1.65; }

/* Timeline */
.timeline { padding-left: var(--s32); position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 6px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(239,159,39,0.1));
}
.timeline-item { position: relative; margin-bottom: var(--s32); }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -29px; top: 6px;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.timeline-item h4 { color: var(--blue); font-size: 1rem; margin-bottom: 6px; }
.timeline-item p  { font-size: 0.9rem; color: #555; line-height: 1.6; }

/* Pain cards — về chúng tôi */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s16); margin-top: var(--s24); }
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r12);
  padding: var(--s20);
}
.pain-num {
  display: inline-block;
  background: var(--orange);
  color: var(--orange-dark);
  width: 24px; height: 24px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center; line-height: 24px;
  margin-bottom: var(--s12);
}
.pain-card h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: var(--s8); line-height: 1.4; }
.pain-card p  { font-size: 0.85rem; color: #666; line-height: 1.6; }

/* Balance space services */
.balance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s12); margin-top: var(--s24); }
.balance-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r12);
  padding: var(--s16) var(--s20);
  transition: transform var(--t-base), border-color var(--t-base);
}
.balance-item:hover { transform: translateY(-3px); border-color: var(--orange); }
.balance-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); margin-bottom: var(--s12); }
.balance-item h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 6px; }
.balance-item p  { font-size: 0.85rem; color: #666; line-height: 1.6; }

/* Quote block */
.quote-block {
  background: var(--blue);
  border-radius: var(--r16);
  padding: var(--s32) var(--s40);
  margin-top: var(--s24);
}
.quote-block blockquote {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.55;
  font-style: italic;
}
.quote-block cite {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: var(--s12);
  font-style: normal;
}

/* ============================================================
   15. CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s64);
  align-items: start;
}
.contact-info h2 { margin-bottom: var(--s16); }
.contact-info > p { font-size: 1.05rem; line-height: 1.75; margin-bottom: var(--s32); }
.contact-items { display: flex; flex-direction: column; gap: var(--s20); }
.contact-item { display: flex; align-items: flex-start; gap: var(--s16); }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--r12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-icon.orange { background: var(--orange); color: var(--orange-dark); }
.contact-item-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-item-text span, .contact-item-text a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r16);
  padding: var(--s40);
  box-shadow: 0 4px 32px rgba(4,48,180,0.08);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { font-size: 1.3rem; margin-bottom: var(--s8); }
.contact-form-wrap > p { color: var(--muted); font-size: 0.9rem; margin-bottom: var(--s24); }

/* Form elements */
.form-group { margin-bottom: var(--s16); }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--s8);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 48px;
  padding: 0 var(--s16);
  border: 1.5px solid var(--border-med);
  border-radius: var(--r8);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  outline: none;
  -webkit-appearance: none;
}
.form-group textarea {
  height: auto;
  min-height: 110px;
  padding: var(--s12) var(--s16);
  resize: vertical;
  line-height: 1.6;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(4,48,180,0.08);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #E24B4A;
  box-shadow: 0 0 0 3px rgba(226,75,74,0.08);
}
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
  border-color: #1D9E75;
}
.form-error-msg {
  display: none;
  font-size: 0.8rem;
  color: #A32D2D;
  margin-top: 4px;
}
.form-group.has-error .form-error-msg { display: block; }
.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: var(--s12);
  text-align: center;
  line-height: 1.5;
}
.form-note a { color: var(--blue); }

/* Form message (success/error) */
#form-msg {
  display: none;
  padding: var(--s12) var(--s16);
  border-radius: var(--r8);
  margin-bottom: var(--s16);
  font-weight: 600;
  font-size: 0.9rem;
}
#form-msg.success { background: #EAF3DE; color: #27500A; border: 1px solid #97C459; }
#form-msg.error   { background: #FCEBEB; color: #791F1F; border: 1px solid #F09595; }

/* ============================================================
   16. BLOG CARDS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s24); }
.blog-card {
  background: var(--white);
  border-radius: var(--r16);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(4,48,180,0.10); }
.blog-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--cool-surface); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue), #1a4fd8);
  font-size: 2rem; color: rgba(255,255,255,0.4);
}
.blog-body { padding: var(--s20) var(--s24) var(--s24); flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  display: inline-block;
  background: rgba(4,48,180,0.07);
  color: var(--blue);
  padding: 3px 10px;
  border-radius: var(--r4);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: var(--s8);
}
.blog-body h4 { font-size: 1rem; line-height: 1.5; margin-bottom: var(--s8); flex: 1; }
.blog-body h4 a { color: var(--dark); }
.blog-body h4 a:hover { color: var(--blue); }
.blog-meta { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   17. CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--blue);
  padding: var(--s80) 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: var(--s16); }
.cta-section p  {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto var(--s40);
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s12);
}

/* ============================================================
   18. FOOTER
   ============================================================ */
#site-footer { background: var(--dark); padding: var(--s64) 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s48);
  padding-bottom: var(--s48);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: var(--s16);
}
.footer-logo em { color: var(--orange); font-style: normal; }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 280px;
}
.footer-social { display: flex; gap: var(--s8); margin-top: var(--s20); }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  border-radius: var(--r8);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none;
  transition: background var(--t-base), color var(--t-base);
}
.footer-social a:hover { background: var(--orange); color: var(--orange-dark); }
.footer-col h5 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--s16);
}
.footer-col ul li { margin-bottom: var(--s8); }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--t-base), padding-left var(--t-base);
}
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact li {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: var(--s8);
  display: flex; gap: var(--s8);
  align-items: flex-start;
  line-height: 1.5;
}
.footer-contact a { color: var(--orange); text-decoration: none; }
.footer-bottom {
  padding: var(--s20) 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: var(--s12);
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: var(--s16); }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 0.82rem; text-decoration: none; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ============================================================
   19. FLOATING BUTTONS
   ============================================================ */
.floating-btns {
  position: fixed;
  bottom: var(--s24); right: var(--s20);
  z-index: 998;
  display: flex; flex-direction: column; gap: var(--s12);
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform var(--t-base), box-shadow var(--t-base);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
.fab:active { transform: scale(0.95); }
.fab-zalo  { background: #0068FF; color: var(--white); font-size: 0.88rem; font-weight: 800; }
.fab-phone { background: var(--orange); color: var(--orange-dark); animation: fab-pulse 2.5s infinite; }

@keyframes fab-pulse {
  0%,100% { box-shadow: 0 4px 16px rgba(239,159,39,0.4); }
  50%      { box-shadow: 0 4px 24px rgba(239,159,39,0.7), 0 0 0 10px rgba(239,159,39,0); }
}

/* ============================================================
   20. COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #1a1a1a;
  padding: var(--s16) var(--s24);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s24); flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { color: rgba(255,255,255,0.78); font-size: 0.85rem; max-width: 700px; line-height: 1.5; }
#cookie-banner a { color: var(--orange); }
.cookie-actions { display: flex; gap: var(--s8); flex-shrink: 0; }
#cookie-reject {
  padding: 8px var(--s16); border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7); border-radius: var(--r8); font-size: 0.85rem;
  font-family: var(--font); cursor: pointer; transition: all var(--t-base);
  background: transparent;
}
#cookie-reject:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
#cookie-accept {
  padding: 8px var(--s16); background: var(--orange); color: var(--orange-dark);
  border-radius: var(--r8); font-size: 0.85rem; font-weight: 600;
  font-family: var(--font); cursor: pointer; border: none; transition: background var(--t-base);
}
#cookie-accept:hover { background: #d88e1f; }

/* ============================================================
   21. BREADCRUMB
   ============================================================ */
.breadcrumb { margin-bottom: var(--s16); }
.breadcrumb ol {
  display: flex; flex-wrap: wrap; gap: 6px;
  list-style: none; align-items: center;
}
.breadcrumb li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 6px;
}
.breadcrumb li:not(:last-child)::after {
  content: '/';
  color: rgba(255,255,255,0.3);
}
.breadcrumb li a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb li a:hover { color: var(--orange); }
.breadcrumb li:last-child { color: rgba(255,255,255,0.9); font-weight: 500; }

/* ============================================================
   22. SINGLE BLOG POST
   ============================================================ */
.post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333;
  max-width: 720px;
}
.post-content h2 { font-size: 1.5rem; color: var(--dark); margin: var(--s40) 0 var(--s16); }
.post-content h3 { font-size: 1.2rem; color: var(--dark); margin: var(--s32) 0 var(--s12); }
.post-content p  { margin-bottom: var(--s20); }
.post-content ul, .post-content ol { padding-left: var(--s24); margin-bottom: var(--s20); }
.post-content ul li, .post-content ol li { margin-bottom: var(--s8); list-style: disc; }
.post-content blockquote {
  border-left: 3px solid var(--orange);
  padding: var(--s16) var(--s24);
  background: var(--surface);
  border-radius: 0 var(--r8) var(--r8) 0;
  margin: var(--s24) 0;
  font-style: italic; color: #555;
}
.post-cta-box {
  background: var(--surface);
  border-radius: var(--r16);
  padding: var(--s32);
  margin-top: var(--s48);
  text-align: center;
  border: 1px solid var(--border);
}
.post-cta-box p { font-weight: 600; font-size: 1.05rem; margin-bottom: var(--s8); color: var(--dark); }
.post-cta-box .t-small { color: var(--muted); margin-bottom: var(--s20); }

/* Sidebar */
.blog-sidebar { position: sticky; top: calc(var(--header-h) + var(--s24)); }
.sidebar-card {
  background: var(--surface);
  border-radius: var(--r16);
  padding: var(--s24);
  margin-bottom: var(--s16);
}
.sidebar-card h5 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: var(--s16); }
.sidebar-card a {
  display: block;
  padding: var(--s8) 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.5;
  transition: color var(--t-base);
}
.sidebar-card a:last-child { border-bottom: none; }
.sidebar-card a:hover { color: var(--blue); }

/* ============================================================
   23. SCROLL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }

/* ============================================================
   24. RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4      { grid-template-columns: repeat(2, 1fr); }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); gap: var(--s32); }
  .stat-item + .stat-item::before { display: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.12); padding-top: var(--s32); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s32); }
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid   { grid-template-columns: repeat(2, 1fr); }
  .balance-grid{ grid-template-columns: repeat(2, 1fr); }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; gap: var(--s32); }
}

/* ============================================================
   25. RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --pad-x: 16px; --s80: 56px; --s64: 40px; }

  .section { padding: var(--s80) 0; }

  /* Nav */
  .main-nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  /* Grids → 1 col */
  .grid-2, .grid-3, .grid-4,
  .why-grid, .values-grid, .pain-grid, .balance-grid,
  .blog-grid, .contact-grid, .footer-grid,
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; gap: var(--s20); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(n+3) { padding-top: var(--s24); }

  /* Hero */
  .hero-stats { gap: var(--s20); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 360px; }

  /* Contact form */
  .contact-form-wrap { padding: var(--s24); }

  /* Footer */
  .footer-grid { padding-bottom: var(--s32); }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Buttons full-width in forms */
  #contact-form .btn-full { width: 100%; }

  /* Floating buttons */
  .fab { width: 48px; height: 48px; }

  /* Hero badge hidden on very small */
  @media (max-width: 380px) { .hero-badge { display: none; } }
}

/* ============================================================
   26. ACCESSIBILITY
   ============================================================ */
*:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   LIQUID GLASS SYSTEM — Merged from patch
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 100px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 12px rgba(4,48,180,0.08), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-lg:     0 12px 32px rgba(4,48,180,0.10), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-orange: 0 6px 20px rgba(239,159,39,0.28);
}

/* --- GLOBAL --- */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* --- BUTTONS --- */
.btn {
  border-radius: var(--r-md) !important;
  height: auto !important;
  padding: 12px 24px !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1px !important;
  transition: transform 0.18s cubic-bezier(.34,1.56,.64,1),
              box-shadow 0.18s ease,
              background 0.15s ease,
              border-color 0.15s ease !important;
}
.btn:hover  { transform: translateY(-2px) !important; }
.btn:active { transform: scale(0.97) translateY(0) !important; transition-duration: 0.08s !important; }

.btn-primary {
  background: #EF9F27 !important;
  color: #412402 !important;
  border: none !important;
  box-shadow: var(--shadow-orange) !important;
}
.btn-primary:hover {
  background: #d98e1f !important;
  box-shadow: 0 8px 28px rgba(239,159,39,0.38) !important;
}
.btn-secondary {
  background: transparent !important;
  color: #0430B4 !important;
  border: 1.5px solid #0430B4 !important;
  box-shadow: none !important;
}
.btn-secondary:hover {
  background: #0430B4 !important;
  color: #fff !important;
  box-shadow: var(--shadow-md) !important;
}
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.55) !important;
  color: #fff !important;
  background: rgba(255,255,255,0.06) !important;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.14) !important;
  border-color: rgba(255,255,255,0.8) !important;
}
.btn-sm  { padding: 8px 16px !important; font-size: 0.85rem !important; border-radius: 10px !important; }
.btn-lg  { padding: 14px 28px !important; font-size: 0.97rem !important; border-radius: var(--r-md) !important; }
.btn-full { width: 100% !important; }

.btn-outline-header {
  border-radius: 10px !important;
  height: 38px !important;
  padding: 0 16px !important;
  font-size: 0.87rem !important;
  border-width: 1.5px !important;
}
.header-actions .btn-primary {
  height: 38px !important;
  padding: 0 18px !important;
  border-radius: 10px !important;
}

/* --- SERVICE CARD --- */
.service-card {
  border-radius: var(--r-xl) !important;
  border: 1px solid rgba(20,20,20,0.07) !important;
  padding: 32px 28px 28px !important;
  box-shadow: var(--shadow-sm) !important;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1),
              box-shadow 0.22s ease,
              border-color 0.22s ease !important;
}
.service-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(239,159,39,0.5) !important;
}
.service-card.featured {
  border-color: rgba(239,159,39,0.35) !important;
  box-shadow: 0 4px 20px rgba(239,159,39,0.12) !important;
}
.service-card.featured:hover {
  border-color: #EF9F27 !important;
  box-shadow: 0 16px 40px rgba(239,159,39,0.2) !important;
}
.service-card.featured::before {
  border-radius: var(--r-full) !important;
  font-size: 0.68rem !important;
  padding: 4px 14px !important;
  letter-spacing: 0.4px !important;
}
.service-icon {
  width: 52px !important; height: 52px !important;
  border-radius: 14px !important;
  font-size: 1.4rem !important;
  margin-bottom: 20px !important;
}
.service-card h3 {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.2px !important;
}
.service-price {
  padding: 14px 0 !important;
  margin: 16px 0 !important;
  border-top: 1px solid rgba(20,20,20,0.07) !important;
  border-bottom: 1px solid rgba(20,20,20,0.07) !important;
}
.service-price strong { font-size: 1.25rem !important; letter-spacing: -0.3px !important; }
.service-features li { font-size: 0.88rem !important; padding: 5px 0 !important; }

/* --- PROPERTY CARD --- */
.property-card {
  border-radius: var(--r-xl) !important;
  border: 1px solid rgba(20,20,20,0.07) !important;
  box-shadow: var(--shadow-sm) !important;
  overflow: hidden !important;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.22s ease !important;
}
.property-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-lg) !important;
}
.property-thumb {
  border-radius: 0 !important;
  aspect-ratio: 16/10 !important;
}
.property-placeholder {
  width: 100% !important;
  height: 100% !important;
  min-height: 180px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #E8ECF5 0%, #D8DEF0 100%) !important;
  gap: 8px !important;
}
.property-placeholder::before {
  content: "" !important;
  display: block !important;
  width: 48px !important;
  height: 48px !important;
  background: rgba(4,48,180,0.10) !important;
  border-radius: 12px !important;
}
.property-placeholder::after {
  content: "Dang cap nhat anh" !important;
  font-size: 11px !important;
  color: rgba(4,48,180,0.45) !important;
  font-family: system-ui, sans-serif !important;
  letter-spacing: 0.2px !important;
}
.property-placeholder > * { display: none !important; }
.property-badge {
  border-radius: var(--r-full) !important;
  font-size: 0.73rem !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  top: 10px !important;
  left: 10px !important;
}
.badge-available {
  background: rgba(234,243,222,0.95) !important;
  color: #27500A !important;
  border: 1px solid rgba(39,80,10,0.15) !important;
}
.badge-red {
  background: rgba(252,235,235,0.95) !important;
  color: #791F1F !important;
  border: 1px solid rgba(121,31,31,0.15) !important;
}
.property-body { padding: 20px 22px 24px !important; }
.property-body h3 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.2px !important;
  line-height: 1.4 !important;
  margin-bottom: 8px !important;
}
.property-address { font-size: 0.83rem !important; color: #888 !important; margin-bottom: 12px !important; }
.property-tag {
  border-radius: var(--r-xs) !important;
  font-size: 0.73rem !important;
  padding: 3px 9px !important;
  background: rgba(4,48,180,0.06) !important;
  color: #0430B4 !important;
  font-weight: 600 !important;
}
.property-price { font-size: 0.85rem !important; margin-bottom: 16px !important; }
.property-price strong { font-size: 1.05rem !important; font-weight: 700 !important; }

/* --- WHY CARD --- */
.why-card {
  border-radius: 0 16px 16px 0 !important;
  border-left: 3px solid #EF9F27 !important;
  padding: 22px 20px 22px 18px !important;
  box-shadow: 0 1px 4px rgba(4,48,180,0.05) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease !important;
}
.why-card:hover {
  transform: translateX(4px) !important;
  box-shadow: 0 4px 16px rgba(4,48,180,0.08) !important;
}
.why-icon {
  font-size: 20px !important;
  line-height: 1 !important;
  display: block !important;
  height: 24px !important;
  margin-bottom: 12px !important;
}
.why-card h4 { font-size: 0.93rem !important; font-weight: 700 !important; margin-bottom: 6px !important; color: #0430B4 !important; }
.why-card p  { font-size: 0.86rem !important; line-height: 1.65 !important; color: #555 !important; }

/* --- BLOG CARD --- */
.blog-card {
  border-radius: var(--r-xl) !important;
  border: 1px solid rgba(20,20,20,0.07) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s ease !important;
}
.blog-card:hover { transform: translateY(-5px) !important; box-shadow: var(--shadow-lg) !important; }
.blog-thumb { border-radius: var(--r-xl) var(--r-xl) 0 0 !important; overflow: hidden !important; }
.blog-cat {
  border-radius: 5px !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  padding: 3px 8px !important;
}

/* --- VALUE CARD --- */
.value-card {
  border-radius: var(--r-xl) !important;
  box-shadow: var(--shadow-sm) !important;
  padding: 28px 22px !important;
  border: 1px solid rgba(20,20,20,0.07) !important;
  transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s ease !important;
}
.value-card:hover { transform: translateY(-6px) !important; box-shadow: var(--shadow-lg) !important; }
.value-k { border-radius: var(--r-xs) !important; font-size: 0.68rem !important; letter-spacing: 1px !important; padding: 3px 10px !important; }

/* --- PAIN CARD --- */
.pain-card { border-radius: var(--r-lg) !important; padding: 22px !important; border: 1px solid rgba(20,20,20,0.07) !important; }
.pain-num { width: 26px !important; height: 26px !important; border-radius: 8px !important; font-size: 0.72rem !important; line-height: 26px !important; margin-bottom: 12px !important; }
.pain-card h4 { font-size: 0.93rem !important; line-height: 1.45 !important; }
.pain-card p  { font-size: 0.85rem !important; line-height: 1.6 !important; }

/* --- BALANCE ITEM --- */
.balance-item {
  border-radius: var(--r-lg) !important;
  padding: 18px !important;
  border: 1px solid rgba(20,20,20,0.07) !important;
  transition: transform 0.18s cubic-bezier(.34,1.56,.64,1), border-color 0.18s ease !important;
}
.balance-item:hover { transform: translateY(-3px) !important; border-color: rgba(239,159,39,0.4) !important; }
.balance-dot { width: 7px !important; height: 7px !important; border-radius: 50% !important; margin-bottom: 10px !important; }

/* --- FORM --- */
.contact-form-wrap {
  border-radius: var(--r-xl) !important;
  padding: 32px 28px !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid rgba(20,20,20,0.07) !important;
}
.contact-form-wrap h3 { font-size: 1.2rem !important; font-weight: 700 !important; letter-spacing: -0.3px !important; margin-bottom: 6px !important; }
.contact-form-wrap > p { font-size: 0.88rem !important; color: #888 !important; margin-bottom: 22px !important; }
.form-group { margin-bottom: 14px !important; }
.form-group label { font-size: 0.83rem !important; font-weight: 600 !important; color: #333 !important; margin-bottom: 6px !important; display: block !important; }
.form-group input,
.form-group select {
  height: 46px !important;
  border-radius: 12px !important;
  border: 1.5px solid rgba(20,20,20,0.13) !important;
  font-size: 0.93rem !important;
  padding: 0 14px !important;
  background: #fff !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
  width: 100% !important;
}
.form-group textarea {
  min-height: 96px !important;
  border-radius: 12px !important;
  border: 1.5px solid rgba(20,20,20,0.13) !important;
  font-size: 0.93rem !important;
  padding: 12px 14px !important;
  line-height: 1.6 !important;
  resize: vertical !important;
  background: #fff !important;
  width: 100% !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0430B4 !important;
  box-shadow: 0 0 0 3px rgba(4,48,180,0.08) !important;
  outline: none !important;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb !important; }
.form-note { font-size: 0.76rem !important; color: #aaa !important; margin-top: 12px !important; text-align: center !important; line-height: 1.5 !important; }
.form-note a { color: #0430B4 !important; }
#contact-form .btn-primary {
  height: 50px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  letter-spacing: 0.2px !important;
  box-shadow: var(--shadow-orange) !important;
  margin-top: 4px !important;
}

/* --- SECTION LABELS --- */
.section-label { border-radius: var(--r-xs) !important; font-size: 0.68rem !important; letter-spacing: 1.5px !important; padding: 4px 10px !important; font-weight: 700 !important; }
.section-header { margin-bottom: 48px !important; }
.section-header .t-h2 { letter-spacing: -0.4px !important; }
.section-sub { font-size: 1rem !important; line-height: 1.72 !important; }

/* --- HERO BADGE --- */
.hero-badge {
  border-radius: var(--r-sm) !important;
  font-size: 0.77rem !important;
  padding: 5px 12px !important;
  background: rgba(239,159,39,0.12) !important;
  border: 1px solid rgba(239,159,39,0.28) !important;
  color: #EF9F27 !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  margin-bottom: 18px !important;
}
#hero h1 { font-size: clamp(1.9rem, 4vw, 3rem) !important; letter-spacing: -0.6px !important; line-height: 1.15 !important; }
.hero-stat-num { font-size: 1.75rem !important; letter-spacing: -0.5px !important; }
.hero-stat-label { font-size: 0.75rem !important; }

/* --- STATS BANNER --- */
.stats-banner { padding: 52px 0 !important; }
.stat-num { font-size: 2.6rem !important; font-weight: 800 !important; letter-spacing: -1px !important; margin-bottom: 6px !important; display: block !important; }
.stat-label { font-size: 0.86rem !important; }

/* --- CONTACT ITEMS --- */
.contact-icon { border-radius: 12px !important; width: 44px !important; height: 44px !important; font-size: 18px !important; flex-shrink: 0 !important; }
.contact-item-text strong { font-size: 0.72rem !important; letter-spacing: 0.8px !important; color: #aaa !important; }
.contact-item-text span, .contact-item-text a { font-size: 0.97rem !important; font-weight: 600 !important; color: #141414 !important; }

/* --- FLOATING BUTTONS --- */
.fab-tip { display: none !important; }
.fab { width: 50px !important; height: 50px !important; border-radius: 50% !important; box-shadow: 0 4px 16px rgba(0,0,0,0.18) !important; transition: transform 0.18s cubic-bezier(.34,1.56,.64,1), box-shadow 0.18s ease !important; }
.fab:hover { transform: scale(1.12) !important; box-shadow: 0 6px 22px rgba(0,0,0,0.22) !important; }
.fab:active { transform: scale(0.94) !important; }
.fab-zalo  { background: #0068FF !important; color: #fff !important; font-size: 13px !important; font-weight: 800 !important; }
.fab-phone { background: #EF9F27 !important; }

/* --- QUOTE BLOCK --- */
.quote-block { border-radius: var(--r-xl) !important; padding: 28px 32px !important; }
.quote-block blockquote { font-size: 1.1rem !important; line-height: 1.6 !important; letter-spacing: -0.1px !important; }

/* --- SIDEBAR & POST CTA --- */
.sidebar-card  { border-radius: var(--r-xl) !important; padding: 22px !important; }
.post-cta-box  { border-radius: var(--r-xl) !important; padding: 28px !important; }

/* --- TIMELINE --- */
.timeline-item { margin-bottom: 28px !important; }
.timeline-year { font-size: 0.72rem !important; letter-spacing: 0.8px !important; margin-bottom: 3px !important; }
.timeline-item h4 { font-size: 0.97rem !important; margin-bottom: 4px !important; }
.timeline-item p  { font-size: 0.86rem !important; line-height: 1.6 !important; }

/* --- MOBILE --- */
@media (max-width: 768px) {
  .service-card, .blog-card, .property-card, .contact-form-wrap, .value-card { border-radius: 20px !important; }
  .form-group input, .form-group select, .form-group textarea { border-radius: 10px !important; }
  .btn { border-radius: 12px !important; }
  .hero-actions .btn { width: 100% !important; max-width: 340px !important; }
  .cta-actions .btn  { width: 100% !important; max-width: 340px !important; }
  .stat-num { font-size: 2.2rem !important; }
}

/* --- FIX BLOG CARD --- */
.blog-body {
  padding: 16px 18px 20px !important;
  overflow: visible !important;
}
.blog-body h4 {
  font-size: 0.97rem !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.1px !important;
}
.blog-meta {
  font-size: 0.78rem !important;
  color: #aaa !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  display: block !important;
}
.blog-thumb {
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
  border-radius: var(--r-xl) var(--r-xl) 0 0 !important;
  max-height: 220px !important;
}
.blog-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.blog-thumb-placeholder {
  width: 100% !important;
  height: 100% !important;
  min-height: 160px !important;
  background: linear-gradient(135deg, #0430B4 0%, #021078 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 2rem !important;
}

/* --- BLOG GRID - 1 bai thi full width dep hon --- */
.blog-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 20px !important;
}

/* --- SECTION HEADER FLEX --- */
.section-header-flex {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  margin-bottom: 36px !important;
}

/* --- HERO - Social proof overlay --- */
/* Social proof cards nam trong HTML theme (index.php)
   CSS nay chi style neu HTML da co san */
.hero-proof-wrap {
  position: absolute !important;
  top: 64px !important;
  right: 0 !important;
  width: 168px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  z-index: 4 !important;
}
.hero-proof-card {
  background: rgba(255,255,255,0.09) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  border-radius: 14px !important;
  padding: 12px 13px !important;
}

/* --- HERO badge animation --- */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.hero-badge svg circle {
  animation: blink 2s infinite !important;
}

/* --- HEADER logo fix --- */
.custom-logo-link img,
.custom-logo {
  height: 36px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
  display: block !important;
}
/* Xoa icon yoast hien thi canh logo */
#wp-admin-bar-wpseo-menu { display: none !important; }

/* =============================================
   K Office v3 - Liquid Glass Buttons
   Square corners + Orange text on dark blue
   No backdrop-filter - GPU only, 0 RAM waste
   Them vao cuoi CSS bo sung hien tai
============================================= */

/* --- Spring physics base --- */
.btn {
  position: relative !important;
  overflow: hidden !important;
  transition:
    transform .22s cubic-bezier(.34,1.56,.64,1),
    box-shadow .22s cubic-bezier(.34,1.56,.64,1),
    background .15s ease !important;
  -webkit-font-smoothing: antialiased !important;
}

/* Specular highlight - vach sang tren */
.btn::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 10% !important;
  right: 10% !important;
  height: 1px !important;
  border-radius: 0 0 100px 100px !important;
  pointer-events: none !important;
  transition: opacity .18s ease !important;
  z-index: 2 !important;
}

/* Inner gloss - lop bong ben trong */
.btn::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.13) 0%,
    rgba(255,255,255,0) 55%
  ) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.btn:hover  { transform: translateY(-2px) scale(1.015) !important; }
.btn:active {
  transform: translateY(0) scale(0.97) !important;
  transition-duration: .08s !important;
}
.btn:active::before { opacity: .15 !important; }

/* --- PRIMARY (orange) - dung tren moi nen --- */
.btn-primary {
  background: #EF9F27 !important;
  color: #2a1800 !important;
  border: none !important;
  border-radius: 14px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.32) inset,
    0 -1px 0 rgba(0,0,0,0.14) inset,
    0 6px 20px rgba(239,159,39,0.42),
    0 2px 6px rgba(0,0,0,0.18) !important;
}
.btn-primary::before { background: rgba(255,255,255,0.55) !important; }
.btn-primary:hover {
  background: #e8940f !important;
  color: #2a1800 !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.35) inset,
    0 -1px 0 rgba(0,0,0,0.14) inset,
    0 10px 28px rgba(239,159,39,0.52),
    0 3px 8px rgba(0,0,0,0.18) !important;
}

/* --- SECONDARY (glass outline) - tren hero xanh --- */
.btn-secondary {
  background: rgba(255,255,255,0.10) !important;
  color: #EF9F27 !important;
  border: 1.5px solid rgba(239,159,39,0.4) !important;
  border-radius: 14px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 -1px 0 rgba(0,0,0,0.10) inset,
    0 4px 14px rgba(0,0,0,0.18) !important;
}
.btn-secondary::before { background: rgba(239,159,39,0.4) !important; }
.btn-secondary:hover {
  background: rgba(239,159,39,0.12) !important;
  color: #FAC775 !important;
  border-color: rgba(239,159,39,0.65) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 -1px 0 rgba(0,0,0,0.10) inset,
    0 6px 20px rgba(239,159,39,0.18),
    0 2px 8px rgba(0,0,0,0.2) !important;
}

/* --- OUTLINE WHITE - tren hero xanh --- */
.btn-outline-white {
  background: rgba(255,255,255,0.08) !important;
  color: #EF9F27 !important;
  border: 1.5px solid rgba(239,159,39,0.35) !important;
  border-radius: 14px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 4px 14px rgba(0,0,0,0.16) !important;
}
.btn-outline-white::before { background: rgba(239,159,39,0.35) !important; }
.btn-outline-white:hover {
  background: rgba(239,159,39,0.12) !important;
  color: #FAC775 !important;
  border-color: rgba(239,159,39,0.6) !important;
}

/* --- HEADER CTA - tren header trang --- */
.btn-outline-header {
  background: rgba(4,48,180,0.06) !important;
  color: #0430B4 !important;
  border: 1.5px solid rgba(4,48,180,0.25) !important;
  border-radius: 10px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 2px 6px rgba(4,48,180,0.08) !important;
}
.btn-outline-header::before { background: rgba(4,48,180,0.2) !important; }
.btn-outline-header:hover {
  background: #0430B4 !important;
  color: #fff !important;
  border-color: #0430B4 !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 6px 16px rgba(4,48,180,0.3) !important;
}

.header-actions .btn-primary {
  border-radius: 10px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 4px 12px rgba(239,159,39,0.35) !important;
}

/* --- GHOST (trang card trang) --- */
.btn-ghost {
  background: rgba(255,255,255,0.65) !important;
  color: #0430B4 !important;
  border: 1.5px solid rgba(4,48,180,0.2) !important;
  border-radius: 14px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 2px 8px rgba(0,0,0,0.08) !important;
}
.btn-ghost::before { background: rgba(255,255,255,0.7) !important; }
.btn-ghost:hover {
  background: rgba(255,255,255,0.9) !important;
  border-color: rgba(4,48,180,0.4) !important;
}

/* --- SIZE VARIANTS --- */
.btn-sm {
  padding: 8px 16px !important;
  font-size: 0.84rem !important;
  border-radius: 10px !important;
}
.btn-lg {
  padding: 14px 28px !important;
  font-size: 0.97rem !important;
  border-radius: 14px !important;
}
.btn-full { width: 100% !important; }

/* Submit form button */
#contact-form .btn-primary,
.contact-form .btn-primary {
  height: auto !important;
  padding: 14px 24px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  letter-spacing: 0.1px !important;
}

/* --- TEXT MAU CAM TREN DARK BLUE --- */

/* Hero section */
#hero .section-label  { color: #EF9F27 !important; }
#hero p               { color: rgba(255,255,255,0.8) !important; }
#hero .hero-sub       { color: rgba(255,255,255,0.75) !important; }
.hero-stat-label      { color: rgba(255,255,255,0.55) !important; }
.hero-stat-num        { color: #EF9F27 !important; }

/* Page hero (ve chung toi, lien he, toa nha, tin tuc) */
.page-hero .section-label  { color: #EF9F27 !important; background: rgba(239,159,39,0.12) !important; border-color: rgba(239,159,39,0.25) !important; }
.page-hero p               { color: rgba(255,255,255,0.78) !important; }
.page-hero .breadcrumb li  { color: rgba(255,255,255,0.55) !important; }
.page-hero .breadcrumb li a { color: rgba(255,255,255,0.75) !important; }
.page-hero .breadcrumb li:last-child { color: #EF9F27 !important; }
.page-hero .blog-cat       { color: #EF9F27 !important; background: rgba(239,159,39,0.15) !important; }

/* Stats banner xanh */
.stats-banner .stat-label  { color: rgba(255,255,255,0.6) !important; }

/* CTA section xanh */
.cta-section h2  { color: #EF9F27 !important; }
.cta-section p   { color: rgba(255,255,255,0.75) !important; }

/* Footer dark */
#site-footer .footer-brand p { color: rgba(255,255,255,0.5) !important; }
#site-footer .footer-col ul li a { color: rgba(255,255,255,0.5) !important; }
#site-footer .footer-col ul li a:hover { color: #EF9F27 !important; }
#site-footer .footer-contact li  { color: rgba(255,255,255,0.5) !important; }
#site-footer .footer-contact a   { color: #FAC775 !important; }
.footer-bottom p { color: rgba(255,255,255,0.3) !important; }
.footer-bottom-links a { color: rgba(255,255,255,0.3) !important; }
.footer-bottom-links a:hover { color: #EF9F27 !important; }

/* --- FIX: Text cam ro hon tren dark blue --- */

/* Secondary button tren hero - text cam sang */
.btn-secondary,
.btn-outline-white {
  color: #FAC775 !important;
}
.btn-secondary:hover,
.btn-outline-white:hover {
  color: #EF9F27 !important;
}

/* Tat ca text trong hero section */
#hero .btn:not(.btn-primary) {
  color: #FAC775 !important;
}
#hero .btn:not(.btn-primary):hover {
  color: #EF9F27 !important;
}

/* Page hero - secondary buttons */
.page-hero .btn:not(.btn-primary) {
  color: #FAC775 !important;
}

/* Breadcrumb trong page hero */
.page-hero .breadcrumb li a {
  color: rgba(255,255,255,0.7) !important;
}
.page-hero .breadcrumb li:last-child {
  color: #FAC775 !important;
}

/* CTA section */
.cta-section .btn-outline-white {
  color: #FAC775 !important;
}

/* =============================================
   ORANGE GLOW - Tat ca text tren dark blue
   Cam sang nhu den duoc bat len
============================================= */

/* --- HERO HEADLINE --- */
#hero h1 {
  color: #FAC775 !important;
  text-shadow: 0 0 32px rgba(239,159,39,0.22) !important;
}
#hero h1 span,
#hero h1 .c-orange {
  color: #EF9F27 !important;
  text-shadow: 0 0 24px rgba(239,159,39,0.38) !important;
}

/* --- HERO SUB TEXT --- */
.hero-sub { color: rgba(250,199,117,0.72) !important; }

/* --- HERO BADGE --- */
.hero-badge {
  color: #FAC775 !important;
  background: rgba(239,159,39,0.10) !important;
  border-color: rgba(239,159,39,0.28) !important;
  text-shadow: 0 0 12px rgba(250,199,117,0.45) !important;
}

/* --- HERO STATS --- */
.hero-stat-num {
  color: #EF9F27 !important;
  text-shadow: 0 0 20px rgba(239,159,39,0.38) !important;
}
.hero-stat-label { color: rgba(250,199,117,0.5) !important; }
.hero-stats { border-top-color: rgba(239,159,39,0.14) !important; }

/* --- ACCENT BAR tren cung hero --- */
#hero::after {
  box-shadow: 0 0 12px rgba(239,159,39,0.55) !important;
}

/* --- BUTTONS TREN DARK BLUE --- */
/* Primary - nen cam, chu toi dam */
.hero-actions .btn-primary,
.page-hero .btn-primary,
.cta-section .btn-primary {
  background: #EF9F27 !important;
  color: #2a1800 !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.32) inset,
    0 -1px 0 rgba(0,0,0,0.14) inset,
    0 6px 20px rgba(239,159,39,0.5),
    0 0 0 1px rgba(239,159,39,0.28),
    0 2px 6px rgba(0,0,0,0.2) !important;
}
.hero-actions .btn-primary:hover,
.page-hero .btn-primary:hover {
  background: #f5ab38 !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.35) inset,
    0 -1px 0 rgba(0,0,0,0.14) inset,
    0 10px 28px rgba(239,159,39,0.6),
    0 0 0 1px rgba(239,159,39,0.38),
    0 3px 8px rgba(0,0,0,0.2) !important;
}

/* Secondary / outline tren dark - chu cam sang nhu den */
.hero-actions .btn-secondary,
.hero-actions .btn-outline-white,
.page-hero .btn-secondary,
.page-hero .btn-outline-white,
.cta-section .btn-outline-white,
.cta-section .btn-white {
  background: rgba(239,159,39,0.06) !important;
  color: #FAC775 !important;
  border: 1.5px solid rgba(239,159,39,0.35) !important;
  text-shadow: 0 0 14px rgba(250,199,117,0.42) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.07) inset,
    0 -1px 0 rgba(0,0,0,0.10) inset,
    0 4px 14px rgba(0,0,0,0.2) !important;
}
.hero-actions .btn-secondary:hover,
.hero-actions .btn-outline-white:hover,
.page-hero .btn-secondary:hover,
.page-hero .btn-outline-white:hover,
.cta-section .btn-outline-white:hover {
  background: rgba(239,159,39,0.12) !important;
  color: #EF9F27 !important;
  border-color: rgba(239,159,39,0.6) !important;
  text-shadow: 0 0 18px rgba(239,159,39,0.55) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 6px 20px rgba(0,0,0,0.22),
    0 0 20px rgba(239,159,39,0.12) !important;
}

/* --- PAGE HERO TEXT --- */
.page-hero h1 {
  color: #FAC775 !important;
  text-shadow: 0 0 28px rgba(239,159,39,0.18) !important;
}
.page-hero h1 span { color: #EF9F27 !important; }
.page-hero p { color: rgba(250,199,117,0.72) !important; }
.page-hero .section-label {
  color: #EF9F27 !important;
  background: rgba(239,159,39,0.12) !important;
  border-color: rgba(239,159,39,0.25) !important;
  text-shadow: 0 0 10px rgba(239,159,39,0.3) !important;
}
.page-hero .breadcrumb li { color: rgba(250,199,117,0.45) !important; }
.page-hero .breadcrumb li a { color: rgba(250,199,117,0.7) !important; }
.page-hero .breadcrumb li:last-child { color: #FAC775 !important; }

/* --- STATS BANNER TEXT --- */
.stats-banner .stat-num {
  color: #EF9F27 !important;
  text-shadow: 0 0 20px rgba(239,159,39,0.35) !important;
}
.stats-banner .stat-label { color: rgba(250,199,117,0.55) !important; }

/* --- CTA SECTION TEXT --- */
.cta-section h2 {
  color: #FAC775 !important;
  text-shadow: 0 0 28px rgba(239,159,39,0.2) !important;
}
.cta-section p { color: rgba(250,199,117,0.72) !important; }

/* --- FOOTER TEXT --- */
.footer-logo em,
.footer-brand .footer-logo em { color: #EF9F27 !important; }
.footer-col h5 { color: rgba(250,199,117,0.55) !important; }
.footer-col ul li a { color: rgba(250,199,117,0.45) !important; }
.footer-col ul li a:hover { color: #EF9F27 !important; text-shadow: 0 0 10px rgba(239,159,39,0.35) !important; }
.footer-contact li { color: rgba(250,199,117,0.45) !important; }
.footer-contact a { color: #FAC775 !important; }
.footer-bottom p { color: rgba(250,199,117,0.25) !important; }
.footer-bottom-links a { color: rgba(250,199,117,0.25) !important; }
.footer-bottom-links a:hover { color: #EF9F27 !important; }

/* --- QUOTE BLOCK (tren nen xanh) --- */
.quote-block blockquote { color: #FAC775 !important; }
.quote-block cite { color: rgba(250,199,117,0.5) !important; }

/* --- SECTION LABEL TREN DARK --- */
.section-label.on-dark { color: #EF9F27 !important; }

/* =============================================
   FINAL FIX - Hero heading trang, button cam ruc
============================================= */

/* Hero heading - giu mau TRANG goc */
#hero h1 {
  color: #ffffff !important;
  text-shadow: none !important;
}
#hero h1 span,
#hero h1 .c-orange {
  color: #EF9F27 !important;
  text-shadow: none !important;
}
.page-hero h1 {
  color: #ffffff !important;
  text-shadow: none !important;
}
.page-hero h1 span { color: #EF9F27 !important; }

/* Tat ca BUTTON tren dark blue - text CAM RUC */
#hero .btn,
.page-hero .btn,
.cta-section .btn,
.stats-banner .btn,
.hero-actions .btn,
.mobile-menu .btn {
  color: #EF9F27 !important;
  text-shadow: 0 0 16px rgba(239,159,39,0.5) !important;
}

/* Primary button (nen cam) - chu TOI de tuong phan */
#hero .btn-primary,
.page-hero .btn-primary,
.cta-section .btn-primary,
.hero-actions .btn-primary {
  color: #1a0d00 !important;
  text-shadow: none !important;
  background: #EF9F27 !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.32) inset,
    0 -1px 0 rgba(0,0,0,0.14) inset,
    0 6px 20px rgba(239,159,39,0.5),
    0 2px 6px rgba(0,0,0,0.2) !important;
}
#hero .btn-primary:hover,
.hero-actions .btn-primary:hover {
  color: #1a0d00 !important;
  background: #f5ab38 !important;
  text-shadow: none !important;
}

/* Secondary / outline tren dark - chu CAM SANG */
#hero .btn:not(.btn-primary),
.hero-actions .btn:not(.btn-primary),
.page-hero .btn:not(.btn-primary),
.cta-section .btn:not(.btn-primary) {
  color: #FAC775 !important;
  text-shadow: 0 0 14px rgba(250,199,117,0.5) !important;
  background: rgba(239,159,39,0.07) !important;
  border: 1.5px solid rgba(239,159,39,0.38) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 4px 14px rgba(0,0,0,0.2) !important;
}
#hero .btn:not(.btn-primary):hover,
.hero-actions .btn:not(.btn-primary):hover {
  color: #EF9F27 !important;
  text-shadow: 0 0 20px rgba(239,159,39,0.65) !important;
  background: rgba(239,159,39,0.13) !important;
  border-color: rgba(239,159,39,0.6) !important;
}

/* Header buttons - giu nguyen mau goc */
.header-actions .btn-primary { color: #1a0d00 !important; text-shadow: none !important; }
.header-actions .btn-outline-header { color: #0430B4 !important; text-shadow: none !important; }
