/* base.css */
/*
Theme Name: Khánh Phát Custom
Author: Khánh Phát
Description: Custom WordPress theme for Khánh Phát Group staging site.
Version: 0.1.0
Text Domain: khanhphat
*/

/* ===== RESET & TOKENS ===== */
@font-face{font-family:'Be Vietnam Pro';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/be-vietnam-pro/be-vietnam-pro-400-vi.woff2') format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}
@font-face{font-family:'Be Vietnam Pro';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/be-vietnam-pro/be-vietnam-pro-400-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Be Vietnam Pro';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/be-vietnam-pro/be-vietnam-pro-700-vi.woff2') format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}
@font-face{font-family:'Be Vietnam Pro';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/be-vietnam-pro/be-vietnam-pro-700-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Be Vietnam Pro';font-style:normal;font-weight:900;font-display:swap;src:url('../fonts/be-vietnam-pro/be-vietnam-pro-900-vi.woff2') format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}
@font-face{font-family:'Be Vietnam Pro';font-style:normal;font-weight:900;font-display:swap;src:url('../fonts/be-vietnam-pro/be-vietnam-pro-900-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --kp-green:#0a6b2f;
  --kp-dark:#004c24;
  --kp-soft:#f6fbf6;
  --kp-line:#dfe9df;
  --kp-yellow:#ffc928;
  --kp-text:#102016;
  --kp-muted:#5d6b61;
  --kp-radius:12px;
  --kp-max:1280px;
  --kp-orange:#e8600a;
  --shadow-sm:0 2px 8px rgba(9,55,26,.06);
  --shadow-md:0 8px 24px rgba(9,55,26,.10);
  --shadow-lg:0 16px 48px rgba(9,55,26,.14);
}
html{scroll-behavior:smooth}
section[id]{scroll-margin-top:96px}
body{
  font-family:'Be Vietnam Pro',system-ui,-apple-system,sans-serif;
  color:var(--kp-text);
  background:#fff;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%;height:auto}
a{text-decoration:none;color:inherit}
ul{list-style:none}
h1,h2,h3,h4,p{margin:0}


/* ===== SCROLL REVEAL ===== */
.js-ready .reveal{opacity:0;transform:translateY(32px);transition:opacity .7s cubic-bezier(.16,1,.3,1),transform .7s cubic-bezier(.16,1,.3,1)}
.js-ready .reveal.visible{opacity:1;transform:translateY(0)}
.js-ready :is(.hero,.service-hero,[class*="-hero"]) .reveal,
.js-ready :is(.hero,.service-hero,[class*="-hero"]).reveal{opacity:1;transform:none;transition:none}
.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}
.reveal-delay-4{transition-delay:.35s}
.reveal-delay-5{transition-delay:.4s}


/* ===== UTILITIES ===== */
.container{max-width:var(--kp-max);margin:0 auto;padding:0 24px}
.section{padding:80px 0}
.section-title{
  text-align:center;
  color:var(--kp-dark);
  font-size:clamp(24px,3.2vw,32px);
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:12px;
  line-height:1.3;
  letter-spacing:-.3px;
}
.section-subtitle{
  text-align:center;
  color:var(--kp-muted);
  font-size:16px;
  max-width:640px;
  margin:0 auto 48px;
  line-height:1.7;
}
.section-title::after{
  content:'';
  display:block;
  width:60px;height:3px;
  background:linear-gradient(90deg,var(--kp-green),#72bd20);
  margin:14px auto 0;
  border-radius:99px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:14px 32px;
  border-radius:var(--kp-radius);
  font-weight:800;
  font-size:15px;
  cursor:pointer;
  border:none;
  transition:transform .2s cubic-bezier(.16,1,.3,1),box-shadow .2s;
}
.btn:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}
.btn-primary{background:var(--kp-green);color:#fff}
.btn-outline{background:#fff;color:var(--kp-dark);border:2px solid var(--kp-green)}
.btn-yellow{background:var(--kp-yellow);color:#111}
.btn-white{background:#fff;color:var(--kp-green)}

@media(max-width:720px){
  section[id]{scroll-margin-top:86px}
}


/* layout.css */
/* ===== TOPBAR ===== */
.topbar{display:none!important}

/* ===== SITE HEADER ===== */
#siteHeader.header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:2990;
  background-color:transparent;
  background-image:none;
  border-bottom:1px solid transparent;
  box-shadow:none;
  overflow:visible;
  transition:background-color .4s,border-color .4s,box-shadow .4s,top .4s;
}
#siteHeader.header:not(.scrolled){
  background-image:linear-gradient(180deg,rgba(0,0,0,.45) 0%,rgba(0,0,0,.18) 60%,transparent 100%);
}
#siteHeader.header.scrolled{
  top:0;
  background-color:rgba(255,255,255,.96);
  background-image:none;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom-color:rgba(223,233,223,.6);
  box-shadow:var(--shadow-md,0 8px 24px rgba(9,55,26,.10));
}
#siteHeader .header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:var(--kp-max,1280px);
  min-height:72px;
  margin:0 auto;
  padding:0 24px;
  gap:24px;
  position:relative;
  z-index:2991;
}
#siteHeader .brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  min-width:0;
  text-decoration:none;
}
#siteHeader .brand::before,#siteHeader .brand::after{content:none;display:none}
#siteHeader .logo-img{
  display:block;
  width:56px;height:56px;
  max-width:56px;min-width:56px;
  object-fit:contain;
  flex-shrink:0;
  border:2px solid rgba(10,107,47,.12);
  border-radius:12px;
  padding:2px;
  margin:0;
  background:transparent;
  box-shadow:none;
  filter:none;
  transition:background-color .4s,border-color .4s,box-shadow .4s,filter .25s;
}
#siteHeader.header:not(.scrolled) .logo-img{
  background:#fff;
  border-color:rgba(255,255,255,.9);
  box-shadow:0 2px 8px rgba(0,0,0,.15);
}
#siteHeader.header.scrolled .logo-img{
  background:transparent;
  border-color:rgba(10,107,47,.12);
  box-shadow:none;
}
#siteHeader .logo-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  color:var(--kp-dark,#004c24);
  text-transform:uppercase;
  line-height:1;
  letter-spacing:.45px;
  text-shadow:none;
  transition:color .25s,text-shadow .25s;
}
#siteHeader .logo-text strong{font-size:19px;font-weight:950;letter-spacing:.35px;white-space:nowrap}
#siteHeader .logo-text small{display:inline-flex;align-items:center;margin-top:4px;padding:3px 8px;border-radius:999px;background:rgba(10,107,47,.10);color:var(--kp-green,#0a6b2f);font-size:9px;font-weight:900;letter-spacing:.95px;line-height:1;white-space:nowrap}
#siteHeader.header:not(.scrolled) .logo-text{color:#fff;text-shadow:0 1px 4px rgba(0,0,0,.3)}
#siteHeader.header:not(.scrolled) .logo-text small{background:rgba(255,255,255,.16);color:#d6f7c3}
#siteHeader.header.scrolled .logo-text{color:var(--kp-dark,#004c24);text-shadow:none}
#siteHeader.header.scrolled .logo-text small{background:rgba(10,107,47,.10);color:var(--kp-green,#0a6b2f)}

#siteHeader .nav{display:flex;align-items:center;justify-content:center;flex:1 1 auto;min-width:0;gap:4px}
#siteHeader .nav ul,#siteHeader .nav li,.mobile-nav-links ul,.mobile-nav-links li{list-style:none;margin:0;padding:0}
#siteHeader .nav .primary-menu{display:flex;align-items:center;gap:4px;margin:0;padding:0}
#siteHeader .nav .primary-menu>li{position:relative;margin:0;padding:0}
#siteHeader .nav .primary-menu>li>a{position:relative;display:block;padding:8px 14px;font-size:14px;font-weight:700;color:var(--kp-text,#102016);border-radius:8px;text-decoration:none;text-shadow:none;background:transparent;transition:background .15s,color .25s;text-transform:none}
#siteHeader.header:not(.scrolled) .nav .primary-menu>li>a{color:#fff;text-shadow:0 1px 3px rgba(0,0,0,.28)}
#siteHeader .nav .primary-menu>li:hover>a,#siteHeader .nav .primary-menu>li.current-menu-item>a,#siteHeader .nav .primary-menu>li.current-menu-ancestor>a{color:var(--kp-green,#0a6b2f);background:var(--kp-soft,#f6fbf6);text-shadow:none}
#siteHeader.header:not(.scrolled) .nav .primary-menu>li:hover>a,#siteHeader.header:not(.scrolled) .nav .primary-menu>li.current-menu-item>a,#siteHeader.header:not(.scrolled) .nav .primary-menu>li.current-menu-ancestor>a{color:#fff;background:rgba(255,255,255,.16);text-shadow:0 1px 3px rgba(0,0,0,.32)}
#siteHeader.header:not(.scrolled) .nav .primary-menu>li:hover>a,
#siteHeader.header:not(.scrolled) .nav .primary-menu>li.current-menu-item>a,
#siteHeader.header:not(.scrolled) .nav .primary-menu>li.current-menu-ancestor>a{
  background:transparent;
  color:#fff;
}
#siteHeader.header.scrolled .nav .primary-menu>li.current-menu-item>a,
#siteHeader.header.scrolled .nav .primary-menu>li.current_page_item>a,
#siteHeader.header.scrolled .nav .primary-menu>li.current-menu-ancestor>a{
  background:transparent;
  color:var(--kp-text,#102016);
  border:0;
  box-shadow:none;
}
#siteHeader .nav .primary-menu>li.menu-item-has-children>a::after{content:'';display:inline-block;border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid currentColor;margin-left:6px;vertical-align:middle;opacity:.55}
#siteHeader .nav .sub-menu{position:absolute;top:100%;left:0;z-index:2992;min-width:250px;padding:8px 0;background:rgba(255,255,255,.98);border:1px solid var(--kp-line,#dfe9df);border-radius:12px;box-shadow:var(--shadow-lg,0 16px 48px rgba(9,55,26,.14));opacity:0;visibility:hidden;pointer-events:none;transform:translateY(8px);transition:opacity .25s,visibility .25s,transform .25s}
#siteHeader .nav li:hover>.sub-menu,#siteHeader .nav li:focus-within>.sub-menu{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0)}
#siteHeader .nav .sub-menu a{display:block;padding:10px 20px;font-size:14px;font-weight:600;color:var(--kp-text,#102016);text-decoration:none;text-shadow:none;background:transparent;transition:background .1s,padding-left .15s,color .15s}
#siteHeader .nav .sub-menu a:hover,#siteHeader .nav .sub-menu a:focus{color:var(--kp-green,#0a6b2f);background:var(--kp-soft,#f6fbf6);padding-left:24px}
#siteHeader .header-cta{display:flex;align-items:center;gap:12px}
#siteHeader .btn-phone{display:inline-flex;align-items:center;gap:8px;min-height:40px;padding:12px 24px;border:0;border-radius:999px;background:linear-gradient(135deg,var(--kp-green,#0a6b2f),#0d8a3a);color:#fff;font-size:14px;font-weight:800;letter-spacing:.2px;text-decoration:none;text-shadow:none;box-shadow:0 4px 16px rgba(10,107,47,.3);transition:transform .2s,box-shadow .2s,background .25s,border-color .25s}
#siteHeader .btn-phone:hover{transform:translateY(-2px);box-shadow:0 6px 24px rgba(10,107,47,.4)}
#siteHeader .btn-phone svg{width:18px;height:18px;flex-shrink:0}
#siteHeader.header:not(.scrolled) .btn-phone{background:rgba(255,255,255,.2);border:1px solid rgba(255,255,255,.4);box-shadow:none;text-shadow:0 1px 3px rgba(0,0,0,.2)}
#siteHeader.header.scrolled .btn-phone{background:linear-gradient(135deg,var(--kp-green,#0a6b2f),#0d8a3a);border:0;box-shadow:0 4px 16px rgba(10,107,47,.3);text-shadow:none}
#siteHeader .hamburger{display:none;position:relative;z-index:3010;cursor:pointer;width:48px;height:48px;flex:0 0 48px;margin-left:auto;border-radius:14px;background:none;border:0;align-items:center;justify-content:center;flex-direction:column;gap:5px;pointer-events:auto;touch-action:manipulation}
#siteHeader .hamburger span{display:block;width:24px;height:2.5px;background:var(--kp-text,#102016);border-radius:2px;transition:transform .25s,opacity .25s,background .25s}
#siteHeader .hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
#siteHeader .hamburger.active span:nth-child(2){opacity:0}
#siteHeader .hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
#siteHeader.header:not(.scrolled) .hamburger{background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.36);box-shadow:none}
#siteHeader.header:not(.scrolled) .hamburger span{background:#fff}
#siteHeader.header.scrolled .hamburger{background:#f6fbf6;border:1px solid rgba(10,107,47,.18);box-shadow:0 6px 16px rgba(9,55,26,.08)}
#siteHeader.header.scrolled .hamburger span{background:#12351f}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav{display:block;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:5000;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .25s,visibility .25s}
.mobile-nav-panel{position:absolute;top:0;right:0;bottom:0;width:100vw;background:#fff;padding:24px;overflow-y:auto;transform:translateX(100%);transition:transform .3s cubic-bezier(.16,1,.3,1);box-shadow:none;z-index:5001}
.mobile-nav.active{opacity:1;visibility:visible;pointer-events:auto}
.mobile-nav.active .mobile-nav-panel{transform:translateX(0)}
.mobile-nav-close{background:none;border:none;font-size:28px;cursor:pointer;float:right;width:44px;height:44px;display:grid;place-items:center;color:var(--kp-text,#102016)}
.mobile-nav-links{margin-top:32px}
.mobile-primary-menu,.mobile-primary-menu ul{display:block;list-style:none;margin:0;padding:0}
.mobile-primary-menu li{display:block;list-style:none;margin:0;padding:0}
.mobile-primary-menu a{display:block;padding:14px 0;font-size:16px;font-weight:700;color:var(--kp-text,#102016);border-bottom:1px solid var(--kp-line,#dfe9df);text-shadow:none;text-decoration:none;cursor:pointer}
.mobile-primary-menu .sub-menu{display:block;margin:8px 0 0 16px;padding:0}
.mobile-primary-menu .sub-menu a{font-size:14px;font-weight:600;color:var(--kp-muted,#5d6b61);padding:10px 0}

@media(max-width:720px){
  #siteHeader.header{height:68px;min-height:68px;top:0}
  #siteHeader .header-inner{height:68px;min-height:68px;padding:0 18px;gap:12px}
  #siteHeader .brand{height:68px;gap:11px}
  #siteHeader .logo-img{width:52px;height:52px;max-width:52px;min-width:52px}
  #siteHeader .nav,#siteHeader .header-cta{display:none}
  #siteHeader .hamburger{display:flex}
  .mobile-nav-panel{padding:20px}
}
@media(min-width:721px){
  #siteHeader .hamburger{display:none}
  #siteHeader .nav{display:flex}
}

@media(max-width:1024px){
  #siteHeader.header{height:68px;min-height:68px;top:0}
  #siteHeader .header-inner{height:68px;min-height:68px;padding:0 18px;gap:12px}
  #siteHeader .brand{height:68px;gap:11px}
  #siteHeader .logo-img{width:52px;height:52px;max-width:52px;min-width:52px}
  #siteHeader .nav,
  #siteHeader .header-cta{display:none!important}
  #siteHeader .hamburger{display:flex!important}
  .mobile-nav-panel{width:min(100vw,420px);padding:20px}
}

@media(min-width:1025px){
  #siteHeader .hamburger{display:none!important}
  #siteHeader .nav{display:flex!important}
  #siteHeader .header-cta{display:flex!important}
}

/* ===== FOOTER ===== */
.footer{
  background:linear-gradient(180deg,#062713 0%,#001a0d 100%);
  color:#fff;
  padding:0;
}
.footer-top{
  padding:38px 0 26px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-top-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.footer-brand{display:flex;align-items:center;gap:14px}
.footer-brand-mark{
  align-items:center;
  background:#fff;
  display:flex;
  flex:0 0 auto;
  height:42px;
  justify-content:center;
  overflow:hidden;
  width:42px;
}
.footer-brand-mark img{
  display:block;
  height:58px;
  max-width:none;
  object-fit:contain;
  transform:none;
  width:58px;
}
.footer-brand-text{
  color:#fff;
  display:flex;
  flex-direction:column;
  font-size:19px;
  font-weight:950;
  letter-spacing:.25px;
  line-height:1.05;
  text-transform:uppercase;
}
.footer-brand-text small{
  color:var(--kp-yellow,#ffc928);
  font-size:11px;
  font-weight:900;
  letter-spacing:1.4px;
  margin-top:6px;
}
.footer-social{display:flex;gap:10px}
.footer-social a{
  width:40px;height:40px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  display:grid;place-items:center;
  box-shadow:none;
  transition:background .2s,border-color .2s,color .2s,transform .2s;
}
.footer-social a:hover{background:rgba(255,255,255,.16);border-color:rgba(255,255,255,.24);transform:translateY(-2px)}
.footer-social svg{width:18px;height:18px;color:#fff}
.footer-social a:hover svg{color:#fff}
.footer-main{padding:34px 0 38px}
.footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1.3fr;
  gap:40px;
}
.footer h3{
  color:#fff;
  font-size:15px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:20px;
  position:relative;
  padding-bottom:12px;
}
.footer h3::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  width:28px;height:2px;
  background:var(--kp-yellow,#ffc928);
  border-radius:2px;
}
.footer p,.footer li{
  color:rgba(255,255,255,.68);
  font-size:14px;
  line-height:1.8;
}
.footer p strong{color:rgba(255,255,255,.9)}
.footer-address,.footer-hours{margin-top:12px}
.footer-inline-link{color:rgba(255,255,255,.88);font-weight:900;text-decoration:underline;text-underline-offset:3px}
.footer-inline-link:hover{color:#fff}
.footer li a{transition:color .15s,padding-left .15s}
.footer li a:hover{color:#fff;padding-left:4px}
.footer-badges{
  display:flex;gap:8px;margin-top:16px;flex-wrap:wrap;
}
.footer-badges span{
  display:inline-flex;align-items:center;gap:5px;
  padding:6px 12px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  font-size:11px;
  font-weight:800;
  color:rgba(255,255,255,.74);
}
.footer-badges svg{width:12px;height:12px;color:var(--kp-yellow,#ffc928)}
.footer-bct-badge{
  display:inline-flex;
  align-items:center;
  padding:5px 9px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.18);
  border-radius:6px;
}
.footer-bct-badge img{display:block;width:100px;height:auto}
.footer-bottom{
  background:rgba(0,0,0,.24);
  padding:18px 0;
}
.footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-bottom p{
  color:rgba(255,255,255,.62);
  font-size:13px;
  line-height:1.4;
}
.footer-bottom-links{display:flex;gap:14px 20px;flex-wrap:wrap}
.footer-bottom-links a{
  color:rgba(255,255,255,.64);
  font-size:13px;
  transition:color .15s;
}
.footer-bottom-links a:hover{color:#fff}

/* ===== RESPONSIVE ===== */
@media(max-width:1100px){
  .hero{min-height:520px}
  .hero-copy{padding:120px 24px 48px}
  .products-grid,.why-grid{grid-template-columns:repeat(2,1fr)}
  .services-grid,.projects-grid,.testimonials-grid,.news-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:repeat(3,1fr)}
  .process-grid::before{display:none}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
  .trust-strip-inner{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:720px){
  .hero{min-height:auto}
  .hero-copy{padding:110px 20px 40px}
  .hero-badges{flex-direction:column}
  .hero-badge{border-right:0;border-bottom:1px solid rgba(255,255,255,.1);justify-content:center}
  .hero-badge:last-child{border-bottom:0}
  .products-grid,.services-grid,.projects-grid,.testimonials-grid,.news-grid,.why-grid,.faq-grid{grid-template-columns:1fr}
  .service-card.featured{grid-template-columns:1fr;text-align:center;gap:12px}
  .service-card.featured .service-icon{margin:0 auto}
  .process-grid{grid-template-columns:1fr}
  .combo-strip{grid-template-columns:1fr}
  .trust-strip-inner{grid-template-columns:1fr;gap:12px}
  .final-cta{padding:56px 0}
  .footer-grid{grid-template-columns:1fr}
  .footer-top-inner{flex-direction:column;text-align:center}
  .footer-social{justify-content:center}
  .footer h3::after{margin:0 auto}
  .footer-bottom-inner{flex-direction:column;text-align:center;gap:12px}
  .footer-badges{justify-content:center}
  .section{padding:56px 0}
  .wave-divider{height:40px}
}


/* components.css */
/* ===== WAVE DIVIDER ===== */
.wave-divider{
  position:relative;
  height:60px;
  overflow:hidden;
  margin-top:-1px;
}
.wave-divider svg{
  position:absolute;
  bottom:0;left:0;
  width:100%;height:100%;
}
.wave-divider-flip{margin-bottom:-1px;margin-top:0}
.wave-divider-flip svg{top:0;bottom:auto;transform:scaleY(-1)}

/* ===== TRUST STRIP ===== */
.trust-strip{
  background:var(--kp-soft);
  padding:24px 0;
}
.trust-strip-inner{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
  max-width:var(--kp-max);
  margin:0 auto;
  padding:0 24px;
}
.trust-item{
  display:flex;align-items:center;gap:14px;
  justify-content:center;
}
.trust-icon{
  width:50px;height:50px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--kp-green),#72bd20);
  display:grid;place-items:center;
  flex-shrink:0;
  box-shadow:0 4px 12px rgba(10,107,47,.25);
}
.trust-icon svg{width:24px;height:24px;color:#fff}
.trust-text{font-size:14px;font-weight:800;color:var(--kp-dark);line-height:1.3}
.trust-text small{display:block;font-weight:600;color:var(--kp-muted);font-size:12px;margin-top:2px}

/* ===== PRODUCTS ===== */
.products-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.product-card{
  border:1px solid rgba(223,233,223,.5);
  border-radius:var(--kp-radius);
  background:#fff;
  box-shadow:var(--shadow-sm);
  overflow:hidden;
  transition:transform .3s cubic-bezier(.16,1,.3,1),box-shadow .3s;
}
.product-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.product-img{
  height:200px;
  position:relative;
  overflow:hidden;
}
.product-img img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .5s cubic-bezier(.16,1,.3,1);
}
.product-card:hover .product-img img{transform:scale(1.08)}
.product-img::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(to bottom,transparent 50%,rgba(0,76,36,.08));
}
.product-img .badge-save{
  position:absolute;top:12px;right:12px;
  background:linear-gradient(135deg,#ff6b35,var(--kp-orange));
  color:#fff;
  font-size:11px;font-weight:800;
  padding:5px 12px;
  border-radius:99px;
  z-index:2;
  box-shadow:0 2px 8px rgba(232,96,10,.3);
}
.product-body{padding:20px}
.product-body h3{
  color:var(--kp-dark);
  font-size:17px;
  font-weight:900;
  margin-bottom:8px;
}
.product-body p{
  color:var(--kp-muted);
  font-size:13px;
  line-height:1.6;
  margin-bottom:14px;
}
.product-price{
  color:var(--kp-green);
  font-size:16px;
  font-weight:900;
  margin-bottom:14px;
}
.product-cta{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--kp-green);
  font-size:13px;
  font-weight:800;
  transition:gap .2s;
}
.product-cta:hover{gap:10px}

/* ===== SERVICES ===== */
.services{background:var(--kp-soft)}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.service-card.featured{
  grid-column:1/-1;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
  text-align:left;
  padding:28px 32px;
  background:linear-gradient(135deg,rgba(10,107,47,.04),rgba(114,189,32,.06));
  border:2px solid rgba(10,107,47,.15);
}
.service-card.featured .service-icon{margin:0}
.service-card.featured h3{font-size:20px;margin-bottom:4px}
.service-card.featured p{margin-bottom:0}
.service-card.featured .service-price{font-size:16px;font-weight:900}
.service-featured-badge{
  display:inline-block;
  background:var(--kp-green);
  color:#fff;
  font-size:11px;
  font-weight:800;
  padding:4px 10px;
  border-radius:99px;
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:.5px;
}
.service-card{
  border:1px solid rgba(223,233,223,.5);
  border-radius:var(--kp-radius);
  background:#fff;
  padding:32px 24px;
  text-align:center;
  transition:transform .3s cubic-bezier(.16,1,.3,1),box-shadow .3s;
  position:relative;
  box-shadow:var(--shadow-sm);
}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.service-card .hot-tag{
  position:absolute;top:14px;right:14px;
  background:linear-gradient(135deg,#ff6b35,#e8600a);
  color:#fff;
  font-size:11px;font-weight:900;
  padding:5px 12px;
  border-radius:99px;
  text-transform:uppercase;
  box-shadow:0 2px 8px rgba(232,96,10,.3);
}
.service-icon{
  width:60px;height:60px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--kp-green),#72bd20);
  display:grid;place-items:center;
  margin:0 auto 18px;
  box-shadow:0 6px 16px rgba(10,107,47,.25);
}
.service-icon svg{width:28px;height:28px;color:#fff}
.service-card h3{
  color:var(--kp-dark);
  font-size:16px;
  font-weight:900;
  margin-bottom:8px;
}
.service-card p{
  color:var(--kp-muted);
  font-size:13px;
  line-height:1.6;
  margin-bottom:12px;
}
.service-price{
  color:var(--kp-green);
  font-size:14px;
  font-weight:800;
}
.combo-strip{
  margin-top:36px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.combo-card{
  background:linear-gradient(135deg,#0a6b2f,#004c24);
  border-radius:var(--kp-radius);
  padding:24px 28px;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  transition:transform .2s cubic-bezier(.16,1,.3,1),box-shadow .2s;
  box-shadow:0 4px 16px rgba(0,76,36,.25);
}
.combo-card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,76,36,.35)}
.combo-card h4{font-size:15px;font-weight:800;margin-bottom:4px}
.combo-card p{font-size:13px;opacity:.8}
.combo-card .btn{flex-shrink:0;padding:10px 18px;font-size:12px}

/* ===== PROJECTS ===== */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.project-card{
  border-radius:var(--kp-radius);
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow-sm);
  transition:transform .3s cubic-bezier(.16,1,.3,1),box-shadow .3s;
}
.project-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.project-img{
  height:220px;
  position:relative;
  overflow:hidden;
}
.project-img img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .5s cubic-bezier(.16,1,.3,1);
}
.project-card:hover .project-img img{transform:scale(1.06)}
.project-img::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(to bottom,transparent 40%,rgba(0,40,18,.15));
}
.project-type{
  position:absolute;top:14px;left:14px;
  background:rgba(0,76,36,.88);
  backdrop-filter:blur(8px);
  color:#fff;
  font-size:11px;font-weight:800;
  padding:5px 14px;
  border-radius:99px;
  z-index:2;
}
.project-body{padding:18px 20px}
.project-body h3{
  color:var(--kp-dark);
  font-size:16px;font-weight:900;
  margin-bottom:4px;
}
.project-body p{
  color:var(--kp-muted);
  font-size:13px;
}
.project-footer{
  text-align:center;
  margin-top:36px;
}

/* ===== PROCESS ===== */
.process{background:var(--kp-soft)}
.process-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
  position:relative;
}
.process-grid::before{
  content:'';
  position:absolute;
  top:32px;
  left:10%;right:10%;
  height:3px;
  background:linear-gradient(90deg,var(--kp-green),#72bd20);
  border-radius:99px;
  z-index:0;
  opacity:.3;
}
.step{
  text-align:center;
  padding:20px 14px;
  position:relative;
  z-index:1;
}
.step-no{
  width:44px;height:44px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--kp-green),#38a832);
  color:#fff;
  display:grid;place-items:center;
  font-weight:900;font-size:16px;
  margin:0 auto 16px;
  box-shadow:0 4px 12px rgba(10,107,47,.3);
}
.step h3{
  color:var(--kp-dark);
  font-size:14px;font-weight:900;
  margin-bottom:6px;
}
.step p{
  color:var(--kp-muted);
  font-size:12px;
  line-height:1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.quote-card{
  border:1px solid rgba(223,233,223,.5);
  border-radius:var(--kp-radius);
  background:#fff;
  padding:32px 28px;
  box-shadow:var(--shadow-sm);
  border-left:4px solid var(--kp-green);
  transition:transform .3s,box-shadow .3s;
}
.quote-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.quote-stars{color:var(--kp-yellow);font-size:18px;margin-bottom:16px;letter-spacing:2px}
.quote-text{
  color:#2a372d;
  font-size:14px;
  line-height:1.75;
  margin-bottom:20px;
  font-style:italic;
}
.quote-author{display:flex;align-items:center;gap:14px}
.quote-avatar{
  width:52px;height:52px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
  border:3px solid var(--kp-soft);
  box-shadow:var(--shadow-sm);
}
.quote-name{font-size:14px;font-weight:800;color:var(--kp-dark)}
.quote-role{font-size:12px;color:var(--kp-muted)}

/* ===== AGENCY ===== */
.agency{
  background:
    linear-gradient(135deg,rgba(10,107,47,.95),rgba(0,76,36,.95)),
    url('../img/home/03-7d838035.jpg') center/cover;
  color:#fff;
  text-align:center;
  position:relative;
}
.agency .section-title{color:#fff}
.agency .section-title::after{background:var(--kp-yellow)}
.agency .section-subtitle{color:rgba(255,255,255,.85)}
.agency-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}

/* ===== NEWS ===== */
.news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.news-card{
  border:1px solid rgba(223,233,223,.5);
  border-radius:var(--kp-radius);
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow-sm);
  transition:transform .3s cubic-bezier(.16,1,.3,1),box-shadow .3s;
}
.news-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.news-img{
  height:200px;
  overflow:hidden;
  position:relative;
}
.news-img img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .5s cubic-bezier(.16,1,.3,1);
}
.news-card:hover .news-img img{transform:scale(1.06)}
.news-body{padding:20px}
.news-date{font-size:12px;color:var(--kp-muted);margin-bottom:8px;font-weight:600}
.news-body h3{
  font-size:15px;font-weight:800;color:var(--kp-dark);
  margin-bottom:8px;line-height:1.5;
}
.news-body p{font-size:13px;color:var(--kp-muted);line-height:1.6}
.news-footer{text-align:center;margin-top:36px}

/* ===== FAQ ===== */
.faq{background:var(--kp-soft)}
.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px 24px;
  max-width:960px;
  margin:0 auto;
}
.faq-item{
  border:1px solid rgba(223,233,223,.5);
  border-radius:var(--kp-radius);
  background:#fff;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:box-shadow .2s;
}
.faq-item:hover{box-shadow:var(--shadow-md)}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:18px 48px 18px 22px;
  color:#1c2b1f;
  font-size:14px;
  font-weight:800;
  position:relative;
  min-height:48px;
  display:flex;align-items:center;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:'+';
  position:absolute;right:18px;top:50%;transform:translateY(-50%);
  color:var(--kp-green);
  font-size:22px;line-height:1;font-weight:700;
  transition:transform .2s;
}
.faq-item[open] summary::after{content:'\2212';transform:translateY(-50%) rotate(180deg)}
.faq-item .faq-answer{
  color:var(--kp-muted);
  font-size:13px;
  line-height:1.7;
  padding:0 22px 18px;
}

/* ===== FINAL CTA ===== */
.final-cta{
  background:
    linear-gradient(135deg,rgba(0,40,18,.9),rgba(0,60,28,.82)),
    url('../img/home/07-375ac78c.jpg') center/cover;
  color:#fff;
  padding:80px 0;
  position:relative;
  text-align:center;
}
.final-cta-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
}
.final-cta h2{color:#fff;font-size:clamp(26px,3.5vw,42px);font-weight:900;margin-bottom:4px;letter-spacing:-.3px}
.final-cta p{color:rgba(255,255,255,.8);font-size:16px;max-width:560px;line-height:1.7}
.final-cta-actions{display:flex;gap:16px;flex-wrap:wrap;justify-content:center}
.final-cta .btn-white{
  font-size:clamp(18px,2vw,22px);
  padding:16px 36px;
  border-radius:999px;
  box-shadow:0 4px 20px rgba(255,255,255,.2);
}
.final-cta .btn-yellow{
  font-size:clamp(15px,1.6vw,17px);
  padding:16px 36px;
  border-radius:999px;
}
.final-cta-trust{
  display:flex;
  gap:24px;
  margin-top:8px;
  flex-wrap:wrap;
  justify-content:center;
}
.final-cta-trust span{
  color:rgba(255,255,255,.5);
  font-size:13px;
  font-weight:700;
  display:flex;align-items:center;gap:6px;
}
.final-cta-trust svg{width:14px;height:14px;color:var(--kp-yellow)}
.final-cta-alt{
  color:rgba(255,255,255,.6);
  font-size:14px;
  margin-top:4px;
}
.final-cta-alt a{color:#fff;text-decoration:underline;text-underline-offset:2px}
.final-cta-alt a:hover{color:var(--kp-yellow)}

/* ===== PREMIUM FORM SYSTEM ===== */
:root{
  --kp-form-bg:#ffffff;
  --kp-form-soft:#f6fbf6;
  --kp-form-line:rgba(10,107,47,.16);
  --kp-form-shadow:0 18px 55px rgba(9,55,26,.12);
  --kp-form-focus:rgba(10,107,47,.13);
}

/* ===== REAL FORM TRUST BLOCKS ===== */
.kp-form-trust{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  padding:12px;
  margin:4px 0 2px;
  border-radius:18px;
  background:linear-gradient(135deg,rgba(10,107,47,.07),rgba(246,195,67,.12));
  border:1px solid rgba(10,107,47,.14);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.78);
}
.kp-form-trust span{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-height:42px;
  padding:8px 9px;
  border-radius:13px;
  background:rgba(255,255,255,.72);
  color:var(--kp-dark,#12351f);
  font-size:12px;
  font-weight:900;
  line-height:1.25;
  text-align:center;
  box-shadow:0 1px 0 rgba(255,255,255,.75),0 8px 20px rgba(9,55,26,.06);
}
.kp-form-trust b{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 18px;
  width:18px;
  height:18px;
  border-radius:999px;
  background:var(--kp-green,#0a6b2f);
  color:#fff;
  font-size:11px;
  line-height:1;
}
@media(max-width:720px){.kp-form-trust{grid-template-columns:1fr;padding:11px}.kp-form-trust span{justify-content:flex-start;text-align:left;font-size:13px;min-height:40px}}

/* ===== MOBILE ICON ALIGNMENT ===== */
@media(max-width:720px){
  body :is(.why-icon,.trust-icon,.service-icon,.card-icon,.contact-icon,.co-cu-icon,.thu-mua-icon,.partner-icon,.benefit-icon,.qt-icon,.dl-ph-icon,.golf-explain-icon,.golf-app-icon,.golf-trust-item span,.step-num,.dl-step-num,.golf-step-num,.initials){display:inline-grid!important;place-items:center!important;flex:0 0 auto!important;line-height:1!important;text-align:center!important;vertical-align:middle!important;font-style:normal!important}
  body :is(.partner-icon,.benefit-icon,.qt-icon,.dl-ph-icon,.golf-explain-icon,.golf-app-icon){font-family:"Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif!important;font-variant-emoji:emoji!important}
  body :is(.why-icon,.trust-icon,.service-icon,.card-icon,.contact-icon,.co-cu-icon,.thu-mua-icon,.golf-trust-item span,.step-num,.dl-step-num,.golf-step-num) :is(svg,img){display:block!important;margin:auto!important;flex:0 0 auto!important;max-width:70%!important;max-height:70%!important}
  body :is(.qt-item,.trust-item,.benefit-item,.contact-card,.thu-mua-left,.golf-trust-item,.dl-product-header,.quote-list li,.golf-checklist li){align-items:flex-start!important}
  body :is(.qt-icon,.trust-icon,.benefit-icon,.contact-icon,.thu-mua-icon,.golf-trust-item span,.dl-ph-icon){margin-top:2px!important}
  body :is(.hero-chip,.golf-chip,.partner-fit,.tier-badge,.tier-star,.dl-step-note,.badge,.kp-inline-badge){min-width:0!important;max-width:100%!important;white-space:normal!important;overflow-wrap:anywhere!important;line-height:1.25!important}
  body :is(.faq-q)::after,body.page-template .process-card::before,body.page-template .golf-checklist li::before,body.page-template .origin-item::before{display:grid!important;place-items:center!important;line-height:1!important;text-align:center!important}
  #siteHeader .btn-phone svg,.footer-social svg,.home .hero-badge svg,.home .final-cta-trust svg{display:block!important;flex:0 0 auto!important;margin:0!important}
  #siteHeader .hamburger{display:flex!important;align-items:center!important;justify-content:center!important;flex-direction:column!important;line-height:1!important}
  .footer-social a,.back-to-top{display:grid!important;place-items:center!important;line-height:1!important}
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta{display:none}
@media(max-width:720px){
  body{padding-bottom:58px}
  .mobile-cta{display:grid;grid-template-columns:1fr 1fr;gap:0;position:fixed;left:0;right:0;bottom:0;z-index:2600;padding:0 0 env(safe-area-inset-bottom);background:transparent;border:0;box-shadow:none;backdrop-filter:none;-webkit-backdrop-filter:none}
  .mobile-cta a{min-height:54px;padding:0 12px;border:0;border-radius:0;display:flex;align-items:center;justify-content:center;text-align:center;font-size:14px;font-weight:900;line-height:1.15;text-decoration:none;box-shadow:none;transform:none}
  .mobile-cta-call{background:#0a6b2f;color:#fff}
  .mobile-cta-zalo{background:#126fc5;color:#fff}
  .mobile-cta .mcta-icon,.mobile-cta small{display:none}
}

/* ===== BLOG DETAIL READING + CAPTION REFINEMENT ===== */
.article-summary{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  padding:18px;
  background:linear-gradient(180deg,#f8fcf8,#fff);
  border-bottom:1px solid rgba(10,107,47,.12);
}
.summary-item{
  min-width:0;
  padding:16px 15px;
  border:1px solid rgba(10,107,47,.12);
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 24px rgba(9,55,26,.06);
}
.summary-item b{
  display:block;
  margin-bottom:5px;
  color:var(--kp-green,#0a6b2f);
  font-size:11px;
  font-weight:950;
  line-height:1.2;
  letter-spacing:.5px;
  text-transform:uppercase;
}
.summary-item span{
  display:block;
  color:var(--kp-dark,#12351f);
  font-size:15px;
  font-weight:900;
  line-height:1.35;
}
.expert-box{
  display:grid;
  grid-template-columns:64px minmax(0,1fr);
  gap:16px;
  margin:0 34px 26px;
  padding:22px;
  border:1px solid rgba(10,107,47,.14);
  border-radius:22px;
  background:linear-gradient(180deg,#fff,#f8fcf8);
  box-shadow:0 16px 42px rgba(9,55,26,.09);
}
.expert-avatar{
  display:grid;
  place-items:center;
  width:64px;
  height:64px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--kp-green,#0a6b2f),#72bd20);
  color:#fff;
  font-size:22px;
  font-weight:950;
  letter-spacing:-.5px;
  box-shadow:0 14px 32px rgba(10,107,47,.22);
}
.expert-box h3{
  margin:0 0 5px;
  color:var(--kp-dark,#12351f);
  font-size:20px;
  font-weight:950;
  line-height:1.25;
}
.expert-role{
  margin-bottom:10px;
  color:var(--kp-green,#0a6b2f);
  font-size:13px;
  font-weight:900;
  line-height:1.45;
}
.expert-box p{
  margin:0;
  color:var(--kp-muted,#5d6b61);
  font-size:14px;
  line-height:1.7;
}
.expert-signals{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.expert-signals span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:7px 11px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(10,107,47,.12);
  color:var(--kp-dark,#12351f);
  font-size:12px;
  font-weight:900;
  line-height:1.2;
  box-shadow:0 8px 20px rgba(9,55,26,.05);
}
.post-bottom-share{
  margin:0 34px 34px;
  padding:22px;
  border:1px solid rgba(10,107,47,.12);
  border-radius:22px;
  background:#fff;
  box-shadow:0 14px 36px rgba(9,55,26,.08);
}
.post-bottom-share h3{
  margin:0 0 13px;
  color:var(--kp-dark,#12351f);
  font-size:18px;
  font-weight:950;
  line-height:1.25;
}
.post-bottom-share .share-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.post-bottom-share .share-btn{
  width:100%;
  min-height:44px;
  box-shadow:0 10px 24px rgba(9,55,26,.08);
}
.has-text-align-center,
.kp-text-center{text-align:center!important}
.kp-list-unstyled{list-style:none!important;padding-left:0!important}
.kp-bg-soft-neutral{background:#f8fafc!important}
.kp-text-danger{color:#d32f2f!important;font-weight:900!important}
.kp-green-text{color:var(--kp-green)!important;font-weight:800!important}
.single-content-wrap{position:relative;overflow:hidden;transition:max-height .35s ease}
.single-content-wrap.is-collapsed{max-height:560px}
.single-content-wrap.is-expanded{max-height:none}
.single-content-wrap.is-collapsed .content-fade{position:absolute;left:0;right:0;bottom:0;height:160px;background:linear-gradient(180deg,rgba(255,255,255,0),#fff 72%)}
.content-toggle{display:flex;align-items:center;justify-content:center;width:100%;min-height:52px;margin:18px 0 8px;border:0;border-radius:999px;background:linear-gradient(135deg,var(--kp-yellow,#f6c343),#ffdc69);color:#17351f;font-weight:900;font-size:15px;cursor:pointer;box-shadow:0 12px 30px rgba(246,195,67,.26)}
.content-toggle:hover{transform:translateY(-1px);box-shadow:0 16px 36px rgba(246,195,67,.34)}
.single-content figure{margin:28px 0;padding:0;background:#f7fbf7;border:1px solid rgba(10,107,47,.12);border-radius:22px;overflow:hidden;box-shadow:0 16px 42px rgba(9,55,26,.10)}
.single-content figure img{display:block;width:100%;height:auto;margin:0;border-radius:0;box-shadow:none}
.single-content figcaption,.single-content .wp-caption-text{margin:0;padding:12px 16px;background:linear-gradient(180deg,#fff,#f7fbf7);color:#5f6f63;font-size:13px;line-height:1.55;text-align:center;font-style:normal;border-top:1px solid rgba(10,107,47,.10)}
.single-content .wp-caption{max-width:100%;margin:28px auto;padding:0;background:#f7fbf7;border:1px solid rgba(10,107,47,.12);border-radius:22px;overflow:hidden;box-shadow:0 16px 42px rgba(9,55,26,.10)}
.single-content .wp-caption img{display:block;width:100%;height:auto;margin:0;border-radius:0;box-shadow:none}
.single-content p>img:only-child{display:block;margin:28px auto;border-radius:22px}
.single-content img.aligncenter{display:block!important;max-width:100%;height:auto;margin:28px auto!important}
.single-content h1 img.aligncenter,
.single-content h2 img.aligncenter,
.single-content h3 img.aligncenter,
.single-content h4 img.aligncenter,
.single-content h5 img.aligncenter,
.single-content h6 img.aligncenter{margin-top:16px!important;margin-bottom:0!important}
.single-content figure.kp-content-figure{width:100%;max-width:560px;margin:28px auto!important;padding:0;background:#f7fbf7;border:1px solid rgba(10,107,47,.12);border-radius:22px;overflow:hidden;box-shadow:0 16px 42px rgba(9,55,26,.10)}
.single-content figure.kp-content-figure img{display:block;width:100%;max-width:100%;height:auto;margin:0 auto;border-radius:0;box-shadow:none}
.single-content .kp-image-row{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;align-items:start;max-width:860px;margin:24px auto 12px!important;padding:12px;background:#f7fbf7;border:1px solid rgba(10,107,47,.12);border-radius:22px;overflow:hidden;box-shadow:0 16px 42px rgba(9,55,26,.10);text-align:center}
.single-content .kp-image-row-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.single-content .kp-image-row-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.single-content p.kp-image-row{line-height:0}
.single-content .kp-image-row img{display:block!important;width:100%!important;height:auto!important;max-width:100%!important;margin:0!important;border-radius:16px;box-shadow:none;background:#fff;object-fit:contain}
.single-content figure.kp-image-row figcaption{grid-column:1/-1;margin:0 -12px -12px;padding:12px 16px;background:linear-gradient(180deg,#fff,#f7fbf7);color:#5f6f63;font-size:13px;line-height:1.55;text-align:center;font-style:normal;border-top:1px solid rgba(10,107,47,.10)}
.single-content h2,
.single-content h3,
.single-content h4{color:var(--kp-dark);font-weight:900;letter-spacing:0;line-height:1.25;margin:32px 0 14px}
.single-content h2{font-size:clamp(25px,3vw,34px)}
.single-content h3{font-size:clamp(21px,2.3vw,27px)}
.single-content h4{font-size:18px}
.single-content p,
.single-content li{color:var(--kp-text);font-size:16px;line-height:1.82}
.single-content p{margin:0 0 18px}
.single-content ul,
.single-content ol{margin:0 0 22px 22px;padding:0}
.single-content li{margin:8px 0}
.single-content strong,
.single-content b{color:var(--kp-dark);font-weight:900}
.single-content a{color:var(--kp-green);font-weight:800;text-decoration:underline;text-underline-offset:3px}
.single-content .has-text-align-center,
.single-content .kp-text-center{text-align:center}
.single-content .kp-list-unstyled{margin-left:0;list-style:none}
.single-content .wp-block-table,
.single-content .kp-table-scroll{display:block;max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;margin:24px 0}
.single-content table{width:100%;min-width:680px;border-collapse:collapse;background:#fff;border:1px solid var(--kp-line);border-radius:16px;overflow:hidden;box-shadow:0 10px 28px rgba(9,55,26,.07)}
.single-content th,
.single-content td{padding:12px 14px;border:1px solid var(--kp-line);vertical-align:top;text-align:left;color:var(--kp-text);font-size:14px;line-height:1.55}
.single-content th{background:var(--kp-dark);color:#fff;font-weight:900}
.single-content tr:nth-child(even) td{background:var(--kp-soft)}
.single-content .kp-bg-soft-neutral{background:#f8fafc}
.single-content .kp-text-danger{color:#d32f2f;font-weight:900}
.back-to-top{position:fixed;right:22px;bottom:104px;z-index:2400;width:46px;height:46px;border:0;border-radius:50%;background:linear-gradient(135deg,var(--kp-green,#0a6b2f),#72bd20);color:#fff;font-size:22px;font-weight:900;box-shadow:0 16px 40px rgba(9,55,26,.22);cursor:pointer;opacity:0;visibility:hidden;transform:translateY(10px);transition:.2s ease}
.back-to-top.is-visible{opacity:1;visibility:visible;transform:translateY(0)}
.back-to-top:hover{transform:translateY(-2px)}
@media(max-width:720px){.article-summary{grid-template-columns:1fr;gap:10px;padding:16px}.summary-item{padding:14px 15px}.expert-box{grid-template-columns:48px minmax(0,1fr);gap:13px;margin:0 18px 22px;padding:18px;border-radius:20px}.expert-avatar{width:48px;height:48px;border-radius:15px;font-size:17px}.expert-box h3{font-size:18px}.expert-role{font-size:12.5px}.expert-signals{gap:7px}.expert-signals span{min-height:32px;font-size:11.5px}.post-bottom-share{margin:0 18px 24px;padding:18px;border-radius:20px}.post-bottom-share .share-row{grid-template-columns:1fr}.single-content-wrap.is-collapsed{max-height:520px}.back-to-top{right:8px;bottom:64px;width:38px;height:38px;font-size:18px}.single-content figure,.single-content .wp-caption{border-radius:18px;margin:22px 0}.single-content figcaption,.single-content .wp-caption-text{font-size:12.5px;padding:10px 12px}.single-content .kp-image-row{gap:8px;padding:8px;border-radius:18px}.single-content .kp-image-row img{border-radius:12px}.single-content figure.kp-image-row figcaption{margin:0 -8px -8px;padding:10px 12px;font-size:12.5px}.single-content p,.single-content li{font-size:15.5px;line-height:1.76}.single-content table{min-width:620px}.single-content th,.single-content td{padding:10px 12px;font-size:13px}}

.related-title{text-align:left;font-size:28px}

/* ===== HOMEPAGE SEO/UX FIXES ===== */
.home .hero-capsule{max-width:780px;margin:20px auto 0;font-size:14px;line-height:1.65;color:rgba(255,255,255,.68);text-align:center;text-shadow:0 1px 3px rgba(0,0,0,.2)}
.home .products-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:22px;justify-items:stretch}
.final-cta .form-row{align-items:flex-start}
.final-cta .form-field{display:flex;flex-direction:column;gap:5px;flex:1;width:100%}
.final-cta .form-field label{font-size:13px;font-weight:800;color:rgba(255,255,255,.86);text-align:left;line-height:1.35}
.final-cta .form-field input,.final-cta .form-field select,.final-cta .form-field textarea{width:100%}
@media(max-width:720px){.home .hero-capsule{font-size:13px;line-height:1.58;margin-top:16px}}

/* ===== HOMEPAGE PRODUCT/SERVICE RESPONSIVE POLISH ===== */
@media(min-width:1180px){
  
  .home .products-grid .product-card:nth-child(5){grid-column:1 / -1;width:100%}
}
@media(min-width:721px) and (max-width:1179px){
  .home .products-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
  .home .products-grid .product-card:nth-child(5){grid-column:1 / -1;width:100%}
}
@media(max-width:720px){
  .home .hero-capsule{font-size:13px;line-height:1.58;margin-top:16px;max-width:94%}
  
  
  
  
  
  
  
  
  
  
  
  
  .final-cta .form-row{gap:12px}
}


/* ===== HOMEPAGE MOBILE TRUST STRIP ===== */
@media(max-width:720px){
  .home .trust-strip{padding:18px 0;background:linear-gradient(180deg,var(--kp-soft),#fff)}
  .home .trust-strip-inner{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;padding:0 14px;max-width:430px}
  .home .trust-item{justify-content:flex-start;align-items:center;gap:10px;min-height:76px;padding:12px 10px;border:1px solid rgba(10,107,47,.10);border-radius:18px;background:#fff;box-shadow:0 10px 26px rgba(9,55,26,.06)}
  .home .trust-icon{width:38px;height:38px;border-radius:12px;box-shadow:0 8px 18px rgba(10,107,47,.18)}
  .home .trust-icon svg{width:19px;height:19px}
  .home .trust-text{font-size:18px;line-height:1.08;font-weight:950;letter-spacing:-.25px;color:var(--kp-green)}
  .home .trust-text small{font-size:11px;line-height:1.22;font-weight:800;color:var(--kp-muted);margin-top:4px;text-transform:none;letter-spacing:0}
}
@media(max-width:380px){
  .home .trust-strip-inner{gap:8px;padding:0 10px}
  .home .trust-item{min-height:72px;padding:10px 8px;gap:8px}
  .home .trust-icon{width:34px;height:34px;border-radius:10px}
  .home .trust-text{font-size:16px}
  .home .trust-text small{font-size:10.5px}
}

/* ===== HOMEPAGE PRODUCT/SERVICE RESPONSIVE POLISH ===== */
@media(min-width:1180px){
  .home .products-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:22px;justify-items:stretch}
  .home .product-card{border-radius:22px}
  .home .product-body{padding:18px 16px 20px}
  .home .product-body h3{font-size:16px;line-height:1.25}
  .home .product-body p{font-size:12.5px;line-height:1.55}
  .home .product-price{font-size:14px}
}
@media(min-width:721px) and (max-width:1179px){
  .home .products-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
  .home .products-grid .product-card:last-child{grid-column:2/span 1}
}
@media(max-width:720px){
  .home .products-grid{grid-template-columns:1fr;gap:16px}
  .home .service-card.featured{display:grid;grid-template-columns:48px minmax(0,1fr);gap:14px;align-items:flex-start;text-align:left;padding:20px 16px;border-radius:22px}
  .home .service-card.featured .service-icon{width:48px;height:48px;border-radius:14px;margin:0;grid-row:1/span 3}
  .home .service-card.featured .service-icon svg{width:23px;height:23px}
  .home .service-card.featured > div:nth-of-type(2){min-width:0}
  .home .service-card.featured h3{font-size:19px;line-height:1.22;margin:4px 0 8px;letter-spacing:-.2px}
  .home .service-card.featured p{font-size:13.5px;line-height:1.58;margin:0;color:var(--kp-muted)}
  .home .service-card.featured .service-featured-badge{font-size:10px;padding:4px 9px;margin-bottom:3px}
  .home .service-card.featured .service-price{grid-column:1/-1;display:inline-flex;align-items:center;justify-content:center;width:100%;min-height:42px;margin-top:10px;border-radius:14px;background:rgba(10,107,47,.08);color:var(--kp-green);font-size:15px;font-weight:950}
  .home .services-grid{grid-template-columns:1fr;gap:14px}
  .home .service-card:not(.featured){padding:22px 18px;border-radius:22px;text-align:left}
  .home .service-card:not(.featured) .service-icon{margin:0 0 14px;width:50px;height:50px}
}
@media(max-width:380px){
  .home .service-card.featured{grid-template-columns:42px minmax(0,1fr);gap:12px;padding:18px 14px}
  .home .service-card.featured .service-icon{width:42px;height:42px}
  .home .service-card.featured h3{font-size:17px}
  .home .service-card.featured p{font-size:13px}
}

/* ===== HOMEPAGE AGENCY BANNER CTA ===== */
.home .product-card-agency{grid-column:1/-1;display:block;position:relative;overflow:hidden;padding:0;border:0;border-radius:30px;background:radial-gradient(circle at 85% 20%,rgba(246,195,67,.32),transparent 30%),linear-gradient(135deg,#042413 0%,#0a6b2f 58%,#72bd20 100%);color:#fff;box-shadow:0 24px 70px rgba(9,55,26,.20)}
.home .product-card-agency:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.10),transparent 48%),radial-gradient(circle at 12% 90%,rgba(255,255,255,.12),transparent 26%);pointer-events:none}
.home .product-card-agency .product-body{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) auto;grid-template-areas:"eyebrow action" "title action" "desc action" "price action";column-gap:28px;align-items:center;min-height:0;padding:32px 36px;text-align:left}
.home .product-card-agency .agency-eyebrow{grid-area:eyebrow;justify-self:start;display:inline-flex;margin:0 0 10px;padding:7px 12px;border-radius:999px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.24);color:#d8ffc6;font-size:11px;font-weight:950;text-transform:uppercase;letter-spacing:.5px}
.home .product-card-agency h3{grid-area:title;color:#fff;font-size:clamp(26px,3vw,36px);line-height:1.08;margin:0 0 10px;letter-spacing:-.65px}
.home .product-card-agency p{grid-area:desc;max-width:760px;color:rgba(255,255,255,.86);font-size:15px;line-height:1.65;margin:0}
.home .product-card-agency .product-price{grid-area:price;display:inline-flex;justify-self:start;margin-top:16px;padding:8px 13px;border-radius:999px;background:rgba(246,195,67,.18);border:1px solid rgba(246,195,67,.34);color:var(--kp-yellow);font-size:15px;font-weight:950}
.home .product-card-agency .product-cta{grid-area:action;display:inline-flex;align-items:center;justify-content:center;min-width:178px;min-height:52px;padding:13px 20px;border-radius:999px;background:#fff;color:var(--kp-green);font-weight:950;box-shadow:0 14px 34px rgba(0,0,0,.16);white-space:nowrap;gap:6px}
.home .product-card-agency:hover{transform:translateY(-4px);box-shadow:0 30px 80px rgba(9,55,26,.26)}
.home .product-card-agency:hover .product-cta{gap:10px}
@media(max-width:900px){.home .product-card-agency .product-body{grid-template-columns:1fr;grid-template-areas:"eyebrow" "title" "desc" "price" "action";padding:28px 24px}.home .product-card-agency .product-cta{margin-top:18px;width:100%;min-width:0}.home .product-card-agency h3{font-size:26px}.home .product-card-agency p{font-size:14px}}
@media(max-width:720px){.home .product-card-agency{border-radius:24px}.home .product-card-agency .product-body{padding:26px 20px}.home .product-card-agency h3{font-size:24px}.home .product-card-agency p{font-size:13.5px;line-height:1.6}.home .product-card-agency .product-price{font-size:14px}.home .product-card-agency .product-cta{min-height:48px}}

.kp-legacy-gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;margin:24px 0}
.kp-legacy-project-image{margin:0;overflow:hidden;border-radius:16px;background:#f3f7f1;border:1px solid rgba(10,107,47,.10)}
.kp-legacy-project-image img{display:block;width:100%;height:auto;aspect-ratio:4/3;object-fit:cover}
.single-post .kp-legacy-gallery + .kp-legacy-gallery{margin-top:16px}

.kp-wpforms-embed,
.wpforms-container-full{
  width:100%;
  max-width:760px;
  margin:0 auto!important;
}
.quote-panel .kp-wpforms-embed,.form-panel .kp-wpforms-embed,.quote-right .kp-wpforms-embed,
.quote-panel .wpforms-container-full,.form-panel .wpforms-container-full,.quote-right .wpforms-container-full{max-width:none;margin:0!important}
div.wpforms-container-full{container-type:inline-size}
div.wpforms-container-full .wpforms-form{
  position:relative;
  display:block!important;
  width:100%;
  box-sizing:border-box;
  overflow:hidden;
  padding:26px!important;
  border:1px solid rgba(10,107,47,.16)!important;
  border-radius:24px!important;
  background:linear-gradient(180deg,#fff 0%,#f6fbf6 100%)!important;
  box-shadow:0 18px 55px rgba(9,55,26,.12)!important;
}
div.wpforms-container-full .wpforms-form::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg,var(--kp-green),#72bd20,var(--kp-yellow));
}
div.wpforms-container-full .wpforms-form > *{position:relative;z-index:1}
div.wpforms-container-full .wpforms-field-container{
  display:grid!important;
  grid-template-columns:1fr;
  gap:16px;
  width:100%!important;
}
div.wpforms-container-full .wpforms-field{clear:none!important;width:100%!important;max-width:none!important;min-width:0!important;margin:0!important;padding:0!important}
div.wpforms-container-full .wpforms-field-label{
  display:block;
  margin:0 0 8px!important;
  color:var(--kp-dark)!important;
  font-size:13px!important;
  font-weight:900!important;
  line-height:1.35!important;
  letter-spacing:.01em;
}
div.wpforms-container-full .wpforms-required-label{color:#b42318!important}
div.wpforms-container-full input[type=text],div.wpforms-container-full input[type=email],div.wpforms-container-full input[type=tel],div.wpforms-container-full input[type=number],div.wpforms-container-full select,div.wpforms-container-full textarea{
  width:100%!important;
  max-width:none!important;
  min-height:52px!important;
  box-sizing:border-box!important;
  border:1px solid rgba(10,107,47,.2)!important;
  border-radius:14px!important;
  background:#fff!important;
  color:var(--kp-text)!important;
  font-family:inherit!important;
  font-size:15px!important;
  font-weight:500!important;
  line-height:1.45!important;
  padding:13px 15px!important;
  outline:none!important;
  box-shadow:0 1px 0 rgba(9,55,26,.04),inset 0 1px 2px rgba(9,55,26,.035)!important;
  transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease,background .18s ease!important;
}
div.wpforms-container-full textarea{min-height:112px!important;resize:vertical}
div.wpforms-container-full input::placeholder,div.wpforms-container-full textarea::placeholder{color:rgba(31,51,39,.48)!important;font-weight:500!important}
div.wpforms-container-full input:hover,div.wpforms-container-full select:hover,div.wpforms-container-full textarea:hover{border-color:rgba(10,107,47,.34)!important}
div.wpforms-container-full input:focus,div.wpforms-container-full select:focus,div.wpforms-container-full textarea:focus{
  border-color:var(--kp-green)!important;
  background:#fff!important;
  box-shadow:0 0 0 4px rgba(10,107,47,.13),0 10px 24px rgba(9,55,26,.08)!important;
  transform:translateY(-1px);
}
div.wpforms-container-full .wpforms-submit-container{margin:16px 0 0!important;padding:0!important}
div.wpforms-container-full button[type=submit],div.wpforms-container-full .wpforms-submit{
  width:100%!important;
  min-height:52px!important;
  border:0!important;
  border-radius:999px!important;
  background:linear-gradient(135deg,var(--kp-yellow),#ffd966)!important;
  color:#15381f!important;
  font-family:inherit!important;
  font-size:15px!important;
  font-weight:900!important;
  cursor:pointer!important;
  box-shadow:0 12px 26px rgba(246,195,67,.24)!important;
  transition:transform .2s,box-shadow .2s,filter .2s!important;
}
div.wpforms-container-full button[type=submit]:hover,div.wpforms-container-full .wpforms-submit:hover{filter:saturate(1.04);transform:translateY(-2px);box-shadow:0 16px 34px rgba(246,195,67,.3)!important}
div.wpforms-container-full .wpforms-form:focus-within{border-color:rgba(10,107,47,.28)!important;box-shadow:0 22px 65px rgba(9,55,26,.15)!important}
div.wpforms-container-full .wpforms-confirmation-container,
div.wpforms-container-full .wpforms-confirmation-container-full{
  margin:0!important;
  border:1px solid rgba(10,107,47,.18)!important;
  border-radius:16px!important;
  background:#f3fbf5!important;
  color:var(--kp-dark)!important;
  font-weight:800!important;
  line-height:1.65!important;
  padding:18px 20px!important;
  box-shadow:0 14px 36px rgba(9,55,26,.1)!important;
}
div.wpforms-container-full .wpforms-confirmation-container p,
div.wpforms-container-full .wpforms-confirmation-container-full p{
  margin:0!important;
  color:var(--kp-dark)!important;
  font-size:15px!important;
  font-weight:800!important;
  line-height:1.65!important;
}
div.wpforms-container-full .wpforms-error,div.wpforms-container-full label.wpforms-error{color:#b42318!important;font-size:12px!important;font-weight:800!important}
html body #wpforms-886-field_7-container,html body #wpforms-886-field_8-container{
  display:none!important;
  position:absolute!important;
  left:-100vw!important;
  top:auto!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
  clip:rect(0 0 0 0)!important;
  clip-path:inset(50%)!important;
  visibility:hidden!important;
  opacity:0!important;
  pointer-events:none!important;
  white-space:nowrap!important;
  padding:0!important;
  margin:0!important;
}
html body #wpforms-886-field_7-container label,html body #wpforms-886-field_8-container label{visibility:hidden!important}
html body div.wpforms-container-full form#wpforms-form-886 #wpforms-886-field_7-container,
html body div.wpforms-container-full form#wpforms-form-886 #wpforms-886-field_8-container,
html body div.wpforms-container-full form#wpforms-form-886 #wpforms-886-field_7-container *,
html body div.wpforms-container-full form#wpforms-form-886 #wpforms-886-field_8-container *{
  display:none!important;
  visibility:hidden!important;
  position:absolute!important;
  left:-99999px!important;
  width:1px!important;
  height:1px!important;
  min-width:0!important;
  min-height:0!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  overflow:hidden!important;
  clip:rect(0 0 0 0)!important;
  clip-path:inset(50%)!important;
  opacity:0!important;
  pointer-events:none!important;
  white-space:nowrap!important;
}
@container (min-width:560px){
  div.wpforms-container-full .wpforms-field-container{grid-template-columns:repeat(2,minmax(0,1fr))}
  #wpforms-886-field_5-container,
  div.wpforms-container-full .wpforms-field-textarea{grid-column:1/-1!important}
}
.final-cta div.wpforms-container-full .wpforms-form{
  max-width:820px;
  margin:0 auto;
  border-color:rgba(255,255,255,.18)!important;
  background:linear-gradient(180deg,rgba(255,255,255,.16),rgba(255,255,255,.08))!important;
  backdrop-filter:blur(12px);
  box-shadow:0 22px 62px rgba(0,0,0,.22)!important;
}
.final-cta div.wpforms-container-full .wpforms-field-label{color:#fff!important}
.final-cta div.wpforms-container-full input[type=text],.final-cta div.wpforms-container-full input[type=email],.final-cta div.wpforms-container-full input[type=tel],.final-cta div.wpforms-container-full input[type=number],.final-cta div.wpforms-container-full select,.final-cta div.wpforms-container-full textarea{border-color:rgba(255,255,255,.22)!important;background:rgba(255,255,255,.12)!important;color:#fff!important}
.final-cta div.wpforms-container-full input::placeholder,.final-cta div.wpforms-container-full textarea::placeholder{color:rgba(255,255,255,.58)!important}
@media(max-width:720px){div.wpforms-container-full{max-width:100%}div.wpforms-container-full .wpforms-form{padding:22px 18px!important;border-radius:20px!important}div.wpforms-container-full input[type=text],div.wpforms-container-full input[type=email],div.wpforms-container-full input[type=tel],div.wpforms-container-full input[type=number],div.wpforms-container-full select,div.wpforms-container-full textarea{min-height:50px!important;font-size:16px!important}div.wpforms-container-full .wpforms-submit{min-height:54px!important}}

/* Sitewide mobile scroll wrapper for legacy HTML tables in WordPress content. */
.kp-table-scroll{
  display:block;
  box-sizing:border-box;
  max-width:100%;
  margin:24px 0 28px;
  overflow-x:auto!important;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior-inline:contain;
  touch-action:pan-x pan-y;
  border:1px solid rgba(10,107,47,.12);
  border-radius:14px;
  background:#fff;
  box-shadow:0 10px 28px rgba(9,55,26,.07);
}
.kp-table-scroll>table{
  display:table!important;
  width:100%!important;
  min-width:760px;
  max-width:none!important;
  margin:0!important;
  overflow:visible!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
}
.kp-table-scroll>table::after{content:none!important;display:none!important}
.kp-table-scroll::-webkit-scrollbar{height:8px}
.kp-table-scroll::-webkit-scrollbar-track{background:rgba(10,107,47,.08)}
.kp-table-scroll::-webkit-scrollbar-thumb{background:rgba(10,107,47,.38);border-radius:999px}
@media(max-width:720px){
  .kp-table-scroll{max-width:100%;scroll-padding-inline:12px}
  .kp-table-scroll::after{
    content:"Vuốt ngang để xem đủ bảng";
    position:sticky;
    left:0;
    display:block;
    min-width:100%;
    padding:9px 12px 10px;
    border-top:1px solid rgba(10,107,47,.10);
    background:linear-gradient(90deg,rgba(10,107,47,.08),rgba(255,201,40,.16));
    color:#33503c;
    font-size:12px;
    line-height:1.35;
    font-weight:800;
  }
  .kp-table-scroll>table{min-width:720px}
  .kp-table-scroll>table th:first-child,
  .kp-table-scroll>table td:first-child{
    position:static!important;
    left:auto!important;
    z-index:auto!important;
    max-width:none!important;
    box-shadow:none!important;
  }
}
@media(max-width:420px){.kp-table-scroll>table{min-width:680px}}


/* pages.css */
/* ===== HERO ===== */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:url('../img/home/03-7d838035.jpg') center/cover no-repeat;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(0,40,18,.88) 0%,rgba(0,60,28,.78) 40%,rgba(10,107,47,.68) 100%);
  z-index:1;
}
.hero-copy{
  position:relative;z-index:2;
  max-width:820px;
  margin:0 auto;
  padding:140px 24px 60px;
  text-align:center;
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  color:rgba(255,255,255,.7);
  font-size:13px;font-weight:600;
  letter-spacing:2.5px;text-transform:uppercase;
  margin-bottom:20px;
}
.hero-eyebrow::before,.hero-eyebrow::after{
  content:'';display:block;width:32px;height:1px;
  background:rgba(255,255,255,.35);
}
.hero h1{
  color:#fff;
  font-size:clamp(34px,4.8vw,60px);
  line-height:1.12;
  font-weight:900;
  margin-bottom:20px;
  letter-spacing:-0.5px;
  text-shadow:0 2px 20px rgba(0,0,0,.15);
}
.hero h1 span{
  color:var(--kp-yellow);
}
.hero-lead{
  color:rgba(255,255,255,.85);
  font-size:clamp(16px,1.5vw,18px);
  line-height:1.7;
  margin-bottom:28px;
  max-width:560px;
  margin-left:auto;margin-right:auto;
}
.hero-stats{
  display:flex;
  justify-content:center;
  gap:16px;
  margin:24px auto;
  flex-wrap:wrap;
}
.hero-stat{
  background:rgba(255,255,255,.1);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--kp-radius);
  padding:20px 28px 16px;
  text-align:center;
  min-width:140px;
}
.hero-stat-num{
  color:#fff;
  font-size:clamp(28px,3vw,40px);
  font-weight:900;
  line-height:1;
}
.hero-stat-label{
  color:rgba(255,255,255,.8);
  font-size:13px;
  font-weight:700;
  margin-top:6px;
}
.hero-actions{display:flex;gap:16px;margin:28px 0 24px;flex-wrap:wrap;justify-content:center}
.hero .btn-primary{background:var(--kp-yellow);color:#111}
.hero .btn-outline{border-color:rgba(255,255,255,.5);color:#fff;background:rgba(255,255,255,.08)}
.hero .btn-outline:hover{background:rgba(255,255,255,.18);border-color:#fff}
.hero-badges{
  display:inline-flex;
  border:1px solid rgba(255,255,255,.15);
  border-radius:var(--kp-radius);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  overflow:hidden;
}
.hero-badge{
  padding:10px 20px;
  color:rgba(255,255,255,.9);
  font-weight:800;
  font-size:13px;
  border-right:1px solid rgba(255,255,255,.12);
  display:flex;align-items:center;gap:6px;
}
.hero-badge:last-child{border-right:0}
.hero-badge svg{width:16px;height:16px;color:var(--kp-yellow);flex-shrink:0}


/* ===== WHY CHOOSE (DARK) ===== */
.why-section{
  background:linear-gradient(135deg,#003318 0%,#004c24 40%,#0a6b2f 100%);
  position:relative;
  overflow:hidden;
}
.why-section::before{
  content:'';
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 20% 80%,rgba(114,189,32,.12) 0,transparent 50%),
    radial-gradient(circle at 80% 20%,rgba(255,201,40,.06) 0,transparent 50%);
}
.why-section .section-title{color:#fff}
.why-section .section-title::after{background:var(--kp-yellow)}
.why-section .section-subtitle{color:rgba(255,255,255,.75)}
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  position:relative;
  z-index:1;
}
.why-card{
  text-align:center;
  padding:28px 20px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--kp-radius);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transition:background .3s,transform .3s;
}
.why-card:hover{background:rgba(255,255,255,.14);transform:translateY(-4px)}
.why-icon{
  width:48px;height:48px;
  border-radius:14px;
  background:rgba(255,201,40,.15);
  border:1px solid rgba(255,201,40,.25);
  display:grid;place-items:center;
  margin:0 auto 14px;
}
.why-icon svg{width:22px;height:22px;color:var(--kp-yellow);stroke-width:2}
.why-num{
  color:#fff;
  font-size:clamp(26px,3vw,36px);
  font-weight:900;
  line-height:1;
  margin-bottom:8px;
}
.why-label{
  color:rgba(255,255,255,.8);
  font-size:14px;
  font-weight:600;
}
.why-desc{
  color:rgba(255,255,255,.55);
  font-size:13px;
  line-height:1.6;
  margin-top:10px;
}


/* ===== GLOBAL WORDPRESS MIGRATION VISUAL FIX ===== */
body{font-family:'Be Vietnam Pro',Arial,sans-serif;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;}
main{overflow:hidden;}
.page-template .service-hero h1,.page-template .garden-hero h1,.page-template .golf-hero h1,.page-template .contact-hero h1,.page-template .project-hero h1,.page-template .news-hero h1,.page-template .hero h1{letter-spacing:-1.1px;text-wrap:balance;}
.page-template .section-title{text-wrap:balance;letter-spacing:-.45px;}
.page-template .section-subtitle{max-width:820px;}
.page-template img{max-width:100%;height:auto;}
.page-template .product-img img,.page-template .project-img img,.page-template .garden-thumb img,.page-template .case-image img,.page-template .portfolio-card img{width:100%;height:100%;object-fit:cover;}
.page-template .btn,.home .btn{white-space:normal;text-align:center;}
@media(max-width:720px){.page-template .service-hero h1,.page-template .garden-hero h1,.page-template .golf-hero h1,.page-template .contact-hero h1,.page-template .project-hero h1,.page-template .news-hero h1,.page-template .hero h1{font-size:clamp(32px,9.5vw,46px)!important;line-height:1.12!important;}.page-template .section-title{font-size:clamp(24px,7vw,34px)!important;line-height:1.25!important;}}



/* ===== SERVICE PAGE CSS SAFETY FIX ===== */
.page-template-page-thi-cong-san-bong-co-nhan-tao main,
.page-template-page-thi-cong-san-vuon-co-nhan-tao main,
.page-template-page-thi-cong-san-bong-ro main,
.page-template-page-thi-cong-duong-chay-dien-kinh main,
.page-template-page-thi-cong-san-pickleball main,
.page-template-page-thi-cong-to-hop-san-the-thao main,
.page-template-page-bao-tri-san-co-nhan-tao main{background:#fff;}
.page-template .service-hero{position:relative;isolation:isolate;overflow:hidden;}
.page-template .service-hero .container{position:relative;z-index:2;}
.page-template .service-hero-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);gap:44px;align-items:center;}
.page-template .service-hero h1{font-weight:900;letter-spacing:-1.2px;}
.page-template .hero-panel,.page-template .service-card,.page-template .quote-block,.page-template .faq-item{box-sizing:border-box;}
.page-template .trust-strip{position:relative;z-index:3;}
.page-template .trust-strip-inner{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;}
.page-template .portfolio-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;}
.page-template .faq-list{display:grid;gap:14px;}
@media(max-width:1100px){.page-template .service-hero-grid{grid-template-columns:1fr;}.page-template .trust-strip-inner{grid-template-columns:repeat(2,minmax(0,1fr));}.page-template .portfolio-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:720px){.page-template .service-hero{padding-top:96px;}.page-template .service-hero-grid,.page-template .trust-strip-inner,.page-template .portfolio-grid{grid-template-columns:1fr;}.page-template .service-hero h1{font-size:clamp(32px,9vw,44px)!important;}.page-template .service-hero p{font-size:15px;}.page-template .quote-block{padding:28px 20px;}}



/* ===== FINAL STATIC IMPORT LAYOUT GUARD ===== */
main > p:empty{display:none;}
.container > p:empty,.products-grid > p:empty,.services-grid > p:empty,.projects-grid > p:empty{display:none;}
.products-grid,.services-grid,.projects-grid,.why-grid,.trust-strip-inner,.portfolio-grid,.related-grid{align-items:stretch;}
.product-card,.service-card,.project-card,.related-card,.portfolio-card{height:100%;}
.product-card img,.service-card img,.project-card img,.portfolio-card img{display:block;}


/* ===== PRODUCT COMPARISON TABLE CONTRAST FIX ===== */
.page-template-page-co-nhan-tao-san-bong .compare-table-wrap th,
.page-template-page-co-nhan-tao-san-bong .compare-table-wrap th.col-green,
.page-template-page-co-nhan-tao-san-bong .compare-table-wrap thead .col-green{
  color:#12351f!important;
  background:#ffffff!important;
  text-shadow:none!important;
}

.page-template-page-co-nhan-tao-san-bong .compare-table-wrap td.col-green{
  color:#0a6b2f!important;
  background:rgba(10,107,47,.045)!important;
}

/* Archive and project listing cards */
.archive-hero{padding:142px 0 54px;background:linear-gradient(135deg,rgba(0,38,17,.94),rgba(0,91,43,.84)),url(../img/home/16-50428106.jpg) center/cover no-repeat;color:#fff;position:relative;overflow:hidden}
.archive-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.02));pointer-events:none}.archive-hero .container{position:relative;z-index:1}.archive-hero .breadcrumb{display:inline-flex;align-items:center;gap:8px;width:fit-content;margin:0 0 14px;padding:7px 11px;border:1px solid rgba(255,255,255,.18);border-radius:999px;background:rgba(255,255,255,.1);color:rgba(255,255,255,.82);font-size:13px;font-weight:800}.archive-hero .breadcrumb a,.archive-hero .breadcrumb span{color:inherit}.archive-hero .breadcrumb a{color:#fff}.archive-kicker{display:inline-flex;align-items:center;border:1px solid rgba(255,201,40,.34);background:rgba(255,201,40,.14);color:var(--kp-yellow);border-radius:999px;padding:7px 13px;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.7px;margin-bottom:16px}.archive-hero .section-title{color:#fff;text-align:left;margin-left:0;max-width:900px}.archive-hero .section-title::after{margin-left:0}.archive-hero .section-subtitle{color:rgba(255,255,255,.84);text-align:left;margin-left:0;max-width:780px}.archive-listing{padding-top:46px}.post-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.post-card{display:flex;flex-direction:column;min-height:100%;background:#fff;border:1px solid rgba(223,233,223,.9);border-radius:22px;overflow:hidden;box-shadow:0 10px 28px rgba(9,55,26,.07);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}.post-card:hover{transform:translateY(-6px);box-shadow:0 18px 46px rgba(9,55,26,.13);border-color:rgba(10,107,47,.28)}.post-img{position:relative;height:230px;background:linear-gradient(135deg,rgba(10,107,47,.12),rgba(255,201,40,.16));overflow:hidden}.post-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s ease}.post-card:hover .post-img img{transform:scale(1.05)}.post-img::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 48%,rgba(0,38,17,.34));pointer-events:none}.post-img-fallback{height:100%;display:grid;place-items:center;color:var(--kp-green);font-size:18px;font-weight:900;text-transform:uppercase;letter-spacing:.4px}.post-body{padding:20px;display:flex;flex-direction:column;flex:1}.post-body h3{color:var(--kp-dark);font-size:19px;line-height:1.35;font-weight:900;margin-bottom:9px}.post-body p{color:var(--kp-muted);font-size:14px;line-height:1.7;margin-bottom:16px}.read-more{margin-top:auto;color:var(--kp-green);font-size:13px;font-weight:900}.project-post-card .project-type{position:absolute;top:14px;left:14px;z-index:2;background:rgba(0,76,36,.92);color:#fff;border-radius:999px;padding:6px 13px;font-size:11px;font-weight:900;box-shadow:0 8px 18px rgba(0,0,0,.15)}
@media(max-width:1100px){.post-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:720px){.archive-hero{padding:118px 0 38px}.archive-listing{padding-top:34px}.post-grid{grid-template-columns:1fr;gap:18px}.post-img{height:215px}.post-body{padding:17px}.post-body h3{font-size:18px}}
.archive-note{margin-top:22px;color:var(--kp-muted);font-size:13px;text-align:center}.archive-pagination{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;margin-top:28px}.archive-pagination a{display:inline-flex;align-items:center;justify-content:center;min-height:44px;border-radius:999px;background:var(--kp-green);color:#fff;font-weight:900;padding:10px 18px;box-shadow:0 10px 24px rgba(10,107,47,.16)}.archive-pagination a:hover{background:#085927;transform:translateY(-1px)}
.post-body h2{color:var(--kp-dark);font-size:19px;line-height:1.35;font-weight:900;margin-bottom:9px}

/* Project archive aligned with demo page */
.archive-project-hero{min-height:560px}.archive-project-hero-grid{padding:138px 0 70px}.archive-project-grid .project-body h2{color:var(--kp-dark);font-size:18px;font-weight:900;line-height:1.35;margin-bottom:8px}.archive-project-card .read-more{display:inline-flex;margin-top:16px}.archive-project-trust{margin-top:-1px}.archive-project-mosaic .mosaic-card img{width:100%;height:100%;object-fit:cover;display:block}.project-single-hero .single-excerpt{font-size:16px;max-width:760px}.project-single-article{padding:0;overflow:hidden}.project-fact-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:0;border-bottom:1px solid rgba(10,107,47,.12);background:linear-gradient(180deg,#f8fcf8,#fff)}.project-fact{padding:20px 24px;border-right:1px solid rgba(10,107,47,.10);border-bottom:1px solid rgba(10,107,47,.10)}.project-fact:nth-child(2n){border-right:0}.project-fact b{display:block;color:var(--kp-green);font-size:12px;text-transform:uppercase;letter-spacing:.5px;margin-bottom:6px}.project-fact span{display:block;color:var(--kp-dark);font-size:16px;font-weight:900;line-height:1.45}.project-single-article .single-content-wrap{padding:32px}.project-clean-copy h2{color:var(--kp-dark);font-size:clamp(26px,3vw,36px);font-weight:900;line-height:1.2;margin:0 0 16px}.project-clean-copy p{font-size:17px;line-height:1.9;color:var(--kp-text);margin:0;white-space:normal}.project-consult-box{margin:0 32px 32px;background:linear-gradient(135deg,#052814,#0a6b2f);color:#fff;border-radius:24px;padding:28px;box-shadow:0 18px 50px rgba(9,55,26,.18)}.project-consult-box h2{color:#fff;font-size:24px;font-weight:900;margin:0 0 8px}.project-consult-box p{color:rgba(255,255,255,.82);line-height:1.65;margin:0 0 16px}.project-consult-box .btn-outline{border-color:rgba(255,255,255,.5);color:#fff}.project-consult-box .btn-outline:hover{background:rgba(255,255,255,.12)}@media(max-width:1100px){.archive-project-mosaic{display:none}.archive-project-hero-grid{grid-template-columns:1fr}.archive-project-hero{min-height:auto}.archive-project-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:720px){.archive-project-hero-grid{padding:124px 0 44px}.archive-project-grid{grid-template-columns:1fr}.project-fact-grid{grid-template-columns:1fr}.project-fact{border-right:0}.project-single-article .single-content-wrap{padding:22px 18px}.project-consult-box{margin:0 18px 24px;padding:22px 18px}.project-clean-copy p{font-size:16px;line-height:1.78}}

/* Project cleanup: reduce visual clutter */
.archive-project-hero{min-height:auto}.archive-project-hero-grid{grid-template-columns:minmax(0,1fr) 320px;gap:34px;align-items:center;padding:136px 0 58px}.archive-hero-panel{display:grid;grid-template-columns:1fr;gap:12px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);border-radius:24px;padding:18px;box-shadow:0 22px 60px rgba(0,0,0,.18);backdrop-filter:blur(12px)}.archive-hero-stat{display:flex;align-items:center;justify-content:space-between;gap:18px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.12);border-radius:16px;padding:14px 16px}.archive-hero-stat strong{font-size:34px;font-weight:950;color:var(--kp-yellow);line-height:1}.archive-hero-stat span{color:#fff;font-size:13px;font-weight:900;text-transform:uppercase;letter-spacing:.5px}.archive-project-grid{gap:20px}.archive-project-card{border-radius:20px}.archive-project-card .project-img{height:210px}.archive-project-card .project-type{font-size:10px;padding:6px 11px}.archive-project-card .project-body{padding:18px}.archive-project-card .project-body h2{font-size:18px;min-height:auto}.archive-project-card .project-body p{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:48px}.archive-project-card .read-more{margin-top:12px}.project-clean-copy{max-width:760px}.project-overview-list{display:grid;gap:12px;margin:0!important;padding:0!important;list-style:none}.project-overview-list li{margin:0!important;padding:14px 16px;border:1px solid rgba(10,107,47,.12);border-radius:14px;background:#f8fcf8;color:var(--kp-text);line-height:1.65}.project-overview-list b{color:var(--kp-dark)}.project-single-hero .single-excerpt{max-width:680px}.project-single-hero .share-row{margin-top:16px}.project-single-hero .single-meta span{background:rgba(255,255,255,.12)}@media(max-width:1000px){.archive-project-hero-grid{grid-template-columns:1fr}.archive-hero-panel{grid-template-columns:repeat(3,1fr)}.archive-hero-stat{display:block;text-align:center}.archive-hero-stat strong{display:block;margin-bottom:6px}}@media(max-width:720px){.archive-project-hero-grid{padding:118px 0 38px}.archive-hero-panel{grid-template-columns:1fr;gap:8px;padding:12px}.archive-hero-stat{display:flex;text-align:left}.archive-hero-stat strong{font-size:28px;margin:0}.archive-project-card .project-img{height:200px}.project-overview-list li{padding:12px 14px}}

/* Final project design system */
.kp-project-index{background:#f6faf6}.kp-project-hero{position:relative;overflow:hidden;background:radial-gradient(circle at 82% 18%,rgba(255,201,40,.22),transparent 32%),linear-gradient(135deg,rgba(0,31,14,.96),rgba(0,84,39,.9)),url(../img/home/16-50428106.jpg) center/cover no-repeat;color:#fff}.kp-project-hero::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);background-size:54px 54px;mask-image:linear-gradient(180deg,rgba(0,0,0,.75),transparent 92%)}.kp-project-hero-inner{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) 500px;gap:52px;align-items:center;min-height:680px;padding:136px 0 72px}.kp-project-hero-copy h1{color:#fff;font-size:clamp(38px,5vw,64px);line-height:1.06;font-weight:950;letter-spacing:-1.4px;margin:0 0 18px;max-width:820px}.kp-project-hero-copy p{color:rgba(255,255,255,.88);font-size:17px;line-height:1.75;max-width:720px;margin:0 0 24px}.kp-project-showcase{position:relative;height:480px}.kp-showcase-card{position:absolute;overflow:hidden;border-radius:26px;border:1px solid rgba(255,255,255,.24);box-shadow:0 24px 70px rgba(0,0,0,.28);background:#fff}.kp-showcase-card img{width:100%;height:100%;object-fit:cover;display:block}.kp-showcase-card::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(0,30,12,.62))}.kp-showcase-card span{position:absolute;left:16px;right:16px;bottom:14px;z-index:1;color:#fff;font-size:13px;font-weight:900;line-height:1.35;text-shadow:0 2px 8px rgba(0,0,0,.35)}.kp-showcase-card-1{left:0;top:16px;width:58%;height:310px}.kp-showcase-card-2{right:0;top:0;width:48%;height:220px}.kp-showcase-card-3{right:28px;bottom:0;width:62%;height:250px}.kp-project-trust{background:#fff;box-shadow:0 8px 26px rgba(9,55,26,.07)}.kp-project-trust-grid{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid var(--kp-line);border-top:0;border-radius:0 0 24px 24px;overflow:hidden}.kp-project-trust-grid div{padding:22px 20px;border-right:1px solid var(--kp-line);background:#fff}.kp-project-trust-grid div:last-child{border-right:0}.kp-project-trust-grid strong{display:block;color:var(--kp-green);font-size:28px;font-weight:950;line-height:1}.kp-project-trust-grid span{display:block;color:var(--kp-dark);font-size:13px;font-weight:900;line-height:1.35;margin-top:7px}.kp-project-list-section{background:linear-gradient(180deg,#fff,#f6faf6);padding-top:58px}.kp-project-filter{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin:-10px 0 30px}.kp-project-filter span{border:1px solid var(--kp-line);background:#fff;border-radius:999px;padding:8px 12px;color:var(--kp-dark);font-size:12px;font-weight:900}.kp-project-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.kp-project-card{display:flex;flex-direction:column;background:#fff;border:1px solid rgba(223,233,223,.9);border-radius:24px;overflow:hidden;box-shadow:0 12px 34px rgba(9,55,26,.08);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}.kp-project-card:hover{transform:translateY(-7px);box-shadow:0 22px 56px rgba(9,55,26,.14);border-color:rgba(10,107,47,.28)}.kp-project-card-img{position:relative;height:238px;background:linear-gradient(135deg,rgba(10,107,47,.12),rgba(255,201,40,.16));overflow:hidden}.kp-project-card-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s ease}.kp-project-card:hover img{transform:scale(1.05)}.kp-project-card-img::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(0,38,17,.36))}.kp-project-card-img span{position:absolute;left:14px;top:14px;z-index:1;background:rgba(0,76,36,.92);color:#fff;border-radius:999px;padding:6px 12px;font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.35px}.kp-project-card-body{display:flex;flex-direction:column;flex:1;padding:20px}.kp-project-card-body h2{color:var(--kp-dark);font-size:19px;font-weight:950;line-height:1.34;margin:0 0 9px}.kp-project-card-body p{color:var(--kp-muted);font-size:14px;line-height:1.7;margin:0 0 18px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.kp-project-card-foot{margin-top:auto;display:flex;align-items:center;justify-content:space-between;color:var(--kp-green);font-size:13px;font-weight:950;border-top:1px solid var(--kp-line);padding-top:14px}.kp-project-card-foot i{font-style:normal;font-size:18px}.kp-project-bottom-cta{margin-top:38px;background:linear-gradient(135deg,#052814,#0a6b2f);color:#fff;border-radius:28px;padding:30px;display:flex;align-items:center;justify-content:space-between;gap:20px;box-shadow:0 18px 50px rgba(9,55,26,.16)}.kp-project-bottom-cta h2{color:#fff;font-size:24px;font-weight:950;margin:0 0 6px}.kp-project-bottom-cta p{color:rgba(255,255,255,.78);margin:0;line-height:1.6}.kp-project-detail{background:#f6faf6}.kp-case-hero{position:relative;background:radial-gradient(circle at 82% 6%,rgba(255,201,40,.2),transparent 34%),linear-gradient(135deg,#031d0e,#084f27 58%,#0a7834);color:#fff;padding:148px 0 52px;overflow:hidden}.kp-case-hero::after{content:"";position:absolute;left:0;right:0;bottom:-1px;height:76px;background:linear-gradient(180deg,transparent,#f6faf6)}.kp-case-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) 420px;gap:42px;align-items:center}.kp-case-hero h1{max-width:900px;color:#fff;font-size:clamp(36px,4.5vw,58px);line-height:1.08;font-weight:950;letter-spacing:-1.3px;margin:0 0 16px}.kp-case-hero .single-excerpt{max-width:760px;color:rgba(255,255,255,.86);font-size:17px;line-height:1.72}.kp-case-media{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);border-radius:30px;padding:10px;box-shadow:0 28px 70px rgba(0,0,0,.24);transform:rotate(1.2deg)}.kp-case-article{padding:0;overflow:hidden}.kp-case-article .single-content-wrap{padding:34px}.kp-case-cta .btn-outline{border-color:rgba(255,255,255,.5);color:#fff}.kp-case-cta .btn-outline:hover{background:rgba(255,255,255,.12)}@media(max-width:1100px){.kp-project-hero-inner,.kp-case-hero-grid{grid-template-columns:1fr}.kp-project-showcase{display:none}.kp-project-grid{grid-template-columns:repeat(2,1fr)}.kp-project-trust-grid{grid-template-columns:repeat(2,1fr)}.kp-case-media{display:none}}@media(max-width:720px){.kp-project-hero-inner{min-height:auto;padding:124px 0 46px}.kp-project-hero-copy h1{font-size:34px}.kp-project-trust-grid,.kp-project-grid,.kp-case-facts{grid-template-columns:1fr}.kp-project-trust-grid div{border-right:0;border-bottom:1px solid var(--kp-line)}.kp-project-card-img{height:210px}.kp-project-bottom-cta{display:block;padding:24px 20px}.kp-project-bottom-cta .btn{margin-top:16px;width:100%}.kp-case-hero{padding:136px 0 38px}.kp-case-article .single-content-wrap{padding:22px 18px}}

/* Project detail header spacing fix */
.kp-project-detail{padding-top:0!important}.kp-project-detail .kp-case-hero{padding-top:188px}.kp-project-detail .kp-case-hero .single-breadcrumb{margin-top:0}@media(max-width:720px){body:not(.home) .kp-project-detail{padding-top:0!important}.kp-project-detail .kp-case-hero{padding-top:154px}}

/* Single/project detail foundation repair */
.single-post-wrap{background:#f6faf6}.single-hero{position:relative;background:radial-gradient(circle at 82% 6%,rgba(255,201,40,.2),transparent 34%),linear-gradient(135deg,#031d0e,#084f27 58%,#0a7834);color:#fff;padding:170px 0 56px;overflow:hidden}.single-hero:after{content:"";position:absolute;left:0;right:0;bottom:-1px;height:74px;background:linear-gradient(180deg,transparent,#f6faf6)}.kp-case-hero-grid,.single-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) 420px;gap:42px;align-items:center}.single-breadcrumb{display:flex;gap:8px;align-items:center;flex-wrap:wrap;color:rgba(255,255,255,.75);font-size:13px;font-weight:800;margin-bottom:16px}.single-breadcrumb a{color:rgba(255,255,255,.88)}.single-cat{display:inline-flex;background:rgba(255,201,40,.15);border:1px solid rgba(255,201,40,.36);color:var(--kp-yellow);padding:7px 12px;border-radius:999px;font-size:12px;font-weight:900;text-transform:uppercase;margin-bottom:15px}.single-hero h1{color:#fff;font-size:clamp(34px,4.6vw,58px);line-height:1.08;font-weight:950;letter-spacing:-1.3px;margin:0 0 16px}.single-excerpt{max-width:760px;color:rgba(255,255,255,.88);font-size:17px;line-height:1.72;margin:0 0 18px}.single-meta{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin:0 0 18px}.single-meta span{display:inline-flex;align-items:center;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);border-radius:999px;padding:7px 11px;color:rgba(255,255,255,.9);font-size:13px;font-weight:800}.share-row{display:flex;gap:10px;flex-wrap:wrap}.share-btn{display:inline-flex!important;align-items:center;justify-content:center;min-height:40px;padding:10px 14px;border-radius:999px;background:#fff;color:#0a6b2f!important;font-size:13px;font-weight:900;text-decoration:none!important;box-shadow:0 10px 24px rgba(0,0,0,.12)}.share-btn:hover{transform:translateY(-1px)}.kp-case-media{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);border-radius:30px;padding:10px;box-shadow:0 28px 70px rgba(0,0,0,.24);transform:rotate(1.2deg);margin:0}.kp-case-media img{display:block;width:100%;height:330px;object-fit:cover;border-radius:22px}.single-body-section{padding:36px 0 76px}.single-shell{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:32px;align-items:start}.single-article{background:#fff;border:1px solid rgba(10,107,47,.12);border-radius:28px;box-shadow:0 20px 70px rgba(9,55,26,.10);overflow:hidden}.kp-case-facts{display:grid;grid-template-columns:repeat(2,1fr);background:#fff}.kp-case-fact{padding:22px 24px;border-right:1px solid rgba(10,107,47,.1);border-bottom:1px solid rgba(10,107,47,.1)}.kp-case-fact:nth-child(2n){border-right:0}.kp-case-fact b{display:block;color:var(--kp-green);font-size:12px;text-transform:uppercase;letter-spacing:.55px;margin-bottom:6px}.kp-case-fact span{display:block;color:var(--kp-dark);font-size:16px;font-weight:900;line-height:1.45}.single-content-wrap{padding:34px}.project-clean-copy h2{color:var(--kp-dark);font-size:clamp(28px,3vw,38px);font-weight:950;line-height:1.18;margin:0 0 18px}.kp-case-overview-list{display:grid;gap:12px;margin:0!important;padding:0!important;list-style:none}.kp-case-overview-list li{margin:0!important;padding:15px 17px;border:1px solid rgba(10,107,47,.12);border-radius:16px;background:#f8fcf8;color:var(--kp-text);line-height:1.68}.kp-case-overview-list b{color:var(--kp-dark)}.kp-case-cta{margin:0 34px 34px;background:linear-gradient(135deg,#052814,#0a6b2f);color:#fff;border-radius:24px;padding:28px;box-shadow:0 18px 50px rgba(9,55,26,.18)}.kp-case-cta h2{color:#fff;font-size:24px;font-weight:950;margin:0 0 8px}.kp-case-cta p{color:rgba(255,255,255,.82);line-height:1.65;margin:0 0 16px}.kp-case-cta .btn{min-height:48px;border-radius:14px}.kp-case-cta .btn-outline{background:#fff;color:var(--kp-green)!important;border-color:#fff}.post-bottom-share{padding:0 34px 28px}.post-bottom-share h3{font-size:18px;color:var(--kp-dark);font-weight:900;margin:0 0 12px}.single-sidebar{position:sticky;top:104px}.toc-card,.side-card{background:#fff;border:1px solid rgba(10,107,47,.14);border-radius:24px;box-shadow:0 18px 52px rgba(9,55,26,.10);margin-bottom:18px;overflow:hidden}.toc-head{background:linear-gradient(135deg,#05351a,#0a6b2f);color:#fff;padding:18px 20px}.toc-head h3{color:#fff;font-size:18px;font-weight:900;margin:0 0 4px}.toc-head p{font-size:12px;color:rgba(255,255,255,.75);line-height:1.45;margin:0}.toc-card ol{margin:0;padding:16px 20px 18px 38px}.toc-card li{font-size:14px;line-height:1.45;margin:8px 0;color:var(--kp-muted)}.toc-card a{color:var(--kp-text);font-weight:800;text-decoration:none}.side-card{padding:22px}.side-card h3{font-size:18px;color:var(--kp-dark);font-weight:900;margin:0 0 10px}.side-card p{color:var(--kp-muted);font-size:14px;line-height:1.65;margin:0 0 14px}.side-card .btn{width:100%;margin-top:8px;min-height:46px}@media(max-width:1000px){.kp-case-hero-grid,.single-shell{grid-template-columns:1fr}.kp-case-media{display:none}.single-sidebar{position:static;order:2}.single-article{order:1}}@media(max-width:720px){.single-hero{padding:150px 0 38px}.single-body-section{padding:24px 0 58px}.kp-case-facts{grid-template-columns:1fr}.kp-case-fact{border-right:0}.single-content-wrap{padding:22px 18px}.kp-case-cta{margin:0 18px 24px;padding:22px 18px}.post-bottom-share{padding:0 18px 24px}.share-btn{flex:1}.single-meta span{font-size:12px}.single-hero h1{font-size:32px}}

/* Single post editorial cards polish */
.single-post-wrap:not(.kp-project-detail) .article-summary{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;padding:18px;background:linear-gradient(180deg,#f8fcf8,#fff);border-bottom:1px solid rgba(10,107,47,.12)}
.single-post-wrap:not(.kp-project-detail) .summary-item{min-width:0;padding:16px 15px;border:1px solid rgba(10,107,47,.12);border-radius:16px;background:#fff;box-shadow:0 10px 24px rgba(9,55,26,.06)}
.single-post-wrap:not(.kp-project-detail) .summary-item b{display:block;margin-bottom:5px;color:var(--kp-green,#0a6b2f);font-size:11px;font-weight:950;line-height:1.2;letter-spacing:.5px;text-transform:uppercase}
.single-post-wrap:not(.kp-project-detail) .summary-item span{display:block;color:var(--kp-dark,#12351f);font-size:15px;font-weight:900;line-height:1.35}
.single-post-wrap:not(.kp-project-detail) .expert-box{display:grid;grid-template-columns:64px minmax(0,1fr);gap:16px;margin:0 34px 26px;padding:22px;border:1px solid rgba(10,107,47,.14);border-radius:22px;background:linear-gradient(180deg,#fff,#f8fcf8);box-shadow:0 16px 42px rgba(9,55,26,.09)}
.single-post-wrap:not(.kp-project-detail) .post-bottom-share{margin:0 34px 34px;padding:22px;border:1px solid rgba(10,107,47,.12);border-radius:22px;background:#fff;box-shadow:0 14px 36px rgba(9,55,26,.08)}
.single-post-wrap:not(.kp-project-detail) .post-bottom-share .share-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.single-post-wrap:not(.kp-project-detail) .post-bottom-share .share-btn{width:100%;min-height:44px;box-shadow:0 10px 24px rgba(9,55,26,.08)}
@media(max-width:720px){.single-post-wrap:not(.kp-project-detail) .article-summary{grid-template-columns:1fr;gap:10px;padding:16px}.single-post-wrap:not(.kp-project-detail) .expert-box{grid-template-columns:48px minmax(0,1fr);gap:13px;margin:0 18px 22px;padding:18px;border-radius:20px}.single-post-wrap:not(.kp-project-detail) .post-bottom-share{margin:0 18px 24px;padding:18px;border-radius:20px}.single-post-wrap:not(.kp-project-detail) .post-bottom-share .share-row{grid-template-columns:1fr}}
body.category-du-an .kp-project-bottom-cta{background:linear-gradient(135deg,#02220f,#075426);border:1px solid rgba(255,201,40,.36);box-shadow:0 20px 54px rgba(2,34,15,.24)}body.category-du-an .kp-project-bottom-cta h2{color:#fff!important;text-shadow:0 2px 12px rgba(0,0,0,.35)}body.category-du-an .kp-project-bottom-cta p{color:#f4fff7!important;font-weight:650;text-shadow:0 1px 8px rgba(0,0,0,.28)}body.category-du-an .kp-project-bottom-cta .btn-primary{background:#ffc928;color:#111;border:2px solid #ffc928;box-shadow:0 12px 28px rgba(255,201,40,.18)}


/* template-services-shared.css */
/* Shared service page layer.
   Loaded after base theme CSS and before final template-system fixes. */

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) {
  --kp-service-section-y: 72px;
  --kp-service-section-y-mobile: 56px;
  --kp-service-gap: 22px;
  --kp-service-card-radius: 20px;
  --kp-service-hero-top-desktop: 96px;
  --kp-service-hero-gap-desktop: 40px;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) .container {
  max-width: var(--kp-max, 1280px) !important;
  width: 100% !important;
  margin-inline: auto !important;
  padding-inline: 24px !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) .section {
  padding-block: var(--kp-service-section-y) !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) .service-hero {
  align-items: center !important;
  min-height: 720px !important;
  overflow: hidden !important;
  isolation: isolate;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) .service-hero-grid {
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, .72fr) !important;
  gap: var(--kp-service-hero-gap-desktop) !important;
  align-items: center !important;
  padding-top: var(--kp-service-hero-top-desktop) !important;
  padding-bottom: 72px !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) .service-hero h1 {
  max-width: 780px !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) .answer-capsule {
  max-width: 740px !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) :is(.section-title, .section-subtitle) {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) .section-title {
  max-width: 900px !important;
  line-height: 1.24 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) .section-subtitle {
  max-width: 780px !important;
  line-height: 1.7 !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) :is(
  .grid-3,
  .grid-3-clean,
  .problem-grid,
  .cost-grid,
  .portfolio-grid,
  .testimonial-grid,
  .process-grid,
  .related-grid,
  .cross-sell-grid,
  .intent-grid
) {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: var(--kp-service-gap) !important;
  align-items: stretch !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) :is(.grid-4, .grid-4-clean, .answer-grid, .trust-grid) {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: var(--kp-service-gap) !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) .trust-grid {
  gap: 0 !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) :is(
  .card,
  .service-card,
  .spec-card,
  .intent-card,
  .cost-card,
  .portfolio-card,
  .testimonial-card,
  .process-card,
  .related-card
) {
  min-width: 0 !important;
  height: 100% !important;
  border-radius: var(--kp-service-card-radius) !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) :is(.table-wrap, .compact-table) {
  max-width: 100% !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) :is(.quote-block, .mid-cta) {
  min-width: 0 !important;
}

@media (min-width: 721px) {
  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .service-hero {
    align-items: flex-start !important;
  }
}

@media (max-width: 1100px) {
  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .service-hero-grid {
    grid-template-columns: 1fr !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) :is(
    .grid-3,
    .grid-3-clean,
    .grid-4,
    .grid-4-clean,
    .answer-grid,
    .problem-grid,
    .cost-grid,
    .portfolio-grid,
    .testimonial-grid,
    .process-grid,
    .related-grid,
    .cross-sell-grid,
    .intent-grid
  ) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .quote-block {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .container {
    padding-inline: 24px !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .section {
    padding-block: var(--kp-service-section-y-mobile) !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .service-hero {
    min-height: auto !important;
    align-items: flex-start !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .service-hero-grid {
    padding-top: var(--kp-mobile-service-hero-top, 96px) !important;
    padding-bottom: var(--kp-mobile-hero-bottom, 42px) !important;
    gap: 22px !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .service-hero h1 {
    font-size: clamp(31px, 8.4vw, 38px) !important;
    line-height: 1.12 !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) :is(
    .grid-3,
    .grid-3-clean,
    .grid-4,
    .grid-4-clean,
    .answer-grid,
    .problem-grid,
    .cost-grid,
    .portfolio-grid,
    .testimonial-grid,
    .process-grid,
    .related-grid,
    .cross-sell-grid,
    .intent-grid,
    .warranty-box,
    .hero-panel-grid
  ) {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .trust-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) :is(.hero-actions, .mid-cta, .quote-block) {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) :is(.hero-actions .btn, .mid-cta .btn, .quote-block .btn) {
    width: 100% !important;
    min-height: 48px !important;
  }
}


/* template-service-thi-cong-duong-chay-dien-kinh.css */
/* page-thi-cong-duong-chay-dien-kinh.php */
body.page-template-page-thi-cong-duong-chay-dien-kinh .container{max-width:var(--kp-max);margin:0 auto;padding:0 24px}body.page-template-page-thi-cong-duong-chay-dien-kinh .section{padding:72px 0}body.page-template-page-thi-cong-duong-chay-dien-kinh .section-title{text-align:center;color:var(--kp-dark);font-size:clamp(24px,3vw,34px);font-weight:900;margin:0 auto 12px;line-height:1.25;letter-spacing:-.4px;max-width:860px}body.page-template-page-thi-cong-duong-chay-dien-kinh .section-title::after{content:'';display:block;width:60px;height:3px;background:linear-gradient(90deg,var(--kp-green),#72bd20);margin:14px auto 0;border-radius:99px}body.page-template-page-thi-cong-duong-chay-dien-kinh .section-subtitle{text-align:center;color:var(--kp-muted);font-size:16px;max-width:760px;margin:0 auto 40px;line-height:1.7}body.page-template-page-thi-cong-duong-chay-dien-kinh .btn{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:14px 28px;border-radius:var(--kp-radius);font-weight:800;font-size:15px;cursor:pointer;border:none;transition:transform .2s,box-shadow .2s}body.page-template-page-thi-cong-duong-chay-dien-kinh .btn:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}body.page-template-page-thi-cong-duong-chay-dien-kinh .btn-primary{background:var(--kp-green);color:#fff}body.page-template-page-thi-cong-duong-chay-dien-kinh .btn-yellow{background:var(--kp-yellow);color:#111}body.page-template-page-thi-cong-duong-chay-dien-kinh .btn-white{background:#fff;color:var(--kp-green)}body.page-template-page-thi-cong-duong-chay-dien-kinh .btn-outline{background:#fff;color:var(--kp-dark);border:2px solid var(--kp-green)}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero{position:relative;min-height:760px;display:flex;align-items:center;background:linear-gradient(135deg,rgba(0,38,17,.96),rgba(0,76,36,.88));overflow:hidden}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero::after{content:'';position:absolute;inset:auto -10% -30% -10%;height:240px;background:radial-gradient(circle,rgba(255,201,40,.18),transparent 65%)}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero-grid{position:relative;z-index:2;display:grid;grid-template-columns:1.05fr .95fr;gap:44px;align-items:center;padding:132px 0 72px}body.page-template-page-thi-cong-duong-chay-dien-kinh .breadcrumb{display:inline-flex;align-items:center;gap:8px;color:rgba(255,255,255,.62);font-size:13px;font-weight:700;margin-bottom:18px}body.page-template-page-thi-cong-duong-chay-dien-kinh .breadcrumb a:hover{color:#fff}body.page-template-page-thi-cong-duong-chay-dien-kinh .eyebrow{display:inline-flex;background:rgba(255,201,40,.14);border:1px solid rgba(255,201,40,.35);color:var(--kp-yellow);padding:7px 12px;border-radius:999px;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.6px;margin-bottom:18px}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero h1{color:#fff;font-size:clamp(34px,4.6vw,54px);line-height:1.08;font-weight:900;letter-spacing:-1px;margin-bottom:18px}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero h1 span{color:var(--kp-yellow)}body.page-template-page-thi-cong-duong-chay-dien-kinh .answer-capsule{background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.18);backdrop-filter:blur(12px);border-radius:18px;padding:18px 20px;color:rgba(255,255,255,.9);font-size:16px;line-height:1.72;max-width:680px;margin-bottom:24px}body.page-template-page-thi-cong-duong-chay-dien-kinh .hero-actions{display:flex;gap:14px;flex-wrap:wrap}body.page-template-page-thi-cong-duong-chay-dien-kinh .hero-chips{display:flex;gap:10px;flex-wrap:wrap;margin-top:24px}body.page-template-page-thi-cong-duong-chay-dien-kinh .hero-chip{background:rgba(255,255,255,.11);border:1px solid rgba(255,255,255,.16);color:#fff;border-radius:999px;padding:8px 12px;font-size:12px;font-weight:800}body.page-template-page-thi-cong-duong-chay-dien-kinh .hero-panel-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:14px}body.page-template-page-thi-cong-duong-chay-dien-kinh .mini-stat{background:var(--kp-soft);border:1px solid var(--kp-line);border-radius:14px;padding:14px}body.page-template-page-thi-cong-duong-chay-dien-kinh .mini-stat strong{display:block;color:var(--kp-dark);font-size:22px;font-weight:900;line-height:1}body.page-template-page-thi-cong-duong-chay-dien-kinh .mini-stat span{display:block;color:var(--kp-muted);font-size:12px;font-weight:700;margin-top:4px}body.page-template-page-thi-cong-duong-chay-dien-kinh .trust-strip{background:#fff;position:relative;z-index:3;box-shadow:0 8px 26px rgba(9,55,26,.07)}body.page-template-page-thi-cong-duong-chay-dien-kinh .trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border:1px solid var(--kp-line);border-top:0;border-radius:0 0 22px 22px;overflow:hidden}body.page-template-page-thi-cong-duong-chay-dien-kinh .trust-item{padding:22px 20px;display:flex;align-items:center;gap:12px;background:#fff;border-right:1px solid var(--kp-line)}body.page-template-page-thi-cong-duong-chay-dien-kinh .trust-item:last-child{border-right:0}body.page-template-page-thi-cong-duong-chay-dien-kinh .trust-icon{width:42px;height:42px;border-radius:14px;background:linear-gradient(135deg,var(--kp-green),#72bd20);color:#fff;display:grid;place-items:center;font-weight:900;flex-shrink:0}body.page-template-page-thi-cong-duong-chay-dien-kinh .trust-text{font-size:14px;font-weight:900;color:var(--kp-dark);line-height:1.3}body.page-template-page-thi-cong-duong-chay-dien-kinh .trust-text small{display:block;color:var(--kp-muted);font-size:12px;font-weight:600;margin-top:3px}body.page-template-page-thi-cong-duong-chay-dien-kinh .soft{background:var(--kp-soft)}body.page-template-page-thi-cong-duong-chay-dien-kinh .card{background:#fff;border:1px solid var(--kp-line);border-radius:20px;padding:24px;box-shadow:var(--shadow-sm);height:100%}body.page-template-page-thi-cong-duong-chay-dien-kinh .card h3{color:var(--kp-dark);font-size:18px;font-weight:900;margin-bottom:10px}body.page-template-page-thi-cong-duong-chay-dien-kinh .card p,body.page-template-page-thi-cong-duong-chay-dien-kinh .card li{color:var(--kp-muted);font-size:14px;line-height:1.7}body.page-template-page-thi-cong-duong-chay-dien-kinh .card-icon{width:44px;height:44px;border-radius:14px;background:linear-gradient(135deg,rgba(10,107,47,.10),rgba(114,189,32,.16));display:grid;place-items:center;font-size:13px;font-weight:900;color:var(--kp-green);margin-bottom:16px}body.page-template-page-thi-cong-duong-chay-dien-kinh .cost-section,body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-section{background:var(--kp-soft)}body.page-template-page-thi-cong-duong-chay-dien-kinh .cost-price{font-size:28px;font-weight:900;color:var(--kp-green);margin:8px 0}body.page-template-page-thi-cong-duong-chay-dien-kinh table{width:100%;border-collapse:collapse;min-width:760px}body.page-template-page-thi-cong-duong-chay-dien-kinh th{background:var(--kp-dark);color:#fff;text-align:left;padding:14px 16px;font-size:12px;text-transform:uppercase;letter-spacing:.4px}body.page-template-page-thi-cong-duong-chay-dien-kinh td{padding:14px 16px;border-bottom:1px solid var(--kp-line);font-size:14px;color:var(--kp-text)}body.page-template-page-thi-cong-duong-chay-dien-kinh tr:last-child td{border-bottom:0}body.page-template-page-thi-cong-duong-chay-dien-kinh tr:nth-child(even) td{background:var(--kp-soft)}body.page-template-page-thi-cong-duong-chay-dien-kinh .process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;counter-reset:step}body.page-template-page-thi-cong-duong-chay-dien-kinh .process-card{position:relative;background:#fff;border:1px solid var(--kp-line);border-radius:20px;padding:24px;box-shadow:var(--shadow-sm);counter-increment:step}body.page-template-page-thi-cong-duong-chay-dien-kinh .process-card::before{content:counter(step);width:36px;height:36px;border-radius:50%;background:var(--kp-green);color:#fff;display:grid;place-items:center;font-weight:900;margin-bottom:16px}body.page-template-page-thi-cong-duong-chay-dien-kinh .process-card h3{font-size:16px;color:var(--kp-dark);font-weight:900;margin-bottom:8px}body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-block{background:linear-gradient(135deg,var(--kp-dark),var(--kp-green));border-radius:28px;padding:40px;color:#fff;display:grid;grid-template-columns:1fr 420px;gap:32px;align-items:center;box-shadow:var(--shadow-lg)}body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-block h2{font-size:clamp(26px,3.5vw,42px);font-weight:900;line-height:1.15;margin-bottom:14px}body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-block p{color:rgba(255,255,255,.82);margin-bottom:20px}body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-list li{display:flex;gap:10px;color:rgba(255,255,255,.88);font-size:14px;margin:10px 0}body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-panel{background:#fff;color:var(--kp-text);border-radius:22px;padding:24px}body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-panel h3{color:var(--kp-dark);font-size:18px;font-weight:900;margin-bottom:14px}body.page-template-page-thi-cong-duong-chay-dien-kinh .portfolio-card{padding:0;overflow:hidden}body.page-template-page-thi-cong-duong-chay-dien-kinh .portfolio-body{padding:20px}body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-list{max-width:880px;margin:0 auto;display:flex;flex-direction:column;gap:12px}body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-item{border:1px solid var(--kp-line);border-radius:16px;background:#fff;overflow:hidden;box-shadow:var(--shadow-sm)}body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-q{cursor:pointer;padding:18px 52px 18px 22px;color:#1c2b1f;font-size:15px;font-weight:900;position:relative;min-height:52px;display:flex;align-items:center;border:none;background:none;width:100%;text-align:left;font-family:inherit;line-height:1.5}body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-q::after{content:'+';position:absolute;right:20px;top:50%;transform:translateY(-50%);color:var(--kp-green);font-size:24px;font-weight:700}body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-item.open .faq-q::after{content:'−'}body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-a{max-height:0;overflow:hidden;transition:max-height .35s}body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-item.open .faq-a{max-height:420px}body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-a-inner{color:var(--kp-muted);font-size:14px;line-height:1.75;padding:0 22px 20px}body.page-template-page-thi-cong-duong-chay-dien-kinh .related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}body.page-template-page-thi-cong-duong-chay-dien-kinh .related-card{display:block;background:#fff;border:1px solid var(--kp-line);border-radius:18px;padding:24px;box-shadow:var(--shadow-sm)}body.page-template-page-thi-cong-duong-chay-dien-kinh .related-card h3{color:var(--kp-dark);font-weight:900;margin-bottom:6px}body.page-template-page-thi-cong-duong-chay-dien-kinh .related-card p{color:var(--kp-muted);font-size:13px}body.page-template-page-thi-cong-duong-chay-dien-kinh .link-arrow{display:inline-flex;color:var(--kp-green);font-weight:900;font-size:13px;margin-top:12px}body.page-template-page-thi-cong-duong-chay-dien-kinh.js-ready .reveal{opacity:0;transform:translateY(32px);transition:opacity .7s cubic-bezier(.16,1,.3,1),transform .7s cubic-bezier(.16,1,.3,1)}body.page-template-page-thi-cong-duong-chay-dien-kinh.js-ready .reveal.visible{opacity:1;transform:translateY(0)}@media(max-width:1100px){body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-block,body.page-template-page-thi-cong-duong-chay-dien-kinh .answer-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .intent-grid{grid-template-columns:1fr!important}body.page-template-page-thi-cong-duong-chay-dien-kinh .trust-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .process-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .grid-4{grid-template-columns:repeat(2,1fr)}body.page-template-page-thi-cong-duong-chay-dien-kinh .problem-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .cost-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .portfolio-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .testimonial-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .related-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .grid-3{grid-template-columns:repeat(2,1fr)}}@media(max-width:720px){body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero{min-height:auto}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero-grid{padding:122px 0 48px;gap:28px}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero h1{font-size:34px}body.page-template-page-thi-cong-duong-chay-dien-kinh .answer-capsule{font-size:14px;padding:16px}body.page-template-page-thi-cong-duong-chay-dien-kinh .hero-actions .btn{width:100%}body.page-template-page-thi-cong-duong-chay-dien-kinh .trust-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .problem-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .cost-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .process-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .portfolio-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .testimonial-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .related-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .warranty-box,body.page-template-page-thi-cong-duong-chay-dien-kinh .hero-panel-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .answer-grid,body.page-template-page-thi-cong-duong-chay-dien-kinh .grid-3,body.page-template-page-thi-cong-duong-chay-dien-kinh .grid-4{grid-template-columns:1fr}body.page-template-page-thi-cong-duong-chay-dien-kinh .trust-item{border-right:0;border-bottom:1px solid var(--kp-line)}body.page-template-page-thi-cong-duong-chay-dien-kinh .section{padding:56px 0}body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-block{padding:28px 20px;border-radius:22px}}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero{background:radial-gradient(circle at 84% 16%,rgba(255,201,40,.20),transparent 24%),linear-gradient(135deg,rgba(0,38,17,.96),rgba(0,76,36,.88));min-height:720px}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-panel{background:#fff;border-radius:28px;padding:20px;box-shadow:var(--shadow-lg);border:1px solid rgba(255,255,255,.8)}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-diagram{height:300px;border-radius:22px;background:linear-gradient(135deg,#b93b20,#e56d31);position:relative;overflow:hidden}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-diagram:before{content:'';position:absolute;inset:30px 38px;border:4px solid rgba(255,255,255,.86);border-radius:130px}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-diagram:after{content:'';position:absolute;inset:54px 68px;border:3px solid rgba(255,255,255,.72);border-radius:105px}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-lane{position:absolute;inset:78px 98px;border:2px solid rgba(255,255,255,.58);border-radius:86px}body.page-template-page-thi-cong-duong-chay-dien-kinh .finish-line{position:absolute;right:72px;top:52px;bottom:52px;width:4px;background:repeating-linear-gradient(0deg,#fff 0 8px,rgba(255,255,255,.25) 8px 16px)}body.page-template-page-thi-cong-duong-chay-dien-kinh .hero-note{display:inline-flex;gap:10px;align-items:flex-start;background:rgba(255,201,40,.12);border:1px solid rgba(255,201,40,.32);border-radius:14px;padding:12px 14px;color:rgba(255,255,255,.9);font-size:13px;font-weight:700;line-height:1.6;margin:0 0 22px}body.page-template-page-thi-cong-duong-chay-dien-kinh .hero-note strong{color:var(--kp-yellow)}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-card,body.page-template-page-thi-cong-duong-chay-dien-kinh .spec-card{background:#fff;border:1px solid var(--kp-line);border-radius:20px;padding:24px;box-shadow:var(--shadow-sm);height:100%}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-card h3,body.page-template-page-thi-cong-duong-chay-dien-kinh .spec-card h3{color:var(--kp-dark);font-size:18px;font-weight:900;margin-bottom:10px}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-card p,body.page-template-page-thi-cong-duong-chay-dien-kinh .service-card li,body.page-template-page-thi-cong-duong-chay-dien-kinh .spec-card p{color:var(--kp-muted);font-size:14px;line-height:1.7}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-card ul{margin-top:10px;padding-left:18px;list-style:disc}body.page-template-page-thi-cong-duong-chay-dien-kinh .mini-link{display:inline-flex;color:var(--kp-green);font-weight:900;font-size:13px;margin-top:12px}body.page-template-page-thi-cong-duong-chay-dien-kinh .grid-3-clean{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}body.page-template-page-thi-cong-duong-chay-dien-kinh .grid-4-clean{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}body.page-template-page-thi-cong-duong-chay-dien-kinh .callout{background:#fff8df;border:1px solid rgba(255,201,40,.55);border-radius:18px;padding:18px 20px;color:#4c3a00;display:flex;gap:14px;align-items:flex-start;box-shadow:var(--shadow-sm);margin-top:24px}body.page-template-page-thi-cong-duong-chay-dien-kinh .callout strong{display:block;color:#2d2200;font-weight:900;margin-bottom:4px}body.page-template-page-thi-cong-duong-chay-dien-kinh .callout p{font-size:14px;line-height:1.65;margin:0}body.page-template-page-thi-cong-duong-chay-dien-kinh .compact-table{overflow-x:auto;border:1px solid var(--kp-line);border-radius:18px;background:#fff;box-shadow:var(--shadow-sm)}body.page-template-page-thi-cong-duong-chay-dien-kinh .compact-table table{min-width:760px}body.page-template-page-thi-cong-duong-chay-dien-kinh .mid-cta{background:linear-gradient(135deg,var(--kp-dark),var(--kp-green));border-radius:24px;padding:30px 32px;color:#fff;display:flex;align-items:center;justify-content:space-between;gap:24px;box-shadow:var(--shadow-lg)}body.page-template-page-thi-cong-duong-chay-dien-kinh .mid-cta h2{font-size:26px;line-height:1.2;margin-bottom:6px}body.page-template-page-thi-cong-duong-chay-dien-kinh .mid-cta p{color:rgba(255,255,255,.82);font-size:14px}body.page-template-page-thi-cong-duong-chay-dien-kinh .scenario-thumb{height:150px;background:linear-gradient(135deg,#b93b20,#e56d31);position:relative;overflow:hidden}body.page-template-page-thi-cong-duong-chay-dien-kinh .scenario-thumb:before{content:'';position:absolute;inset:22px 26px;border:3px solid rgba(255,255,255,.72);border-radius:80px}body.page-template-page-thi-cong-duong-chay-dien-kinh .scenario-thumb:after{content:'';position:absolute;right:45px;top:28px;bottom:28px;width:3px;background:rgba(255,255,255,.8)}body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-tip{background:#fff8df;border:1px solid rgba(255,201,40,.55);border-radius:14px;padding:12px 14px;color:#4c3a00;font-size:13px;line-height:1.6;margin-bottom:14px}@media(max-width:1100px){body.page-template-page-thi-cong-duong-chay-dien-kinh .grid-3-clean{grid-template-columns:repeat(2,1fr)}body.page-template-page-thi-cong-duong-chay-dien-kinh .grid-4-clean{grid-template-columns:repeat(2,1fr)}body.page-template-page-thi-cong-duong-chay-dien-kinh .mid-cta{flex-direction:column;align-items:flex-start}}@media(max-width:720px){body.page-template-page-thi-cong-duong-chay-dien-kinh .grid-3-clean,body.page-template-page-thi-cong-duong-chay-dien-kinh .grid-4-clean{grid-template-columns:1fr}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero{min-height:auto;overflow:hidden}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero-grid{padding:112px 0 40px;gap:22px}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero h1{font-size:31px;line-height:1.12;margin-bottom:14px}body.page-template-page-thi-cong-duong-chay-dien-kinh .answer-capsule{font-size:14px;line-height:1.65;padding:14px 15px;margin-bottom:16px}body.page-template-page-thi-cong-duong-chay-dien-kinh .hero-note{display:flex;margin-bottom:16px}body.page-template-page-thi-cong-duong-chay-dien-kinh .hero-chips{margin-top:18px}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-panel{padding:14px;border-radius:22px}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-diagram{height:188px;border-radius:16px}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-diagram:before{inset:22px 22px}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-diagram:after{inset:46px 46px}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-lane{inset:68px 70px}body.page-template-page-thi-cong-duong-chay-dien-kinh .finish-line{right:56px;top:42px;bottom:42px}body.page-template-page-thi-cong-duong-chay-dien-kinh .mid-cta{padding:24px 20px}body.page-template-page-thi-cong-duong-chay-dien-kinh .mid-cta .btn{width:100%}body.page-template-page-thi-cong-duong-chay-dien-kinh .callout{display:block}body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-panel{padding:20px}body.page-template-page-thi-cong-duong-chay-dien-kinh .compact-table{overflow-x:auto}}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero{min-height:760px;background:radial-gradient(circle at 78% 18%,rgba(255,138,69,.34),transparent 28%),radial-gradient(circle at 18% 78%,rgba(255,201,40,.18),transparent 24%),linear-gradient(135deg,rgba(0,30,14,.98),rgba(0,76,36,.92) 58%,rgba(127,36,21,.88));isolation:isolate}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero::before{content:'';position:absolute;inset:0;background:repeating-linear-gradient(108deg,transparent 0 42px,rgba(255,255,255,.07) 42px 45px,transparent 45px 88px),linear-gradient(90deg,rgba(255,255,255,.06),transparent 24%,transparent 76%,rgba(255,255,255,.06));opacity:.5;mix-blend-mode:screen;pointer-events:none}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero::after{height:360px;inset:auto -18% -26% -18%;background:radial-gradient(ellipse at center,rgba(229,109,49,.34),rgba(255,201,40,.12) 38%,transparent 72%);filter:blur(4px)}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero-grid{gap:54px;padding:144px 0 86px}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero h1{text-shadow:0 12px 36px rgba(0,0,0,.28)}body.page-template-page-thi-cong-duong-chay-dien-kinh .breadcrumb{background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.16);border-radius:999px;padding:8px 12px;color:rgba(255,255,255,.82);backdrop-filter:blur(10px)}body.page-template-page-thi-cong-duong-chay-dien-kinh .breadcrumb a{color:#fff}body.page-template-page-thi-cong-duong-chay-dien-kinh .eyebrow{background:rgba(255,244,236,.13);border-color:rgba(255,138,69,.46);color:#ffd7c3;box-shadow:0 12px 34px rgba(127,36,21,.18)}body.page-template-page-thi-cong-duong-chay-dien-kinh .answer-capsule{background:linear-gradient(135deg,rgba(255,255,255,.16),rgba(255,255,255,.08));border:1px solid rgba(255,255,255,.26);box-shadow:0 20px 60px rgba(0,0,0,.16),inset 0 1px 0 rgba(255,255,255,.16);border-left:4px solid var(--track-amber)}body.page-template-page-thi-cong-duong-chay-dien-kinh .hero-note{background:rgba(255,244,236,.13);border-color:rgba(255,138,69,.42);box-shadow:0 14px 42px rgba(0,0,0,.12)}body.page-template-page-thi-cong-duong-chay-dien-kinh .hero-chip{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.24);box-shadow:inset 0 1px 0 rgba(255,255,255,.12)}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-panel{position:relative;background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(255,244,236,.92));border:1px solid rgba(255,255,255,.78);border-radius:32px;padding:22px;box-shadow:var(--track-shadow-xl);overflow:hidden}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-panel::before{content:'TRACK LAYOUT';position:absolute;top:20px;left:22px;z-index:3;background:rgba(0,38,17,.76);color:#fff;border:1px solid rgba(255,255,255,.22);border-radius:999px;padding:7px 11px;font-size:11px;font-weight:900;letter-spacing:.9px;backdrop-filter:blur(10px)}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-panel::after{content:'';position:absolute;right:-80px;top:-80px;width:190px;height:190px;border-radius:50%;background:radial-gradient(circle,rgba(255,138,69,.22),transparent 68%);pointer-events:none}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-diagram{height:324px;border-radius:24px;background:radial-gradient(circle at 25% 25%,rgba(255,255,255,.13),transparent 20%),repeating-linear-gradient(18deg,rgba(255,255,255,.045) 0 3px,transparent 3px 10px),linear-gradient(135deg,var(--track-red-dark),var(--track-red) 42%,var(--track-orange));box-shadow:inset 0 0 0 1px rgba(255,255,255,.16),inset 0 -38px 80px rgba(76,18,8,.24)}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-diagram:before{inset:31px 38px;border:5px solid var(--track-line);box-shadow:0 0 0 1px rgba(255,255,255,.16),0 14px 28px rgba(78,18,8,.16)}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-diagram:after{inset:58px 70px;border:3px solid rgba(255,255,255,.70);box-shadow:0 0 0 18px rgba(255,255,255,.045)}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-lane{inset:84px 104px;border:2px solid rgba(255,255,255,.64);box-shadow:0 0 0 22px rgba(255,255,255,.035),0 0 0 44px rgba(255,255,255,.025)}body.page-template-page-thi-cong-duong-chay-dien-kinh .finish-line{right:76px;top:48px;bottom:48px;width:7px;border-radius:999px;background:repeating-linear-gradient(0deg,#fff 0 8px,#111 8px 16px);box-shadow:0 0 0 4px rgba(255,255,255,.20),0 8px 22px rgba(0,0,0,.24)}body.page-template-page-thi-cong-duong-chay-dien-kinh .hero-panel-grid{position:relative;z-index:2}body.page-template-page-thi-cong-duong-chay-dien-kinh .mini-stat{background:#fff;border-color:rgba(185,59,32,.16);box-shadow:0 10px 24px rgba(34,19,10,.06)}body.page-template-page-thi-cong-duong-chay-dien-kinh .mini-stat strong{color:var(--track-red-dark)}body.page-template-page-thi-cong-duong-chay-dien-kinh .section{position:relative;padding:82px 0}body.page-template-page-thi-cong-duong-chay-dien-kinh .soft{background:linear-gradient(180deg,#fffaf6,var(--kp-soft));position:relative;overflow:hidden}body.page-template-page-thi-cong-duong-chay-dien-kinh .soft::before{content:'';position:absolute;inset:0;background:repeating-linear-gradient(102deg,transparent 0 54px,rgba(185,59,32,.035) 54px 57px,transparent 57px 112px);pointer-events:none}body.page-template-page-thi-cong-duong-chay-dien-kinh .soft>.container{position:relative;z-index:1}body.page-template-page-thi-cong-duong-chay-dien-kinh .section-title::after{height:4px;width:76px;background:linear-gradient(90deg,var(--track-red),var(--track-amber),var(--kp-green))}body.page-template-page-thi-cong-duong-chay-dien-kinh .section-subtitle{max-width:900px;text-align:left;background:#fff;border:1px solid rgba(185,59,32,.14);border-left:5px solid var(--track-orange);border-radius:18px;padding:18px 22px;margin-bottom:42px;color:#35443a;box-shadow:0 14px 34px rgba(34,19,10,.07)}body.page-template-page-thi-cong-duong-chay-dien-kinh .section-subtitle a{color:var(--kp-green)!important;text-decoration-thickness:2px;text-underline-offset:3px}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-card,body.page-template-page-thi-cong-duong-chay-dien-kinh .spec-card,body.page-template-page-thi-cong-duong-chay-dien-kinh .card,body.page-template-page-thi-cong-duong-chay-dien-kinh .process-card,body.page-template-page-thi-cong-duong-chay-dien-kinh .related-card,body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-item{position:relative;border-color:rgba(10,107,47,.10);box-shadow:0 12px 34px rgba(9,55,26,.08);transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-card::before,body.page-template-page-thi-cong-duong-chay-dien-kinh .spec-card::before,body.page-template-page-thi-cong-duong-chay-dien-kinh .card::before,body.page-template-page-thi-cong-duong-chay-dien-kinh .process-card::after,body.page-template-page-thi-cong-duong-chay-dien-kinh .related-card::before{content:'';position:absolute;left:18px;right:18px;top:0;height:4px;border-radius:0 0 999px 999px;background:linear-gradient(90deg,var(--track-red),var(--track-amber),var(--kp-green));opacity:.88}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-card:hover,body.page-template-page-thi-cong-duong-chay-dien-kinh .spec-card:hover,body.page-template-page-thi-cong-duong-chay-dien-kinh .card:hover,body.page-template-page-thi-cong-duong-chay-dien-kinh .related-card:hover,body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-item:hover{transform:translateY(-4px);box-shadow:0 22px 54px rgba(9,55,26,.12);border-color:rgba(185,59,32,.22)}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-card p,body.page-template-page-thi-cong-duong-chay-dien-kinh .service-card li,body.page-template-page-thi-cong-duong-chay-dien-kinh .spec-card p,body.page-template-page-thi-cong-duong-chay-dien-kinh .card p,body.page-template-page-thi-cong-duong-chay-dien-kinh .card li,body.page-template-page-thi-cong-duong-chay-dien-kinh .related-card p{color:#4d5e52}body.page-template-page-thi-cong-duong-chay-dien-kinh .card-icon,body.page-template-page-thi-cong-duong-chay-dien-kinh .trust-icon{background:linear-gradient(135deg,var(--track-red),var(--track-orange));color:#fff;box-shadow:0 10px 22px rgba(185,59,32,.22)}body.page-template-page-thi-cong-duong-chay-dien-kinh .spec-card h3,body.page-template-page-thi-cong-duong-chay-dien-kinh .service-card h3,body.page-template-page-thi-cong-duong-chay-dien-kinh .card h3{letter-spacing:-.15px}body.page-template-page-thi-cong-duong-chay-dien-kinh .mini-link,body.page-template-page-thi-cong-duong-chay-dien-kinh .link-arrow{color:var(--track-red);font-weight:900}body.page-template-page-thi-cong-duong-chay-dien-kinh .cost-price{color:var(--track-red)!important;letter-spacing:-.4px}body.page-template-page-thi-cong-duong-chay-dien-kinh .compact-table,body.page-template-page-thi-cong-duong-chay-dien-kinh .table-wrap{border-color:rgba(185,59,32,.16);box-shadow:0 18px 46px rgba(34,19,10,.08)}body.page-template-page-thi-cong-duong-chay-dien-kinh .compact-table table{min-width:920px}body.page-template-page-thi-cong-duong-chay-dien-kinh .compact-table th,body.page-template-page-thi-cong-duong-chay-dien-kinh th{background:linear-gradient(135deg,var(--kp-dark),#063c20);border-bottom:4px solid var(--track-orange);vertical-align:top}body.page-template-page-thi-cong-duong-chay-dien-kinh .compact-table td,body.page-template-page-thi-cong-duong-chay-dien-kinh td{vertical-align:top}body.page-template-page-thi-cong-duong-chay-dien-kinh .compact-table td:first-child{color:var(--kp-dark);font-weight:800}body.page-template-page-thi-cong-duong-chay-dien-kinh .compact-table tr:nth-child(even) td{background:#fff8f3}body.page-template-page-thi-cong-duong-chay-dien-kinh .compact-table tr:hover td{background:#fff1e8}body.page-template-page-thi-cong-duong-chay-dien-kinh .callout{background:linear-gradient(135deg,#fff8df,#fff4ec);border-color:rgba(229,109,49,.26);box-shadow:0 14px 34px rgba(34,19,10,.07)}body.page-template-page-thi-cong-duong-chay-dien-kinh .mid-cta,body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-block{position:relative;overflow:hidden;background:radial-gradient(circle at 88% 18%,rgba(255,138,69,.30),transparent 27%),linear-gradient(135deg,#00240f 0%,var(--kp-dark) 48%,var(--track-red-dark) 100%);box-shadow:0 26px 76px rgba(0,38,17,.22)}body.page-template-page-thi-cong-duong-chay-dien-kinh .mid-cta::before,body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-block::before{content:'';position:absolute;inset:0;background:repeating-linear-gradient(110deg,transparent 0 44px,rgba(255,255,255,.08) 44px 47px,transparent 47px 92px);pointer-events:none}body.page-template-page-thi-cong-duong-chay-dien-kinh .mid-cta>*,body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-block>*{position:relative;z-index:1}body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-panel{box-shadow:0 24px 60px rgba(0,0,0,.18);border:1px solid rgba(255,255,255,.72)}body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-tip{background:#fff4ec;border-color:rgba(229,109,49,.28)}body.page-template-page-thi-cong-duong-chay-dien-kinh .scenario-thumb,body.page-template-page-thi-cong-duong-chay-dien-kinh .portfolio-img{background:radial-gradient(circle at 25% 20%,rgba(255,255,255,.12),transparent 24%),repeating-linear-gradient(18deg,rgba(255,255,255,.055) 0 3px,transparent 3px 10px),linear-gradient(135deg,var(--track-red-dark),var(--track-orange))}body.page-template-page-thi-cong-duong-chay-dien-kinh .scenario-thumb:before,body.page-template-page-thi-cong-duong-chay-dien-kinh .portfolio-img:before{box-shadow:0 0 0 16px rgba(255,255,255,.045)}body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-q::after{color:var(--track-orange)}body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-item.open{border-color:rgba(229,109,49,.34);box-shadow:0 20px 50px rgba(34,19,10,.10)}body.page-template-page-thi-cong-duong-chay-dien-kinh .related-card{overflow:hidden}@media(max-width:1100px){body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero-grid{grid-template-columns:1fr;gap:34px}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-diagram{height:286px}body.page-template-page-thi-cong-duong-chay-dien-kinh .section-subtitle{text-align:left}body.page-template-page-thi-cong-duong-chay-dien-kinh .compact-table table{min-width:860px}}@media(max-width:720px){body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero-grid{padding:116px 0 48px}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero h1{font-size:32px}body.page-template-page-thi-cong-duong-chay-dien-kinh .breadcrumb{font-size:12px;flex-wrap:wrap;border-radius:16px}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-panel{padding:14px;border-radius:24px}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-panel::before{top:14px;left:14px;font-size:10px}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-diagram{height:196px}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-diagram:before{inset:24px 22px;border-width:4px}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-diagram:after{inset:48px 48px}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-lane{inset:72px 72px}body.page-template-page-thi-cong-duong-chay-dien-kinh .finish-line{right:55px;top:42px;bottom:42px;width:5px}body.page-template-page-thi-cong-duong-chay-dien-kinh .section{padding:60px 0}body.page-template-page-thi-cong-duong-chay-dien-kinh .section-subtitle{padding:15px 16px;border-radius:16px;margin-bottom:28px;font-size:14px}body.page-template-page-thi-cong-duong-chay-dien-kinh .compact-table table{min-width:840px}body.page-template-page-thi-cong-duong-chay-dien-kinh .service-card:hover,body.page-template-page-thi-cong-duong-chay-dien-kinh .spec-card:hover,body.page-template-page-thi-cong-duong-chay-dien-kinh .card:hover,body.page-template-page-thi-cong-duong-chay-dien-kinh .related-card:hover,body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-item:hover{transform:none}body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-block{gap:22px}}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-link-row{margin-top:28px}body.page-template-page-thi-cong-duong-chay-dien-kinh .surface-gallery{margin-top:28px}body.page-template-page-thi-cong-duong-chay-dien-kinh .surface-gallery .scenario-thumb{height:180px}body.page-template-page-thi-cong-duong-chay-dien-kinh .surface-gallery .scenario-thumb img{width:100%;height:100%;object-fit:cover;display:block}body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-inline-title{margin-top:48px}body.page-template-page-thi-cong-duong-chay-dien-kinh .form-faq-list{margin-top:24px}body.page-template-page-thi-cong-duong-chay-dien-kinh .quote-panel .wpforms-container{margin:0}@media(max-width:720px){body.page-template-page-thi-cong-duong-chay-dien-kinh .surface-gallery .scenario-thumb{height:160px}body.page-template-page-thi-cong-duong-chay-dien-kinh .track-link-row .btn{width:100%}}
body.page-template-page-thi-cong-duong-chay-dien-kinh .surface-gallery .scenario-thumb:before,body.page-template-page-thi-cong-duong-chay-dien-kinh .surface-gallery .scenario-thumb:after{display:none}body.page-template-page-thi-cong-duong-chay-dien-kinh .surface-gallery .scenario-thumb img{position:relative;z-index:1}body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-inline-title{margin-top:0;padding-top:48px}@media(max-width:720px){body.page-template-page-thi-cong-duong-chay-dien-kinh .faq-inline-title{padding-top:40px}}
body.page-template-page-thi-cong-duong-chay-dien-kinh .surface-gallery{margin-top:44px}@media(max-width:720px){body.page-template-page-thi-cong-duong-chay-dien-kinh .surface-gallery{margin-top:36px}}
body.page-template-page-thi-cong-duong-chay-dien-kinh #bao-gia .quote-block+.faq-inline-title{margin-top:56px;padding-top:0}@media(max-width:720px){body.page-template-page-thi-cong-duong-chay-dien-kinh #bao-gia .quote-block+.faq-inline-title{margin-top:44px;padding-top:0}}
body.page-template-page-thi-cong-duong-chay-dien-kinh #bao-gia .quote-block+.faq-inline-title{border-top:56px solid transparent!important;margin-top:0!important;padding-top:0!important}@media(max-width:720px){body.page-template-page-thi-cong-duong-chay-dien-kinh #bao-gia .quote-block+.faq-inline-title{border-top-width:44px!important}}
body.page-template-page-thi-cong-duong-chay-dien-kinh .surface-gallery .scenario-thumb{height:220px}body.page-template-page-thi-cong-duong-chay-dien-kinh .surface-gallery .scenario-thumb img[src*="kpg-track-surface"]{object-position:center 54%}@media(max-width:720px){body.page-template-page-thi-cong-duong-chay-dien-kinh .surface-gallery .scenario-thumb{height:190px}body.page-template-page-thi-cong-duong-chay-dien-kinh .surface-gallery .scenario-thumb img[src*="kpg-track-surface"]{object-position:center 50%}}
/* Product-page style hero, matched to the football turf hero pattern. */
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-product-hero{
  position:relative;
  min-height:80vh!important;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,rgba(0,38,17,.88) 0%,rgba(0,64,30,.78) 45%,rgba(94,28,17,.70) 100%),url('/wp-content/uploads/2025/08/San-dien-kinh-Khanh-Phat.jpg') center 58%/cover no-repeat!important;
  overflow:hidden;
  isolation:isolate;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-product-hero::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(135deg,rgba(0,35,16,.90) 0%,rgba(0,62,29,.76) 48%,rgba(10,107,47,.62) 100%);
  pointer-events:none;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-product-hero::after{display:none!important}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-product-hero-copy{
  position:relative;
  z-index:2;
  width:100%;
  max-width:860px;
  margin:0 auto;
  padding:140px 24px 60px;
  text-align:center;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-breadcrumb{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin:0 auto 18px;
  padding:0;
  color:rgba(255,255,255,.76);
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
  backdrop-filter:none;
  font-size:13px;
  font-weight:700;
  line-height:1.4;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-breadcrumb a{color:rgba(255,255,255,.76)}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-breadcrumb a:hover{color:#fff}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-breadcrumb .sep{opacity:.45}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-product-hero h1{
  margin:0 0 14px;
  color:#fff;
  font-size:52px;
  font-weight:900;
  line-height:1.15;
  letter-spacing:0;
  text-shadow:0 2px 20px rgba(0,0,0,.22);
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-tagline{
  margin:0 0 16px;
  color:var(--kp-yellow);
  font-size:18px;
  font-weight:800;
  line-height:1.45;
  letter-spacing:0;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-lead{
  max-width:650px;
  margin:0 auto 28px;
  color:rgba(255,255,255,.90);
  font-size:17px;
  line-height:1.7;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-stats{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin:24px auto;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-stat{
  min-width:132px;
  padding:18px 22px 14px;
  text-align:center;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  box-shadow:none;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-stat-num{
  color:#fff;
  font-size:31px;
  font-weight:900;
  line-height:1;
  letter-spacing:0;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-stat-label{
  margin-top:7px;
  color:rgba(255,255,255,.82);
  font-size:12px;
  font-weight:700;
  line-height:1.35;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-product-hero .hero-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin:28px 0 0;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-product-hero .btn-primary{
  background:var(--kp-yellow);
  color:#111;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-product-hero .btn-outline{
  color:#fff;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.56);
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .track-product-hero .btn-outline:hover{
  color:#fff;
  background:rgba(255,255,255,.18);
  border-color:#fff;
}
@media(max-width:1100px){
  body.page-template-page-thi-cong-duong-chay-dien-kinh .track-product-hero h1{font-size:44px}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-lead{font-size:16px}
}
@media(max-width:720px){
  body.page-template-page-thi-cong-duong-chay-dien-kinh .track-product-hero{min-height:auto!important;background-position:center center!important}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .track-product-hero-copy{padding:116px 20px 44px}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-breadcrumb{font-size:12px;flex-wrap:wrap;margin-bottom:14px}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .track-product-hero h1{font-size:32px;line-height:1.16;margin-bottom:12px}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-tagline{font-size:15px;margin-bottom:14px}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-lead{font-size:15px;line-height:1.65;margin-bottom:22px}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-stats{gap:10px;margin:22px auto}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-stat{min-width:132px;padding:14px 12px}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .track-hero-stat-num{font-size:24px}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .track-product-hero .hero-actions{gap:12px;max-width:360px;margin:24px auto 0}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .track-product-hero .hero-actions .btn{width:100%}
}

/* Shared construction CSS loads later, so these selectors intentionally win for this hero only. */
body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero{
  min-height:80vh!important;
  padding-top:0!important;
  background:linear-gradient(135deg,rgba(0,38,17,.88) 0%,rgba(0,64,30,.78) 45%,rgba(94,28,17,.70) 100%),url('/wp-content/uploads/2025/08/San-dien-kinh-Khanh-Phat.jpg') center 58%/cover no-repeat!important;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero::before{
  content:''!important;
  position:absolute!important;
  inset:0!important;
  z-index:1!important;
  opacity:1!important;
  mix-blend-mode:normal!important;
  background:linear-gradient(135deg,rgba(0,35,16,.90) 0%,rgba(0,62,29,.76) 48%,rgba(10,107,47,.62) 100%)!important;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero::after{display:none!important}
body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero h1{
  max-width:1100px!important;
  margin:0 0 16px!important;
  font-size:52px!important;
  line-height:1.15!important;
  letter-spacing:0!important;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero .track-product-hero-copy{
  max-width:var(--kp-max)!important;
  padding:160px 24px 70px!important;
  text-align:left!important;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero .track-hero-breadcrumb{
  position:static!important;
  inset:auto!important;
  left:auto!important;
  top:auto!important;
  right:auto!important;
  bottom:auto!important;
  transform:none!important;
  z-index:auto!important;
  display:inline-flex!important;
  width:auto!important;
  max-width:100%!important;
  margin:0 0 24px!important;
  padding:0!important;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero .track-hero-tagline{
  max-width:820px!important;
  margin:0 0 18px!important;
  text-align:left!important;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero .track-hero-lead{
  max-width:780px!important;
  margin:0 0 30px!important;
  text-align:left!important;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero .track-hero-stats{
  justify-content:flex-start!important;
  margin:28px 0!important;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero .hero-actions{
  justify-content:flex-start!important;
  margin:28px 0 0!important;
}
@media(max-width:1100px){
  body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero h1{font-size:44px!important}
}
@media(max-width:720px){
  body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero{min-height:auto!important;background-position:center center!important}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero .track-product-hero-copy{padding:116px 20px 44px!important}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero .track-hero-breadcrumb{margin-bottom:14px!important;justify-content:flex-start!important}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero h1{font-size:32px!important;line-height:1.16!important;margin-bottom:12px!important}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero .track-hero-tagline{margin-bottom:14px!important}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero .track-hero-lead{margin-bottom:22px!important}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero .track-hero-stats{justify-content:center!important;margin:22px auto!important}
  body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero .hero-actions{justify-content:center!important;margin:24px auto 0!important}
}

/* Keep the text side readable while letting the track photo stay visible. */
body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero{
  background:linear-gradient(90deg,rgba(0,31,14,.82) 0%,rgba(0,43,20,.62) 42%,rgba(0,65,30,.26) 72%,rgba(0,0,0,.04) 100%),url('/wp-content/uploads/2025/08/San-dien-kinh-Khanh-Phat.jpg') center 58%/cover no-repeat!important;
}
body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero::before{
  background:linear-gradient(90deg,rgba(0,18,9,.46) 0%,rgba(0,22,10,.24) 38%,rgba(0,0,0,0) 72%)!important;
}
@media(max-width:720px){
  body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero{
    background:linear-gradient(180deg,rgba(0,31,14,.76) 0%,rgba(0,43,20,.62) 58%,rgba(0,43,20,.38) 100%),url('/wp-content/uploads/2025/08/San-dien-kinh-Khanh-Phat.jpg') center center/cover no-repeat!important;
  }
  body.page-template-page-thi-cong-duong-chay-dien-kinh .service-hero.track-product-hero::before{
    background:linear-gradient(180deg,rgba(0,18,9,.36) 0%,rgba(0,0,0,0) 68%)!important;
  }
}


/* template-layout-guards.css */
/* Template layout guard layer.
   Loaded before the sitewide visual safety net on front, page, and project archive templates. */

/* Page-template hero alignment and responsive sizing tokens. */
:root {
  --kp-product-hero-copy-max: 760px;
  --kp-product-hero-top-desktop: clamp(96px, 10vh, 128px);
  --kp-visual-product-hero-top-desktop: clamp(136px, 13vh, 150px);
  --kp-visual-product-hero-bottom-desktop: clamp(88px, 8vh, 104px);
  --kp-product-hero-breadcrumb-top-desktop: clamp(120px, 15.5vh, 156px);
  --kp-product-hero-wide-shift: clamp(96px, 9vh, 128px);
  --kp-product-hero-breadcrumb-top-wide: clamp(300px, 22.5vh, 324px);
  --kp-page-hero-top-desktop: 96px;
  --kp-project-hero-copy-max: 760px;
  --kp-project-hero-visual-max: 420px;
}

/* Page-specific compact hero: co-nhan-tao-cu. */
body.page-template-page-co-nhan-tao-cu .hero {
  min-height: clamp(560px, 64vh, 620px) !important;
}

body.page-template-page-co-nhan-tao-cu .hero-copy {
  padding: 112px 24px 42px !important;
}

body.page-template-page-co-nhan-tao-cu .hero-stats {
  margin: 16px auto !important;
  gap: 12px !important;
}

body.page-template-page-co-nhan-tao-cu .hero-actions {
  margin-top: 18px !important;
}

@media (max-width: 720px) {
  body.page-template-page-co-nhan-tao-cu .hero-copy {
    padding: 78px 24px 28px !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero h1 {
    margin-bottom: 10px !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero-tagline {
    margin-bottom: 10px !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero-lead {
    margin-bottom: 14px !important;
    line-height: 1.56 !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero-actions {
    margin: 0 0 14px !important;
    gap: 10px !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero-actions .btn {
    min-height: 44px !important;
    padding: 12px 18px !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero-stats {
    gap: 8px !important;
    margin: 14px auto 0 !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero-stat {
    padding: 12px 10px !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero-stat-num {
    font-size: 21px !important;
  }
}

body:is(
  .page-template-page-co-nhan-tao-san-bong,
  .page-template-page-co-nhan-tao-cu,
  .page-template-page-dai-ly-ban-si
) .hero {
  justify-content: flex-start !important;
}

body:is(
  .page-template-page-co-nhan-tao-san-bong,
  .page-template-page-co-nhan-tao-cu,
  .page-template-page-dai-ly-ban-si
) .hero-copy {
  width: min(var(--kp-product-hero-copy-max), 100%) !important;
  max-width: var(--kp-product-hero-copy-max) !important;
  margin-left: max(24px, calc((100vw - var(--kp-max, 1280px)) / 2 + 24px)) !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: left !important;
}

body:is(
  .page-template-page-co-nhan-tao-san-bong,
  .page-template-page-co-nhan-tao-cu,
  .page-template-page-dai-ly-ban-si
) .hero-lead {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body:is(
  .page-template-page-co-nhan-tao-san-bong,
  .page-template-page-co-nhan-tao-cu,
  .page-template-page-dai-ly-ban-si
) :is(.hero-actions, .hero-stats, .hero-chips) {
  justify-content: flex-start !important;
}

body:is(
  .page-template-page-co-nhan-tao-san-bong,
  .page-template-page-co-nhan-tao-cu,
  .page-template-page-dai-ly-ban-si
) .hero h1 {
  max-width: var(--kp-product-hero-copy-max) !important;
  text-wrap: balance;
}

@media (min-width: 721px) {
  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-cu,
    .page-template-page-dai-ly-ban-si,
    .page-template-page-co-nhan-tao-san-vuon,
    .page-template-page-co-nhan-tao-san-golf
  ) :is(.hero, .garden-hero, .golf-hero) {
    align-items: center !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-cu,
    .page-template-page-dai-ly-ban-si
  ) .hero-copy {
    position: static !important;
    padding-top: var(--kp-product-hero-top-desktop) !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-cu,
    .page-template-page-dai-ly-ban-si
  ) .hero-copy > :not(.breadcrumb) {
    position: relative !important;
    z-index: 2 !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-cu,
    .page-template-page-dai-ly-ban-si
  ) :is(.hero > .breadcrumb, .hero-copy > .breadcrumb) {
    position: absolute !important;
    z-index: 3 !important;
    top: var(--kp-product-hero-breadcrumb-top-desktop) !important;
    left: max(24px, calc((100vw - var(--kp-max, 1280px)) / 2 + 24px)) !important;
    right: auto !important;
    width: fit-content !important;
    max-width: min(var(--kp-product-hero-copy-max), calc(100vw - 48px)) !important;
    margin: 0 !important;
    transform: none !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-vuon,
    .page-template-page-co-nhan-tao-san-golf
  ) :is(.garden-hero-copy, .golf-hero-copy) {
    width: min(var(--kp-product-hero-copy-max), 100%) !important;
    max-width: var(--kp-product-hero-copy-max) !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-vuon,
    .page-template-page-co-nhan-tao-san-golf
  ) :is(.garden-hero-grid, .golf-hero-grid) {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr) !important;
    gap: 40px !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-cu,
    .page-template-page-dai-ly-ban-si
  ) .hero-lead,
  body:is(
    .page-template-page-co-nhan-tao-san-vuon,
    .page-template-page-co-nhan-tao-san-golf
  ) :is(.garden-hero h1, .garden-hero p, .golf-hero h1, .golf-hero p) {
    max-width: var(--kp-product-hero-copy-max) !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-vuon,
    .page-template-page-co-nhan-tao-san-golf
  ) :is(.garden-hero, .golf-hero) {
    padding-top: var(--kp-visual-product-hero-top-desktop) !important;
    padding-bottom: var(--kp-visual-product-hero-bottom-desktop) !important;
  }

  body.page-template-page-lien-he .contact-hero,
  body.page-template-page-tin-tuc .news-hero,
  body.category-du-an .project-hero,
  body.page-template-page-du-an .project-hero {
    align-items: flex-start !important;
  }

  body.category-du-an .kp-project-hero-inner,
  body.page-template-page-du-an .kp-project-hero-inner {
    align-items: start !important;
    grid-template-columns: minmax(0, var(--kp-project-hero-copy-max)) minmax(300px, var(--kp-project-hero-visual-max)) !important;
  }

  body.page-template-page-lien-he .contact-hero .hero-inner,
  body.page-template-page-tin-tuc .news-hero .hero-inner,
  body.category-du-an .kp-project-hero-inner,
  body.page-template-page-du-an .kp-project-hero-inner,
  body.category-du-an .project-hero :is(.hero-grid, .kp-project-hero-inner),
  body.page-template-page-du-an .project-hero :is(.hero-grid, .kp-project-hero-inner) {
    padding-top: var(--kp-page-hero-top-desktop) !important;
  }
}

@media (min-width: 1600px) and (min-height: 1200px) {
  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-cu,
    .page-template-page-dai-ly-ban-si
  ) .hero-copy {
    position: static !important;
    transform: none !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-cu,
    .page-template-page-dai-ly-ban-si
  ) .hero-copy > :not(.breadcrumb) {
    position: relative !important;
    z-index: 2 !important;
    transform: translateY(var(--kp-product-hero-wide-shift)) !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-cu,
    .page-template-page-dai-ly-ban-si
  ) :is(.hero > .breadcrumb, .hero-copy > .breadcrumb) {
    position: absolute !important;
    z-index: 3 !important;
    top: var(--kp-product-hero-breadcrumb-top-wide) !important;
    left: max(24px, calc((100vw - var(--kp-max, 1280px)) / 2 + 24px)) !important;
    right: auto !important;
    width: fit-content !important;
    max-width: min(var(--kp-product-hero-copy-max), calc(100vw - 48px)) !important;
    margin: 0 !important;
    transform: none !important;
  }
}

body.page-template-page-co-nhan-tao-san-golf .golf-trust {
  display: none !important;
}

body.page-template-page-co-nhan-tao-san-golf .section-updated {
  color: var(--kp-muted, #5d6b61) !important;
}

body.page-template :is(.quote-block, .quote-grid) {
  align-items: stretch !important;
}

body.page-template :is(.quote-panel, .quote-right):has(.wpforms-container-full) {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
  align-self: stretch !important;
}

body.page-template :is(.quote-panel, .quote-right):has(.wpforms-container-full) div.wpforms-container-full .wpforms-form {
  padding: 22px !important;
}

body.page-template :is(.quote-panel, .quote-right):has(.wpforms-container-full) div.wpforms-container-full .wpforms-field-container {
  gap: 12px !important;
}

body.page-template :is(.quote-panel, .quote-right):has(.wpforms-container-full) div.wpforms-container-full .wpforms-field-label {
  margin-bottom: 6px !important;
  font-size: 12.5px !important;
}

body.page-template :is(.quote-panel, .quote-right):has(.wpforms-container-full) div.wpforms-container-full :is(input[type=text], input[type=email], input[type=tel], input[type=number], select) {
  min-height: 48px !important;
  padding: 11px 14px !important;
}

body.page-template :is(.quote-panel, .quote-right):has(.wpforms-container-full) div.wpforms-container-full textarea {
  min-height: 92px !important;
}

body.page-template :is(.quote-panel, .quote-right):has(.wpforms-container-full) div.wpforms-container-full .wpforms-submit-container {
  margin-top: 12px !important;
}

body.page-template :is(.quote-panel, .quote-right):has(.wpforms-container-full) div.wpforms-container-full :is(button[type=submit], .wpforms-submit) {
  min-height: 50px !important;
}

body.page-template :is(.quote-panel, .quote-right, .form-panel):has(.wpforms-container-full) {
  border: 1px solid rgba(10, 107, 47, .12) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), #f9fcf9) !important;
  box-shadow: 0 22px 62px rgba(9, 55, 26, .12) !important;
}

body.page-template :is(.quote-panel, .quote-right, .form-panel):has(.wpforms-container-full) div.wpforms-container-full .wpforms-form {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body.page-template :is(.quote-panel, .quote-right, .form-panel):has(.wpforms-container-full) div.wpforms-container-full .wpforms-form::before {
  display: none !important;
}

body.page-template :is(.quote-panel, .quote-right, .form-panel):has(.wpforms-container-full) div.wpforms-container-full .wpforms-field-container {
  gap: 14px !important;
}

body.page-template :is(.quote-panel, .quote-right, .form-panel):has(.wpforms-container-full) div.wpforms-container-full :is(input[type=text], input[type=email], input[type=tel], input[type=number], select) {
  min-height: 50px !important;
  border-radius: 13px !important;
}

body.page-template :is(.quote-panel, .quote-right, .form-panel):has(.wpforms-container-full) div.wpforms-container-full textarea {
  min-height: 106px !important;
  border-radius: 13px !important;
}

body:is(
  .page-template-page-dai-ly-ban-si,
  .page-template-page-co-nhan-tao-cu
) .quote-section:has(.wpforms-container-full) {
  padding: 72px 0 !important;
  background: radial-gradient(circle at 82% 18%, rgba(255, 201, 40, .16), transparent 28%), linear-gradient(135deg, #042414, var(--kp-dark)) !important;
}

body:is(
  .page-template-page-dai-ly-ban-si,
  .page-template-page-co-nhan-tao-cu
) .quote-section:has(.wpforms-container-full) .quote-grid {
  width: min(var(--kp-max, 1280px), 100%) !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 520px) !important;
  gap: 44px !important;
  align-items: center !important;
}

body:is(
  .page-template-page-dai-ly-ban-si,
  .page-template-page-co-nhan-tao-cu
) .quote-section:has(.wpforms-container-full) .quote-left {
  padding: 0 !important;
  max-width: 680px !important;
}

body:is(
  .page-template-page-dai-ly-ban-si,
  .page-template-page-co-nhan-tao-cu
) .quote-section:has(.wpforms-container-full) .quote-right {
  align-self: center !important;
  padding: 32px !important;
  border-radius: 28px !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) .quote-block:has(.wpforms-container-full) {
  grid-template-columns: minmax(0, 1fr) minmax(440px, 520px) !important;
  align-items: center !important;
  gap: 42px !important;
  padding: 44px !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) .quote-block:has(.wpforms-container-full) .quote-panel {
  align-self: center !important;
  padding: 30px !important;
  border-radius: 28px !important;
}

body.page-template-page-lien-he .contact-layout {
  align-items: stretch !important;
  gap: 30px !important;
}

body.page-template-page-lien-he .form-panel:has(.wpforms-container-full) {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 30px !important;
}

@container (min-width: 420px) {
  body.page-template :is(.quote-panel, .quote-right):has(.wpforms-container-full) div.wpforms-container-full .wpforms-field-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.page-template :is(.quote-panel, .quote-right):has(.wpforms-container-full) #wpforms-886-field_5-container,
  body.page-template :is(.quote-panel, .quote-right):has(.wpforms-container-full) div.wpforms-container-full .wpforms-field-textarea {
    grid-column: 1 / -1 !important;
  }
}

@media (min-width: 1101px) {
  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .quote-block {
    grid-template-columns: minmax(0, 1fr) minmax(500px, 520px) !important;
    gap: 36px !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-cu,
    .page-template-page-dai-ly-ban-si
  ) .quote-grid {
    grid-template-columns: minmax(0, 1fr) minmax(500px, 520px) !important;
  }
}

@media (max-width: 720px) {
  :root {
    --kp-mobile-header-height: 68px;
    --kp-mobile-hero-top: 112px;
    --kp-mobile-service-hero-top: 96px;
    --kp-mobile-hero-bottom: 42px;
  }

  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .table-wrap,
  .compact-table,
  .discount-table-wrap,
  .compare-table-wrap,
  .garden-table-scroll,
  .golf-table-scroll {
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  body.page-template :is(.quote-panel, .quote-right):has(.wpforms-container-full) {
    padding: 16px !important;
    border-radius: 20px !important;
  }

  body.page-template :is(.quote-panel, .quote-right):has(.wpforms-container-full) div.wpforms-container-full .wpforms-form {
    padding: 18px !important;
    border-radius: 18px !important;
  }

  body.page-template :is(.quote-panel, .quote-right):has(.wpforms-container-full) div.wpforms-container-full .wpforms-field-container {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  body.page-template :is(.quote-panel, .quote-right):has(.wpforms-container-full) div.wpforms-container-full textarea {
    min-height: 92px !important;
  }

  body.page-template-page-co-nhan-tao-san-bong .hero-copy,
  body.page-template-page-co-nhan-tao-cu .hero-copy,
  body.page-template-page-dai-ly-ban-si .hero-copy {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-top: var(--kp-mobile-hero-top) !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    padding-bottom: var(--kp-mobile-hero-bottom) !important;
    text-align: left !important;
  }

  body.page-template-page-co-nhan-tao-san-bong .hero:has(> .hero-breadcrumb),
  body.page-template-page-dai-ly-ban-si .hero:has(> .hero-breadcrumb) {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
  }

  body.page-template-page-co-nhan-tao-san-bong .hero > .hero-breadcrumb,
  body.page-template-page-dai-ly-ban-si .hero > .hero-breadcrumb {
    position: relative !important;
    z-index: 2 !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    order: 1;
    width: fit-content !important;
    max-width: calc(100vw - 48px) !important;
    margin: var(--kp-mobile-hero-top) 24px 12px !important;
    transform: none !important;
  }

  body.page-template-page-co-nhan-tao-san-bong .hero:has(> .hero-breadcrumb) .hero-copy,
  body.page-template-page-dai-ly-ban-si .hero:has(> .hero-breadcrumb) .hero-copy {
    order: 2;
    padding-top: 16px !important;
  }

  body.page-template-page-co-nhan-tao-san-bong .breadcrumb,
  body.page-template-page-co-nhan-tao-cu .breadcrumb,
  body.page-template-page-dai-ly-ban-si .breadcrumb {
    order: 1;
  }

  body.page-template-page-co-nhan-tao-san-bong .hero h1,
  body.page-template-page-co-nhan-tao-cu .hero h1,
  body.page-template-page-dai-ly-ban-si .hero h1 {
    order: 2;
    font-size: clamp(31px, 8.5vw, 38px) !important;
    line-height: 1.1 !important;
    margin-bottom: 12px !important;
  }

  body.page-template-page-co-nhan-tao-san-bong .hero-tagline,
  body.page-template-page-co-nhan-tao-cu .hero-tagline,
  body.page-template-page-dai-ly-ban-si .hero-tagline {
    order: 3;
    margin-bottom: 12px !important;
    line-height: 1.35 !important;
  }

  body.page-template-page-co-nhan-tao-san-bong .hero-lead,
  body.page-template-page-co-nhan-tao-cu .hero-lead,
  body.page-template-page-dai-ly-ban-si .hero-lead {
    order: 4;
  }

  body.page-template-page-co-nhan-tao-san-bong .hero-actions,
  body.page-template-page-co-nhan-tao-cu .hero-actions,
  body.page-template-page-dai-ly-ban-si .hero-actions {
    order: 5;
    margin: 4px 0 20px !important;
  }

  body.page-template-page-dai-ly-ban-si .hero-chips {
    order: 6;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin: 16px 0 18px !important;
  }

  body.page-template-page-dai-ly-ban-si .hero-chip {
    justify-content: center !important;
    align-items: center !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 48px !important;
    padding: 9px 10px !important;
    border-radius: 999px !important;
    text-align: center !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  body.page-template-page-dai-ly-ban-si .hero-chip:nth-child(3) {
    grid-column: 1 / -1 !important;
    justify-self: stretch !important;
  }

  body.page-template-page-co-nhan-tao-san-vuon .garden-hero,
  body.page-template-page-co-nhan-tao-san-golf .golf-hero {
    padding-top: var(--kp-mobile-hero-top) !important;
    padding-bottom: 48px !important;
  }

  body.page-template-page-co-nhan-tao-san-vuon .garden-product-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  body.page-template-page-co-nhan-tao-san-vuon .garden-product-card {
    min-width: 0 !important;
  }

  body.page-template-page-co-nhan-tao-san-golf .golf-product-grid,
  body.page-template-page-co-nhan-tao-san-golf .golf-explain-grid,
  body.page-template-page-co-nhan-tao-san-golf .golf-app-grid,
  body.page-template-page-co-nhan-tao-san-golf .golf-process,
  body.page-template-page-co-nhan-tao-san-golf .related-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  body.page-template-page-co-nhan-tao-san-golf .golf-product-card,
  body.page-template-page-co-nhan-tao-san-golf .golf-explain-card,
  body.page-template-page-co-nhan-tao-san-golf .golf-app-card,
  body.page-template-page-co-nhan-tao-san-golf .golf-step,
  body.page-template-page-co-nhan-tao-san-golf .related-card {
    min-width: 0 !important;
  }

  body.page-template-page-lien-he .contact-hero .hero-inner,
  body.page-template-page-tin-tuc .news-hero .hero-inner,
  body.category-du-an .kp-project-hero-inner {
    padding-top: var(--kp-mobile-hero-top) !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .service-hero {
    min-height: auto !important;
    padding: 0 !important;
    align-items: flex-start !important;
    overflow: hidden !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .service-hero-grid {
    padding-top: var(--kp-mobile-service-hero-top) !important;
    padding-bottom: var(--kp-mobile-hero-bottom) !important;
    gap: 22px !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .service-hero-grid > :nth-child(n+2) {
    display: none !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .service-hero :is(.breadcrumb, .eyebrow, .hero-note, .answer-capsule) {
    margin-bottom: 14px !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .quote-block:has(.wpforms-container-full) {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .quote-panel:has(.wpforms-container-full) {
    width: calc(100% + 40px) !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    padding: 12px !important;
  }

  body.page-template .hero .breadcrumb,
  body.page-template .service-hero .breadcrumb,
  body.page-template-page-lien-he .breadcrumb,
  body.category-du-an .breadcrumb {
    display: inline-flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 6px 8px !important;
    max-width: 100% !important;
    padding: 8px 12px !important;
    border: 1px solid rgba(255, 255, 255, .24) !important;
    border-radius: 999px !important;
    background: rgba(0, 36, 17, .72) !important;
    color: #fff !important;
    line-height: 1.35 !important;
    text-align: left !important;
    text-shadow: none !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  body.page-template .hero .breadcrumb a,
  body.page-template .service-hero .breadcrumb a,
  body.page-template-page-lien-he .breadcrumb a,
  body.category-du-an .breadcrumb a,
  body.page-template .hero .breadcrumb span,
  body.page-template .service-hero .breadcrumb span,
  body.page-template-page-lien-he .breadcrumb span,
  body.category-du-an .breadcrumb span {
    color: #fff !important;
  }

  .hero-actions,
  .garden-hero-actions,
  .golf-hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hero-actions .btn,
  .garden-hero-actions .btn,
  .golf-hero-actions .btn {
    width: 100% !important;
    min-height: 48px !important;
  }

  body.page-template-page-co-nhan-tao-san-bong .hero-stats,
  body.page-template-page-co-nhan-tao-cu .hero-stats,
  body.page-template-page-dai-ly-ban-si .hero-stats {
    order: 7;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin-top: 18px !important;
    margin-bottom: 22px !important;
  }

  body.page-template-page-co-nhan-tao-san-bong .hero-stat,
  body.page-template-page-co-nhan-tao-cu .hero-stat,
  body.page-template-page-dai-ly-ban-si .hero-stat {
    min-width: 0 !important;
    padding: 14px 12px !important;
  }

  body.page-template :is(.quote-panel, .quote-right, .form-panel):has(.wpforms-container-full) {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 20px !important;
    border-radius: 24px !important;
  }

  body.page-template :is(.quote-panel, .quote-right, .form-panel):has(.wpforms-container-full) div.wpforms-container-full .wpforms-form {
    padding: 0 !important;
    border-radius: 0 !important;
  }

  body:is(
    .page-template-page-dai-ly-ban-si,
    .page-template-page-co-nhan-tao-cu
  ) .quote-section:has(.wpforms-container-full) {
    padding: 56px 0 !important;
  }

  body:is(
    .page-template-page-dai-ly-ban-si,
    .page-template-page-co-nhan-tao-cu
  ) .quote-section:has(.wpforms-container-full) .quote-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 0 16px !important;
  }

  body:is(
    .page-template-page-dai-ly-ban-si,
    .page-template-page-co-nhan-tao-cu
  ) .quote-section:has(.wpforms-container-full) .quote-left {
    max-width: none !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .quote-block:has(.wpforms-container-full) {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 28px 16px !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .quote-block:has(.wpforms-container-full) .quote-panel {
    padding: 20px !important;
    border-radius: 24px !important;
  }

  body.page-template-page-lien-he .form-panel:has(.wpforms-container-full) {
    padding: 20px !important;
  }
}

/* Final override: compact hero on co-nhan-tao-cu after shared guards. */
body.page-template-page-co-nhan-tao-cu .hero {
  min-height: clamp(540px, 62vh, 600px) !important;
}

body.page-template-page-co-nhan-tao-cu .hero-copy {
  padding: 112px 24px 38px !important;
}

body.page-template-page-co-nhan-tao-cu .hero-stats {
  margin: 14px auto !important;
  gap: 10px !important;
}

body.page-template-page-co-nhan-tao-cu .hero-actions {
  margin-top: 16px !important;
}

@media (max-width: 720px) {
  body.page-template-page-co-nhan-tao-cu .hero {
    min-height: auto !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero-copy {
    padding: 78px 24px 28px !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero h1 {
    margin-bottom: 10px !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero-tagline {
    margin-bottom: 10px !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero-lead {
    margin-bottom: 14px !important;
    line-height: 1.56 !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero-actions {
    margin: 0 0 14px !important;
    gap: 10px !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero-actions .btn {
    min-height: 44px !important;
    padding: 12px 18px !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero-stats {
    gap: 8px !important;
    margin: 14px auto 0 !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero-stat {
    padding: 12px 10px !important;
  }

  body.page-template-page-co-nhan-tao-cu .hero-stat-num {
    font-size: 21px !important;
  }
}


/* template-system.css */
/* Final template system layer.
   Loaded after product/service group CSS so shared layout rules stay central. */

/* Sitewide visual safety net: content must never disappear or turn white on light sections. */
.js-ready .reveal,
.js-ready :is(.reveal-delay-1, .reveal-delay-2, .reveal-delay-3, .reveal-delay-4, .reveal-delay-5) {
  opacity: 1 !important;
  transform: none !important;
  transition-delay: 0s !important;
}

body :is(main, .site-main) :is(.section, .archive-listing, .related-section, .faq-section, .project-section, .news-section, .contact-section) {
  color: var(--kp-text, #243126);
}

body :is(main, .site-main) :is(.section, .archive-listing, .related-section, .faq-section, .project-section, .news-section, .contact-section) :is(.section-title, h2, h3, h4) {
  color: var(--kp-dark, #002611);
}

body :is(main, .site-main) :is(.section, .archive-listing, .related-section, .faq-section, .project-section, .news-section, .contact-section) :is(.section-subtitle, p, li, td, th) {
  color: inherit;
}

body :is(.hero, .service-hero, .garden-hero, .golf-hero, .contact-hero, .news-hero, .project-hero, .archive-hero, .why-section, .quote-block, .mid-cta, footer, .site-footer) {
  color: #fff;
}

body :is(.hero, .service-hero, .garden-hero, .golf-hero, .contact-hero, .news-hero, .project-hero, .archive-hero, .why-section, .quote-block, .mid-cta, footer, .site-footer) :is(.section-title, h1, h2, h3, h4) {
  color: #fff;
}

body :is(.hero, .service-hero, .garden-hero, .golf-hero, .contact-hero, .news-hero, .project-hero, .archive-hero, .why-section, .quote-block, .mid-cta, footer, .site-footer) :is(.section-subtitle, p, li) {
  color: rgba(255, 255, 255, .84);
}

body :is(.card, .service-card, .spec-card, .post-card, .related-card, .faq-item, .quote-panel, .form-panel, .trust-item, .benefit-item, .process-card, .problem-card, .answer-card, .intent-card, .cost-card, .scenario-card, .maintenance-card, .warranty-box, .testimonial-card) {
  color: var(--kp-text, #243126);
}

body :is(.card, .service-card, .spec-card, .post-card, .related-card, .faq-item, .quote-panel, .form-panel, .trust-item, .benefit-item, .process-card, .problem-card, .answer-card, .intent-card, .cost-card, .scenario-card, .maintenance-card, .warranty-box, .testimonial-card) :is(h2, h3, h4, strong, b) {
  color: var(--kp-dark, #002611);
}

body :is(.card, .service-card, .spec-card, .post-card, .related-card, .faq-item, .quote-panel, .form-panel, .trust-item, .benefit-item, .process-card, .problem-card, .answer-card, .intent-card, .cost-card, .scenario-card, .maintenance-card, .warranty-box, .testimonial-card) :is(p, li, span, td, th) {
  color: inherit;
}

/* Quote/form layout safety for responsive and print-like rendering. */
body :is(.quote-block, .mid-cta) {
  min-width: 0 !important;
}

body :is(.quote-block, .mid-cta) > * {
  min-width: 0 !important;
}

body :is(.quote-block, .mid-cta) :is(h1, h2, h3, p, li, span, strong, b) {
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  body :is(.quote-block, .mid-cta, .quote-grid) {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  body :is(.quote-block, .mid-cta) {
    padding: 24px 18px !important;
    border-radius: 22px !important;
    gap: 20px !important;
  }

  body :is(.quote-block, .mid-cta) :is(.quote-panel, .quote-right, .form-panel) {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Final contrast locks for mixed legacy service templates. */
body :is(.mid-cta, .quote-block) {
  position: relative !important;
  overflow: hidden !important;
  background: radial-gradient(circle at 88% 18%, rgba(255, 177, 92, .30), transparent 26%), linear-gradient(135deg, #041f10 0%, #004c24 54%, #5a2a12 100%) !important;
  color: #fff !important;
}

body :is(.mid-cta, .quote-block) > :not(.quote-panel):not(.form-panel):not(.quote-right):not(.btn),
body :is(.mid-cta, .quote-block) > :not(.quote-panel):not(.form-panel):not(.quote-right):not(.btn) :is(h1, h2, h3, h4, strong, b) {
  color: #fff !important;
}

body :is(.mid-cta, .quote-block) > :not(.quote-panel):not(.form-panel):not(.quote-right):not(.btn) :is(p, li, span) {
  color: rgba(255, 255, 255, .88) !important;
}

body.page-template-page-co-nhan-tao-san-golf .golf-quote > :not(.golf-quote-panel):not(.golf-form-panel) :is(h2, strong, b) {
  color: #fff !important;
}

body.page-template-page-co-nhan-tao-san-golf .golf-quote > :not(.golf-quote-panel):not(.golf-form-panel) :is(p, li, span) {
  color: rgba(255, 255, 255, .9) !important;
}

body :is(.mid-cta, .quote-block) .btn-yellow {
  color: #102016 !important;
}

body :is(.mid-cta, .quote-block) > a.btn.btn-yellow {
  color: #102016 !important;
}

body :is(.quote-panel, .form-panel, .quote-right) {
  background: #fff !important;
  color: var(--kp-text, #243126) !important;
}

body :is(.quote-panel, .form-panel, .quote-right) :is(h1, h2, h3, h4, strong, b) {
  color: var(--kp-dark, #002611) !important;
}

body :is(.quote-panel, .form-panel, .quote-right) :is(p, li, span, label, small) {
  color: var(--kp-text, #243126) !important;
}

body :is(.service-hero, .hero) .mini-stat {
  background: rgba(255, 255, 255, .96) !important;
  color: var(--kp-text, #243126) !important;
}

body :is(.service-hero, .hero) .mini-stat strong {
  color: var(--kp-dark, #002611) !important;
}

body :is(.service-hero, .hero) .mini-stat span {
  color: var(--kp-muted, #526057) !important;
}

body :is(main, .site-main) table th {
  color: #fff !important;
}

body :is(main, .site-main) table th :is(span, strong, b) {
  color: inherit !important;
}

body .callout {
  color: #4c3a00 !important;
}

body .callout :is(p, li, span) {
  color: #4c3a00 !important;
}

body .callout :is(strong, b, h3, h4) {
  color: #2d2200 !important;
}

body .callout :is(.trust-icon, .card-icon, .step-num) {
  background: linear-gradient(135deg, var(--kp-green, #0a6b2f), #72bd20) !important;
  border-color: rgba(10, 107, 47, .22) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(10, 107, 47, .18) !important;
}

body:is(.page-template-page-thi-cong-san-bong-co-nhan-tao, .page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .callout :is(.trust-icon, .card-icon, .step-num) {
  background: linear-gradient(135deg, var(--kp-green, #0a6b2f), #72bd20) !important;
  border-color: rgba(10, 107, 47, .22) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(10, 107, 47, .18) !important;
}

body .service-featured-badge {
  color: #fff !important;
}

body .btn.btn-yellow,
body a.btn.btn-yellow {
  color: #102016 !important;
}

body .quote-stars {
  color: #8a6500 !important;
}

.kp-showcase-card {
  background: linear-gradient(135deg, #064b25, #0a6b2f 54%, #11351d) !important;
}

.kp-showcase-card::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .08) 20%, rgba(0, 30, 12, .78)) !important;
}

@media (max-width: 720px) {
  body.page-template-page-co-nhan-tao-san-bong,
  body.page-template-page-co-nhan-tao-san-bong main {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.page-template-page-co-nhan-tao-san-bong :is(.hero, .section, .final-cta, .related-section) {
    max-width: 100vw;
    overflow-x: hidden;
  }

  body.page-template-page-co-nhan-tao-san-bong .container,
  body.page-template-page-co-nhan-tao-san-bong .hero-copy {
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.page-template-page-co-nhan-tao-san-bong .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  body.page-template-page-co-nhan-tao-san-bong .hero-copy {
    padding-left: 24px !important;
    padding-right: 24px !important;
    text-align: left;
  }

  body.page-template-page-co-nhan-tao-san-bong .hero :is(.breadcrumb, .hero-actions, .hero-stats) {
    justify-content: flex-start;
  }

  body.page-template-page-co-nhan-tao-san-bong .hero :is(h1, .hero-tagline, .hero-lead),
  body.page-template-page-co-nhan-tao-san-bong :is(.section-title, .section-answer, .section-subtitle, .tier-name, .tier-code, .tier-fit-text, .why-card h3, .why-card p, .glossary-card p, .co-cu-content h3, .co-cu-content p, .faq-q, .faq-a-inner, .related-card h3, .related-card p) {
    max-width: 100% !important;
    overflow-wrap: break-word;
    word-break: normal;
  }
}


/* template-service-icons.css */
/* ===== SERVICE ICON CONSISTENCY ===== */
body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) :is(
  .trust-icon,
  .service-icon,
  .card-icon,
  .qt-icon,
  .benefit-icon,
  .process-icon,
  .scenario-icon,
  .maintenance-icon,
  .mini-stat-icon,
  .cost-icon,
  .answer-icon,
  .intent-icon,
  .problem-icon,
  .warranty-icon,
  .case-study-icon,
  .result-icon,
  .step-num,
  .initials
) {
  display: inline-grid !important;
  place-items: center !important;
  flex: 0 0 auto !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  border-radius: 16px !important;
  line-height: 1 !important;
  text-align: center !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-family: "Be Vietnam Pro", "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", system-ui, sans-serif !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) :is(
  .trust-icon,
  .service-icon,
  .card-icon,
  .qt-icon,
  .benefit-icon,
  .process-icon,
  .scenario-icon,
  .maintenance-icon,
  .mini-stat-icon,
  .cost-icon,
  .answer-icon,
  .intent-icon,
  .problem-icon,
  .warranty-icon,
  .case-study-icon,
  .result-icon,
  .step-num,
  .initials
) :is(svg, img) {
  display: block !important;
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  margin: auto !important;
  object-fit: contain !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) :is(.trust-item, .benefit-item, .process-card, .step-card, .problem-card, .answer-card, .intent-card, .cost-card, .scenario-card, .maintenance-card, .warranty-box li, .quote-list li) {
  align-items: flex-start !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) :is(.quote-list li, .golf-checklist li)::before {
  display: inline-grid !important;
  place-items: center !important;
  flex: 0 0 24px !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  border-radius: 999px !important;
  line-height: 1 !important;
  text-align: center !important;
}

@media (max-width: 720px) {
  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) :is(
    .trust-icon,
    .service-icon,
    .card-icon,
    .qt-icon,
    .benefit-icon,
    .process-icon,
    .scenario-icon,
    .maintenance-icon,
    .mini-stat-icon,
    .cost-icon,
    .answer-icon,
    .intent-icon,
    .problem-icon,
    .warranty-icon,
    .case-study-icon,
    .result-icon,
    .step-num,
    .initials
  ) {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 14px !important;
    font-size: 18px !important;
    margin-top: 0 !important;
  }
}

/* Service trust strip alignment */
body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) .trust-grid .trust-item {
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) !important;
  align-items: center !important;
  justify-content: start !important;
  gap: 16px !important;
  text-align: left !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) .trust-grid .trust-item :is(strong, b, span) {
  text-align: left !important;
}

@media (max-width: 720px) {
  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .trust-grid .trust-item {
    grid-template-columns: 44px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding-left: 24px !important;
    padding-right: 18px !important;
  }
}

/* Service icon visible badge backgrounds */
body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) :is(
  .trust-icon,
  .service-icon,
  .card-icon,
  .qt-icon,
  .benefit-icon,
  .process-icon,
  .scenario-icon,
  .maintenance-icon,
  .mini-stat-icon,
  .cost-icon,
  .answer-icon,
  .intent-icon,
  .problem-icon,
  .warranty-icon,
  .case-study-icon,
  .result-icon,
  .step-num,
  .initials
) {
  color: #fff !important;
  background: linear-gradient(135deg, var(--kp-green, #0a6b2f), #72bd20) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: 0 12px 28px rgba(10,107,47,.20) !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) :is(.quote-block, .service-hero) :is(.trust-icon, .card-icon, .step-num) {
  background: rgba(255,255,255,.16) !important;
  border-color: rgba(255,255,255,.24) !important;
  box-shadow: none !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) .callout :is(.trust-icon, .card-icon, .step-num) {
  background: linear-gradient(135deg, var(--kp-green, #0a6b2f), #72bd20) !important;
  border-color: rgba(10,107,47,.24) !important;
  box-shadow: 0 10px 22px rgba(10,107,47,.18) !important;
}

/* Service page reveal failsafe */
body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
).js-ready .reveal {
  opacity: 1 !important;
  transform: none !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) :is(.service-card, .spec-card, .card, .related-card) {
  text-align: left !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) :is(.service-card, .spec-card, .card, .related-card) :is(.trust-icon, .service-icon, .card-icon, .qt-icon, .benefit-icon, .process-icon, .scenario-icon, .maintenance-icon, .mini-stat-icon, .cost-icon, .answer-icon, .intent-icon, .problem-icon, .warranty-icon, .case-study-icon, .result-icon, .step-num) {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body:is(
  .page-template-page-thi-cong-san-bong-co-nhan-tao,
  .page-template-page-thi-cong-san-vuon-co-nhan-tao,
  .page-template-page-thi-cong-san-bong-ro,
  .page-template-page-thi-cong-san-pickleball,
  .page-template-page-thi-cong-duong-chay-dien-kinh,
  .page-template-page-thi-cong-to-hop-san-the-thao,
  .page-template-page-bao-tri-san-co-nhan-tao
) :is(.service-card, .spec-card, .card, .related-card) :is(h3, p, li, a, span) {
  text-align: left !important;
}

/* Basketball service page polish */

body.page-template-page-thi-cong-san-bong-ro .callout {
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) !important;
  align-items: flex-start !important;
  gap: 14px !important;
  text-align: left !important;
}

body.page-template-page-thi-cong-san-bong-ro .callout :is(.trust-icon, .card-icon, .step-num) {
  background: linear-gradient(135deg, #f59e32, #0a6b2f) !important;
  border: 1px solid rgba(255, 255, 255, .78) !important;
  box-shadow: 0 12px 28px rgba(217, 111, 34, .18) !important;
  color: #fff !important;
}

body.page-template-page-thi-cong-san-bong-ro :is(.service-card, .spec-card, .card, .related-card) {
  text-align: left !important;
}

body.page-template-page-thi-cong-san-bong-ro :is(.service-card, .spec-card, .card, .related-card) :is(.trust-icon, .service-icon, .card-icon, .qt-icon, .benefit-icon, .process-icon, .scenario-icon, .maintenance-icon, .mini-stat-icon, .cost-icon, .answer-icon, .intent-icon, .problem-icon, .warranty-icon, .case-study-icon, .result-icon, .step-num) {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.page-template-page-thi-cong-san-bong-ro :is(.service-card, .spec-card, .card, .related-card) :is(h3, p, li, a, span) {
  text-align: left !important;
}

body.page-template-page-thi-cong-san-bong-ro :is(.quote-block, .mid-cta) :is(.trust-icon, .card-icon, .step-num) {
  background: rgba(255, 255, 255, .16) !important;
  border-color: rgba(255, 255, 255, .24) !important;
  box-shadow: none !important;
}

@media (max-width: 720px) {
  body.page-template-page-thi-cong-san-bong-ro .callout {
    grid-template-columns: 44px minmax(0, 1fr) !important;
    padding: 16px !important;
    border-radius: 18px !important;
  }

  body.page-template-page-thi-cong-san-bong-ro :is(.service-card, .spec-card, .card, .related-card) {
    padding: 20px !important;
  }

  body.page-template-page-thi-cong-san-bong-ro .section {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
}


/* template-service-construction.css */
/* Football-style construction service layer. Reference page and maintenance page stay untouched. */
body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) {
  --construction-accent: var(--kp-green);
  --construction-accent-2: #72bd20;
  --construction-ink: #102016;
  --construction-text: #34463a;
  --construction-muted: #607267;
  --construction-soft: #f4f8f4;
  --construction-line: #dce9dd;
  background: var(--construction-soft) !important;
}









body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) main {
  background: linear-gradient(180deg, #fff 0%, var(--construction-soft) 46%, #fff 100%) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .service-hero {
  min-height: 780px !important;
  display: flex !important;
  align-items: center !important;
  background: linear-gradient(135deg, rgba(0, 38, 17, .94), rgba(0, 76, 36, .82)), url('/wp-content/themes/khanhphat-theme/assets/img/shared/cta-bg.jpg') center/cover no-repeat !important;
  color: #fff !important;
  overflow: hidden !important;
  isolation: isolate !important;
}



body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .service-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, .02) 48%, rgba(0, 0, 0, .24)), linear-gradient(180deg, rgba(0, 0, 0, .14), transparent 40%, rgba(0, 0, 0, .18)) !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .service-hero::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -1px !important;
  height: 140px !important;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .10) 38%, rgba(255, 255, 255, .84) 100%) !important;
  pointer-events: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .service-hero-grid {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr) !important;
  gap: 44px !important;
  align-items: center !important;
  padding: 178px 0 78px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .breadcrumb {
  display: inline-flex !important;
  gap: 8px !important;
  align-items: center !important;
  margin-bottom: 18px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255, 255, 255, .70) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .breadcrumb a {
  color: rgba(255, 255, 255, .86) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .eyebrow {
  display: inline-flex !important;
  margin-bottom: 18px !important;
  padding: 7px 12px !important;
  border: 1px solid rgba(255, 201, 64, .38) !important;
  border-radius: 999px !important;
  background: rgba(255, 201, 64, .15) !important;
  color: #ffd96b !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .4px !important;
  text-transform: uppercase !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .service-hero h1 {
  max-width: 820px !important;
  margin: 0 0 18px !important;
  color: #fff !important;
  font-size: clamp(34px, 4.6vw, 54px) !important;
  line-height: 1.08 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 14px 34px rgba(0, 0, 0, .28) !important;
  text-wrap: balance;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .service-hero h1 span {
  color: var(--kp-yellow) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .answer-capsule {
  max-width: 700px !important;
  margin: 0 0 24px !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(255, 255, 255, .20) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .11) !important;
  color: rgba(255, 255, 255, .92) !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px) !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .hero-note {
  display: inline-flex !important;
  max-width: 700px !important;
  margin: 0 0 22px !important;
  padding: 11px 14px !important;
  border: 1px solid rgba(255, 201, 64, .34) !important;
  border-radius: 14px !important;
  background: rgba(255, 201, 64, .11) !important;
  color: rgba(255, 255, 255, .90) !important;
  box-shadow: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .hero-note strong {
  color: var(--kp-yellow) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  margin-top: 0 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .btn {
  min-height: 48px !important;
  padding: 14px 28px !important;
  border-radius: var(--kp-radius) !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .hero-chips {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 24px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .hero-chip {
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .11) !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.hero-panel, .court-panel, .pickle-panel, .track-panel, .complex-panel) {
  position: relative !important;
  z-index: 1 !important;
  padding: 20px !important;
  border: 1px solid rgba(255, 255, 255, .76) !important;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: var(--shadow-lg) !important;
  backdrop-filter: blur(12px) !important;
  transform: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.hero-panel, .court-panel, .pickle-panel, .track-panel, .complex-panel)::before,
body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.hero-panel, .court-panel, .pickle-panel, .track-panel, .complex-panel)::after {
  box-shadow: none !important;
}



body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.court-diagram, .pickle-diagram, .track-diagram, .complex-diagram) {
  min-height: 300px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .20) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .hero-panel-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 14px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .mini-stat {
  padding: 14px !important;
  border: 1px solid var(--construction-line) !important;
  border-radius: 14px !important;
  background: var(--construction-soft) !important;
  box-shadow: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .mini-stat strong {
  color: var(--construction-ink) !important;
  font-size: 22px !important;
  font-weight: 900 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .mini-stat span {
  color: var(--construction-muted) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .trust-strip {
  position: relative !important;
  z-index: 3 !important;
  margin-top: 0 !important;
  background: #fff !important;
  box-shadow: 0 8px 26px rgba(9, 55, 26, .07) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .trust-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  overflow: hidden !important;
  border: 1px solid var(--construction-line) !important;
  border-top: 0 !important;
  border-radius: 0 0 22px 22px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: 0 !important;
  padding: 22px 20px !important;
  border-right: 1px solid var(--construction-line) !important;
  border-bottom: 0 !important;
  background: #fff !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .trust-item:last-child {
  border-right: 0 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.trust-icon, .card-icon, .step-num, .initials, .mini-stat-icon, .cost-icon, .answer-icon, .intent-icon, .problem-icon, .warranty-icon, .case-study-icon, .result-icon) {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, var(--construction-accent), var(--construction-accent-2)) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(9, 55, 26, .16) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .trust-text {
  color: var(--construction-ink) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .trust-text small {
  display: block !important;
  margin-top: 3px !important;
  color: var(--construction-muted) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .section {
  padding: 76px 0 !important;
  background: transparent !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.section.soft, .section.kp-bg-soft-neutral, .faq-section) {
  background: linear-gradient(180deg, var(--construction-soft), #eef6ef) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .section-title {
  max-width: 900px !important;
  margin: 0 auto 12px !important;
  color: var(--construction-ink) !important;
  text-align: center !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  line-height: 1.22 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .section-title::after {
  content: "" !important;
  display: block !important;
  width: 68px !important;
  height: 3px !important;
  margin: 14px auto 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, var(--construction-accent), var(--kp-green)) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .section-subtitle {
  max-width: 790px !important;
  margin: 0 auto 40px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--construction-muted) !important;
  text-align: center !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}



body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.grid-3, .grid-3-clean, .problem-grid, .cost-grid, .portfolio-grid, .testimonial-grid, .process-grid, .related-grid, .cross-sell-grid, .intent-grid, .case-study-grid) {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.grid-4, .grid-4-clean, .answer-grid) {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.card, .service-card, .spec-card, .intent-card, .cost-card, .testimonial-card, .process-card, .related-card, .case-study-card, .warranty-box, .faq-item) {
  position: relative !important;
  height: 100% !important;
  padding: 24px !important;
  border: 1px solid var(--construction-line) !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: var(--shadow-sm) !important;
  overflow: hidden !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease !important;
}



body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.service-card:hover, .spec-card:hover, .card:hover, .related-card:hover, .faq-item:hover) {
  transform: translateY(-3px) !important;
  border-color: rgba(10, 107, 47, .18) !important;
  box-shadow: var(--shadow-md) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.card, .service-card, .spec-card, .intent-card, .cost-card, .testimonial-card, .process-card, .related-card, .case-study-card, .warranty-box) h3 {
  color: var(--construction-ink) !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1.32 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.card, .service-card, .spec-card, .intent-card, .cost-card, .testimonial-card, .process-card, .related-card, .case-study-card, .warranty-box) :is(p, li) {
  color: var(--construction-muted) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .cost-price {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  margin: 10px 0 !important;
  padding: 7px 12px !important;
  border: 1px solid rgba(10, 107, 47, .14) !important;
  border-radius: 14px !important;
  background: var(--construction-soft) !important;
  color: var(--kp-green) !important;
  font-size: 24px !important;
  line-height: 1.25 !important;
}



body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.scenario-thumb, .portfolio-img) {
  min-height: 180px !important;
  border-radius: 20px 20px 0 0 !important;
  overflow: hidden !important;
}



body.page-template-page-thi-cong-san-bong-ro .scenario-thumb,
body.page-template-page-thi-cong-san-bong-ro .portfolio-img {
  background: linear-gradient(90deg, rgba(255, 255, 255, .70) 2px, transparent 2px), linear-gradient(0deg, rgba(255, 255, 255, .70) 2px, transparent 2px), linear-gradient(135deg, #8f4116, #d96f22 52%, #f59e32) !important;
  background-size: 72px 72px, 72px 72px, auto !important;
}

body.page-template-page-thi-cong-san-pickleball .scenario-thumb,
body.page-template-page-thi-cong-san-pickleball .portfolio-img {
  background: linear-gradient(90deg, rgba(255, 255, 255, .70) 2px, transparent 2px), linear-gradient(0deg, rgba(255, 255, 255, .65) 2px, transparent 2px), linear-gradient(135deg, #0d7667, #2bbf9f 58%, #5bd4bf) !important;
  background-size: 82px 82px, 82px 82px, auto !important;
}

body.page-template-page-thi-cong-duong-chay-dien-kinh .scenario-thumb,
body.page-template-page-thi-cong-duong-chay-dien-kinh .portfolio-img {
  background: repeating-linear-gradient(90deg, transparent 0 52px, rgba(255, 255, 255, .72) 52px 56px, transparent 56px 108px), linear-gradient(135deg, #9c2f24, #d7472f 55%, #f37a3b) !important;
}

body.page-template-page-thi-cong-to-hop-san-the-thao .scenario-thumb,
body.page-template-page-thi-cong-to-hop-san-the-thao .portfolio-img {
  background: linear-gradient(90deg, rgba(255, 255, 255, .72) 2px, transparent 2px), linear-gradient(0deg, rgba(255, 255, 255, .62) 2px, transparent 2px), linear-gradient(135deg, #064b25 0 34%, #d96f22 34% 58%, #0d7667 58% 76%, #2c8b3e 76%) !important;
  background-size: 76px 76px, 76px 76px, auto !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .portfolio-body {
  padding: 20px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.table-wrap, .compact-table) {
  overflow-x: auto !important;
  border: 1px solid var(--construction-line) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: var(--shadow-sm) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.table-wrap, .compact-table) th {
  padding: 14px 16px !important;
  background: var(--kp-dark) !important;
  color: #fff !important;
  border-bottom: 0 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  text-transform: uppercase !important;
  letter-spacing: .3px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.table-wrap, .compact-table) td {
  padding: 14px 16px !important;
  border-bottom: 1px solid var(--construction-line) !important;
  color: var(--construction-text) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  vertical-align: top !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .callout {
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: start !important;
  margin-top: 24px !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(255, 201, 64, .34) !important;
  border-radius: 18px !important;
  background: #fff8e3 !important;
  color: #4c3a00 !important;
  box-shadow: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .mid-cta,
body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .quote-block {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px) !important;
  gap: 32px !important;
  align-items: center !important;
  padding: 40px !important;
  border: 0 !important;
  border-radius: 28px !important;
  background: linear-gradient(135deg, var(--kp-dark), var(--kp-green)) !important;
  color: #fff !important;
  box-shadow: var(--shadow-lg) !important;
  overflow: hidden !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.mid-cta, .quote-block)::before,
body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.mid-cta, .quote-block)::after {
  display: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.mid-cta, .quote-block) h2 {
  color: #fff !important;
  font-size: clamp(26px, 3.5vw, 42px) !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.mid-cta, .quote-block) :is(p, li) {
  color: rgba(255, 255, 255, .86) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .quote-panel {
  padding: 24px !important;
  border: 1px solid rgba(255, 255, 255, .70) !important;
  border-radius: 22px !important;
  background: #fff !important;
  color: var(--construction-text) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .15) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .quote-tip {
  border: 1px solid rgba(255, 201, 64, .34) !important;
  border-radius: 14px !important;
  background: #fff8e3 !important;
  color: #4c3a00 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .wpforms-container :is(input, select, textarea) {
  border-radius: 14px !important;
  border-color: var(--construction-line) !important;
  background: #fff !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .wpforms-submit {
  border-radius: 14px !important;
  background: var(--kp-green) !important;
  color: #fff !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .faq-list {
  max-width: 900px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .faq-q {
  color: var(--construction-ink) !important;
  font-size: 15px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .faq-q::after {
  color: var(--construction-accent) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .related-card {
  display: block !important;
  text-decoration: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.link-arrow, .mini-link) {
  color: var(--kp-green) !important;
  font-weight: 900 !important;
}

@media (max-width: 1100px) {
  

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .trust-grid,
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.grid-3, .grid-3-clean, .problem-grid, .cost-grid, .portfolio-grid, .testimonial-grid, .process-grid, .related-grid, .cross-sell-grid, .intent-grid, .case-study-grid, .grid-4, .grid-4-clean, .answer-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .service-hero {
    min-height: auto !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .service-hero-grid {
    gap: 28px !important;
    padding: 122px 0 54px !important;
  }

  

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .eyebrow {
    max-width: 100% !important;
    white-space: normal !important;
    line-height: 1.35 !important;
  }

  

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .answer-capsule {
    padding: 16px !important;
    font-size: 14px !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .hero-actions .btn {
    width: 100% !important;
  }

  

  

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .trust-grid,
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.grid-3, .grid-3-clean, .problem-grid, .cost-grid, .portfolio-grid, .testimonial-grid, .process-grid, .related-grid, .cross-sell-grid, .intent-grid, .case-study-grid, .grid-4, .grid-4-clean, .answer-grid),
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .section .container > div:has(> :is(.card, .service-card, .spec-card, .process-card, .related-card, .case-study-card)) {
    grid-template-columns: 1fr !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .trust-item {
    border-right: 0 !important;
    border-bottom: 1px solid var(--construction-line) !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .trust-item:last-child {
    border-bottom: 0 !important;
  }

  

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .section-title {
    font-size: 26px !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .section-subtitle {
    margin-bottom: 28px !important;
    font-size: 14px !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.card, .service-card, .spec-card, .intent-card, .cost-card, .testimonial-card, .process-card, .related-card, .case-study-card, .warranty-box, .faq-item) {
    padding: 20px !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .portfolio-card {
    padding: 0 !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .mid-cta,
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .quote-block {
    padding: 28px 20px !important;
    border-radius: 22px !important;
    gap: 22px !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.service-card:hover, .spec-card:hover, .card:hover, .related-card:hover, .faq-item:hover) {
    transform: none !important;
  }
}


/* template-service-guards.css */
/* Harmonized service design layer. Excludes the football-field construction page. */
body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) {
  --svc-ink: #102016;
  --svc-text: #2f4035;
  --svc-muted: #607267;
  --svc-green: #075f2c;
  --svc-green-2: #0b7a38;
  --svc-soft: #f4f8f4;
  --svc-soft-2: #ecf4ed;
  --svc-line: #dce9dd;
  --svc-yellow: #ffc940;
  --svc-warm: #995b13;
  --svc-card-radius: 8px;
  --svc-panel-radius: 16px;
  --svc-shadow: 0 14px 34px rgba(9, 55, 26, .08);
  --svc-shadow-strong: 0 22px 64px rgba(9, 55, 26, .16);
  background: var(--svc-soft) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) main {
  background: linear-gradient(180deg, var(--svc-soft) 0%, #fff 18%, var(--svc-soft) 100%) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .service-hero {
  min-height: 740px !important;
  background: linear-gradient(135deg, #052312 0%, #075f2c 54%, #17371f 100%) !important;
  color: #fff !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .service-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(120deg, rgba(255, 201, 64, .12), transparent 34%, rgba(255, 255, 255, .04) 62%, transparent) !important;
  background-size: 64px 64px, 64px 64px, auto !important;
  opacity: .56 !important;
  pointer-events: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .service-hero::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -1px !important;
  height: 120px !important;
  background: linear-gradient(180deg, transparent, var(--svc-soft)) !important;
  pointer-events: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .service-hero-grid {
  position: relative !important;
  z-index: 1 !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .82fr) !important;
  gap: 52px !important;
  align-items: center !important;
  padding: 164px 0 92px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .breadcrumb {
  display: inline-flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  align-items: center !important;
  width: auto !important;
  margin-bottom: 18px !important;
  padding: 7px 11px !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .10) !important;
  color: rgba(255, 255, 255, .78) !important;
  font-size: 12px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .breadcrumb a {
  color: #fff !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .eyebrow {
  margin-bottom: 18px !important;
  padding: 7px 12px !important;
  border: 1px solid rgba(255, 201, 64, .42) !important;
  border-radius: 999px !important;
  background: rgba(255, 201, 64, .14) !important;
  color: #ffe5a3 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .4px !important;
  text-transform: uppercase !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .service-hero h1 {
  max-width: 820px !important;
  margin-bottom: 18px !important;
  color: #fff !important;
  font-size: clamp(36px, 4.2vw, 52px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 14px 34px rgba(0, 0, 0, .22) !important;
  text-wrap: balance;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .service-hero h1 span {
  color: var(--svc-yellow) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .answer-capsule {
  max-width: 760px !important;
  margin: 0 0 20px !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(255, 255, 255, .22) !important;
  border-left: 4px solid var(--svc-yellow) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, .11) !important;
  color: rgba(255, 255, 255, .90) !important;
  box-shadow: none !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .hero-note {
  display: inline-flex !important;
  max-width: 760px !important;
  margin: 0 0 22px !important;
  padding: 12px 14px !important;
  border: 1px solid rgba(255, 201, 64, .32) !important;
  border-radius: 10px !important;
  background: rgba(255, 201, 64, .10) !important;
  color: rgba(255, 255, 255, .88) !important;
  box-shadow: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .hero-note strong {
  color: var(--svc-yellow) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 20px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .btn {
  border-radius: 8px !important;
  min-height: 48px !important;
  padding: 13px 22px !important;
  box-shadow: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .btn-yellow {
  background: var(--svc-yellow) !important;
  color: var(--svc-ink) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .btn-white {
  background: #fff !important;
  color: var(--svc-green) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .hero-chips {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 20px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .hero-chip {
  border: 1px solid rgba(255, 255, 255, .20) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .10) !important;
  color: rgba(255, 255, 255, .88) !important;
  box-shadow: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.hero-panel, .court-panel, .pickle-panel, .track-panel, .complex-panel, .maintenance-panel) {
  position: relative !important;
  z-index: 1 !important;
  padding: 18px !important;
  border: 1px solid rgba(255, 255, 255, .68) !important;
  border-radius: var(--svc-panel-radius) !important;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: var(--svc-shadow-strong) !important;
  backdrop-filter: blur(12px) !important;
  transform: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.hero-panel, .court-panel, .pickle-panel, .track-panel, .complex-panel, .maintenance-panel)::before {
  border-color: rgba(7, 95, 44, .16) !important;
  background: rgba(255, 255, 255, .92) !important;
  color: var(--svc-green) !important;
  box-shadow: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.court-diagram, .pickle-diagram, .track-diagram, .complex-diagram, .maintenance-photo) {
  border-radius: 12px !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .hero-panel-grid {
  gap: 12px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .mini-stat {
  border: 1px solid var(--svc-line) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .mini-stat strong {
  color: var(--svc-green) !important;
  font-size: 22px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .mini-stat span {
  color: var(--svc-muted) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .trust-strip {
  position: relative !important;
  z-index: 4 !important;
  margin-top: -44px !important;
  background: transparent !important;
  box-shadow: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  overflow: hidden !important;
  border: 1px solid var(--svc-line) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: var(--svc-shadow) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .trust-item {
  display: grid !important;
  grid-template-columns: 46px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: center !important;
  min-width: 0 !important;
  padding: 18px 20px !important;
  border-right: 1px solid var(--svc-line) !important;
  border-bottom: 0 !important;
  background: #fff !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .trust-item:last-child {
  border-right: 0 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.trust-icon, .card-icon, .step-num, .initials, .mini-stat-icon, .cost-icon, .answer-icon, .intent-icon, .problem-icon, .warranty-icon, .case-study-icon, .result-icon) {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border: 1px solid rgba(255, 255, 255, .22) !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, var(--svc-green), #46a51f) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(7, 95, 44, .16) !important;
  font-size: 18px !important;
  line-height: 1 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .trust-text {
  color: var(--svc-ink) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .trust-text small {
  color: var(--svc-muted) !important;
  font-weight: 600 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .section {
  padding: 72px 0 !important;
  background: transparent !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.section.soft, .section.kp-bg-soft-neutral) {
  background: linear-gradient(180deg, var(--svc-soft), var(--svc-soft-2)) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .soft::before {
  opacity: .16 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .section-title {
  max-width: 920px !important;
  margin: 0 0 12px !important;
  color: var(--svc-ink) !important;
  text-align: left !important;
  font-size: clamp(26px, 3vw, 38px) !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .section-title::after {
  width: 72px !important;
  height: 3px !important;
  margin: 14px 0 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, var(--svc-green), var(--svc-yellow)) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .section-subtitle {
  max-width: 860px !important;
  margin: 0 0 34px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--svc-muted) !important;
  text-align: left !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.grid-3, .grid-3-clean, .problem-grid, .cost-grid, .portfolio-grid, .testimonial-grid, .process-grid, .related-grid, .cross-sell-grid, .intent-grid, .case-study-grid) {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.grid-4, .grid-4-clean, .answer-grid) {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.card, .service-card, .spec-card, .intent-card, .cost-card, .portfolio-card, .testimonial-card, .process-card, .related-card, .case-study-card, .warranty-box) {
  position: relative !important;
  min-width: 0 !important;
  height: 100% !important;
  padding: 22px !important;
  border: 1px solid var(--svc-line) !important;
  border-radius: var(--svc-card-radius) !important;
  background: #fff !important;
  box-shadow: var(--svc-shadow) !important;
  color: var(--svc-text) !important;
  overflow: hidden !important;
  transform: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.service-card, .spec-card, .card, .related-card)::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  width: 100% !important;
  height: 3px !important;
  border-radius: 0 !important;
  background: linear-gradient(90deg, var(--svc-green), var(--svc-yellow)) !important;
  opacity: .72 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.service-card:hover, .spec-card:hover, .card:hover, .related-card:hover, .faq-item:hover) {
  transform: translateY(-2px) !important;
  border-color: rgba(7, 95, 44, .28) !important;
  box-shadow: 0 18px 42px rgba(9, 55, 26, .11) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.card, .service-card, .spec-card, .intent-card, .cost-card, .portfolio-card, .testimonial-card, .process-card, .related-card, .case-study-card, .warranty-box) h3 {
  color: var(--svc-ink) !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.card, .service-card, .spec-card, .intent-card, .cost-card, .portfolio-card, .testimonial-card, .process-card, .related-card, .case-study-card, .warranty-box) :is(p, li) {
  color: var(--svc-muted) !important;
  font-size: 14px !important;
  line-height: 1.72 !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .portfolio-card {
  padding: 0 !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .portfolio-img {
  background: #eaf5ed !important;
  height: 190px !important;
  overflow: hidden !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .portfolio-img img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .testimonial-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  border-left: 4px solid var(--svc-green) !important;
  padding: 26px 24px !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .testimonial-stars {
  color: var(--svc-yellow) !important;
  font-size: 16px !important;
  line-height: 1 !important;
  letter-spacing: 2px !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .testimonial-card p {
  margin: 0 !important;
  color: var(--svc-text) !important;
  font-style: italic !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .testimonial-author {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: auto !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(7, 95, 44, .10) !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .testimonial-avatar {
  width: 52px !important;
  height: 52px !important;
  flex: 0 0 52px !important;
  border: 3px solid #f2f8f2 !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  box-shadow: 0 8px 18px rgba(9, 55, 26, .12) !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .testimonial-name {
  color: var(--svc-ink) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .testimonial-role {
  margin-top: 2px !important;
  color: var(--svc-muted) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .trust-grid > .trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .trust-grid > .trust-item > .trust-icon {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 92px !important;
  padding-inline: 10px !important;
  font-size: 12px !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao #bao-gia {
  scroll-margin-top: 128px !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .quote-tip {
  margin-top: 14px !important;
  padding: 14px 16px !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao #chi-phi .container > div + .section-subtitle {
  margin-top: 32px !important;
  margin-bottom: 0 !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao #tu-lap .table-wrap + .card {
  margin-top: 32px !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .construction-steps {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: start !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .construction-steps > .card {
  grid-column: span 2 !important;
  height: auto !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .construction-steps > .card:nth-child(n+4) {
  grid-column: span 3 !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .construction-figure {
  margin: 24px 0 0 !important;
  overflow: hidden !important;
  border: 1px solid var(--svc-line) !important;
  border-radius: 8px !important;
  background: #fff !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .construction-figure + .construction-figure {
  margin-top: 18px !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .construction-figure-pair {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin-top: 24px !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .construction-figure-pair .construction-figure {
  margin: 0 !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .construction-figure-pair .construction-figure + .construction-figure {
  margin-top: 0 !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .construction-figure img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .construction-figure figcaption {
  margin: 0 !important;
  padding: 11px 13px !important;
  border-top: 1px solid var(--svc-line) !important;
  color: var(--svc-muted) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .cost-price {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  margin: 10px 0 !important;
  padding: 7px 12px !important;
  border: 1px solid rgba(7, 95, 44, .16) !important;
  border-radius: 8px !important;
  background: var(--svc-soft) !important;
  color: var(--svc-green) !important;
  font-size: 24px !important;
  line-height: 1.2 !important;
  box-shadow: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.scenario-thumb, .portfolio-img) {
  border-radius: 8px 8px 0 0 !important;
  min-height: 160px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .portfolio-body {
  padding: 18px 20px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.table-wrap, .compact-table) {
  overflow-x: auto !important;
  border: 1px solid var(--svc-line) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: var(--svc-shadow) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.table-wrap, .compact-table) table {
  min-width: 760px !important;
  border-collapse: collapse !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.table-wrap, .compact-table) th {
  padding: 14px 16px !important;
  background: #07371d !important;
  color: #fff !important;
  border-bottom: 3px solid var(--svc-yellow) !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  text-transform: uppercase !important;
  letter-spacing: .3px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.table-wrap, .compact-table) td {
  padding: 14px 16px !important;
  border-bottom: 1px solid var(--svc-line) !important;
  color: var(--svc-text) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  vertical-align: top !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.table-wrap, .compact-table) tr:nth-child(even) td {
  background: #f8fbf8 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .callout {
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: start !important;
  margin-top: 24px !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(153, 91, 19, .18) !important;
  border-radius: 8px !important;
  background: #fff8e3 !important;
  color: #4c3a00 !important;
  box-shadow: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .callout strong {
  color: #2d2200 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .mid-cta,
body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .quote-block {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px) !important;
  gap: 30px !important;
  align-items: center !important;
  padding: 34px !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #052312 0%, var(--svc-green) 58%, #17371f 100%) !important;
  box-shadow: var(--svc-shadow-strong) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .mid-cta::before,
body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .quote-block::before {
  opacity: .22 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.mid-cta, .quote-block) h2 {
  color: #fff !important;
  font-size: clamp(24px, 3vw, 34px) !important;
  line-height: 1.18 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.mid-cta, .quote-block) :is(p, li) {
  color: rgba(255, 255, 255, .86) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .quote-panel {
  border: 1px solid rgba(255, 255, 255, .72) !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .15) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .quote-tip {
  border: 1px solid rgba(153, 91, 19, .20) !important;
  border-radius: 8px !important;
  background: #fff8e3 !important;
  color: #4c3a00 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .wpforms-container :is(input, select, textarea) {
  border-radius: 8px !important;
  border-color: var(--svc-line) !important;
  background: #fff !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .wpforms-submit {
  border-radius: 8px !important;
  background: var(--svc-green) !important;
  color: #fff !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .faq-list {
  max-width: 920px !important;
  margin-inline: auto !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .faq-item {
  border: 1px solid var(--svc-line) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .faq-q {
  color: var(--svc-ink) !important;
  font-size: 15px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .faq-q::after {
  color: var(--svc-green) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .faq-a-inner {
  color: var(--svc-muted) !important;
}

@media (max-width: 1100px) {
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .service-hero-grid,
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .mid-cta,
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .quote-block {
    grid-template-columns: 1fr !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.grid-3, .grid-3-clean, .problem-grid, .cost-grid, .portfolio-grid, .testimonial-grid, .process-grid, .related-grid, .cross-sell-grid, .intent-grid, .case-study-grid, .grid-4, .grid-4-clean, .answer-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  body.page-template-page-thi-cong-san-vuon-co-nhan-tao #bao-gia .quote-panel {
    padding-bottom: 96px !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .container {
    padding-inline: 22px !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .service-hero {
    min-height: auto !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .service-hero-grid {
    gap: 26px !important;
    padding: 108px 0 58px !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .service-hero h1 {
    font-size: 32px !important;
    line-height: 1.14 !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .answer-capsule {
    padding: 15px 16px !important;
    font-size: 14px !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .hero-actions .btn {
    width: 100% !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.hero-panel, .court-panel, .pickle-panel, .track-panel, .complex-panel, .maintenance-panel) {
    display: none !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .trust-strip {
    margin-top: -28px !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .trust-grid,
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.grid-3, .grid-3-clean, .problem-grid, .cost-grid, .portfolio-grid, .testimonial-grid, .process-grid, .related-grid, .cross-sell-grid, .intent-grid, .case-study-grid, .grid-4, .grid-4-clean, .answer-grid) {
    grid-template-columns: 1fr !important;
  }

  body.page-template-page-thi-cong-san-vuon-co-nhan-tao .construction-steps,
  body.page-template-page-thi-cong-san-vuon-co-nhan-tao .construction-figure-pair {
    grid-template-columns: 1fr !important;
  }

  body.page-template-page-thi-cong-san-vuon-co-nhan-tao .construction-steps > .card {
    grid-column: auto !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .trust-item {
    border-right: 0 !important;
    border-bottom: 1px solid var(--svc-line) !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .trust-item:last-child {
    border-bottom: 0 !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .section {
    padding: 54px 0 !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .section-title {
    font-size: 26px !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .section-subtitle {
    margin-bottom: 26px !important;
    font-size: 14px !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.card, .service-card, .spec-card, .intent-card, .cost-card, .portfolio-card, .testimonial-card, .process-card, .related-card, .case-study-card, .warranty-box) {
    padding: 20px !important;
  }

  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .mid-cta,
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .quote-block {
    padding: 24px 18px !important;
    gap: 22px !important;
  }
}

@media (min-width: 721px) {
  body:is(.page-template-page-thi-cong-san-bong-co-nhan-tao, .page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .service-hero .breadcrumb {
    display: flex !important;
    width: fit-content !important;
    margin: 0 0 28px !important;
  }

  body:is(.page-template-page-thi-cong-san-bong-co-nhan-tao, .page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) .service-hero .eyebrow {
    display: flex !important;
    width: fit-content !important;
    margin: 0 0 20px !important;
  }
}

/* Keep service-page tables typographically consistent on mobile. */
body:is(.page-template-page-thi-cong-san-bong-co-nhan-tao, .page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.table-wrap table, .compact-table table, table.compact-table, .value-stack-table table, table.value-stack-table, .pickle-price-table table, table.pickle-price-table, .track-spec-table table, table.track-spec-table, .complex-table table, table.complex-table) {
  font-family: inherit !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

body:is(.page-template-page-thi-cong-san-bong-co-nhan-tao, .page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.table-wrap, .compact-table, .value-stack-table, .pickle-price-table, .track-spec-table, .complex-table) :is(th, td) {
  font-family: inherit !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  vertical-align: top !important;
}

body:is(.page-template-page-thi-cong-san-bong-co-nhan-tao, .page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.table-wrap, .compact-table, .value-stack-table, .pickle-price-table, .track-spec-table, .complex-table) :is(th, td) :is(a, strong, b) {
  font-size: inherit !important;
  line-height: inherit !important;
}

body:is(.page-template-page-thi-cong-san-bong-co-nhan-tao, .page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.table-wrap, .compact-table, .value-stack-table, .pickle-price-table, .track-spec-table, .complex-table) th {
  font-weight: 800 !important;
}

body:is(.page-template-page-thi-cong-san-bong-co-nhan-tao, .page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.table-wrap, .compact-table, .value-stack-table, .pickle-price-table, .track-spec-table, .complex-table) td :is(strong, b) {
  color: inherit !important;
  font-weight: 700 !important;
}

body:is(.page-template-page-thi-cong-san-bong-co-nhan-tao, .page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.table-wrap, .compact-table, .value-stack-table, .pickle-price-table, .track-spec-table, .complex-table) td a {
  font-weight: 700 !important;
}

@media (max-width: 720px) {
  body:is(.page-template-page-thi-cong-san-bong-co-nhan-tao, .page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.table-wrap table, .compact-table table, table.compact-table, .value-stack-table table, table.value-stack-table, .pickle-price-table table, table.pickle-price-table, .track-spec-table table, table.track-spec-table, .complex-table table, table.complex-table) {
    min-width: 760px !important;
  }

  body:is(.page-template-page-thi-cong-san-bong-co-nhan-tao, .page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao, .page-template-page-bao-tri-san-co-nhan-tao) :is(.table-wrap, .compact-table, .value-stack-table, .pickle-price-table, .track-spec-table, .complex-table) :is(th, td) {
    padding: 12px 14px !important;
  }
}


/* template-service-construction-final.css */
/* Final construction-page polish. Keep football field and maintenance pages outside this scope. */
body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) {
  --construction-accent: var(--kp-green);
  --construction-accent-2: #72bd20;
  --construction-ink: #102016;
  --construction-muted: #607267;
  --construction-soft: #f4f8f4;
  --construction-line: #dce9dd;
}

body.page-template-page-thi-cong-san-bong-ro { --construction-accent: #d96f22; --construction-accent-2: #f59e32; }
body.page-template-page-thi-cong-san-pickleball { --construction-accent: #108a72; --construction-accent-2: #35c4a1; }
body.page-template-page-thi-cong-duong-chay-dien-kinh { --construction-accent: #d7472f; --construction-accent-2: #f37a3b; }
body.page-template-page-thi-cong-to-hop-san-the-thao { --construction-accent: #0a6b2f; --construction-accent-2: #ffc940; }

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .service-hero {
  min-height: 780px !important;
  display: flex !important;
  align-items: center !important;
  background: linear-gradient(135deg, rgba(0, 38, 17, .94), rgba(0, 76, 36, .82)), url('/wp-content/themes/khanhphat-theme/assets/img/shared/cta-bg.jpg') center/cover no-repeat !important;
  color: #fff !important;
  overflow: hidden !important;
}

body.page-template-page-thi-cong-san-vuon-co-nhan-tao .service-hero {
  background: linear-gradient(135deg, rgba(0, 38, 17, .92), rgba(0, 76, 36, .76)), url('/wp-content/themes/khanhphat-theme/assets/img/shared/co-san-vuon.jpg') center/cover no-repeat !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .service-hero::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, .02) 48%, rgba(0, 0, 0, .24)), linear-gradient(180deg, rgba(0, 0, 0, .14), transparent 40%, rgba(0, 0, 0, .18)) !important;
  background-size: auto !important;
  opacity: 1 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .service-hero::after {
  height: 140px !important;
  inset: auto 0 -1px 0 !important;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .10) 38%, rgba(255, 255, 255, .84) 100%) !important;
  filter: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .service-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr) !important;
  gap: 44px !important;
  padding: 178px 0 78px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .breadcrumb {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: rgba(255, 255, 255, .70) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .service-hero h1 {
  max-width: 820px !important;
  color: #fff !important;
  font-size: clamp(34px, 4.6vw, 54px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  text-shadow: 0 14px 34px rgba(0, 0, 0, .28) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.hero-panel, .court-panel, .pickle-panel, .track-panel, .complex-panel) {
  padding: 20px !important;
  border: 1px solid rgba(255, 255, 255, .76) !important;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: var(--shadow-lg) !important;
  backdrop-filter: blur(12px) !important;
  transform: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .hero-panel img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover !important;
  border-radius: 20px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.court-diagram, .pickle-diagram, .track-diagram, .complex-diagram) {
  min-height: 300px !important;
  border-radius: 20px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .mini-stat {
  border-radius: 14px !important;
  background: var(--construction-soft) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .trust-strip {
  margin-top: 0 !important;
  background: #fff !important;
  box-shadow: 0 8px 26px rgba(9, 55, 26, .07) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  border-top: 0 !important;
  border-radius: 0 0 22px 22px !important;
  box-shadow: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .trust-item {
  display: flex !important;
  align-items: center !important;
  padding: 22px 20px !important;
  background: #fff !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.trust-icon, .card-icon, .step-num, .initials, .cost-icon, .answer-icon, .intent-icon, .problem-icon, .warranty-icon, .case-study-icon, .result-icon) {
  border-radius: 14px !important;
  background: linear-gradient(135deg, var(--construction-accent), var(--construction-accent-2)) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(9, 55, 26, .16) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .section {
  padding: 76px 0 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .section-title {
  max-width: 900px !important;
  margin: 0 auto 12px !important;
  color: var(--construction-ink) !important;
  text-align: center !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  line-height: 1.22 !important;
  letter-spacing: 0 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .section-title::after {
  width: 68px !important;
  margin: 14px auto 0 !important;
  background: linear-gradient(90deg, var(--construction-accent), var(--kp-green)) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .section-subtitle {
  max-width: 790px !important;
  margin: 0 auto 40px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--construction-muted) !important;
  text-align: center !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .section .container > div:has(> :is(.card, .service-card, .spec-card, .process-card, .related-card, .case-study-card)) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 22px !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.card, .service-card, .spec-card, .intent-card, .cost-card, .testimonial-card, .process-card, .related-card, .case-study-card, .warranty-box, .faq-item) {
  padding: 24px !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: var(--shadow-sm) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.service-card, .spec-card, .card, .process-card, .related-card, .case-study-card)::before,
body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.service-card, .spec-card, .card, .process-card, .related-card, .case-study-card)::after {
  display: none !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .portfolio-card { padding: 0 !important; }
body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.scenario-thumb, .portfolio-img) { min-height: 180px !important; border-radius: 20px 20px 0 0 !important; }
body.page-template-page-thi-cong-san-vuon-co-nhan-tao .portfolio-img { background: linear-gradient(135deg, rgba(10, 107, 47, .18), rgba(255, 201, 64, .14)), url('/wp-content/themes/khanhphat-theme/assets/img/shared/co-san-vuon.jpg') center/cover no-repeat !important; }
body.page-template-page-thi-cong-san-bong-ro :is(.scenario-thumb, .portfolio-img) { background: linear-gradient(90deg, rgba(255, 255, 255, .70) 2px, transparent 2px), linear-gradient(0deg, rgba(255, 255, 255, .70) 2px, transparent 2px), linear-gradient(135deg, #8f4116, #d96f22 52%, #f59e32) !important; background-size: 72px 72px, 72px 72px, auto !important; }
body.page-template-page-thi-cong-san-pickleball :is(.scenario-thumb, .portfolio-img) { background: linear-gradient(90deg, rgba(255, 255, 255, .70) 2px, transparent 2px), linear-gradient(0deg, rgba(255, 255, 255, .65) 2px, transparent 2px), linear-gradient(135deg, #0d7667, #2bbf9f 58%, #5bd4bf) !important; background-size: 82px 82px, 82px 82px, auto !important; }
body.page-template-page-thi-cong-duong-chay-dien-kinh :is(.scenario-thumb, .portfolio-img) { background: repeating-linear-gradient(90deg, transparent 0 52px, rgba(255, 255, 255, .72) 52px 56px, transparent 56px 108px), linear-gradient(135deg, #9c2f24, #d7472f 55%, #f37a3b) !important; }
body.page-template-page-thi-cong-to-hop-san-the-thao :is(.scenario-thumb, .portfolio-img) { background: linear-gradient(90deg, rgba(255, 255, 255, .72) 2px, transparent 2px), linear-gradient(0deg, rgba(255, 255, 255, .62) 2px, transparent 2px), linear-gradient(135deg, #064b25 0 34%, #d96f22 34% 58%, #0d7667 58% 76%, #2c8b3e 76%) !important; background-size: 76px 76px, 76px 76px, auto !important; }

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .mid-cta,
body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .quote-block {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px) !important;
  gap: 32px !important;
  padding: 40px !important;
  border-radius: 28px !important;
  background: linear-gradient(135deg, var(--kp-dark), var(--kp-green)) !important;
  color: #fff !important;
  box-shadow: var(--shadow-lg) !important;
}

body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .quote-panel { border-radius: 22px !important; background: #fff !important; }
body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .quote-tip { border-radius: 14px !important; }
body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .callout :is(.trust-icon, .card-icon, .step-num) {
  background: linear-gradient(135deg, var(--kp-green, #0a6b2f), #72bd20) !important;
  color: #fff !important;
  border-color: rgba(10, 107, 47, .24) !important;
  box-shadow: 0 10px 22px rgba(10, 107, 47, .18) !important;
}

@media (max-width: 1100px) {
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .service-hero-grid,
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .mid-cta,
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .quote-block { grid-template-columns: 1fr !important; }
}

@media (max-width: 720px) {
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .service-hero-grid { padding: 122px 0 54px !important; }
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .breadcrumb { display: none !important; }
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .service-hero h1 { font-size: 32px !important; line-height: 1.14 !important; }
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) :is(.hero-panel, .court-panel, .pickle-panel, .track-panel, .complex-panel) { display: none !important; }
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .trust-strip { margin-top: 0 !important; }
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .trust-grid,
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .section .container > div:has(> :is(.card, .service-card, .spec-card, .process-card, .related-card, .case-study-card)) { grid-template-columns: 1fr !important; }
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .section { padding: 56px 0 !important; }
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .mid-cta,
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .quote-block { padding: 28px 20px !important; border-radius: 22px !important; }
  body:is(.page-template-page-thi-cong-san-vuon-co-nhan-tao, .page-template-page-thi-cong-san-bong-ro, .page-template-page-thi-cong-san-pickleball, .page-template-page-thi-cong-duong-chay-dien-kinh, .page-template-page-thi-cong-to-hop-san-the-thao) .back-to-top {
    display: grid !important;
    right: 8px !important;
    bottom: calc(64px + env(safe-area-inset-bottom)) !important;
    z-index: 2700 !important;
  }
}


/* template-page-guards.css */
/* Unified FAQ/Q&A card system for page templates. */
body.page-template :is(.faq-list, .faq-grid) {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: 900px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 0 !important;
}

/* Pickleball page hero guard: keep the page HTML image editable while fixing cascade overrides. */
body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .service-hero.pickle-product-hero.pickle-hero-v2 {
  min-height: 680px !important;
  align-items: center !important;
  background: #06241d !important;
  overflow: hidden !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .service-hero.pickle-product-hero.pickle-hero-v2::before {
  z-index: 1 !important;
  background: linear-gradient(90deg, rgba(0, 18, 14, .90) 0%, rgba(3, 39, 31, .82) 46%, rgba(3, 54, 84, .44) 74%, rgba(3, 54, 84, .18) 100%) !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 52% !important;
  filter: saturate(.94) contrast(.98) !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-product-hero-copy {
  position: relative !important;
  z-index: 2 !important;
  width: min(1160px, calc(100% - 56px)) !important;
  margin: 0 auto !important;
  padding: 108px 0 54px !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-hero-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 720px) minmax(260px, 330px) !important;
  align-items: center !important;
  gap: 46px !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-hero-breadcrumb {
  margin-bottom: 16px !important;
  padding: 8px 12px !important;
  background: rgba(0, 0, 0, .22) !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-hero-eyebrow {
  margin-bottom: 10px !important;
  color: #ffd24a !important;
  font-size: 12px !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .service-hero.pickle-product-hero.pickle-hero-v2 h1 {
  max-width: 720px !important;
  margin-bottom: 14px !important;
  font-size: clamp(36px, 3.45vw, 48px) !important;
  line-height: 1.05 !important;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .34) !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .service-hero.pickle-product-hero.pickle-hero-v2 h1 span + span {
  margin-top: 7px !important;
  color: #ffd24a !important;
  font-size: .70em !important;
  line-height: 1.14 !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-hero-lead {
  max-width: 680px !important;
  margin-bottom: 10px !important;
  font-size: 15px !important;
  line-height: 1.58 !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-hero-note {
  max-width: 680px !important;
  margin-bottom: 18px !important;
  font-size: 15px !important;
  line-height: 1.52 !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-trust-badges {
  gap: 7px !important;
  margin-bottom: 20px !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-trust-badges span {
  min-height: 28px !important;
  padding: 6px 10px !important;
  font-size: 11px !important;
  background: rgba(255, 255, 255, .11) !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .hero-actions {
  gap: 10px !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .hero-actions .btn {
  min-height: 48px !important;
  padding: 12px 18px !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-hero-scope {
  padding: 20px !important;
  border-radius: 18px !important;
  background: rgba(0, 0, 0, .23) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18) !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-hero-scope-item {
  grid-template-columns: 34px minmax(0, 1fr) !important;
  gap: 1px 10px !important;
  padding: 12px 0 !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-hero-scope-item strong {
  width: 30px !important;
  height: 30px !important;
  border-radius: 10px !important;
  font-size: 12px !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-hero-scope-item span {
  font-size: 13px !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-hero-scope-item small {
  font-size: 11px !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball #cau-hinh .card-icon {
  width: auto !important;
  min-width: 54px !important;
  height: 32px !important;
  min-height: 32px !important;
  padding: 0 11px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

@media (max-width: 1100px) {
  body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .service-hero.pickle-product-hero.pickle-hero-v2 {
    min-height: auto !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-hero-layout {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-hero-scope {
    display: none !important;
  }
}

@media (max-width: 720px) {
  body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-product-hero-copy {
    width: min(100% - 36px, 1160px) !important;
    padding: 84px 0 70px !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .service-hero.pickle-product-hero.pickle-hero-v2::before {
    background: linear-gradient(180deg, rgba(0, 18, 14, .86) 0%, rgba(3, 39, 31, .74) 58%, rgba(3, 54, 84, .45) 100%) !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-hero-bg {
    object-position: center center !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .service-hero.pickle-product-hero.pickle-hero-v2 h1 {
    font-size: 28px !important;
    line-height: 1.08 !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .service-hero.pickle-product-hero.pickle-hero-v2 h1 span + span {
    font-size: .76em !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-hero-lead,
  body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-hero-note {
    font-size: 14px !important;
    line-height: 1.48 !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    max-width: none !important;
    width: 100% !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .hero-actions .btn {
    width: 100% !important;
    min-height: 44px !important;
  }
}

@media (max-width: 380px) {
  body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .pickle-hero-v2 .pickle-product-hero-copy {
    padding-top: 78px !important;
    padding-bottom: 66px !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-pickleball .service-hero.pickle-product-hero.pickle-hero-v2 h1 {
    font-size: 26px !important;
  }
}

body.page-template :is(.faq-list, .faq-grid) .faq-item,
body.page-template :is(.faq-list, .faq-grid) details.faq-item {
  padding: 0 !important;
  border: 1px solid rgba(10, 107, 47, .14) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 10px 28px rgba(9, 55, 26, .055) !important;
  overflow: hidden !important;
  transform: none !important;
}

body.page-template :is(.faq-list, .faq-grid) .faq-item:hover {
  border-color: rgba(10, 107, 47, .22) !important;
  box-shadow: 0 14px 34px rgba(9, 55, 26, .075) !important;
  transform: none !important;
}

body.page-template :is(.faq-list, .faq-grid) :is(.faq-q, summary) {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  position: relative !important;
  width: 100% !important;
  min-height: 58px !important;
  padding: 18px 56px 18px 22px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #102016 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.45 !important;
  text-align: left !important;
  cursor: pointer !important;
}

body.page-template :is(.faq-list, .faq-grid) summary::-webkit-details-marker {
  display: none !important;
}

body.page-template :is(.faq-list, .faq-grid) summary::marker {
  content: '' !important;
}

body.page-template :is(.faq-list, .faq-grid) :is(.faq-q, summary)::after {
  content: '+' !important;
  position: absolute !important;
  right: 20px !important;
  top: 50% !important;
  display: grid !important;
  place-items: center !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 999px !important;
  background: rgba(10, 107, 47, .08) !important;
  color: #0a6b2f !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  transform: translateY(-50%) !important;
}

body.page-template :is(.faq-list, .faq-grid) :is(.faq-item.open .faq-q, .faq-q[aria-expanded="true"], details.faq-item[open] summary)::after {
  content: '\2212' !important;
}

body.page-template :is(.faq-list, .faq-grid) .faq-a {
  border-top: 0 !important;
}

body.page-template :is(.faq-list, .faq-grid) :is(.faq-a-inner, .faq-answer) {
  margin: 0 !important;
  padding: 0 22px 20px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #5d6b61 !important;
  font-size: 14px !important;
  line-height: 1.75 !important;
}

body.page-template :is(.faq-list, .faq-grid) :is(.faq-a-inner, .faq-answer) > :first-child {
  margin-top: 0 !important;
}

body.page-template :is(.faq-list, .faq-grid) :is(.faq-a-inner, .faq-answer) > :last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 720px) {
  body.page-template :is(.faq-list, .faq-grid) {
    gap: 10px !important;
    max-width: none !important;
  }

  body.page-template :is(.faq-list, .faq-grid) .faq-item,
  body.page-template :is(.faq-list, .faq-grid) details.faq-item {
    border-radius: 14px !important;
    box-shadow: 0 8px 22px rgba(9, 55, 26, .05) !important;
  }

  body.page-template :is(.faq-list, .faq-grid) :is(.faq-q, summary) {
    min-height: 56px !important;
    padding: 17px 52px 17px 18px !important;
    font-size: 14.5px !important;
  }

  body.page-template :is(.faq-list, .faq-grid) :is(.faq-a-inner, .faq-answer) {
    padding: 0 18px 18px !important;
    font-size: 13.8px !important;
  }
}

body.category-du-an .kp-project-hero .breadcrumb {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 0 18px !important;
  padding: 8px 12px !important;
  border: 1px solid rgba(255, 255, 255, .22) !important;
  border-radius: 999px !important;
  background: rgba(0, 0, 0, .22) !important;
  color: rgba(255, 255, 255, .78) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  white-space: normal !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px) !important;
}

body.category-du-an .kp-project-hero .breadcrumb :is(a, span) {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  color: inherit !important;
  line-height: 1.35 !important;
}

body.category-du-an .kp-project-hero .breadcrumb a {
  color: rgba(255, 255, 255, .88) !important;
}

body.category-du-an .kp-project-hero .breadcrumb a:hover {
  color: #fff !important;
}

body.category-du-an .kp-project-hero .breadcrumb > span:first-of-type {
  color: rgba(255, 255, 255, .55) !important;
}

body.category-du-an .kp-project-hero .breadcrumb > span:last-child {
  color: rgba(255, 255, 255, .86) !important;
}

body:is(
  .page-template-page-co-nhan-tao-san-bong,
  .page-template-page-co-nhan-tao-san-vuon,
  .page-template-page-co-nhan-tao-san-golf,
  .page-template-page-co-nhan-tao-cu
) {
  --kp-product-hero-breadcrumb-top-desktop: 178px;
  --kp-product-hero-copy-top-desktop: 224px;
  --kp-product-hero-title-size: clamp(34px, 4.4vw, 52px);
  --kp-product-hero-title-line: 1.15;
  --kp-product-hero-kicker-size: clamp(15px, 1.35vw, 18px);
  --kp-product-hero-kicker-line: 1.55;
  --kp-product-hero-lead-size: clamp(16px, 1.28vw, 17px);
  --kp-product-hero-lead-line: 1.7;
  --kp-product-hero-title-color: #fff;
  --kp-product-hero-kicker-color: rgba(255, 255, 255, .86);
  --kp-product-hero-lead-color: rgba(255, 255, 255, .84);
}

@media (min-width: 721px) {
  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-san-vuon,
    .page-template-page-co-nhan-tao-san-golf,
    .page-template-page-co-nhan-tao-cu
  ) :is(.hero, .garden-hero, .golf-hero) {
    align-items: flex-start !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-cu
  ) .hero-copy {
    padding-top: var(--kp-product-hero-copy-top-desktop) !important;
    transform: none !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-cu
  ) .hero-copy > :not(.breadcrumb) {
    transform: none !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-cu
  ) .hero :is(.breadcrumb, .hero-breadcrumb) {
    position: absolute !important;
    z-index: 3 !important;
    top: var(--kp-product-hero-breadcrumb-top-desktop) !important;
    left: max(24px, calc((100vw - var(--kp-max, 1280px)) / 2 + 24px)) !important;
    right: auto !important;
    width: fit-content !important;
    max-width: min(var(--kp-product-hero-copy-max, 760px), calc(100vw - 48px)) !important;
    margin: 0 !important;
    transform: none !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-vuon,
    .page-template-page-co-nhan-tao-san-golf
  ) :is(.garden-hero, .golf-hero) {
    padding-top: var(--kp-product-hero-breadcrumb-top-desktop) !important;
    align-items: flex-start !important;
  }
}

@media (min-width: 1181px) {
  body.page-template-page-co-nhan-tao-san-golf .golf-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  body.page-template-page-co-nhan-tao-san-golf .golf-card-body {
    padding: 18px !important;
  }

  body.page-template-page-co-nhan-tao-san-golf .golf-product-card h3 {
    font-size: 15px !important;
  }
}

body:is(
  .page-template-page-co-nhan-tao-san-bong,
  .page-template-page-co-nhan-tao-san-vuon,
  .page-template-page-co-nhan-tao-san-golf,
  .page-template-page-co-nhan-tao-cu
) :is(.hero .breadcrumb, .garden-breadcrumb, .golf-breadcrumb) {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(255, 255, 255, .6) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: normal !important;
  text-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body:is(
  .page-template-page-co-nhan-tao-san-bong,
  .page-template-page-co-nhan-tao-san-vuon,
  .page-template-page-co-nhan-tao-san-golf,
  .page-template-page-co-nhan-tao-cu
) :is(.hero .breadcrumb, .garden-breadcrumb, .golf-breadcrumb) :is(a, span) {
  color: rgba(255, 255, 255, .6) !important;
  text-decoration: none !important;
}

body:is(
  .page-template-page-co-nhan-tao-san-bong,
  .page-template-page-co-nhan-tao-san-vuon,
  .page-template-page-co-nhan-tao-san-golf,
  .page-template-page-co-nhan-tao-cu
) :is(.hero .breadcrumb, .garden-breadcrumb, .golf-breadcrumb) .sep {
  opacity: .4 !important;
}

body:is(
  .page-template-page-co-nhan-tao-san-bong,
  .page-template-page-co-nhan-tao-san-vuon,
  .page-template-page-co-nhan-tao-san-golf,
  .page-template-page-co-nhan-tao-cu
) :is(.hero h1, .garden-hero h1, .golf-hero h1) {
  max-width: var(--kp-product-hero-copy-max, 760px) !important;
  margin-bottom: 14px !important;
  color: var(--kp-product-hero-title-color) !important;
  font-size: var(--kp-product-hero-title-size) !important;
  line-height: var(--kp-product-hero-title-line) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  text-wrap: balance;
}

body:is(
  .page-template-page-co-nhan-tao-san-bong,
  .page-template-page-co-nhan-tao-san-vuon,
  .page-template-page-co-nhan-tao-san-golf,
  .page-template-page-co-nhan-tao-cu
) :is(.garden-hero h1 span, .golf-hero h1 span) {
  color: inherit !important;
}

body:is(
  .page-template-page-co-nhan-tao-san-bong,
  .page-template-page-co-nhan-tao-san-vuon,
  .page-template-page-co-nhan-tao-san-golf,
  .page-template-page-co-nhan-tao-cu
) :is(.hero-tagline, .garden-eyebrow, .golf-eyebrow) {
  display: block !important;
  width: min(var(--kp-product-hero-copy-max, 760px), 100%) !important;
  max-width: var(--kp-product-hero-copy-max, 760px) !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--kp-product-hero-kicker-color) !important;
  font-size: var(--kp-product-hero-kicker-size) !important;
  line-height: var(--kp-product-hero-kicker-line) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  text-transform: none !important;
  text-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body:is(
  .page-template-page-co-nhan-tao-san-bong,
  .page-template-page-co-nhan-tao-san-vuon,
  .page-template-page-co-nhan-tao-san-golf,
  .page-template-page-co-nhan-tao-cu
) :is(.hero-lead, .garden-hero-lead, .golf-hero-lead) {
  width: min(var(--kp-product-hero-copy-max, 760px), 100%) !important;
  max-width: var(--kp-product-hero-copy-max, 760px) !important;
  margin: 0 0 28px !important;
  color: var(--kp-product-hero-lead-color) !important;
  font-size: var(--kp-product-hero-lead-size) !important;
  line-height: var(--kp-product-hero-lead-line) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

body.page-template-page-co-nhan-tao-cu .gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  max-width: 1080px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.page-template-page-co-nhan-tao-cu .gallery-item,
body.page-template-page-co-nhan-tao-cu .gallery-item.wide {
  grid-column: auto !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
  border-radius: 14px !important;
  background: #eef3ed !important;
  box-shadow: 0 12px 28px rgba(0, 36, 17, .08) !important;
}

body.page-template-page-co-nhan-tao-cu .gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

body.page-template-page-co-nhan-tao-cu .gallery-item:hover img {
  transform: scale(1.025) !important;
}

@media (min-width: 721px) and (max-width: 1100px) {
  body.page-template-page-co-nhan-tao-cu .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  body.category-du-an .kp-project-hero .breadcrumb {
    gap: 8px !important;
    margin-bottom: 14px !important;
    padding: 7px 10px !important;
    border-radius: 16px !important;
    font-size: 12px !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-san-vuon,
    .page-template-page-co-nhan-tao-san-golf,
    .page-template-page-co-nhan-tao-cu
  ) {
    --kp-product-hero-title-size: clamp(31px, 8.5vw, 38px);
    --kp-product-hero-title-line: 1.1;
    --kp-product-hero-kicker-size: 15px;
    --kp-product-hero-kicker-line: 1.35;
    --kp-product-hero-lead-size: 15px;
    --kp-product-hero-lead-line: 1.7;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-san-vuon,
    .page-template-page-co-nhan-tao-san-golf,
    .page-template-page-co-nhan-tao-cu
  ) :is(.hero h1, .garden-hero h1, .golf-hero h1) {
    margin-bottom: 12px !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-san-vuon,
    .page-template-page-co-nhan-tao-san-golf,
    .page-template-page-co-nhan-tao-cu
  ) :is(.hero-tagline, .garden-eyebrow, .golf-eyebrow) {
    margin-bottom: 12px !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-san-vuon,
    .page-template-page-co-nhan-tao-san-golf,
    .page-template-page-co-nhan-tao-cu
  ) :is(.hero .breadcrumb, .garden-breadcrumb, .golf-breadcrumb) {
    flex-wrap: wrap !important;
    gap: 6px 8px !important;
    max-width: 100% !important;
    padding: 8px 12px !important;
    border: 1px solid rgba(255, 255, 255, .24) !important;
    border-radius: 999px !important;
    background: rgba(0, 36, 17, .72) !important;
    color: #fff !important;
    line-height: 1.35 !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }

  body:is(
    .page-template-page-co-nhan-tao-san-bong,
    .page-template-page-co-nhan-tao-san-vuon,
    .page-template-page-co-nhan-tao-san-golf,
    .page-template-page-co-nhan-tao-cu
  ) :is(.hero .breadcrumb, .garden-breadcrumb, .golf-breadcrumb) :is(a, span) {
    color: #fff !important;
  }

  body.page-template-page-co-nhan-tao-cu .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  body.page-template-page-co-nhan-tao-cu .gallery-item,
  body.page-template-page-co-nhan-tao-cu .gallery-item.wide {
    grid-column: auto !important;
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
  }

  body.page-template-page-co-nhan-tao-san-bong .hero > .hero-breadcrumb {
    margin: var(--kp-mobile-hero-top, 112px) 24px 12px !important;
  }
}

@media (min-width: 721px) {
  body.page-template-page-thi-cong-san-bong-co-nhan-tao .service-hero .hero-actions {
    justify-content: flex-start !important;
    margin-right: auto !important;
    margin-left: 0 !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .service-hero-grid {
    position: relative !important;
    padding-top: 178px !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .service-hero-grid > :first-child {
    position: static !important;
    padding-top: 46px !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .service-hero .breadcrumb {
    position: absolute !important;
    z-index: 3 !important;
    top: 178px !important;
    left: 0 !important;
    right: auto !important;
    display: inline-flex !important;
    width: fit-content !important;
    max-width: min(760px, calc(100vw - 48px)) !important;
    margin: 0 !important;
    transform: none !important;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  body.home :is(
    .products-grid,
    .why-grid,
    .projects-grid,
    .testimonials-grid,
    .news-grid,
    .process-grid
  ):has(> :nth-child(4):last-child),
  body.page-template :is(
    .grid-3,
    .grid-3-clean,
    .grid-4,
    .grid-4-clean,
    .answer-grid,
    .problem-grid,
    .cost-grid,
    .portfolio-grid,
    .testimonial-grid,
    .process-grid,
    .related-grid,
    .cross-sell-grid,
    .intent-grid,
    .case-study-grid,
    .products-grid,
    .why-grid,
    .garden-app-grid,
    .garden-product-grid,
    .golf-product-grid,
    .golf-app-grid,
    .golf-process,
    .glossary-grid,
    .steps-grid,
    .partner-grid,
    .dl-product-grid,
    .dl-steps,
    .benefit-list
  ):has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .service-hero-grid {
    position: relative !important;
    padding-top: 112px !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .service-hero-grid > :first-child {
    position: static !important;
    padding-top: 44px !important;
  }

  body:is(
    .page-template-page-thi-cong-san-bong-co-nhan-tao,
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .service-hero .breadcrumb {
    position: absolute !important;
    z-index: 3 !important;
    top: 112px !important;
    left: 2px !important;
    right: auto !important;
    display: inline-flex !important;
    width: fit-content !important;
    max-width: calc(100vw - 48px) !important;
    margin: 0 !important;
    transform: none !important;
  }

  body.page-template-page-thi-cong-san-bong-co-nhan-tao .service-hero .breadcrumb {
    left: 0 !important;
  }
}

body.page-template-page-co-nhan-tao-san-bong main .section .section-updated {
  color: var(--kp-muted, #5d6b61) !important;
}


/* Balance desktop content-card grids by item count. */
@media (min-width: 1101px) {
  body.home :is(
    .products-grid,
    .why-grid,
    .projects-grid,
    .testimonials-grid,
    .news-grid,
    .process-grid
  ):has(> :nth-child(4):last-child),
  body.page-template :is(
    .grid-3,
    .grid-3-clean,
    .grid-4,
    .grid-4-clean,
    .answer-grid,
    .problem-grid,
    .cost-grid,
    .portfolio-grid,
    .testimonial-grid,
    .process-grid,
    .related-grid,
    .cross-sell-grid,
    .intent-grid,
    .case-study-grid,
    .products-grid,
    .why-grid,
    .garden-app-grid,
    .garden-product-grid,
    .golf-product-grid,
    .golf-app-grid,
    .golf-process,
    .glossary-grid,
    .steps-grid,
    .partner-grid,
    .dl-product-grid,
    .dl-steps,
    .benefit-list
  ):has(> :nth-child(4):last-child),
  body:is(
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .section .container > div:has(> :is(.card, .service-card, .spec-card, .process-card, .related-card, .case-study-card)):has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.home :is(
    .products-grid,
    .why-grid,
    .projects-grid,
    .testimonials-grid,
    .news-grid,
    .process-grid
  ):is(:has(> :nth-child(5):last-child), :has(> :nth-child(6):last-child)),
  body.page-template :is(
    .grid-3,
    .grid-3-clean,
    .grid-4,
    .grid-4-clean,
    .answer-grid,
    .problem-grid,
    .cost-grid,
    .portfolio-grid,
    .testimonial-grid,
    .process-grid,
    .related-grid,
    .cross-sell-grid,
    .intent-grid,
    .case-study-grid,
    .products-grid,
    .why-grid,
    .garden-app-grid,
    .garden-product-grid,
    .golf-product-grid,
    .golf-app-grid,
    .golf-process,
    .glossary-grid,
    .steps-grid,
    .partner-grid,
    .dl-product-grid,
    .dl-steps,
    .benefit-list
  ):is(:has(> :nth-child(5):last-child), :has(> :nth-child(6):last-child)),
  body:is(
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .section .container > div:has(> :is(.card, .service-card, .spec-card, .process-card, .related-card, .case-study-card)):is(:has(> :nth-child(5):last-child), :has(> :nth-child(6):last-child)) {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body:is(
    .page-template-page-thi-cong-san-vuon-co-nhan-tao,
    .page-template-page-thi-cong-san-bong-ro,
    .page-template-page-thi-cong-san-pickleball,
    .page-template-page-thi-cong-duong-chay-dien-kinh,
    .page-template-page-thi-cong-to-hop-san-the-thao,
    .page-template-page-bao-tri-san-co-nhan-tao
  ) .section .container > div:has(> :is(.card, .service-card, .spec-card, .process-card, .related-card, .case-study-card)):is(:has(> :nth-child(4):last-child), :has(> :nth-child(5):last-child), :has(> :nth-child(6):last-child)) {
    display: grid !important;
    gap: 22px !important;
    align-items: stretch !important;
  }

  body.home .process-grid:is(:has(> :nth-child(5):last-child), :has(> :nth-child(6):last-child))::before,
  body.page-template .dl-steps:is(:has(> :nth-child(4):last-child), :has(> :nth-child(5):last-child), :has(> :nth-child(6):last-child))::before {
    display: none !important;
  }

  body.page-template .steps-grid:has(> :nth-child(4):last-child) .step-arrow {
    display: none !important;
  }
}

body.home #san-pham .products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(10px, 1.7vw, 22px) !important;
  align-items: stretch !important;
}

body.home #san-pham .products-grid .product-card {
  grid-column: auto !important;
  width: auto !important;
  min-width: 0 !important;
}

@media (max-width: 720px) {
  body.home #san-pham .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  body.home #san-pham .product-card {
    border-radius: 18px !important;
  }

  body.home #san-pham .product-img {
    height: clamp(118px, 31vw, 146px) !important;
  }

  body.home #san-pham .product-body {
    padding: 14px 12px 15px !important;
  }

  body.home #san-pham .product-body h3 {
    margin-bottom: 6px !important;
    font-size: clamp(14px, 3.8vw, 16px) !important;
    line-height: 1.22 !important;
    overflow-wrap: anywhere !important;
  }

  body.home #san-pham .product-body p {
    display: -webkit-box !important;
    margin-bottom: 10px !important;
    overflow: hidden !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  body.home #san-pham .product-price {
    margin-bottom: 10px !important;
    font-size: clamp(12px, 3.3vw, 14px) !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }

  body.home #san-pham .product-cta {
    gap: 4px !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
    white-space: normal !important;
  }

  body.home #san-pham .badge-save {
    top: 8px !important;
    right: 8px !important;
    padding: 4px 8px !important;
    font-size: 10px !important;
    line-height: 1 !important;
  }
}

@media (max-width: 380px) {
  body.home #san-pham .products-grid {
    gap: 10px !important;
  }

  body.home #san-pham .product-body {
    padding: 12px 10px 13px !important;
  }

  body.home #san-pham .product-body p {
    -webkit-line-clamp: 2 !important;
  }
}

body.home .section.process .process-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: clamp(10px, 1.45vw, 16px) !important;
  align-items: stretch !important;
}

body.home .section.process .step {
  min-width: 0 !important;
  padding: 20px 12px !important;
  color: var(--kp-muted, #5d6b61) !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

body.home .section.process .step h3 {
  overflow-wrap: anywhere !important;
}

@media (min-width: 721px) and (max-width: 1100px) {
  body.home .section.process .step {
    padding: 18px 10px !important;
  }

  body.home .section.process .step-no {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 13px !important;
  }

  body.home .section.process .step h3 {
    font-size: 13px !important;
    line-height: 1.25 !important;
  }
}

@media (max-width: 720px) {
  body.home .section.process .process-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 1181px) {
  body.wp-singular.page-template.page-template-page-co-nhan-tao-san-golf main section#catalog.section .container > .golf-product-grid:has(> .golf-product-card:nth-child(5):last-child) {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  body.wp-singular.page-template.page-template-page-co-nhan-tao-san-golf main section#catalog.section .container > .golf-product-grid:has(> .golf-product-card:nth-child(5):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  body.wp-singular.page-template.page-template-page-co-nhan-tao-san-golf main section#catalog.section .container > .golf-product-grid:has(> .golf-product-card:nth-child(5):last-child) {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 960px) {
  body.wp-singular.page-template.page-template-page-co-nhan-tao-san-golf main section#quy-trinh.section .container > .golf-process:has(> .golf-step:nth-child(4):last-child) {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(12px, 1.35vw, 18px) !important;
    align-items: stretch !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-san-golf main section#quy-trinh.section .container > .golf-process > .golf-step {
    min-width: 0 !important;
    padding: clamp(18px, 1.55vw, 24px) !important;
  }
}

body.wp-singular.page-template.page-template-page-thi-cong-san-vuon-co-nhan-tao main .section .container > .construction-steps {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  align-items: start !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-vuon-co-nhan-tao main .section .container > .construction-steps > .card {
  grid-column: span 2 !important;
  align-self: start !important;
  height: auto !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-vuon-co-nhan-tao main .section .container > .construction-steps > .card:nth-child(n+4) {
  grid-column: span 3 !important;
}

@media (min-width: 721px) and (max-width: 1100px) {
  body.wp-singular.page-template.page-template-page-thi-cong-san-vuon-co-nhan-tao main .section .container > .construction-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-vuon-co-nhan-tao main .section .container > .construction-steps > .card {
    grid-column: span 1 !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-vuon-co-nhan-tao main .section .container > .construction-steps > .card:last-child {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 720px) {
  body.wp-singular.page-template.page-template-page-thi-cong-san-vuon-co-nhan-tao main .section .container > .construction-steps {
    grid-template-columns: 1fr !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-vuon-co-nhan-tao main .section .container > .construction-steps > .card {
    grid-column: auto !important;
  }
}

@media (max-width: 720px) {
  body.wp-singular.page-template.page-template-page-thi-cong-san-vuon-co-nhan-tao main section.section > .container > div.construction-steps:has(> .card:nth-child(5):last-child) {
    grid-template-columns: 1fr !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-vuon-co-nhan-tao main section.section > .container > div.construction-steps:has(> .card:nth-child(5):last-child) > .card {
    grid-column: 1 / -1 !important;
  }
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .hero-photo-panel {
  position: relative;
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--court-shadow-xl);
  border: 1px solid rgba(255, 255, 255, .30);
  background: #0b2314;
  min-height: 430px;
  isolation: isolate;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .hero-photo-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .hero-photo-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 20, 10, .78));
  z-index: 1;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .hero-photo-panel figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .basketball-process-figure {
  margin: 18px 0 0;
  border-radius: 16px;
  overflow: hidden;
  background: #f6f7f4;
  border: 1px solid rgba(10, 107, 47, .12);
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .basketball-process-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .basketball-process-figure figcaption {
  padding: 10px 12px;
  color: #4d5f52;
  font-size: 13px;
  line-height: 1.55;
  background: #fffaf1;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .basketball-process-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .basketball-process-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 107, 47, .12);
  border-radius: 16px;
  background: #f6f7f4;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .basketball-process-media img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .basketball-process-media figcaption {
  padding: 10px 12px;
  background: #fffaf1;
  color: var(--kp-muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .basketball-project-card .portfolio-img {
  height: 230px;
  background: #f6f7f4;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .basketball-project-card .portfolio-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .project-meta span {
  display: inline-flex;
  border: 1px solid rgba(217, 111, 34, .20);
  background: #fff8df;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 800;
  color: #6b3a10;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .testimonial-card {
  max-width: 920px;
  margin: 0 auto;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro #truong-hoc .compact-table + div:has(> .service-card),
body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro #so-sanh-chat-lieu .compact-table + div:has(> .service-card),
body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro #so-sanh-chat-lieu .callout + div:has(> .service-card) {
  margin-top: 30px;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro #gia-thi-cong .container > div:has(> .card) + .compact-table {
  margin-top: 30px;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .trust-grid .trust-item:not(:has(.trust-icon)) {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0 !important;
  align-items: flex-start !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .trust-grid .trust-item:not(:has(.trust-icon)) .trust-text {
  display: block;
  width: 100%;
  max-width: none;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .callout:not(:has(.trust-icon)) {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0 !important;
  align-items: flex-start !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .callout:not(:has(.trust-icon)) > div {
  width: 100%;
  max-width: none;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .callout p strong {
  display: inline;
  width: auto;
  font: inherit;
  font-weight: 900;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 30px;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-swatch-card,
body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-card-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 107, 47, .12);
  background: #f6f7f4;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-swatch-card {
  border-radius: 18px;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-swatch-card img,
body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-card-media img {
  display: block;
  width: 100%;
  object-fit: cover;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-swatch-card img {
  height: 176px;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-swatch-card figcaption {
  padding: 13px 14px 15px;
  background: #fff;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-swatch-card strong,
body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-swatch-card span {
  display: block;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-swatch-card strong {
  color: var(--kp-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-swatch-card span {
  color: var(--kp-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 4px;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro #gia-thi-cong .material-card-media {
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: none;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro #gia-thi-cong .material-card-media img {
  height: 250px;
}

@media (max-width: 720px) {
  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .service-hero-grid > .reveal:first-child {
    display: contents !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .service-hero-grid > .reveal:first-child > .breadcrumb {
    display: none !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .service-hero-grid > .reveal:first-child > .eyebrow {
    order: 2;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .service-hero-grid > .reveal:first-child > h1 {
    order: 3;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .hero-photo-panel {
    display: block !important;
    order: 4;
    width: 100%;
    min-height: 190px;
    border-radius: 22px;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .hero-photo-panel img {
    height: 190px;
    min-height: 190px;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .hero-photo-panel figcaption {
    left: 14px;
    right: 14px;
    bottom: 12px;
    font-size: 12px;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .service-hero-grid > .reveal:first-child > .answer-capsule {
    order: 5;
    margin-top: 18px !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .service-hero-grid > .reveal:first-child > .hero-note {
    display: none !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .service-hero-grid > .reveal:first-child > .hero-actions {
    order: 6;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .service-hero-grid > .reveal:first-child > .hero-chips {
    order: 7;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .basketball-project-card .portfolio-img {
    height: 190px;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .basketball-process-gallery {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 20px;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .basketball-process-media img {
    height: 180px;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro #truong-hoc .compact-table + div:has(> .service-card),
  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro #so-sanh-chat-lieu .compact-table + div:has(> .service-card),
  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro #so-sanh-chat-lieu .callout + div:has(> .service-card) {
    margin-top: 24px;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro #gia-thi-cong .container > div:has(> .card) + .compact-table {
    margin-top: 24px;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-swatch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-swatch-card img {
    height: 112px;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-swatch-card figcaption {
    padding: 10px 11px 12px;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-swatch-card strong {
    font-size: 12px;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro .material-swatch-card span {
    font-size: 11px;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro #gia-thi-cong .material-card-media img {
    height: 188px;
  }
}

/* Compact hero only on the used artificial turf page. */
body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .hero {
  min-height: clamp(600px, 62vh, 630px) !important;
}

body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .hero-copy {
  padding-top: 128px !important;
  padding-bottom: 36px !important;
}

body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .hero :is(.breadcrumb, .hero-breadcrumb) {
  top: 112px !important;
}

@media (max-width: 720px) {
  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .hero {
    min-height: auto !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .hero-copy {
    padding-top: 70px !important;
    padding-bottom: 22px !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .hero-stats {
    margin-top: 14px !important;
  }
}

/* Final table typography override for the football construction service page. */
body.page-template-page-thi-cong-san-bong-co-nhan-tao .table-wrap table {
  min-width: 760px !important;
  font-family: inherit !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

body.page-template-page-thi-cong-san-bong-co-nhan-tao .table-wrap :is(th, td) {
  padding: 12px 14px !important;
  font-family: inherit !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  vertical-align: top !important;
}

body.page-template-page-thi-cong-san-bong-co-nhan-tao .table-wrap th {
  font-weight: 800 !important;
}

body.page-template-page-thi-cong-san-bong-co-nhan-tao .table-wrap td :is(strong, b, a) {
  font-size: inherit !important;
  line-height: inherit !important;
}

body.page-template-page-thi-cong-san-bong-co-nhan-tao .table-wrap td :is(strong, b) {
  color: inherit !important;
  font-weight: 700 !important;
}

body.page-template-page-thi-cong-san-bong-co-nhan-tao .table-wrap td a {
  font-weight: 700 !important;
}

/* Pickleball service tables: remove the extra card-like wrapper border. */
body.page-template-page-thi-cong-san-pickleball :is(.compact-table, .table-wrap, .kp-table-scroll, .pickle-price-table, .value-stack-table) {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

body.page-template-page-thi-cong-san-pickleball :is(.compact-table, .table-wrap, .kp-table-scroll, .pickle-price-table, .value-stack-table) {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

body.page-template-page-thi-cong-san-pickleball .kp-table-scroll {
  margin: 18px 0 24px !important;
}

body.page-template-page-thi-cong-san-pickleball .compact-table > .kp-table-scroll {
  margin: 0 !important;
}

/* Final polish for the used artificial turf product page. */
body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll {
  overflow: hidden !important;
  border: 1px solid rgba(10, 107, 47, .14) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 16px 40px rgba(9, 55, 26, .07) !important;
}

body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll table {
  width: 100% !important;
  min-width: 760px !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  background: #fff !important;
}

body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll :is(th, td) {
  padding: 14px 18px !important;
  font-family: inherit !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  vertical-align: top !important;
}

body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll th {
  background: #064e28 !important;
  color: #fff !important;
  font-weight: 900 !important;
}

body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll td {
  color: var(--kp-text, #102016) !important;
  border-top: 1px solid rgba(10, 107, 47, .1) !important;
}

body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll td:first-child {
  width: 24% !important;
  color: var(--kp-dark, #004c24) !important;
  font-weight: 900 !important;
}

@media (min-width: 1101px) {
  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    max-width: 1080px !important;
    gap: 18px !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .step-card {
    min-height: 164px !important;
    padding: 24px 18px !important;
    border-radius: 16px !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .step-arrow {
    display: block !important;
    right: -15px !important;
    color: rgba(10, 107, 47, .4) !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .step-card:last-child .step-arrow {
    display: none !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .gallery-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr) minmax(0, 1fr) !important;
    grid-auto-rows: 190px !important;
    max-width: 1080px !important;
    gap: 16px !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .gallery-item,
  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .gallery-item.wide {
    grid-column: auto !important;
    grid-row: auto !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    border-radius: 16px !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .gallery-item:first-child {
    grid-row: span 2 !important;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}

@media (max-width: 720px) {
  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .product-rating-summary-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 96px !important;
    gap: 10px 12px !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .product-rating-score {
    grid-column: 1 / 2 !important;
    grid-row: 1 !important;
    padding: 12px 14px !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .product-rating-count {
    grid-column: 2 / 3 !important;
    grid-row: 1 !important;
    padding: 12px 10px !important;
    text-align: center !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .product-rating-copy {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .product-rating-copy h2 {
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .price-bar-inner {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-items: stretch !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .price-bar-inner .pbar-div {
    display: none !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .price-bar-inner .pbar-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    min-width: 0 !important;
    padding: 11px 13px !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, .05) !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .price-bar-inner .pbar-item:nth-child(5) {
    grid-column: 1 / -1 !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll {
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll::after {
    content: none !important;
    display: none !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll table {
    display: block !important;
    min-width: 0 !important;
    background: transparent !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll thead {
    display: none !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll :is(tbody, tr, td) {
    display: block !important;
    width: 100% !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll tr {
    margin: 0 0 12px !important;
    padding: 14px 16px !important;
    border: 1px solid rgba(10, 107, 47, .14) !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 10px 28px rgba(9, 55, 26, .06) !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll td {
    padding: 6px 0 !important;
    border: 0 !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll td:first-child {
    padding-bottom: 10px !important;
    margin-bottom: 6px !important;
    border-bottom: 1px solid rgba(10, 107, 47, .12) !important;
    font-size: 16px !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll td:nth-child(n+2)::before {
    display: block !important;
    margin-bottom: 3px !important;
    color: var(--kp-green, #0a6b2f) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll td:nth-child(2)::before {
    content: "D\1EA5 u hi\1EC7 u t\1ED1 t";
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .kp-legacy-table-scroll td:nth-child(3)::before {
    content: "C\1EA7 n th\1EAD n tr\1ECD ng";
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .steps-grid {
    gap: 12px !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .step-card {
    padding: 20px 18px !important;
    text-align: left !important;
    border-radius: 16px !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .step-num {
    margin: 0 0 12px !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .gallery-item,
  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .gallery-item.wide {
    grid-column: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    border-radius: 14px !important;
  }

  body.wp-singular.page-template.page-template-page-co-nhan-tao-cu .gallery-item:first-child {
    grid-column: 1 / -1 !important;
    aspect-ratio: 16 / 10 !important;
  }
}


/* template-service-optimization.css */
/* Service-family performance and mobile conversion fixes. */
body.kp-service-family .service-hero,
body.kp-service-family .service-hero * {
  box-sizing: border-box;
}

body.kp-service-family #bao-gia .kp-wpforms-embed,
body.kp-service-family #bao-gia .wpforms-container,
body.kp-service-family #bao-gia form.wpforms-form {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin-inline: 0 !important;
}

body.kp-service-family .wpforms-container .wpforms-field-description,
body.kp-service-family .wpforms-container .wpforms-field-sublabel {
  color: #52665a;
  font-size: 12px;
  line-height: 1.5;
}

body.kp-service-family .wpforms-container .wpforms-field-hp,
body.kp-service-family .wpforms-container [aria-hidden="true"][hidden] {
  display: none !important;
}

body.kp-service-family .wpforms-container .wpforms-submit-spinner {
  width: 24px;
  height: 24px;
  margin: 12px auto 0;
}

body.wp-singular.page-template.page-template-page-thi-cong-san-vuon-co-nhan-tao.kp-service-family .service-hero {
  background-image: linear-gradient(135deg, rgba(0, 38, 17, .92), rgba(0, 76, 36, .76)), url("../img/shared/co-san-vuon.webp") !important;
  background-image: linear-gradient(135deg, rgba(0, 38, 17, .92), rgba(0, 76, 36, .76)), image-set(url("../img/shared/co-san-vuon.avif") type("image/avif"), url("../img/shared/co-san-vuon.webp") type("image/webp")) !important;
}

body.page-template-page-thi-cong-san-bong-ro .service-hero {
  background-image: linear-gradient(135deg, rgba(0, 38, 17, .94), rgba(0, 76, 36, .82)), url("../img/shared/cta-bg.webp") !important;
  background-image: linear-gradient(135deg, rgba(0, 38, 17, .94), rgba(0, 76, 36, .82)), image-set(url("../img/shared/cta-bg.avif") type("image/avif"), url("../img/shared/cta-bg.webp") type("image/webp")) !important;
}

body.wp-singular.page-template.page-template-page-thi-cong-duong-chay-dien-kinh.kp-service-family .service-hero.track-product-hero {
  background-image: linear-gradient(rgba(0, 31, 14, .76), rgba(0, 43, 20, .62) 58%, rgba(0, 43, 20, .38)), url("/wp-content/uploads/2025/08/San-dien-kinh-Khanh-Phat.webp") !important;
  background-image: linear-gradient(rgba(0, 31, 14, .76), rgba(0, 43, 20, .62) 58%, rgba(0, 43, 20, .38)), image-set(url("/wp-content/uploads/2025/08/San-dien-kinh-Khanh-Phat.avif") type("image/avif"), url("/wp-content/uploads/2025/08/San-dien-kinh-Khanh-Phat.webp") type("image/webp")) !important;
}

@media (max-width: 720px) {
  html {
    scroll-padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  body.kp-service-family {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  body.kp-service-family .service-hero,
  body.kp-service-family .service-hero * {
    animation: none !important;
    transition: none !important;
  }

  body.kp-service-family .service-hero > img,
  body.kp-service-family .service-hero > picture > img {
    filter: none !important;
  }

  body.kp-service-family .service-hero :is(
    .breadcrumb,
    .eyebrow,
    .answer-capsule,
    .hero-note,
    .hero-chip,
    .pickle-hero-breadcrumb,
    .pickle-hero-stat,
    .pickle-author-byline
  ) {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.kp-service-family.kp-mobile-cta-controlled .mobile-cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + env(safe-area-inset-bottom)));
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  }

  body.kp-service-family.kp-mobile-cta-controlled.kp-mobile-cta-visible .mobile-cta {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.kp-service-family .service-hero-grid {
    gap: 16px !important;
    padding-top: 96px !important;
    padding-bottom: 42px !important;
  }

  body.kp-service-family .service-hero-grid > .reveal:not(.hero-panel) {
    padding-top: 0 !important;
  }

  body.kp-service-family .service-hero :is(.breadcrumb, .eyebrow) {
    max-width: 100% !important;
  }

  body.kp-service-family .service-hero .breadcrumb {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 5px 7px !important;
    margin-bottom: 12px !important;
    position: static !important;
    inset: auto !important;
    transform: none !important;
  }

  body.kp-service-family .service-hero .eyebrow {
    margin-bottom: 12px !important;
  }

  body.kp-service-family .service-hero h1 {
    margin-bottom: 14px !important;
  }

  body.kp-service-family .service-hero .answer-capsule {
    margin-bottom: 16px !important;
    padding: 14px 15px !important;
    font-size: 14px !important;
    line-height: 1.58 !important;
  }

  body.kp-service-family .service-hero .hero-actions {
    gap: 10px !important;
    margin: 0 !important;
  }

  body.kp-service-family .service-hero .hero-chips {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    max-width: 100% !important;
    margin: 16px 0 0 !important;
    padding: 0 0 6px !important;
    overflow-x: auto !important;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  body.kp-service-family .service-hero .hero-chips::-webkit-scrollbar {
    display: none;
  }

  body.kp-service-family .service-hero .hero-chip {
    flex: 0 0 auto !important;
    max-width: 84vw !important;
    white-space: normal !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro.kp-service-family .hero-photo-panel {
    display: none !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro.kp-service-family .service-hero .breadcrumb {
    display: flex !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-bong-ro.kp-service-family .service-hero-grid > .reveal:first-child > .breadcrumb {
    display: flex !important;
  }

  body.kp-service-family #bao-gia .container {
    width: 100% !important;
    max-width: none !important;
    margin-inline: 0 !important;
    padding-inline: 12px !important;
  }

  body.kp-service-family #bao-gia .quote-block {
    width: 100% !important;
    max-width: none !important;
    padding: 20px 12px !important;
    gap: 18px !important;
  }

  body.kp-service-family #bao-gia .quote-panel,
  body.page-template-page-thi-cong-san-vuon-co-nhan-tao #bao-gia .quote-panel {
    width: 100% !important;
    max-width: none !important;
    padding: 12px 10px !important;
    padding-bottom: 12px !important;
  }

  body.kp-service-family #bao-gia div.wpforms-container-full .wpforms-form {
    padding: 14px 12px !important;
    border-radius: 16px !important;
  }

  body.kp-service-family #bao-gia div.wpforms-container-full .wpforms-field-container {
    gap: 13px !important;
  }

  body.kp-service-family #bao-gia div.wpforms-container-full :is(input, select, textarea) {
    min-height: 50px !important;
    padding-inline: 12px !important;
    font-size: 16px !important;
  }

  body.kp-service-family #bao-gia div.wpforms-container-full select {
    text-overflow: ellipsis;
  }

  body.kp-service-family #bao-gia div.wpforms-container-full textarea {
    min-height: 126px !important;
  }

  body.page-template-page-thi-cong-san-bong-co-nhan-tao .service-hero {
    background-image: linear-gradient(110deg, rgba(0, 38, 17, .80), rgba(0, 76, 36, .58) 48%, rgba(0, 76, 36, .30)), url("/wp-content/uploads/2026/06/khanh-phat-thi-cong-san-bong-tai-ninh-binh-768x384.webp") !important;
    background-image: linear-gradient(110deg, rgba(0, 38, 17, .80), rgba(0, 76, 36, .58) 48%, rgba(0, 76, 36, .30)), image-set(url("/wp-content/uploads/2026/06/khanh-phat-thi-cong-san-bong-tai-ninh-binh-768x384.avif") type("image/avif"), url("/wp-content/uploads/2026/06/khanh-phat-thi-cong-san-bong-tai-ninh-binh-768x384.webp") type("image/webp")) !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-san-vuon-co-nhan-tao.kp-service-family .service-hero {
    background-image: linear-gradient(135deg, rgba(0, 38, 17, .92), rgba(0, 76, 36, .76)), url("../img/shared/co-san-vuon-mobile.webp") !important;
    background-image: linear-gradient(135deg, rgba(0, 38, 17, .92), rgba(0, 76, 36, .76)), image-set(url("../img/shared/co-san-vuon-mobile.avif") type("image/avif"), url("../img/shared/co-san-vuon-mobile.webp") type("image/webp")) !important;
  }

  body.page-template-page-thi-cong-san-bong-ro .service-hero {
    background-image: linear-gradient(135deg, rgba(0, 38, 17, .94), rgba(0, 76, 36, .82)), url("../img/shared/cta-bg-mobile.webp") !important;
    background-image: linear-gradient(135deg, rgba(0, 38, 17, .94), rgba(0, 76, 36, .82)), image-set(url("../img/shared/cta-bg-mobile.avif") type("image/avif"), url("../img/shared/cta-bg-mobile.webp") type("image/webp")) !important;
  }

  body.wp-singular.page-template.page-template-page-thi-cong-duong-chay-dien-kinh.kp-service-family .service-hero.track-product-hero {
    background-image: linear-gradient(rgba(0, 31, 14, .76), rgba(0, 43, 20, .62) 58%, rgba(0, 43, 20, .38)), url("/wp-content/uploads/2025/08/San-dien-kinh-Khanh-Phat-600x400.webp") !important;
    background-image: linear-gradient(rgba(0, 31, 14, .76), rgba(0, 43, 20, .62) 58%, rgba(0, 43, 20, .38)), image-set(url("/wp-content/uploads/2025/08/San-dien-kinh-Khanh-Phat-600x400.avif") type("image/avif"), url("/wp-content/uploads/2025/08/San-dien-kinh-Khanh-Phat-600x400.webp") type("image/webp")) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.kp-service-family .mobile-cta {
    transition: none !important;
  }
}

