@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/ijwkbxyifdniv7nbrxw.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;
}

:root {
  --ast-global-color-0: #54B435;
  --ast-global-color-1: #54B435;
  --ast-global-color-2: #0F172A;
  --ast-global-color-3: #2F3B40;
  --ast-global-color-4: #EDFBE2;
  --ast-global-color-5: #FFFFFF;
  --ast-global-color-6: #e5e7eb;
  --ast-global-color-7: #0C1406;
  --ast-global-color-8: #222222;
  --ast-border-color: #dddddd;
  --ast-header-background: #313A40;
  --ast-header-accent: #FFFFFF;

  /* Override template default orange with branding green */
  --thm-base: var(--ast-global-color-0);
  --thm-base-hover: var(--ast-global-color-1);
  --thm-base-rgb: 84, 180, 53;
  --thm-base-hue: var(--ast-global-color-4);
}

html,
body {
  overflow-x: clip;
  overflow-y: visible;
}

body[e-page="index"] {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #FFFFFF;
}

body[e-page="index"] h1,
body[e-page="index"] h2,
body[e-page="index"] h3,
body[e-page="index"] h4,
body[e-page="index"] h5,
body[e-page="index"] h6 {
  font-family: Arial, Helvetica, sans-serif;
}

.fb-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--ast-global-color-3);
  font-size: 16px;
  line-height: 1.6;
  background-color: #ECFAE0;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--ast-global-color-2);
  line-height: 1.2;
  margin-top: 0;
}

a {
  color: var(--ast-global-color-2);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--ast-global-color-0);
}

/* Header */
.ast-above-header-socials {
  display: flex;
  gap: 15px;
}

.ast-primary-header {
  background-color: var(--ast-header-background);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.ast-primary-header .ast-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.site-logo img {
  max-height: 100px;
  width: auto;
  display: block;
}

.site-logo a {
  display: block;
}

.main-navigation-desktop {
  display: flex;
  align-items: center;
}

.main-navigation-desktop > ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 30px;
}

.main-navigation-desktop > ul > li {
  position: relative;
}

.main-navigation-desktop > ul > li > a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #ffffff;
  text-transform: uppercase;
}

.main-navigation-desktop > ul > li > a:hover,
.main-navigation-desktop > ul > li.active > a {
  color: var(--ast-header-accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.nav-dropdown-arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.main-navigation-desktop .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  min-width: 290px;
  padding: 8px 0;
  margin: 0;
  gap: 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid var(--ast-border-color);
  border-radius: 5px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.main-navigation-desktop .sub-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
}

.main-navigation-desktop .sub-menu a {
  display: block;
  padding: 11px 18px;
  color: var(--ast-global-color-2);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: none;
  white-space: nowrap;
}

.main-navigation-desktop .sub-menu a:hover,
.main-navigation-desktop .sub-menu li.active > a {
  color: var(--ast-global-color-0);
  background: #f8fafc;
}

.main-navigation-desktop .nav-item-19:hover > .sub-menu,
.main-navigation-desktop .nav-item-19:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.ast-header-btn {
  display: inline-block;
  background-color: var(--ast-global-color-0);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s;
}

.ast-header-btn:hover {
  background-color: var(--ast-global-color-1);
  color: #ffffff;
}

/* Home Slider Banner */
.fb-home-banner {
  position: relative;
  min-height: 795px;
  overflow: hidden;
  background: #111827;
  color: #ffffff;
}

.fb-home-banner__track,
.fb-home-banner__slide {
  position: absolute;
  inset: 0;
}

.fb-home-banner__slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease-out, visibility 180ms ease-out;
}

.fb-home-banner__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.fb-home-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fb-home-banner__shade {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
}

.fb-home-banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: min(1200px, calc(100% - 48px));
  min-height: 795px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 15px;
}

.fb-home-banner__eyebrow {
  font-weight: 700;
  color: var(--ast-global-color-0);
  font-size: 18px;
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.fb-home-banner h1 {
  max-width: 800px;
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 56px;
  line-height: 1.15;
  font-weight: 800;
}

.fb-home-banner__text {
  max-width: 700px;
  margin: 0 0 30px;
  color: #e5e7eb;
  font-size: 20px;
  line-height: 1.5;
}

.fb-home-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 30px;
  color: #ffffff;
  background: var(--ast-global-color-0);
  border: 1px solid var(--ast-global-color-0);
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fb-home-banner__button:hover {
  background: var(--ast-global-color-1);
  border-color: var(--ast-global-color-1);
  color: #ffffff;
}

.fb-home-banner__control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 45px !important;
  height: 45px !important;
  padding: 0 !important;
  min-width: auto !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  background: rgba(17, 24, 39, 0.4) !important;
  color: #ffffff !important;
  font-size: 28px !important;
  cursor: pointer !important;
  transform: translateY(-50%) !important;
  border-radius: 50% !important;
  transition: all 0.3s !important;
}

.fb-home-banner__control:hover {
  background: var(--ast-global-color-0);
  border-color: var(--ast-global-color-0);
}

.fb-home-banner__control--prev {
  left: 20px;
}

.fb-home-banner__control--next {
  right: 20px;
}

.fb-home-banner__sound {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  border-radius: 50% !important;
  background: rgba(17, 24, 39, 0.55) !important;
  color: #ffffff !important;
  font-size: 20px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  transition: background-color 0.2s, border-color 0.2s !important;
}

.fb-home-banner__sound > .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: 0;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.fb-home-banner__sound > .fa::before {
  display: block;
  line-height: 1;
}

.fb-home-banner__sound:hover,
.fb-home-banner__sound:focus-visible {
  border-color: #ffffff !important;
  background: rgba(17, 24, 39, 0.8) !important;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.fb-home-banner__dots {
  position: absolute;
  left: 50%;
  bottom: 25px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.fb-home-banner__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.fb-home-banner__dot.is-active {
  background: #ffffff;
}

/* Sections & Grid */
.fb-section {
  padding: 80px 0;
  position: relative;
}

.fb-section-bg {
  background-color: var(--ast-global-color-4);
}

.fb-section--green {
  background-color: #EDFBE2;
}

.fb-services-section {
  background-color: #313B40;
}

.fb-services-section .fb-section-title h2 {
  color: #ffffff;
}

.fb-services-section .fb-section-title p {
  color: #e5e7eb;
}

.fb-section--white {
  background-color: #ffffff;
}

.fb-contact-section {
  background-color: #ECFAE0;
}

.fb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.fb-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.fb-col-12 { width: 100%; padding: 0 15px; }
.fb-col-6 { width: 50%; padding: 0 15px; }
.fb-col-4 { width: 33.333%; padding: 0 15px; display: flex; flex-direction: column; }
.fb-col-3 { width: 25%; padding: 0 15px; }
.fb-col-8 { width: 66.666%; padding: 0 15px; }

/* Subheader / Heading Styles */
.fb-section-title {
  margin-bottom: 50px;
}

.fb-section-title.centered {
  text-align: center;
}

.fb-section-title span.eyebrow {
  display: block;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--ast-global-color-0);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.fb-section-title h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.fb-section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--ast-global-color-3);
  font-size: 16px;
}

/* Buttons */
.fb-btn {
  display: inline-block;
  background-color: var(--ast-global-color-0);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.fb-btn:hover {
  background-color: var(--ast-global-color-1);
  color: #ffffff;
}

.fb-btn-outline {
  display: inline-block;
  border: 2px solid var(--ast-global-color-0);
  color: var(--ast-global-color-0);
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  background: transparent;
}

.fb-btn-outline:hover {
  background-color: var(--ast-global-color-0);
  color: #ffffff;
}

/* Quick enquiry Form Card */
.fb-form-inline {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.fb-form-grid {
  display: flex;
  gap: 20px;
  align-items: center;
}

.fb-form-grid input,
.fb-form-grid select,
.fb-form-grid textarea {
  flex: 1;
  height: 50px;
  border: 1px solid var(--ast-border-color);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}

.fb-form-grid input:focus {
  border-color: var(--ast-global-color-0);
}

.fb-form-grid button {
  height: 50px;
  padding: 0 35px;
}

/* About Us Section */
.fb-about-img {
  position: relative;
}

.fb-about-img img {
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.fb-about-content {
  padding-left: 30px;
}

.fb-about-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px;
}

.fb-about-list li {
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.fb-about-list li i {
  color: var(--ast-global-color-0);
  font-size: 18px;
}

/* Stats Counter Grid */
.fb-stats-section {
  padding: 0;
}

.fb-stats-row {
  --fb-stat-green: #28863A;
  --fb-stat-pale: #EDFBE2;
  --fb-stat-navy: #0F172A;
  --fb-stat-green-deep: #267A36;
  color: #ffffff;
  margin: 40px 0;
}

.fb-stats-row > .fb-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.fb-stats-row .fb-col-3 {
  width: auto;
  min-width: 0;
  padding: 0;
}

.fb-stat-item {
  display: flex;
  min-height: 210px;
  height: 100%;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  text-align: center;
}

.fb-stats-row .fb-col-3:nth-child(1) .fb-stat-item {
  background-color: var(--fb-stat-green);
}

.fb-stats-row .fb-col-3:nth-child(2) .fb-stat-item {
  color: var(--fb-stat-navy);
  background-color: var(--fb-stat-pale);
}

.fb-stats-row .fb-col-3:nth-child(3) .fb-stat-item {
  background-color: var(--fb-stat-navy);
}

.fb-stats-row .fb-col-3:nth-child(4) .fb-stat-item {
  background-color: var(--fb-stat-green-deep);
}

body[e-page="index"] .fb-stat-item h3 {
  font-family: 'Rubik', Arial, sans-serif;
  font-size: 40px;
  line-height: 1.15;
  color: inherit;
  margin: 0 0 8px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.fb-stat-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: inherit;
}

@media (max-width: 767px) {
  .fb-stats-row > .fb-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fb-stat-item {
    min-height: 160px;
    padding: 28px 12px;
  }

  body[e-page="index"] .fb-stat-item h3 {
    font-size: 34px;
  }
}

/* Service Card style */
.fb-service-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  height: calc(100% - 30px);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.fb-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.fb-service-card img {
  width: 100%;
  height: auto;
  display: block;
}

.fb-service-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fb-service-body h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.fb-service-body p {
  color: var(--ast-global-color-3);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.fb-service-body .fb-btn-outline {
  margin-top: auto;
  align-self: flex-start;
}

.fb-model-request-card {
  position: relative;
  width: 100%;
  min-height: 450px;
  padding: 38px 32px;
  border: 1px solid #dfe7e2;
  background: #f8fafc;
  color: var(--ast-global-color-2);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  font: inherit;
  box-shadow: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.fb-model-request-card:hover {
  border-color: var(--ast-global-color-0);
  background-color: #f8fafc;
  box-shadow: none;
  transform: translateY(-4px);
}

.fb-model-request-card:focus-visible {
  outline: 3px solid rgba(84, 180, 53, 0.3);
  outline-offset: 4px;
}

.fb-model-request-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  border: 1px solid rgba(84, 180, 53, 0.35);
  border-radius: 50%;
  background: #ffffff;
  color: var(--ast-global-color-0);
}

.fb-model-request-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.fb-model-request-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 290px;
}

.fb-model-request-kicker {
  margin-bottom: 10px;
  color: var(--ast-global-color-0);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.fb-model-request-title {
  color: #17251d;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 14px;
}

.fb-model-request-text {
  color: var(--ast-global-color-3);
  font-size: 15px;
  line-height: 1.6;
}

.fb-model-request-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.fb-model-request-tags span {
  padding: 6px 10px;
  border: 1px solid #dfe7e2;
  border-radius: 999px;
  background: #ffffff;
  color: #526158;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.fb-model-request-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  margin-top: 26px;
  padding: 0 22px;
  border-radius: 5px;
  background: var(--ast-global-color-0);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.fb-model-request-action svg,
.fb-list-inquiry-submit svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.fb-inquiry-modal .modal-dialog {
  max-width: 820px;
}

.fb-inquiry-modal .modal-content {
  border: 1px solid #e4e9e6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(17, 31, 22, 0.2);
}

.fb-inquiry-modal .modal-header {
  position: relative;
  align-items: flex-start;
  padding: 30px 34px 26px;
  border-bottom: 1px solid #e4e9e6;
  background: #EDFBE2;
}

.fb-inquiry-modal-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-right: 46px;
}

.fb-inquiry-modal-icon {
  display: inline-flex;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: var(--ast-global-color-0);
  color: #ffffff;
}

.fb-inquiry-modal-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.fb-inquiry-modal-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--ast-global-color-0);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.fb-inquiry-modal .modal-title {
  margin: 0;
  color: #17251d;
  font-size: 26px;
  line-height: 1.3;
}

.fb-inquiry-modal-heading p {
  max-width: 610px;
  margin: 8px 0 0;
  color: #657168;
  font-size: 14px;
  line-height: 1.6;
}

.fb-inquiry-modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  color: #4b5a50;
  font-size: 30px;
  opacity: 1;
}

.fb-inquiry-modal-close:hover,
.fb-inquiry-modal-close:focus {
  background: #e8efea;
  color: #17251d;
  opacity: 1;
}

.fb-inquiry-modal .modal-body {
  max-height: calc(100vh - 180px);
  padding: 28px 34px 34px;
  overflow-y: auto;
}

.fb-inquiry-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #edf1ee;
}

.fb-inquiry-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #526158;
  font-size: 13px;
  font-weight: 600;
}

.fb-inquiry-benefits i {
  color: var(--ast-global-color-0);
  font-size: 11px;
}

.fb-inquiry-modal .fb-list-inquiry-form {
  max-width: none;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.fb-inquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.fb-inquiry-field {
  min-width: 0;
}

.fb-inquiry-field-full {
  grid-column: 1 / -1;
}

.fb-inquiry-field label {
  display: block;
  margin-bottom: 7px;
  color: #26372c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.fb-inquiry-modal .fb-list-inquiry-form input,
.fb-inquiry-modal .fb-list-inquiry-form textarea {
  min-height: 48px;
  margin-bottom: 0;
  border-color: #d9e1dc;
  background: #ffffff;
}

.fb-inquiry-modal .fb-list-inquiry-form input::placeholder,
.fb-inquiry-modal .fb-list-inquiry-form textarea::placeholder {
  color: #97a19a;
}

.fb-inquiry-modal .fb-list-inquiry-form input:focus,
.fb-inquiry-modal .fb-list-inquiry-form textarea:focus {
  border-color: var(--ast-global-color-0);
  box-shadow: 0 0 0 3px rgba(84, 180, 53, 0.14);
}

.fb-inquiry-modal .fb-list-inquiry-form textarea {
  min-height: 118px;
}

.fb-list-inquiry-verify-wrap {
  margin-top: 18px;
}

.fb-list-inquiry-verify {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.fb-list-inquiry-verify input {
  flex: 1;
  margin-bottom: 0;
}

.fb-list-inquiry-verify img {
  height: 48px;
  border-radius: 5px;
  cursor: pointer;
}

.fb-inquiry-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

.fb-inquiry-form-footer p {
  margin: 0;
  color: #7a867e;
  font-size: 12px;
  line-height: 1.5;
}

.fb-list-inquiry-submit {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  font-size: 14px;
}

@media (max-width: 767px) {
  .fb-model-request-card {
    min-height: 0;
    padding: 30px 20px;
  }

  .fb-model-request-content {
    max-width: 100%;
  }

  .fb-model-request-title {
    font-size: 22px;
    line-height: 1.35;
  }

  .fb-model-request-text {
    font-size: 14px;
  }

  .fb-model-request-action {
    width: 100%;
    max-width: 300px;
    padding: 0 16px;
  }

  .fb-inquiry-modal {
    padding-right: 0;
  }

  .fb-inquiry-modal .modal-dialog {
    margin: 12px;
  }

  .fb-inquiry-modal .modal-header {
    padding: 24px 22px 22px;
  }

  .fb-inquiry-modal-heading {
    display: block;
    padding-right: 38px;
  }

  .fb-inquiry-modal-icon {
    margin-bottom: 16px;
  }

  .fb-inquiry-modal .modal-title {
    font-size: 23px;
  }

  .fb-inquiry-modal-close {
    top: 14px;
    right: 14px;
  }

  .fb-inquiry-modal .modal-body {
    max-height: calc(100vh - 120px);
    padding: 24px 22px 26px;
  }

  .fb-inquiry-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fb-inquiry-field-full {
    grid-column: auto;
  }

  .fb-inquiry-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .fb-list-inquiry-submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fb-model-request-card {
    transition: none;
  }

  .fb-model-request-card:hover {
    transform: none;
  }
}

/* Custom Checklist */
.fb-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fb-checklist li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
}

.fb-checklist li i {
  color: var(--ast-global-color-0);
  font-size: 18px;
  margin-top: 3px;
}

/* Reason boxes */
.fb-reason-box {
  display: flex;
  gap: 20px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  width: 100%;
  height: calc(100% - 30px);
}

.fb-reason-icon {
  width: 50px;
  height: 50px;
  background-color: var(--ast-global-color-4);
  color: var(--ast-global-color-0);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  flex-shrink: 0;
}

.fb-reason-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.fb-reason-content p {
  margin: 0;
  font-size: 14px;
  color: var(--ast-global-color-3);
}

/* Certifications carousel */
.fb-certifications {
  overflow: hidden;
  background-color: #EDFBE2;
}

.fb-certifications-slider {
  margin: -10px -12px 0;
  padding: 10px 0 38px;
}

.fb-certification-slide {
  padding: 0 12px;
}

.fb-certification-card {
  display: block;
  overflow: hidden;
  height: 100%;
  color: var(--ast-global-color-2);
  background-color: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.fb-certification-card:hover {
  color: var(--ast-global-color-2);
  border-color: rgba(84, 180, 53, 0.45);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
  transform: translateY(-6px);
}

.fb-certification-card__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 330px;
  padding: 18px;
  background: linear-gradient(145deg, #edf3f6 0%, #ffffff 55%, #edf4ea 100%);
}

.fb-certification-card__image::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.fb-certification-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.fb-certification-card:hover .fb-certification-card__image img {
  transform: scale(1.025);
}

.fb-certification-card__meta {
  display: block;
  min-height: 98px;
  padding: 18px 20px 20px;
}

.fb-certification-card__meta strong {
  display: block;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fb-certification-card__badge {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: var(--ast-global-color-0);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.fb-certifications-slider .slick-track {
  display: flex;
}

.fb-certifications-slider .slick-slide {
  height: auto;
}

.fb-certifications-slider .slick-slide > div,
.fb-certifications-slider .fb-certification-slide {
  height: 100%;
}

.fb-certifications-slider .slick-prev,
.fb-certifications-slider .slick-next {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  opacity: 1;
  visibility: visible;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
  transform: translateY(-50%);
}

.fb-certifications-slider .slick-prev {
  left: -10px;
}

.fb-certifications-slider .slick-next {
  right: -10px;
}

.fb-certifications-slider .slick-prev::before,
.fb-certifications-slider .slick-next::before {
  color: var(--ast-global-color-2);
  font-size: 18px;
  opacity: 1;
}

.fb-certifications-slider .slick-prev:hover,
.fb-certifications-slider .slick-prev:focus,
.fb-certifications-slider .slick-next:hover,
.fb-certifications-slider .slick-next:focus {
  background-color: var(--ast-global-color-0);
}

.fb-certifications-slider .slick-prev:hover::before,
.fb-certifications-slider .slick-prev:focus::before,
.fb-certifications-slider .slick-next:hover::before,
.fb-certifications-slider .slick-next:focus::before {
  color: #ffffff;
}

.fb-certifications-slider .slick-dots {
  bottom: 0;
}

.fb-certifications-slider .slick-dots li button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.2);
}

.fb-certifications-slider .slick-dots li.slick-active button {
  width: 24px;
  border-radius: 10px;
  background-color: var(--ast-global-color-0);
}

/* Testimonial Card */
.fb-testimonial-card {
  display: block;
  background-color: #ffffff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  margin: 15px;
  color: inherit;
  text-decoration: none;
}

.fb-testimonial-card:hover {
  color: inherit;
  text-decoration: none;
}

.fb-testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
}

.fb-stars {
  color: #ffb606;
  font-size: 16px;
  margin-bottom: 15px;
}

.fb-testimonial-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.fb-testimonial-card p {
  font-style: italic;
  color: var(--ast-global-color-3);
  font-size: 15px;
  margin: 0;
}

/* Footer widget structure */
.site-footer {
  background-color: var(--ast-global-color-7);
  color: #e5e7eb;
  padding: 60px 0 20px;
  font-size: 15px;
}

.site-footer a {
  color: #e5e7eb;
}

.site-footer a:hover {
  color: var(--ast-global-color-0);
}

.footer-widget h2 {
  color: var(--ast-global-color-0);
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
}

.footer-widget h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 12px;
}

.footer-widget p {
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
  .fb-col-6, .fb-col-4, .fb-col-3, .fb-col-8 {
    width: 50%;
  }
  .main-navigation-desktop {
    display: none;
  }
  .fb-form-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .fb-about-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .fb-col-6, .fb-col-4, .fb-col-3, .fb-col-8 {
    width: 100%;
  }
  .fb-certification-card__image {
    height: 300px;
  }
  .fb-home-banner h1 {
    font-size: 32px;
    line-height: 1.3;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* News List Styles */
.fb-news-subheader {
  background: linear-gradient(135deg, var(--ast-global-color-7) 0%, var(--ast-global-color-1) 100%);
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
  margin-bottom: 50px;
}

.fb-news-subheader h1 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.fb-breadcrumbs {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.fb-breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
}

.fb-breadcrumbs a:hover {
  color: var(--ast-global-color-0);
}

.fb-news-grid {
  display: flex;
  gap: 30px;
}

.fb-news-main {
  flex: 2;
}

.fb-news-sidebar {
  flex: 1;
}

.fb-news-card {
  background: #ffffff;
  border: 1px solid #eef2f5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fb-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.fb-news-thumb {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.fb-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fb-news-card:hover .fb-news-thumb img {
  transform: scale(1.05);
}

.fb-news-cat {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--ast-global-color-0);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 5;
}

.fb-news-body {
  padding: 30px;
}

.fb-news-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.fb-news-title a {
  color: var(--ast-global-color-2);
}

.fb-news-title a:hover {
  color: var(--ast-global-color-0);
}

.fb-news-desc {
  color: var(--ast-global-color-3);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.fb-news-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #888888;
  border-top: 1px solid #f3f4f6;
  padding-top: 15px;
}

.fb-news-meta li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fb-news-meta i {
  color: var(--ast-global-color-0);
}

.fb-news-readmore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ast-global-color-0);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.fb-news-readmore:hover {
  color: var(--ast-global-color-1);
}

/* Sidebar Widgets */
.fb-widget {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.fb-widget-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f3f4f6;
  position: relative;
}

.fb-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background-color: var(--ast-global-color-0);
}

/* Search widget */
.fb-widget-search {
  display: flex;
}

.fb-widget-search input {
  flex: 1;
  height: 45px;
  border: 1px solid var(--ast-border-color);
  border-right: none;
  padding: 0 15px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  outline: none;
}

.fb-widget-search button {
  width: 50px;
  height: 45px;
  background: var(--ast-global-color-0);
  border: none;
  color: #ffffff;
  cursor: pointer;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-widget-search button:hover {
  background: var(--ast-global-color-1);
}

/* Category widget */
.fb-widget-cats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fb-widget-cats li {
  border-bottom: 1px solid #f3f4f6;
  padding: 10px 0;
}

.fb-widget-cats li:last-child {
  border-bottom: none;
}

.fb-widget-cats a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
}

.fb-widget-cats a span {
  background: var(--ast-global-color-4);
  color: var(--ast-global-color-0);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
}

/* Recent news widget */
.fb-recent-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fb-recent-post {
  display: flex;
  gap: 15px;
  align-items: center;
}

.fb-recent-post img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.fb-recent-post-descr {
  flex: 1;
}

.fb-recent-post-descr h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 5px;
  line-height: 1.4;
}

.fb-recent-post-descr h6 a {
  color: var(--ast-global-color-2);
}

.fb-recent-post-descr h6 a:hover {
  color: var(--ast-global-color-0);
}

.fb-recent-post-descr .date {
  font-size: 12px;
  color: #888888;
  display: flex;
  align-items: center;
  gap: 4px;
}

.fb-recent-post-descr .date i {
  color: var(--ast-global-color-0);
}

/* Follow us widget */
.fb-social-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fb-social-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: var(--ast-global-color-4);
  color: var(--ast-global-color-2);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.fb-social-btn:hover {
  background: var(--ast-global-color-0);
  color: #ffffff;
}

.fb-social-btn i {
  font-size: 16px;
}

/* FAQ Accordion Styles */
.fb-faq-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.fb-faq-intro h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}

.fb-faq-intro p {
  color: var(--ast-global-color-3);
  font-size: 16px;
}

.fb-faq-accordion {
  max-width: 850px;
  margin: 0 auto;
}

.fb-faq-card {
  border: 1px solid #eef2f5;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.fb-faq-card:hover {
  border-color: rgba(84, 180, 53, 0.3);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.fb-faq-header {
  margin: 0;
}

.fb-faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  border: none;
  background: transparent;
  padding: 20px 25px;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ast-global-color-2);
  cursor: pointer;
  transition: color 0.3s;
  text-transform: none;
  white-space: normal;
  overflow: visible;
  overflow-wrap: anywhere;
  outline: none;
  box-shadow: none;
}

.fb-faq-btn:hover,
.fb-faq-btn:not(.collapsed) {
  color: var(--ast-global-color-0);
}

.fb-faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.fb-faq-icon::before,
.fb-faq-icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: transform 0.3s ease;
}

/* Horizontal line */
.fb-faq-icon::before {
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
}

/* Vertical line for plus sign */
.fb-faq-icon::after {
  top: 3px;
  left: 9px;
  width: 2px;
  height: 14px;
}

.fb-faq-btn:not(.collapsed) .fb-faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.fb-faq-btn:not(.collapsed) .fb-faq-icon::before {
  transform: rotate(180deg);
}

.fb-faq-body {
  padding: 10px 25px 22px;
  color: var(--ast-global-color-3);
  font-size: 15px;
  line-height: 1.75;
}

/* Pagination container */
.fb-pagination-wrap {
  margin-top: 30px;
}

.fb-pagination-wrap .pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.fb-pagination-wrap .pagination li a,
.fb-pagination-wrap .pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ast-global-color-2);
}

.fb-pagination-wrap .pagination li.active a,
.fb-pagination-wrap .pagination li.active span {
  background-color: var(--ast-global-color-0);
  border-color: var(--ast-global-color-0);
  color: #ffffff;
}

.fb-pagination-wrap .pagination li a:hover {
  border-color: var(--ast-global-color-0);
  color: var(--ast-global-color-0);
}

@media (max-width: 991px) {
  .fb-news-grid {
    flex-direction: column;
  }
  .fb-news-sidebar {
    margin-top: 40px;
  }
}

/* Product Detail Page (view_product) */
.fb-product-container {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.fb-product-left {
  flex: 5;
  max-width: 100%;
}

.fb-product-right {
  flex: 7;
}

.fb-product-gallery {
  width: 100%;
}

.fb-product-main-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fb-product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

.fb-product-thumbs {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.fb-thumb-item {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  border: 2px solid #eaeaea;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #ffffff;
  padding: 2px;
}

.fb-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.fb-thumb-item:hover {
  border-color: var(--ast-global-color-0);
  transform: translateY(-2px);
}

.fb-thumb-item.active {
  border-color: var(--ast-global-color-0);
  box-shadow: 0 4px 12px rgba(84, 180, 53, 0.2);
}

.fb-product-right h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--ast-global-color-2);
}

.fb-product-excerpt {
  font-size: 16px;
  color: var(--ast-global-color-3);
  line-height: 1.6;
  margin-bottom: 30px;
}

.fb-product-meta-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.fb-product-meta-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #f3f4f6;
  font-size: 15px;
}

.fb-product-meta-table tr:nth-child(even) {
  background-color: #fafbfc;
}

.fb-product-meta-table td.label-cell {
  font-weight: 700;
  color: var(--ast-global-color-2);
  width: 30%;
}

.fb-product-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.fb-product-btn-whatsapp {
  background-color: #25d366;
  border-color: #25d366;
}

.fb-product-btn-whatsapp:hover {
  background-color: #128c7e;
  border-color: #128c7e;
}

/* Product Tabs Section */
.fb-product-tabs-nav {
  display: flex;
  border-bottom: 2px solid #eef2f5;
  margin-bottom: 30px;
  gap: 30px;
}

.fb-product-tabs-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 0;
  color: var(--ast-global-color-3);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  text-decoration: none;
}

.fb-product-tabs-nav a.active {
  color: var(--ast-global-color-0);
  border-bottom-color: var(--ast-global-color-0);
}

.fb-product-tab-pane {
  display: none;
  font-size: 16px;
  line-height: 1.7;
}

.fb-product-tab-pane.active {
  display: block;
}

.fb-product-tab-pane h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.fb-product-tab-pane table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.fb-product-tab-pane table td {
  padding: 10px 15px;
  border: 1px solid #eef2f5;
}

.fb-product-tab-pane table tr:nth-child(even) {
  background-color: #fafbfc;
}

/* Product Inquiry Box */
.fb-product-inquiry-box {
  background: #ffffff;
  border: 1px solid #eef2f5;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  max-width: 600px;
}

.fb-product-inquiry-box input,
.fb-product-inquiry-box textarea {
  width: 100%;
  border: 1px solid var(--ast-border-color);
  padding: 12px 15px;
  border-radius: 5px;
  outline: none;
  font-size: 15px;
  margin-bottom: 15px;
}

.fb-product-inquiry-box input:focus,
.fb-product-inquiry-box textarea:focus {
  border-color: var(--ast-global-color-0);
}

.fb-product-inquiry-box textarea {
  min-height: 120px;
  resize: vertical;
}

.fb-related-products {
  margin-top: 80px;
}

.fb-related-products .fb-section-title {
  max-width: 640px;
  margin: 0 auto 36px;
}

.fb-related-products-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--ast-global-color-1);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.fb-related-products .fb-section-title h2 {
  margin-bottom: 0;
  font-size: 36px;
  letter-spacing: -0.8px;
}

.fb-related-products-grid {
  margin: 0 -12px;
}

.fb-related-product-col {
  width: 25%;
  display: flex;
  flex-direction: column;
  padding: 0 12px;
}

.fb-related-product-card {
  width: 100%;
  height: 100%;
  margin-bottom: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fb-related-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(84, 180, 53, 0.55);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.11);
}

.fb-related-product-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #eef2f5;
}

.fb-related-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.fb-related-product-card:hover .fb-related-product-image img {
  transform: scale(1.045);
}

.fb-related-product-body {
  min-height: 172px;
  padding: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.fb-related-product-card h3 {
  margin: 0 0 22px;
  overflow: hidden;
  display: -webkit-box;
  color: var(--ast-global-color-2);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.fb-related-product-card h3 a {
  color: inherit;
}

.fb-related-product-card h3 a:hover {
  color: var(--ast-global-color-1);
}

.fb-related-product-link {
  min-height: 44px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  color: var(--ast-global-color-1);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.fb-related-product-arrow {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background-color: var(--ast-global-color-0);
  font-size: 17px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.fb-related-product-link:hover {
  color: var(--ast-global-color-1);
}

.fb-related-product-link:hover .fb-related-product-arrow {
  transform: translateX(3px);
  background-color: var(--ast-global-color-1);
}

.fb-related-product-image:focus-visible,
.fb-related-product-card h3 a:focus-visible,
.fb-related-product-link:focus-visible {
  outline: 3px solid rgba(84, 180, 53, 0.35);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .fb-product-container {
    flex-direction: column;
  }

  .fb-related-product-col {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .fb-related-products {
    margin-top: 56px;
  }

  .fb-related-products .fb-section-title {
    margin-bottom: 28px;
  }

  .fb-related-products .fb-section-title h2 {
    font-size: 30px;
  }

  .fb-related-products-kicker {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .fb-related-product-col {
    width: 100%;
  }

  .fb-related-product-body {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fb-related-product-card,
  .fb-related-product-image img,
  .fb-related-product-arrow {
    transition: none;
  }

  .fb-related-product-card:hover,
  .fb-related-product-card:hover .fb-related-product-image img,
  .fb-related-product-link:hover .fb-related-product-arrow {
    transform: none;
  }
}

/* Preloader Redesign */
.sigma_preloader {
  background-color: #ECFAE0 !important;
}

body[e-page="index"] .sigma_preloader {
  background-color: #FFFFFF !important;
}

.preloader-squares-inner div {
  background: #54B435 !important;
}

.preloader-logo {
  text-align: center;
}

.preloader-logo::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  margin: 24px auto 0;
  border: 3px solid rgba(84, 180, 53, 0.22);
  border-top-color: #54B435;
  border-radius: 50%;
  animation: fb-loader-spin 0.8s linear infinite;
}

.preloader-logo img {
  max-height: 200px;
  width: auto;
  animation: fb-logo-pulse 1.5s ease-in-out infinite alternate;
}

@keyframes fb-logo-pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

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

@keyframes fb-loader-fade {
  from {
    opacity: 0.45;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader-logo img {
    animation: none;
  }

  .preloader-logo::after {
    animation: fb-loader-fade 1s ease-in-out infinite alternate;
  }
}

/* About Us Page Custom Styles */
.bg-light-green {
  background-color: var(--ast-global-color-4) !important;
}

.fb-value-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: calc(100% - 30px);
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;
}

.fb-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(84, 180, 53, 0.12);
  border-color: rgba(84, 180, 53, 0.3);
}

.fb-value-icon {
  width: 60px;
  height: 60px;
  background-color: var(--ast-global-color-4);
  color: var(--ast-global-color-0);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  margin: 0 auto 20px;
}

.fb-value-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--ast-global-color-2);
  font-weight: 700;
}

.fb-value-card p {
  font-size: 14px;
  color: var(--ast-global-color-3);
  line-height: 1.6;
  margin: 0;
}

/* Strength Section */
.fb-strength-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border: 1px solid #eaeaea;
}

.fb-strength-img img {
  width: 100%;
  display: block;
}

.fb-strength-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}

.fb-strength-list li {
  font-size: 16px;
  font-weight: 600;
  color: var(--ast-global-color-3);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.fb-strength-list li i {
  color: var(--ast-global-color-0);
  font-size: 18px;
}

/* Workflow Step Card */
.fb-step-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.02);
  position: relative;
  transition: all 0.3s ease;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
}

.fb-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-color: var(--ast-global-color-0);
}

.fb-step-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(84, 180, 53, 0.15);
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
}

.fb-step-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--ast-global-color-2);
  position: relative;
  z-index: 2;
  font-weight: 700;
}

.fb-step-card p {
  font-size: 14px;
  color: var(--ast-global-color-3);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* News Detail Page (view_article) Redesign */
.fb-article-details-inner {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 40px;
}

.fb-article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.fb-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fb-article-meta i {
  color: var(--ast-global-color-0);
}

.fb-article-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ast-global-color-2);
  margin-bottom: 25px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.fb-article-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 35px;
  border: 1px solid #e2e8f0;
}

.fb-article-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fb-article-image-wrapper:hover img {
  transform: scale(1.02);
}

.fb-article-content {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ast-global-color-3);
}

.fb-article-content p {
  margin-bottom: 24px;
}

.fb-article-content p:last-child {
  margin-bottom: 0;
}

.fb-article-share-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 25px;
  margin-top: 35px;
}

.fb-article-share-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ast-global-color-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fb-article-share-links {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fb-article-share-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ast-global-color-4);
  color: var(--ast-global-color-2);
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fb-article-share-links a:hover {
  background: var(--ast-global-color-0);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Sidebar Widgets Modernized */
.fb-sidebar-widget {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.fb-sidebar-widget-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ast-global-color-2);
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
  text-transform: uppercase;
}

.fb-sidebar-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background-color: var(--ast-global-color-0);
}

.fb-sidebar-search-box {
  display: flex;
  position: relative;
  width: 100%;
}

.fb-sidebar-search-box input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--ast-border-color);
  padding: 0 50px 0 20px;
  border-radius: 24px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s;
}

.fb-sidebar-search-box input:focus {
  border-color: var(--ast-global-color-0);
  box-shadow: 0 0 0 3px rgba(84, 180, 53, 0.1);
}

.fb-sidebar-search-box button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 38px;
  height: 38px;
  background: var(--ast-global-color-0);
  border: none;
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.fb-sidebar-search-box button:hover {
  background: var(--ast-global-color-1);
}

.fb-sidebar-cats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fb-sidebar-cats li {
  border-bottom: 1px solid #f1f5f9;
  padding: 12px 0;
}

.fb-sidebar-cats li:last-child {
  border-bottom: none;
}

.fb-sidebar-cats a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--ast-global-color-3);
  transition: all 0.3s;
}

.fb-sidebar-cats a:hover,
.fb-sidebar-cats a.active {
  color: var(--ast-global-color-0);
  transform: translateX(3px);
}

.fb-sidebar-cats a span {
  background: var(--ast-global-color-4);
  color: var(--ast-global-color-0);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.fb-sidebar-recent {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fb-sidebar-recent-item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.fb-sidebar-recent-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid #f1f5f9;
  transition: transform 0.3s;
}

.fb-sidebar-recent-item:hover img {
  transform: scale(1.04);
}

.fb-sidebar-recent-desc {
  flex: 1;
}

.fb-sidebar-recent-desc h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.45;
}

.fb-sidebar-recent-desc h6 a {
  color: var(--ast-global-color-2);
}

.fb-sidebar-recent-desc h6 a:hover {
  color: var(--ast-global-color-0);
}

.fb-sidebar-recent-desc .date {
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fb-sidebar-recent-desc .date i {
  color: var(--ast-global-color-0);
}

#section-workflow {
  background-color: #ffffff;
  border-top: none;
  border-bottom: none;
}

#section-workflow.fb-section--green {
  background-color: #EDFBE2;
}

#section-workflow[e-page="about"] {
  background-color: var(--ast-global-color-4);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

/* --- Global Sales Network Section --- */
.fb-network-map-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 500px;
  margin: 30px auto 0 auto;
  background-image: url('../images/famebest/world_map_vector.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  mix-blend-mode: multiply; /* Make map white background transparent to blend perfectly */
}

@media (max-width: 991px) {
  .fb-network-map-container {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .fb-network-map-container {
    height: 220px;
  }
}

.fb-network-map {
  position: relative;
  width: 100%;
  height: 100%;
}

.fb-hotspot {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 10;
  cursor: pointer;
}

.fb-hotspot-dot {
  width: 10px;
  height: 10px;
  background-color: var(--ast-global-color-0);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 8px var(--ast-global-color-0);
}

.fb-hotspot-pulse {
  width: 30px;
  height: 30px;
  border: 2px solid var(--ast-global-color-0);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: fb-pulse 2s infinite ease-out;
  opacity: 0;
}

@keyframes fb-pulse {
  0% {
    width: 10px;
    height: 10px;
    opacity: 0.8;
  }
  100% {
    width: 40px;
    height: 40px;
    opacity: 0;
  }
}

.fb-hotspot-label {
  position: absolute;
  left: 22px;
  top: -5px;
  background-color: rgba(15, 23, 42, 0.85); /* Premium translucent dark background */
  color: #ffffff !important;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: 5;
}

.fb-hotspot-label * {
  color: #ffffff !important;
}

.fb-hotspot:hover .fb-hotspot-label {
  background-color: var(--ast-global-color-0); /* Highlight label on hover */
  transform: translateY(-2px);
}

.fb-network-card {
  background-color: #ffffff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--ast-global-color-6);
  transition: all 0.3s ease;
  height: 100%;
}

.fb-network-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(84, 180, 53, 0.1);
  border-color: var(--ast-global-color-0);
}

.fb-network-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.fb-network-card-badge {
  background-color: var(--ast-global-color-4);
  color: var(--ast-global-color-1);
  font-weight: 800;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.fb-network-card h4 {
  font-size: 18px;
  margin: 0;
  color: var(--ast-global-color-2);
}

.fb-network-card p {
  color: var(--ast-global-color-3);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
