:root {
  --pb-bg: #ffffff;
  --pb-gray: #f4f5f3;
  --pb-text: #1b1b1b;
  --pb-muted: #595959;
  --pb-border: #e2e2e2;
  --pb-brand: #adff2f;
  --pb-brand-hover: #639700;
  --pb-brand-dark: #588217;
  --pb-brand-text: #213600;
  --pb-heading-font: "Roboto", system-ui, sans-serif;
  --pb-body-font: "Source Sans Pro", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

body {
  font-family: var(--pb-body-font);
  color: var(--pb-text);
  background-color: var(--pb-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--pb-heading-font);
}

/* ---------- Page loader ---------- */
#page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e2e2e2;
  border-top-color: var(--pb-brand-dark);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}

/* ---------- Scroll progress ---------- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pb-brand), var(--pb-brand-dark));
  z-index: 9998;
  width: 0%;
  transition: width 0.1s ease;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--pb-brand);
  color: var(--pb-brand-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--pb-brand-hover);
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- Custom scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

/* ---------- Site header ---------- */
.site-header {
  background-color: #ffffff;
  padding: 0;
}

.container {
  max-width: 1280px;
}

.header-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 8px;
  position: relative;
}

.header-logo {
  display: block;
}

.header-logo img {
  width: 375px;
  height: 192px;
  object-fit: contain;
}

@media (min-width: 1200px) {
  .header-logo img {
    width: 445px;
    height: 192px;
  }
}

.header-nav-row {
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  padding-bottom: 24px;
}

.header-nav-list {
  flex-direction: row;
  justify-content: center;
  margin: 0 auto;
}

.header-toggler {
  display: none;
}

.navbar-collapse {
  display: flex !important;
  flex-grow: 0;
  flex-basis: auto;
}

.site-header .nav-link {
  color: #151515;
  font-family: var(--pb-heading-font);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.214em;
  text-transform: uppercase;
  padding: 4px 16px !important;
  transition: color 0.2s ease;
  position: relative;
}

.site-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: transparent;
  transition: background-color 0.2s ease;
}

.site-header .nav-link:hover {
  color: #537d13;
}

.site-header .nav-link.active::after {
  background-color: var(--pb-brand-hover);
}

.navbar-toggler {
  margin: 0 auto;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .header-toggler {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 24px;
  }

  .navbar-collapse {
    display: none !important;
  }

  .navbar-collapse.show {
    display: block !important;
  }

  .site-header .navbar-collapse {
    background: #fff;
    border-top: 1px solid var(--pb-border);
    border-radius: 8px;
    margin-top: 0.75rem;
    padding: 0.75rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .site-header .nav-link {
    padding: 0.75rem 1.25rem !important;
    border-bottom: none;
    border-left: 3px solid transparent;
    border-radius: 0;
    letter-spacing: 0.1em;
  }

  .site-header .nav-link:hover,
  .site-header .nav-link.active {
    background: var(--pb-gray);
    border-left-color: var(--pb-brand-dark);
    color: var(--pb-brand-hover);
  }

  .header-nav-list {
    flex-direction: column;
  }
}
/* ---------- Welcome ---------- */
.welcome-section {
  padding: 56px 0;
}

.welcome {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.welcome-media {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
}

.welcome-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.welcome-panel {
  flex: 0 0 388px;
  min-width: 0;
  background-color: rgb(218, 255, 187);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.welcome-inner {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.welcome-eyebrow {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgb(83, 125, 19);
  letter-spacing: 0.125em;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 16px;
}

.welcome-title {
  font-family: "Source Sans Pro", arial, sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: rgb(21, 21, 21);
  letter-spacing: 0.023em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.welcome-sub {
  font-family: "Roboto", arial, sans-serif;
  font-size: 18px;
  color: rgb(87, 87, 87);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.btn-welcome {
  background-color: rgb(163, 239, 50);
  border: none;
  color: rgb(21, 22, 20);
  font-family: "Roboto", arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.214em;
  text-transform: uppercase;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  border-radius: 0;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-welcome:hover {
  background-color: rgb(161, 222, 91);
  color: rgb(21, 22, 20);
}

/* ---------- Mission ---------- */
.mission-section {
  background-color: #ffffff;
  padding: 40px 0;
}

.mission-heading {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: rgb(27, 27, 27);
  letter-spacing: 0.045em;
  line-height: 1.25;
  margin-bottom: 24px;
  text-align: center;
}

.mission-text {
  font-family: "Roboto", arial, sans-serif;
  font-size: 18px;
  color: rgb(94, 94, 94);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* ---------- Solutions ---------- */
.solutions-section {
  background-color: #ffffff;
  padding: 40px 0;
}

.solutions-heading {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgb(88, 130, 23);
  letter-spacing: 0.125em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 16px;
}

.solutions-gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4px;
}

.solution-item {
  width: 33.3333%;
  padding: 4px;
  box-sizing: border-box;
}

.solution-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* ---------- Lightbox ---------- */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  padding: 4px;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: rgb(167, 249, 31);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
  padding: 8px 12px;
  transition: color 0.2s ease;
}

.lightbox-prev {
  left: -48px;
}

.lightbox-next {
  right: -48px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: rgb(167, 249, 31);
}

.lightbox-counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: "Roboto", arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
}

@media (max-width: 767.98px) {
  .lightbox-prev {
    left: -32px;
  }
  .lightbox-next {
    right: -32px;
  }
  .lightbox-close {
    top: -40px;
  }
}

/* ---------- Contact ---------- */
.contact-section {
  background-color: #ffffff;
  padding: 40px 0;
}

.contact-heading {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgb(88, 130, 23);
  letter-spacing: 2.25px;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 32px;
  text-align: center;
}

.contact-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.contact-info {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 0 24px 48px 24px;
}

.contact-info h4 {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: rgb(27, 27, 27);
  line-height: 1.25;
  margin-bottom: 24px;
}

.contact-info p {
  font-family: "Roboto", arial, sans-serif;
  font-size: 18px;
  color: rgb(94, 94, 94);
  line-height: 1.5;
  margin-bottom: 24px;
}

.contact-details {
  margin: 24px 0;
}

.contact-details p {
  font-family: "Roboto", arial, sans-serif;
  font-size: 18px;
  color: rgb(94, 94, 94);
  line-height: 1.5;
  margin-bottom: 24px;
}

.contact-details strong {
  font-weight: 400;
}

.contact-image {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
  display: flex;
  padding: 0 24px;
}

.contact-image img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.btn-contact {
  background-color: rgb(167, 249, 31);
  border: none;
  color: rgb(26, 28, 25);
  font-family: "Roboto", arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3.424px;
  text-transform: uppercase;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  border-radius: 0;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.btn-contact:hover {
  background-color: rgb(140, 210, 40);
  color: rgb(26, 28, 25);
}

/* ---------- Contact form toggle ---------- */
.contact-info {
  position: relative;
  overflow: hidden;
}

.contact-info-view {
  transition: transform 0.8s ease, opacity 0.4s ease;
  transform: translateX(0);
  opacity: 1;
}

.contact-info-view.hidden {
  transform: translateX(-100%);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.contact-form-view {
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.4s ease 0.1s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.contact-form-view.active {
  transform: translateX(0);
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.contact-form-title {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: rgb(27, 27, 27);
  margin-bottom: 24px;
}

.contact-form-title a {
  color: rgb(27, 27, 27);
  text-decoration: none;
}

.contact-form-field {
  margin-bottom: 16px;
  position: relative;
}

.contact-form-field input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgb(226, 226, 226);
  padding: 23px 8px 8px;
  font-family: "Roboto", arial, sans-serif;
  font-size: 18px;
  color: rgb(94, 94, 94);
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form-field input:focus {
  border-bottom-color: rgb(88, 130, 23);
}

.contact-form-field input::placeholder {
  color: transparent;
}

.contact-form-field label {
  position: absolute;
  top: 30%;
  left: 8px;
  font-family: "Roboto", arial, sans-serif;
  font-size: 18px;
  color: rgb(94, 94, 94);
  pointer-events: none;
  transition: all 0.2s ease;
}

.contact-form-field input:focus + label,
.contact-form-field input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 12px;
  color: rgb(88, 130, 23);
}

.contact-form-field textarea {
  width: 100%;
  background-color: transparent;
  border: 1px solid rgb(226, 226, 226);
  border-radius: 3px;
  padding: 16px 8px;
  font-family: "Roboto", arial, sans-serif;
  font-size: 18px;
  color: rgb(94, 94, 94);
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s ease;
}

.contact-form-field textarea:focus {
  border-color: rgb(88, 130, 23);
}

.contact-form-actions {
  margin-top: 24px;
}

.contact-cancel {
  font-family: "Roboto", arial, sans-serif;
  font-size: 16px;
  color: rgb(27, 27, 27);
  text-decoration: none;
  margin-left: 24px;
  transition: color 0.2s ease;
}

.contact-cancel:hover {
  color: rgb(88, 130, 23);
}

.contact-form-attach {
  margin: 8px 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-form-attach label {
  font-family: "Roboto", arial, sans-serif;
  font-size: 18px;
  color: rgb(88, 130, 23);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.contact-form-attach label:hover {
  color: rgb(49, 79, 0);
}

.contact-form-attach label svg {
  flex-shrink: 0;
}

.contact-attach-count {
  font-family: "Roboto", arial, sans-serif;
  font-size: 14px;
  color: rgb(89, 89, 89);
}

/* ---------- Subscribe ---------- */
.subscribe-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.24)), url("../images/subscribe.jpg");
  background-size: cover;
  background-position: center;
  padding: 40px 0;
}

.subscribe-section .container {
  max-width: 600px;
  text-align: center;
}

.subscribe-title {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: rgb(255, 255, 255);
  letter-spacing: 0.031em;
  line-height: 1.4;
  margin-bottom: 24px;
}

.subscribe-form {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 16px;
}

.subscribe-field {
  flex-grow: 1;
  flex-basis: 0%;
  position: relative;
}

.subscribe-input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgb(255, 255, 255);
  border-radius: 0;
  padding: 23px 8px 8px;
  font-family: "Roboto", arial, sans-serif;
  font-size: 12px;
  color: rgb(255, 255, 255);
  outline: none;
}

.subscribe-input::placeholder {
  color: transparent;
}

.subscribe-label {
  position: absolute;
  top: 30%;
  left: 8px;
  font-family: "Roboto", arial, sans-serif;
  font-size: 16px;
  color: rgb(255, 255, 255);
  pointer-events: none;
  transition: all 0.2s ease;
}

.subscribe-input:focus + .subscribe-label,
.subscribe-input:not(:placeholder-shown) + .subscribe-label {
  top: 0;
  font-size: 12px;
}

.btn-subscribe {
  background-color: rgb(255, 255, 255);
  border: none;
  color: rgb(0, 0, 0);
  font-family: "Roboto", arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-height: 56px;
  padding: 8px 32px;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.btn-subscribe:hover {
  background-color: rgb(230, 230, 230);
}

.subscribe-feedback {
  color: #fff;
  font-size: 14px;
  margin-top: 12px;
}

/* ---------- Footer ---------- */
.pb-footer {
  background-color: #ffffff;
  padding: 40px 0;
  text-align: center;
}

.footer-text {
  font-family: "Roboto", arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgb(27, 27, 27);
  letter-spacing: 0.083em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-powered {
  font-family: "Roboto", arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgb(89, 89, 89);
  text-transform: uppercase;
  margin: 0;
}

/* ---------- News list page ---------- */
.news-section {
  padding: 40px 0 40px;
  background-color: #ffffff;
}

.news-page-title {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 2.25px;
  text-transform: uppercase;
  color: rgb(88, 130, 23);
  line-height: 1.4;
  margin-bottom: 32px;
  text-align: left;
}

.news-list {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .news-list {
    padding-left: 16.67%;
  }
}

.news-item {
  display: flex;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgb(226, 226, 226);
  text-decoration: none;
  color: inherit;
}

.news-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.news-item-logo {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  margin-right: 32px;
  background-image: url("../images/logo.png");
  background-size: contain;
  background-position: 50% 0%;
  background-repeat: no-repeat;
}

.news-item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.news-date-row {
  margin-bottom: 16px;
}

.news-date {
  font-family: "Roboto", arial, sans-serif;
  font-size: 14px;
  color: rgb(89, 89, 89);
  font-weight: 400;
  margin: 0;
}

.news-title-row {
  margin-bottom: 16px;
}

.news-item-title {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: rgb(27, 27, 27);
  line-height: 24.75px;
  letter-spacing: 0.99px;
  margin-bottom: 16px;
}

.news-item-meta {
  font-family: "Roboto", arial, sans-serif;
  color: rgb(89, 89, 89);
  font-size: 14px;
  margin: 0;
}

.news-continue {
  font-family: "Roboto", arial, sans-serif;
  font-size: 14px;
  color: rgb(88, 130, 23);
  font-weight: 400;
  text-decoration: none;
}

.news-continue:hover {
  color: rgb(49, 79, 0);
}

/* ---------- News detail announcements bar ---------- */
.news-announcements-bar {
  background-color: #ffffff;
  padding: 40px 0 0;
}

.news-announcements-title {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgb(88, 130, 23);
  letter-spacing: 2.25px;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
}

.news-all-posts {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgb(88, 130, 23);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 40px;
  transition: color 0.2s ease;
}

.news-all-posts:hover {
  color: rgb(49, 79, 0);
}

.news-all-posts svg {
  flex-shrink: 0;
}

/* ---------- News detail page ---------- */
.news-detail-section {
  padding: 40px 0;
  background-color: #ffffff;
}

.detail-layout {
  display: flex;
  align-items: flex-start;
}

.detail-main {
  flex: 1 1 66.6667%;
  min-width: 0;
  padding: 0 40px;
  border-right: 1px solid rgb(232, 234, 232);
  margin-right: 32px;
}

.detail-sidebar {
  flex: 1 1 33.3333%;
  min-width: 0;
  padding: 0 40px 0 0;
}

.news-detail {
  max-width: 100%;
}

.news-detail-title {
  font-family: "Source Sans Pro", arial, sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: rgb(27, 27, 27);
  line-height: 40.5px;
  margin-bottom: 8px;
  letter-spacing: 1.116px;
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 24px;
  font-size: 18px;
  color: rgb(0, 0, 0);
  font-family: "Roboto", arial, sans-serif;
  line-height: normal;
}

.news-detail-date,
.news-detail-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.news-detail-date::before {
  content: "\f073";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8rem;
  color: rgb(88, 130, 23);
}

.news-detail-location::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8rem;
  color: rgb(88, 130, 23);
}

.news-detail-image {
  float: left;
  width: 338px;
  height: 125px;
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  margin: 0 16px 10px 0;
}

.news-detail-body {
  font-family: "Roboto", arial, sans-serif;
  font-size: 18px;
  line-height: 27px;
  color: rgb(94, 94, 94);
}

.news-detail-body p {
  margin-bottom: 10px;
}

.news-detail-body a {
  color: rgb(88, 130, 23);
  /*text-decoration: none;*/
  transition: color 0.2s ease;
}

.news-detail-body a:hover {
  color: rgb(49, 79, 0);
}

.news-share {
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.news-share-label {
  font-family: "Roboto", arial, sans-serif;
  font-size: 18px;
  color: rgb(27, 27, 27);
}

.news-share-link {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  color: inherit;
  transition: color 0.2s ease;
}

.news-share-link:hover {
  color: rgb(49, 79, 0);
}

/* ---------- Recent Posts ---------- */
.recent-posts {
  max-width: 100%;
  margin: 0;
  padding-top: 0;
}

.recent-posts-title {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: rgb(27, 27, 27);
  letter-spacing: 1.08px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
}

.recent-post-item {
  display: flex;
  margin-bottom: 24px;
  text-decoration: none;
  color: inherit;
  gap: 16px;
}

.recent-post-item:last-child {
  margin-bottom: 0;
}

.recent-post-thumb {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  background-image: url("../images/logo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.recent-post-body {
  flex: 1;
  min-width: 0;
}

.recent-post-title {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgb(27, 27, 27);
  line-height: 27px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-post-date {
  font-family: "Roboto", arial, sans-serif;
  font-size: 16px;
  color: rgb(89, 89, 89);
  font-weight: 400;
  margin: 4px 0 0;
  line-height: 24px;
}

.recent-post-item:hover .recent-post-title {
  color: rgb(49, 79, 0);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .welcome {
    flex-direction: column;
  }

  .welcome-media,
  .welcome-panel {
    flex: 1 1 100%;
  }

  .welcome-title {
    font-size: 32px;
  }

  .solution-item {
    width: 50%;
  }

  .contact-layout {
    flex-direction: column;
  }

  .contact-image {
    order: -1;
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 0;
    margin-bottom: 24px;
  }

  .contact-image img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }

  .contact-info {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
  }

  .subscribe-form {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-subscribe {
    width: 100%;
  }

  .detail-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .detail-main {
    flex: 1 1 100%;
    padding: 0;
    border-right: none;
    margin-right: 0;
  }

  .detail-sidebar {
    flex: 1 1 100%;
    width: 100%;
    padding: 0;
  }

  .header-toggler {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 24px;
  }

  .navbar-collapse {
    display: none !important;
  }

  .navbar-collapse.show {
    display: block !important;
  }

  .site-header .navbar-collapse {
    background: #fff;
    border-top: 1px solid var(--pb-border);
    border-radius: 8px;
    margin-top: 0.75rem;
    padding: 0.75rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .site-header .nav-link {
    padding: 0.75rem 1.25rem !important;
    border-bottom: none;
    border-left: 3px solid transparent;
    border-radius: 0;
    letter-spacing: 0.1em;
  }

  .site-header .nav-link:hover,
  .site-header .nav-link.active {
    background: var(--pb-gray);
    border-left-color: var(--pb-brand-dark);
    color: var(--pb-brand-hover);
  }

  .header-nav-list {
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .welcome-title {
    font-size: 24px;
  }

  .solution-item {
    width: 50%;
  }

  .news-item {
    flex-direction: column;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .news-item-logo {
    width: 120px;
    height: 120px;
    margin-right: 0;
    margin-bottom: 16px;
  }

  .news-item-title {
    font-size: 18px;
    line-height: 1.35;
  }

  .news-continue {
    font-size: 14px;
  }

  .recent-post-item {
    margin-bottom: 24px;
  }

  .recent-post-thumb {
    width: 80px;
    height: 80px;
  }

  .recent-post-title {
    font-size: 16px;
    line-height: 24px;
  }

  .recent-post-date {
    font-size: 14px;
    line-height: 20px;
  }

  .news-detail-image {
    float: none;
    width: 100%;
    max-width: 338px;
    height: 220px;
    margin: 0 auto 24px;
  }

  .news-detail-body {
    font-size: 1rem;
  }
}

/* ---------- Selection ---------- */
::selection {
  background: var(--pb-brand);
  color: var(--pb-brand-text);
}

/* ---------- Focus visible ---------- */
:focus-visible {
  outline: 2px solid var(--pb-brand-dark);
  outline-offset: 2px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
