/* ══════════════════════════════════════════
   BRIDGE: Map WP theme.json tokens → demo variable names
   This lets the rest of the CSS stay identical to homepage-demo.html
══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   TOKENS — từ file demo mới
══════════════════════════════════════════ */
:root {
  --green:      #00613d;
  --orange:     #f47721;
  --bg-nav:     #f5f3f2;
  --ink:        #333333;
  --ink-60:     rgba(51,51,51,0.6);
  --ink-10:     rgba(51,51,51,0.08);
  --white:      #ffffff;
  --cream:      #f8f6f2;
  --max-w:      1190px;
  --ease:       linear;
}

/* ══════════════════════════════════════════
   RESET
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Tahoma', sans-serif; font-size: 16px; line-height: 24px; color: var(--ink); background: var(--white); }
img   { display: block; max-width: 100%; }
a     { color: var(--ink); text-decoration: none; transition: all 0.3s linear; }
a:hover { color: var(--orange); }
ul    { list-style: none; }
.wrapper { max-width: var(--max-w); padding: 0 10px; margin: 0 auto; }

/* ══════════════════════════════════════════
   SCROLL PROGRESS
══════════════════════════════════════════ */
#js-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--green));
  z-index: 10000; pointer-events: none; transition: width 0.1s linear;
}

/* ══════════════════════════════════════════
   STICKY HEADER — position:sticky (đơn giản hơn)
══════════════════════════════════════════ */
#vnt-header {
  position: sticky;
  top: 0;
  z-index: 111;
  background: var(--white);
}
#vnt-header.is-scrolled {
  box-shadow: 0 5px 5px 0 rgba(0,0,0,0.15);
}
/* WP admin bar offset */
/* Admin bar offset — chính xác */
#vnt-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 111 !important;
}
.admin-bar #vnt-header {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  .admin-bar #vnt-header {
    top: 46px !important;
  }
}
/* Tầng 1: mainHead */
.mainHead { padding: 10px 0; background: var(--white); }
.topHeaderMain { display: flex; justify-content: space-between; align-items: center; }

/* Logo */
.logo { max-width: 220px; }
.logo img { width: 100%; }
.logo a { display: block; }

/* Phải: search + share + lang */
.headerTopRight > ul { display: flex; align-items: center; }
.headerTopRight > ul > li { margin-left: 20px; }

/* Search */
.boxSearch { display: flex; align-items: center; position: relative; }
.boxSearch .iconSFrm { font-size: 20px; color: var(--green); cursor: pointer; padding: 4px; }
.boxSearch .searchDeck { width: 0; overflow: hidden; transition: all 0.3s ease; }
.boxSearch.active .searchDeck { width: 180px; margin-left: 12px; }
.boxSearch .searchDeck input {
  width: 100%; border: none; border-bottom: 1px solid #ddd;
  height: 36px; padding: 0 10px; font-family: inherit; font-size: 14px; outline: none;
}

/* Share */
.boxShare { display: flex; align-items: center; position: relative; }
.boxShare .iconSSha { display: flex; align-items: center; color: var(--green); cursor: pointer; gap: 4px; font-size: 14px; font-weight: 600; }
.boxShare .iconSSha .ico { font-size: 18px; }
.boxShare .shareDeck { width: 0; overflow: hidden; transition: all 0.3s ease; }
.boxShare.active .shareDeck { width: auto; overflow: initial; }
.linkShare { display: flex; gap: 6px; margin-left: 10px; }
.linkShare a {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  color: var(--white); font-size: 12px; font-weight: 700;
}
.linkShare a:hover { opacity: 0.8; color: var(--white); }
.s-li { background: #0077b5; }
.s-fb { background: #1877f2; }
.s-tw { background: #1da1f2; }
.s-za { background: #0068ff; }

/* Language */
.languageTop { position: relative; }
.iconLang {
  display: flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 600; color: var(--green);
  cursor: pointer; padding: 4px 8px;
  border: 1px solid rgba(0,97,61,0.2); border-radius: 4px;
}
.lang-popup {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid #ddd;
  border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  min-width: 160px; z-index: 200;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.25s ease;
}
.languageTop:hover .lang-popup { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-popup ul { padding: 6px 0; }
.lang-popup ul li a { display: flex; align-items: center; gap: 10px; padding: 8px 16px; font-size: 13px; color: var(--ink); }
.lang-popup ul li a:hover { background: var(--cream); color: var(--orange); }
.lang-popup ul li a img { width: 20px; height: auto; }

/* Mobile hamburger */
.headerMb { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.vntSearchMenu { display: none; align-items: center; gap: 12px; }
.nav-hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Tầng 2: submenuDesk — nav nền xám */
.submenuDesk { background-color: var(--bg-nav); color: var(--green); transition: all 0.5s ease; }
.toolHeader { display: flex; align-items: center; justify-content: space-between; }
.menuTop { margin-right: 15px; }
.menuTop ul { display: flex; align-items: center; }
.menuTop ul li { margin-right: 34px; position: relative; }
.menuTop ul li:last-child { margin-right: 0; }
.menuTop ul li a {
  letter-spacing: 1.1px; display: block;
  font-size: 15px; line-height: 25px;
  padding: 15px 0; color: var(--green);
}
.menuTop > ul > li.current > a,
.menuTop > ul > li:hover > a { color: var(--orange); }

/* Dropdown sub-menu */
.menuTop > ul > li > ul {
  border-top: 1px solid #ddd; padding: 16px 0; background: #f5f5f5;
  position: absolute; top: 100%; left: 0; min-width: 220px;
  z-index: 300; opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(10px); transition: all 0.3s linear;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.menuTop > ul > li:hover > ul { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.menuTop > ul > li > ul > li a { padding: 8px 20px; font-size: 14px; color: var(--ink); display: block; letter-spacing: 0; line-height: 1.5; }
.menuTop > ul > li > ul > li a:hover { color: var(--orange); background: #ececec; }

/* Mobile drawer */
.mobile-drawer { display: none; position: fixed; inset: 0; z-index: 800; }
.mobile-drawer.is-open { display: block; }
.drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 280px;
  background: var(--white); padding: 24px 20px;
  overflow-y: auto; display: flex; flex-direction: column;
}
.drawer-panel a { display: block; padding: 12px 8px; font-size: 15px; border-bottom: 1px solid var(--ink-10); color: var(--ink); }
.drawer-panel a.current,
.drawer-panel a:hover { color: var(--orange); }

/* ══════════════════════════════════════════
   HERO SLIDESHOW
══════════════════════════════════════════ */
.bannerHome {
  position: relative;
  width: 100%; height: 520px;
  overflow: hidden;
  background: var(--ink);
}
@media (max-width: 768px) { .bannerHome { height: 280px; } }

.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.8s var(--ease);
  pointer-events: none;
}
.slide.is-active { opacity: 1; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; }

.slide-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.slide-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slide-dot.is-active { background: var(--white); transform: scale(1.25); }

.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4);
  color: var(--white); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background 0.2s;
}
.slide-arrow:hover { background: rgba(255,255,255,0.35); }
.slide-arrow.prev { left: 20px; }
.slide-arrow.next { right: 20px; }
@media (max-width: 480px) { .slide-arrow { display: none; } }

/* ══════════════════════════════════════════
   ABOUT + CONTACT SECTION
══════════════════════════════════════════ */
.aboutContactHome { padding: 70px 0; background: var(--white); }
.about-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.section-title-line {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700; color: var(--green); line-height: 1.2;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.title-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

.about-body p { font-size: 16px; color: var(--ink-60); line-height: 1.75; margin-bottom: 16px; }
.btn-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--green);
  border: 1.5px solid var(--green); padding: 9px 20px; border-radius: 8px;
  margin-top: 8px; transition: all 0.2s;
}
.btn-more:hover { background: var(--green); color: var(--white); }

.contact-box { display: flex; flex-direction: column; gap: 8px; }
.connect-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--ink-60); margin-bottom: 8px; }
.social-bar { display: flex; gap: 8px; margin-bottom: 24px; }
.social-bar a {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--white);
  transition: opacity 0.2s, transform 0.15s;
}
.social-bar a:hover { opacity: 0.85; transform: translateY(-2px); }

.office-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 20px; margin-bottom: 12px;
}
.office-name { font-weight: 700; font-size: 14px; color: var(--green); margin-bottom: 10px; }
.office-info { display: flex; flex-direction: column; gap: 6px; }
.office-info li { display: flex; gap: 8px; font-size: 13px; color: var(--ink-60); align-items: flex-start; }
.office-info li .ico { font-size: 13px; margin-top: 1px; flex-shrink: 0; opacity: 0.7; }
.office-info li a { color: var(--green); font-weight: 600; }

/* ══════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════ */
.servicesHome { padding: 70px 0; background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }

.service-item {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--ink-10);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }
.service-icon { font-size: 28px; margin-bottom: 14px; }
.service-item h3 { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 10px; }
.service-item h3 a { color: inherit; transition: color 0.2s; }
.service-item h3 a:hover { color: var(--green); }
.service-item p { font-size: 13px; color: var(--ink-60); line-height: 1.65; }

.view-all-wrap { text-align: center; margin-top: 36px; }
.btn-view-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--green);
  border: 1.5px solid var(--green); padding: 10px 24px; border-radius: 8px;
  transition: all 0.2s;
}
.btn-view-all:hover { background: var(--green); color: var(--white); }

/* ══════════════════════════════════════════
   NEWS SECTION
══════════════════════════════════════════ */
.newsHome { padding: 70px 0; background: var(--white); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }

/* Query Loop block output — target WP's actual classes */
.newsHome .wp-block-query { margin-top: 40px; }
.newsHome .wp-block-post-template {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.newsHome .wp-block-post-template li { list-style: none; }

.news-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--ink-10);
  transition: box-shadow 0.2s;
}
.news-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.news-thumb {
  display: block; width: 100%; height: 180px;
  background: var(--cream); overflow: hidden;
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.news-card:hover .news-thumb img { transform: scale(1.04); }
.news-body { padding: 16px 18px; }
.news-date { font-size: 11px; color: var(--ink-60); margin-bottom: 6px; }
.news-body h3 { font-size: 14px; font-weight: 600; line-height: 1.5; }
.news-body h3 a { color: var(--ink); transition: color 0.2s; }
.news-body h3 a:hover { color: var(--green); }

/* WP Query Loop native elements */
.newsHome .wp-block-post-featured-image { height: 180px; overflow: hidden; }
.newsHome .wp-block-post-featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.newsHome li:hover .wp-block-post-featured-image img { transform: scale(1.04); }
.newsHome .wp-block-post-date { font-size: 11px; color: var(--ink-60); margin-bottom: 6px; }
.newsHome .wp-block-post-title { font-size: 14px; font-weight: 600; line-height: 1.5; }
.newsHome .wp-block-post-title a { color: var(--ink); }
.newsHome .wp-block-post-title a:hover { color: var(--green); }

/* ══════════════════════════════════════════
   PARTNERS SECTION
══════════════════════════════════════════ */
.partnerHome { padding: 70px 0; background: var(--cream); }
.partner-grid {
  display: flex; flex-wrap: wrap;
  gap: 16px; justify-content: center;
  margin-top: 40px;
}
.partner-item {
  width: 160px; height: 80px; border-radius: 8px;
  background: var(--white); border: 1px solid var(--ink-10);
  display: flex; align-items: center; justify-content: center;
  padding: 12px; overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.partner-item:hover { border-color: var(--green); box-shadow: 0 4px 12px rgba(0,97,61,0.1); }
.partner-item img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(0.4); transition: filter 0.2s; }
.partner-item:hover img { filter: grayscale(0); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#vnt-footer { background: var(--ink); color: rgba(255,255,255,0.72); }
.mainFooter { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 48px; }

.footer-col h2 {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--orange); margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-brand span { color: var(--orange); }
.footer-desc { font-size: 13px; line-height: 1.75; margin-bottom: 16px; }
.footer-hotline { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-hotline a { color: var(--orange); }

.footer-addr { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.addr-row { display: flex; gap: 8px; font-size: 13px; align-items: flex-start; }
.addr-row .ico { opacity: 0.55; margin-top: 2px; flex-shrink: 0; }
.addr-row a { color: rgba(255,255,255,0.72); }
.addr-row a:hover { color: var(--orange); }

.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--white); opacity: 0.7;
  transition: opacity 0.2s, transform 0.15s;
}
.footer-social a:hover { opacity: 1; transform: translateY(-2px); }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

.footer-map { margin-top: 16px; border-radius: 8px; overflow: hidden; height: 160px; }
.footer-map iframe { width: 100%; height: 100%; border: 0; }

.botFoot { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.botFoot .wrapper { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.copyright { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════ */
.floating-actions { position: fixed; right: 16px; bottom: 100px; z-index: 500; display: flex; flex-direction: column; gap: 10px; }
.fab {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.fab-zalo  { background: #0068ff; }
.fab-phone { background: #e53e3e; animation: ring 3s infinite; }
@keyframes ring {
  0%,88%,100% { transform: rotate(0); }
  92% { transform: rotate(-15deg); }
  96% { transform: rotate(15deg); }
}

#js-go-top {
  position: fixed; right: 16px; bottom: 56px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green); color: var(--white); border: none;
  font-size: 16px; cursor: pointer; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
#js-go-top.is-visible { opacity: 1; pointer-events: auto; }
#js-go-top:hover { transform: translateY(-3px); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 960px) {
  .about-contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid      { grid-template-columns: 1fr 1fr; }
  .news-grid          { grid-template-columns: 1fr 1fr; }
  .newsHome .wp-block-post-template { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid        { grid-template-columns: 1fr; gap: 32px; }
  .footer-map         { display: none; }
  .nav-links          { display: none; }
  .nav-hamburger      { display: flex; }
  .topBar-tools .lang-btn { display: none; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .news-grid     { grid-template-columns: 1fr; }
  .newsHome .wp-block-post-template { grid-template-columns: 1fr !important; }
  .partner-item  { width: 130px; height: 64px; }
  .bannerHome    { height: 220px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ══════════════════════════════════════════
   STICKY FIX — WordPress FSE wrapper override
══════════════════════════════════════════ */

/* Đảm bảo không có element cha nào block sticky */
html, body,
.wp-site-blocks,
.wp-block-template-part.site-header {
  overflow: visible !important;
}

/* Header template part wrapper — reset để không interfere */
.wp-block-template-part.site-header {
  position: static !important;
  display: block;
}

/* #vnt-header là element thực sự sticky */
#vnt-header {
  position: sticky !important;
  top: 0;
  z-index: 111;
  background: var(--white);
}

/* Admin bar offset */
.admin-bar #vnt-header {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  .admin-bar #vnt-header {
    top: 46px !important;
  }
}
/* Force sticky — override mọi WordPress wrapper */
.wp-site-blocks { overflow: unset !important; }
.wp-site-blocks > header { overflow: unset !important; position: static !important; }
#vnt-header { position: sticky !important; top: 0 !important; z-index: 111 !important; }
.admin-bar #vnt-header { top: 32px !important; }
@media (max-width: 782px) { .admin-bar #vnt-header { top: 46px !important; } }

/* ══════════════════════════════════════════
   ABOUT + CONTACT SECTION
══════════════════════════════════════════ */
.aboutContactHome { padding: 60px 0; background: var(--white); }
.about-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.titleHome { text-align: center; margin-bottom: 30px; }
.titleLine {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: clamp(20px, 2.5vw, 26px); font-weight: 700;
  color: var(--green); line-height: 1.3;
}
.titleLine a { color: inherit; }
.titleLine a:hover { color: var(--orange); }
.cicleLogo {
  display: inline-block; width: 12px; height: 12px;
  border-radius: 50%; background: var(--orange); flex-shrink: 0;
}

.infoAbout p { font-size: 16px; color: var(--ink-60); line-height: 1.75; margin-bottom: 14px; }
.btn-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--green);
  border: 1.5px solid var(--green); padding: 8px 18px; border-radius: 6px;
  margin-top: 10px; transition: all 0.2s;
}
.btn-more:hover { background: var(--green); color: var(--white); }

.titleAndShare { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.titleAndShare .title { font-size: 16px; font-weight: 700; color: var(--green); }
.titleAndShare .linkShare { display: flex; gap: 6px; }

.lstboxShow { display: flex; flex-direction: column; gap: 16px; }
.boxShow { background: var(--cream); border-radius: 8px; padding: 18px 20px; }
.titleBox { font-size: 14px; font-weight: 700; color: var(--green); margin-bottom: 10px; }
.contentBoxAll ul { display: flex; flex-direction: column; gap: 6px; }
.contentBoxAll ul li { display: flex; gap: 8px; font-size: 13px; color: var(--ink-60); align-items: flex-start; }
.contentBoxAll ul li .ico { flex-shrink: 0; opacity: 0.6; margin-top: 2px; }
.contentBoxAll ul li a { color: var(--green); font-weight: 600; }
.contentBoxAll ul li a:hover { color: var(--orange); }

/* ══════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════ */
.servicesHome { padding: 60px 0; background: var(--cream); }
.listServices .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.listServices .item {
  background: var(--white); border-radius: 8px; padding: 24px 20px;
  border: 1px solid var(--ink-10);
  transition: box-shadow 0.2s, transform 0.2s;
}
.listServices .item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-3px); }
.listServices .item .icon { font-size: 26px; margin-bottom: 12px; }
.listServices .item h3 { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 8px; }
.listServices .item h3 a { color: inherit; }
.listServices .item h3 a:hover { color: var(--green); }
.listServices .item .tend { font-size: 13px; color: var(--ink-60); line-height: 1.6; }

.viewSlider { text-align: center; margin-top: 30px; }
.viewSlider a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--green);
  border: 1.5px solid var(--green); padding: 9px 22px; border-radius: 6px;
  transition: all 0.2s;
}
.viewSlider a:hover { background: var(--green); color: var(--white); }

/* ══════════════════════════════════════════
   NEWS SECTION
══════════════════════════════════════════ */
.newsHome { padding: 60px 0; background: var(--white); }
.slidernews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.slidernews .item {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--ink-10);
  transition: box-shadow 0.2s;
}
.slidernews .item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.slidernews .item .thumb {
  display: block; width: 100%; height: 170px;
  background: var(--cream); overflow: hidden;
}
.slidernews .item .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.slidernews .item:hover .thumb img { transform: scale(1.04); }
.slidernews .item .decs { padding: 14px 16px; }
.slidernews .item .decs .date { font-size: 11px; color: var(--ink-60); margin-bottom: 6px; }
.slidernews .item .decs h3 { font-size: 14px; font-weight: 600; line-height: 1.5; }
.slidernews .item .decs h3 a { color: var(--ink); }
.slidernews .item .decs h3 a:hover { color: var(--green); }

/* ══════════════════════════════════════════
   PARTNERS SECTION
══════════════════════════════════════════ */
.partnerHome { padding: 60px 0; background: var(--cream); }
.listpartner {
  display: flex; flex-wrap: wrap;
  gap: 14px; justify-content: center;
}
.listpartner .thumb {
  width: 150px; height: 70px; border-radius: 6px;
  background: var(--white); border: 1px solid var(--ink-10);
  display: flex; align-items: center; justify-content: center;
  padding: 10px; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.listpartner .thumb:hover { border-color: var(--green); box-shadow: 0 2px 10px rgba(0,97,61,0.1); }
.listpartner .thumb img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  filter: grayscale(0.3); transition: filter 0.2s;
}
.listpartner .thumb:hover img { filter: grayscale(0); }

/* ════════════════════════════════════════
