/**
 * Minimal WordPress adaptation — no extra styles added
 * All page styles are controlled by the original site's style.css + about.css + contact.css + news.css + guestbook.css
 * This file only keeps a few compatibility rules required for WordPress to run, avoiding conflicts with the original site styles.
 */

/* WordPress core compatibility */
.screen-reader-text { display:none; }
.wpcf7-not-valid-tip { color:#e60012;font-size:12px; }
.wpcf7-response-output { display:none; }
.aligncenter { display:block;margin:0 auto; }
.alignleft { float:left;margin-right:15px; }
.alignright { float:right;margin-left:15px; }
img.alignnone, img.aligncenter, img.alignleft, img.alignright { max-width:100%;height:auto; }

/* Contact Form 7 wraps each field in <p><span class="wpcf7-form-control-wrap">…</span></p>.
   The original site's .item is display:flex, so this <p> becomes a flex child and collapses to the content width (332px),
   which also collapses the inner input's width:100%. Force the <p> to fill the full row so the inner span/input can take 100%. */
.wpcf7-form-control-wrap { display:block; width:100%; }
.ch_form  .item > p,
.ey_smly .rows > p { flex:1 1 100%; margin:0; }
.ch_form  .wpcf7-form-control-wrap,
.ey_smly .wpcf7-form-control-wrap { flex:1 1 100%; }
.wpcf7-form .item input,
.wpcf7-form .item textarea { width:100%; box-sizing:border-box; }

/* Current section highlight: the original site uses li.active; WordPress outputs current-menu-item / current-menu-ancestor */
.nav_wrap .head_nav .current-menu-item > a,
.nav_wrap .head_nav .current-menu-ancestor > a { color:#0656ad; text-decoration:none; }

/* FAQ section accordion: faqs.css only defines .fl-accordion-content{display:none},
   the expanded state is toggled by JS via .fl-accordion-item-active; here we complete the show/hide rules (consistent with the original site behavior). */
.fl-accordion-item-active .fl-accordion-content { display:block !important; }
.fl-accordion-item-active .fl-accordion-button-icon.fa-plus:before { content:"\f068"; }

/* Mobile menu hidden by default (the original site injects .mobile-head-items via common.js, so no local rewrite is needed) */
.mobile-menu-toggle { display:none; }
.mobile-nav { display:none; }
.mobile-nav-overlay { display:none; }
@media (max-width:768px) {
  .mobile-menu-toggle { display:flex; }
  .mobile-nav.active { display:block; }
  .mobile-nav-overlay.active { display:block; }
}

/* Cookie notice: restored to the original site's "rectangular popup window on the page" (floating card at bottom-left, not a bottom full-width bar) */
#cookies_agreement {
  position: fixed; bottom: 20px; left: 20px; z-index: 100001;
  display: flex; flex-wrap: wrap; box-sizing: border-box;
  width: 94%; max-width: 374px; margin: auto;
  background: #fff; border-radius: 4px; padding: 20px;
  box-shadow: 0 0 5px rgba(0,0,0,.3);
  justify-content: space-between;
}
#cookies_agreement .cookies-content {
  width: 100%; line-height: 26px; color: #333; font-size: 16px;
}
#cookies_agreement .cookies-button {
  display: block; width: 48%; margin-top: 15px; padding: 10px;
  background: #2e2e2e; color: #fff; border: 0; cursor: pointer; font-size: 14px;
}
#cookies_agreement .cookies-button:hover { background: #000; }
@media (max-width: 600px) {
  #cookies_agreement { left: 50%; transform: translateX(-50%); }
}

/* ===== Inner page default banner (uniformly calls the backend "Default Inner Banner") ===== */
.inner-banner {
  position: relative;
  height: 360px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.inner-banner-overlay {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;      /* Title vertically centered */
  justify-content: center;  /* Title horizontally centered */
}
.inner-banner .layout {
  position: relative;
  z-index: 2;
  width: 100%;
}
.inner-banner-title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .inner-banner { height: 200px; }
  .inner-banner-title { font-size: 22px; }
}

/* ===== Product detail: Inquiry + WhatsApp dual buttons (centered) ===== */
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
}
.btn-product {
  display: inline-block;
  min-width: 180px;
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.btn-inquiry { background: #0656ad; color: #fff; }
.btn-inquiry:hover { background: #05478f; color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5b; color: #fff; }

/* ===== Product category navigation: flat hierarchy (no + button, current level siblings/children) ===== */
.product_cates { position: relative; z-index: 5; }
.product_cates ul { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.product_cates li.cat-item {
  display: inline-block;
}
.product_cates li.cat-item a {
  display: block;
  padding: 10px 24px;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all .2s;
}
.product_cates li.cat-item a:hover {
  background: #0656ad;
  color: #fff;
  border-color: #0656ad;
}
.product_cates li.cat-item.active a {
  background: #0656ad;
  color: #fff;
  border-color: #0656ad;
}
/* Back to parent link */
.product_cates li.cat-parent a {
  background: #fff;
  border: 1px dashed #0656ad;
  color: #0656ad;
  font-weight: 600;
}
.product_cates li.cat-parent a:hover {
  background: #0656ad;
  color: #fff;
  border-style: solid;
}

/* =========================================================
   Ninth-round style adjustments (full-width search / centered banner / 1400px width / news grid + sidebar / form card / gallery thumbnails)
   ========================================================= */

/* 2) Top search popup → full-width: full-width search bar, input fills */
.web-search > div { width: 100%; max-width: 1400px; margin: 0 auto; }
.web-search .head-search { width: 100%; position: relative; }
.web-search .search-ipt { width: 100% !important; max-width: 100%; border-bottom: 2px solid #0656ad !important; font-size: 22px; padding: 6px 0 !important; }
.web-search .search-attr { width: 100%; max-width: 1400px; margin: 10px auto 0 !important; text-align: left; }
.web-search .btn--search-close { position: fixed; top: 20px; right: 28px; opacity: 1 !important; }

/* 3) Inner page banner section name centered (horizontal + vertical, achieved via .inner-banner-overlay flex) */
.inner-banner .layout { text-align: center; }
.inner-banner-title { text-align: center; width: 100%; }

/* 4) List page h2 section name centered, content below */
.blog_list .page_title { text-align: center; font-size: 28px; font-weight: 700; color: #222; margin: 0 0 26px; }

/* 5) Product list image bottom border */
.items_list .product_item .item_img { border-bottom: 3px solid #0656ad; overflow: hidden; }
.items_list .product_item .item_img img { transition: transform .3s ease; }
.items_list .product_item:hover .item_img img { transform: scale(1.05); }

/* 6) Product detail bottom thumbnails: smaller, 5 per row (overrides swiper inline styles) */
.image-additional .swiper-wrapper { display: flex !important; flex-wrap: wrap; transform: none !important; gap: 10px; }
.image-additional .image-item { width: calc(20% - 8px) !important; flex: 0 0 calc(20% - 8px) !important;
  border: 1px solid #e5e5e5; border-radius: 4px; padding: 3px; box-sizing: border-box; background: #fff; cursor: pointer; overflow: hidden; }
.image-additional .image-item:hover { border-color: #0656ad; }
.image-additional .image-item.current { border-color: #0656ad !important; }
.image-additional .image-item img { width: 100%; height: auto; display: block; border: none !important; }
/* Hide pagination dots */
.image-additional .swiper-pagination { display: none !important; }
/* Arrows: completely hide the text (next/prev), only show the arrow character via :after */
.product-view .swiper-button-next,
.product-view .swiper-button-prev {
  opacity: 1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 32px; height: 48px;
  background: rgba(0,0,0,.6);
  border-radius: 3px;
  top: 50%; margin-top: -24px;
  z-index: 5;
  overflow: hidden !important;          /* Clip overflowing text */
  text-indent: -9999px !important;     /* Push text outside the visible area */
  font-size: 0 !important;
  line-height: 0 !important;
}
.product-view .swiper-button-prev { left: -8px; }
.product-view .swiper-button-next { right: -8px; }
.product-view .swiper-button-prev:hover,
.product-view .swiper-button-next:hover { background: rgba(0,0,0,.85); }
/* Clear swiper default :before letter */
.product-view .swiper-button-prev:before,
.product-view .swiper-button-next:before {
  content: none !important;
}
/* :after absolutely positioned to show the arrow, unaffected by text-indent */
.product-view .swiper-button-prev:after,
.product-view .swiper-button-next:after {
  position: absolute !important;
  display: block !important;
  content: '' !important;
  font-family: Arial, sans-serif !important;
  font-size: 22px !important;
  line-height: 48px;
  color: #fff !important;
  text-indent: 0 !important;            /* Arrow itself unaffected */
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.product-view .swiper-button-prev:after { content: '\2039' !important; }  /* ‹ */
.product-view .swiper-button-next:after { content: '\203A' !important; }  /* › */

/* 7) Product detail message form: card style, 1400px wide, no height limit */
.inquiry-form-wrap { margin: 40px 0; }
.inquiry-form-wrap .content-wrap.form {
  box-shadow: 0 0 10px rgba(0,0,0,.1); padding: 5px; max-width: 1400px; margin: 0 auto;
  overflow: visible !important;       /* Container not height-limited */
  max-height: none !important;
}
.inquiry-form-wrap .title { text-align: center; font-size: 24px; color: #222; margin: 0 0 24px; }
.inquiry-form-wrap .title em { font-style: normal; }
.ch_form ul { list-style: none; margin: 0; padding: 0; }
.ch_form .item, .ch_form li { margin-bottom: 16px; }
.ch_form .wpcf7-form-control-wrap { display: block; width: 100%; }
.ch_form input[type=text], .ch_form input[type=email], .ch_form input[type=tel], .ch_form textarea {
  width: 100%; box-sizing: border-box; padding: 12px 14px; border: 1px solid #ddd; border-radius: 4px;
  font-size: 14px; color: #333; background: #fafafa;
}
.ch_form input:focus, .ch_form textarea:focus { border-color: #0656ad; background: #fff; outline: none; }
.ch_form textarea { min-height: 200px; height: auto !important; max-height: none !important; overflow: visible !important; resize: vertical !important; }
.ch_form .wpcf7-submit, .ch_form input[type=submit] {
  display: inline-block; background: #0656ad; color: #fff; border: 0; cursor: pointer;
  padding: 13px 40px; border-radius: 4px; font-size: 15px; font-weight: 600;
}
.ch_form .wpcf7-submit:hover, .ch_form input[type=submit]:hover { background: #05478f; }
.ch_form .item_submit { text-align: center; }

/* 10) Unified message form (Contact Form 1 / .zan-cf7 structure) — adapts to the original site's card look */
.zan-cf7-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.zan-cf7-col { width: 100%; }
.zan-cf7-col .wpcf7-form-control-wrap { display: block; width: 100%; }
.zan-cf7-grid input[type=text],
.zan-cf7-grid input[type=email],
.zan-cf7-grid input[type=tel],
.zan-cf7-grid input[type=url] {
  width: 100%; box-sizing: border-box;
  padding: 12px 14px; border: 1px solid #ddd; border-radius: 4px;
  font-size: 14px; color: #333; background: #fafafa;
}
.zan-cf7-grid input:focus { border-color: #0656ad; background: #fff; outline: none; }
/* Textarea full row */
.wpcf7-form textarea {
  width: 100%; box-sizing: border-box; min-height: 150px; display: block;
  margin-bottom: 16px; padding: 12px 14px; border: 1px solid #ddd; border-radius: 4px;
  font-size: 14px; color: #333; background: #fafafa; resize: vertical;
}
.wpcf7-form textarea:focus { border-color: #0656ad; background: #fff; outline: none; }
/* Captcha row */
.zan-cf7-row { margin-bottom: 16px; }
/* Button row */
.zan-cf7-btns { gap: 14px; align-items: center; flex-wrap: wrap; }
.zan-cf7-btns input[type=submit] {
  background: #0656ad; color: #fff; border: 0; cursor: pointer;width: 100%;
  padding: 13px 42px; border-radius: 4px; font-size: 15px; font-weight: 600;
}
.zan-cf7-btns input[type=submit]:hover { background: #05478f; }
.zan-cf7-btns input[type=reset] {
  background: #f0f0f0; color: #555; border: 0; cursor: pointer;
  padding: 13px 32px; border-radius: 4px; font-size: 15px;
}
.zan-cf7-btns input[type=reset]:hover { background: #e3e3e3; }
/* Sidebar (narrow): grid to single column, buttons fill */
.sidebar-contact .zan-cf7-grid { grid-template-columns: 1fr; }
.sidebar-contact .zan-cf7-btns input[type=submit],
.sidebar-contact .zan-cf7-btns input[type=reset] { flex: 1 1 auto; text-align: center; }
/* About page form matches the card look */
.ey_smly .zan-cf7-grid { margin-top: 8px; }

/* 8) Section page content width 1400 */
.main { max-width: 1400px; }

/* 9) Section list/grid: left sidebar + 1400px wide */
.news-layout { display: flex; gap: 30px; align-items: flex-start; }
.news-layout .news-col { flex: 1 1 auto; min-width: 0; max-width: none; }
.news-layout .side-col { flex: 0 0 330px; width: 330px; }

/* 9a) News section: list layout (image left, text right, row style) */
.news_list { display: block; }
.news_list .list-item {
  display: flex; gap: 22px; align-items: flex-start;
  background: #fff; border: 1px solid #eee; border-radius: 6px;
  padding: 16px; margin-bottom: 20px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.news_list .list-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-2px); }
.news_list .list-thumb { flex: 0 0 240px; width: 240px; display: block; overflow: hidden; border-radius: 4px; }
.news_list .list-thumb img { width: 100%; height: 160px; object-fit: cover; display: block; transition: transform .3s ease; }
.news_list .list-item:hover .list-thumb img { transform: scale(1.05); }
.news_list .list-body { flex: 1 1 auto; min-width: 0; padding: 4px 4px 0; }
.news_list .list-title { font-size: 18px; line-height: 1.4; margin: 0 0 8px; }
.news_list .list-title a { color: #222; text-decoration: none; }
.news_list .list-title a:hover { color: #0656ad; }
.news_list .list-date { display: block; color: #999; font-size: 12px; margin-bottom: 10px; }
.news_list .list-detail { color: #666; font-size: 14px; line-height: 1.7; margin-bottom: 14px; }
.news_list .list-more { display: inline-block; color: #0656ad; font-size: 14px; font-weight: 600; text-decoration: none; }
.news_list .list-more:after { content: " \00bb"; }

/* 9b) Article/certificate section: grid layout (reuses the original grid styles) */
.news_grid ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; list-style: none; margin: 0; padding: 0; }
.news_grid .blog-item { display: flex; flex-direction: column; background: #fff; border: 1px solid #eee; border-radius: 6px; overflow: hidden; transition: box-shadow .25s ease, transform .25s ease; }
.news_grid .blog-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-3px); }
.news_grid .blog-item .item-img { float: none; max-width: none; display: block; padding: 0; border: 0; }
.news_grid .blog-item .item-img img { width: 100%; height: 190px; object-fit: cover; display: block; }
.news_grid .blog-item .item-info { padding: 16px 18px 20px; }
.news_grid .blog-item .item-title { font-size: 16px; line-height: 1.4; margin: 0 0 8px; }
.news_grid .blog-item .item-title a { color: #222; text-decoration: none; }
.news_grid .blog-item .item-title a:hover { color: #0656ad; }
.news_grid .blog-item time { display: block; color: #999; font-size: 12px; margin-bottom: 8px; }
.news_grid .blog-item .item-detail { color: #666; font-size: 13px; line-height: 1.6; margin-bottom: 12px; }
.news_grid .blog-item .item-more { display: inline-block; color: #0656ad; font-size: 13px; font-weight: 600; text-decoration: none; }
.news_grid .blog-item .item-more:after { content: " \00bb"; }
@media (max-width: 1100px) {
  .news-layout { flex-direction: column; }
  .news-layout .side-col { width: 100%; flex: 1 1 auto; }
  .news_grid ul { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .news_list .list-item { flex-direction: column; }
  .news_list .list-thumb { flex: 1 1 auto; width: 100%; }
  .news_list .list-thumb img { height: 200px; }
}
@media (max-width: 640px) {
  .news_grid ul { grid-template-columns: 1fr; }
}

/* Sidebar widget general polish (categories / popular products / contact) */
.sidebar .sidebar-widget { background: #fff; border: 1px solid #eee; border-radius: 6px; padding: 18px 20px; margin-bottom: 22px; }
.sidebar .sidebar-title { font-size: 16px; color: #222; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 2px solid #0656ad; }
.sidebar .sidebar-cat a { color: #444; text-decoration: none; }
.sidebar .sidebar-cat a:hover { color: #0656ad; }
.sidebar .sidebar-prolist { list-style: none; margin: 0; padding: 0; }
.sidebar .sidebar-prolist li { margin-bottom: 12px; }
.sidebar .pro-item { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #333; }
.sidebar .pro-thumb img { width: 64px; height: 64px; object-fit: cover; border: 1px solid #eee; border-radius: 4px; }
.sidebar .pro-title { font-size: 13px; line-height: 1.4; }
.sidebar .pro-item:hover .pro-title { color: #0656ad; }
.sidebar .sidebar-search { display: flex; }
.sidebar .sidebar-search input { flex: 1; padding: 9px 12px; border: 1px solid #ddd; border-right: 0; border-radius: 4px 0 0 4px; font-size: 13px; }
.sidebar .sidebar-search button { padding: 0 16px; background: #0656ad; color: #fff; border: 0; border-radius: 0 4px 4px 0; cursor: pointer; }
.sidebar .sidebar-contact .wpcf7-form-control-wrap { display: block; width: 100%; }
.sidebar .sidebar-contact input, .sidebar .sidebar-contact textarea { width: 100%; box-sizing: border-box; padding: 9px 11px; border: 1px solid #ddd; border-radius: 4px; font-size: 13px; margin-bottom: 10px; }
.sidebar .sidebar-contact .wpcf7-submit { background: #0656ad; color: #fff; border: 0; padding: 10px 20px; border-radius: 4px; cursor: pointer; }

/* Section page overall width 1400 (applies at ≥1401px viewport to avoid small-screen overflow; falls back to 92% on mobile) */
@media (min-width: 1401px) { .layout { width: 1400px; } }
@media (max-width: 1400px) { .layout { width: 1200px; } }
@media (max-width: 1200px) { .layout { width: 92%; } }

/* ===== 404 page: centered message block (consistent with inner pages, width constrained by .layout) ===== */
.error-404-wrap { padding: 70px 0 90px; text-align: center; }
.error-404 .error-code { font-size: 120px; font-weight: 800; color: #0656ad; line-height: 1; margin: 0 0 8px; }
.error-404 .error-msg { font-size: 18px; color: #555; margin: 0 0 30px; }
.error-404 .error-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.error-404 .btn { display: inline-block; padding: 13px 34px; border-radius: 4px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background .2s ease; }
.error-404 .btn-primary { background: #0656ad; color: #fff; }
.error-404 .btn-primary:hover { background: #05478f; color: #fff; }
.error-404 .btn-outline { background: #f0f0f0; color: #555; }
.error-404 .btn-outline:hover { background: #e3e3e3; color: #555; }
@media (max-width: 768px) {
  .error-404 .error-code { font-size: 88px; }
}

/* ===== Inquiry popup polish (triggered by the Service section's "Inquire now" button) ===== */
.inquiry-pop-bd {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  margin: 0;
  background: rgba(0,0,0,.65);
  display: none;
  z-index: 2000;
  overflow-y: auto;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
}
.inquiry-pop-bd:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.inquiry-pop-bd .inquiry-pop {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 50px rgba(0,0,0,.3);
  text-align: left;
  overflow: hidden;
  animation: fadeInDownA .4s ease;
  left: auto;
  top: auto;
  height: auto;
  padding: 0;
}
.inquiry-pop {
  /* Keep low-specificity fallback */
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.inquiry-modal-close {
  position: absolute;
  right: 14px; top: 14px;
  width: 34px; height: 34px;
  border: 0; border-radius: 50%;
  background: rgba(0,0,0,.08);
  color: #555;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 3px 0;
  transition: background .2s ease, color .2s ease;
}
.inquiry-modal-close:hover { background: #e60012; color: #fff; }
.inquiry-modal-header { padding: 26px 26px 0; text-align: center; }
.inquiry-modal-title { margin: 0 0 6px; font-size: 22px; color: #222; font-weight: 700; }
.inquiry-modal-desc { margin: 0; font-size: 13px; color: #777; }
.inquiry-modal-body { padding: 18px 26px 28px; }

/* Form inside popup: two columns except Message */
.inquiry-modal-body .zan-cf7-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.inquiry-modal-body .wpcf7-form textarea { min-height: 96px; margin-bottom: 12px; }
.inquiry-modal-body .zan-cf7-btns { display: flex; justify-content: center; gap: 12px; margin-top: 2px; }
.inquiry-modal-body .zan-cf7-btns input[type=submit] { width: 100%; padding: 13px 10px; font-size: 15px; }
.inquiry-modal-body .zan-cf7-btns input[type=reset] { display: none; }
.hidden-fields-container {
  border: none;      /* Remove border */
}
/* Override leftover styles from old popup/guestbook */
.inquiry-pop .ch_form_wrap .title,
.inquiry-pop-bd .ico-close-pop,
.inquiry-modal-body .email_point { display: none !important; }
.inquiry-pop .ch_form_wrap form { height: auto !important; overflow: visible !important; }

@media (max-width: 600px) {
  .inquiry-pop-bd { padding: 0; }
  .inquiry-pop-bd .inquiry-pop { max-width: 100%; min-height: 100vh; border-radius: 0; width: 100%; left: auto; top: auto; }
  .inquiry-modal-header { padding-top: 50px; }
  .inquiry-modal-body { padding: 20px; }
}

/* ===== Font Awesome icon base class (reuses the theme's bundled fontawesome font, available site-wide) ===== */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 'fontawesome';
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-facebook:before  { content: "\f09a"; }
.fa-twitter:before   { content: "\f099"; }
.fa-linkedin:before  { content: "\f0e1"; }
.fa-instagram:before { content: "\f16d"; }
.fa-youtube:before   { content: "\f167"; }
.fa-pinterest:before { content: "\f0d2"; }
.fa-whatsapp:before  { content: "\f232"; }
.fa-rss:before       { content: "\f09e"; }
.fa-envelope:before  { content: "\f0e0"; }
.fa-wechat:before    { content: "\f1d7"; }
.fa-skype:before     { content: "\f17e"; }

/* ===== Footer social icons: fixed 3 columns x 2 rows grid ===== */
.foot_sns {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.foot_sns li {
  display: block;
  width: 33.3333%;
  box-sizing: border-box;
  padding: 0 5px 10px;
  list-style: none;
  text-align: center;
}
.foot_sns a {
  display: inline-block;
  vertical-align: middle;
  transition: transform .3s ease;
}
.foot_sns a:hover { transform: rotate(60deg); }
.foot_sns li img { max-height: 30px; width: auto; }

/* ===== Top bar social (left of the search icon) ===== */
.head_sns {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: 16px;
}
.head_sns a {
  color: #fff;
  font-size: 15px;
  opacity: .85;
  transition: opacity .2s ease, color .2s ease;
}
.head_sns a:hover { opacity: 1; color: #ffd200; }

/* ===== Top bar left WhatsApp + Email ===== */
.head_contact { display: flex; align-items: center; gap: 18px; }
.head_contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  opacity: .92;
  transition: opacity .2s ease;
}
.head_contact a:hover { opacity: 1; }
.head_contact .fa { font-size: 15px; }
.head_contact a span { max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Top bar layout: restore the original site's float layout (head_left to the left, head_right to the right edge of the 1400 layout),
   only arrange search/language/social in a row inside head_right, using English Font Awesome icons for social icons */
@media only screen and (min-width: 951px) {
  .head_top .head_left { float: left; }
  .head_top .head_right { float: right; display: flex; align-items: center; white-space: nowrap; }
  .head_sns { display: flex; align-items: center; flex-wrap: nowrap; gap: 12px; margin-left: 14px; }
  .head_sns a { white-space: nowrap; }
}

/* TranslatePress language switcher styles in the blue top bar (override inline --text/--bg variables, !important wins) */
.head_right .trp-shortcode-switcher__wrapper {
  position: relative;
  --text: #ffffff !important;
  --text-hover: #ffd200 !important;
  --bg: rgba(255,255,255,.12) !important;
  --bg-hover: rgba(255,255,255,.22) !important;
  --border-color: rgba(255,255,255,.4) !important;
}
.head_right .trp-shortcode-switcher,
.head_right .trp-shortcode-overlay { overflow: visible !important; }
.head_right .trp-language-item-name { color: #fff !important; }
.head_right .trp-language-item:hover .trp-language-item-name { color: #ffd200 !important; }
.head_right .trp-shortcode-arrow path { stroke: #fff !important; }
.head_right .trp-switcher-dropdown-list {
  background: #fff !important;
  border-radius: 4px !important;
  box-shadow: 0 6px 20px rgba(0,0,0,.2) !important;
  z-index: 9999 !important;
  min-width: 130px;
  margin-top: 6px;
}
.head_right .trp-switcher-dropdown-list .trp-language-item-name { color: #143852 !important; }
.head_right .trp-switcher-dropdown-list .trp-language-item:hover { background: #f0f4fa !important; }
.head_right .trp-switcher-dropdown-list a { text-decoration: none; }

/* ===== Mobile (≤950px) ===== */
@media only screen and (max-width: 950px) {
  /* Blue top row hidden on mobile (WhatsApp moved to the right of the mobile top bar) */
  .head_top { display: none !important; }
  /* Hide the unbound extra hamburger button to avoid conflict with the mobile top bar */
  .mobile-menu-toggle { display: none !important; }
  /* Mobile top bar right WhatsApp: icon + number */
  .mobile-head-whatsapp { float: right; width: auto; padding: 0 8px; }
  .mobile-head-whatsapp a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 25px;
    color: #fff;
    font-size: 13px;
    line-height: 25px;
  }
  .mobile-head-whatsapp a .fa-whatsapp { font-size: 16px; }
  .mobile-head-whatsapp a .wa-num { white-space: nowrap; }
  .mobile-head-whatsapp a:hover { color: #25D366; }

  /* Mobile top bar language: directly show [language-switcher], white text, remove icon + sidebar */
  .mobile-head-language { float: left; width: auto; padding: 0 8px; }
  .mobile-head-language .mobile-lang-source { display: block; }
  .mobile-head-language .trp-shortcode-switcher__wrapper {
    --text: #ffffff !important;
    --text-hover: #ffd200 !important;
    --bg: rgba(255,255,255,.12) !important;
    --bg-hover: rgba(255,255,255,.22) !important;
    --border-color: rgba(255,255,255,.4) !important;
  }
  .mobile-head-language .trp-shortcode-switcher,
  .mobile-head-language .trp-shortcode-overlay { overflow: visible !important; }
  .mobile-head-language .trp-language-item-name { color: #fff !important; }
  .mobile-head-language .trp-language-item:hover .trp-language-item-name { color: #ffd200 !important; }
  .mobile-head-language .trp-shortcode-arrow path { stroke: #fff !important; }
  .mobile-head-language .trp-switcher-dropdown-list {
    background: #fff !important;
    border-radius: 4px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,.2) !important;
    z-index: 9999 !important;
    min-width: 130px;
    margin-top: 6px;
  }
  .mobile-head-language .trp-switcher-dropdown-list .trp-language-item-name { color: #143852 !important; }
  .mobile-head-language .trp-switcher-dropdown-list .trp-language-item:hover { background: #f0f4fa !important; }
  .mobile-head-language .trp-switcher-dropdown-list a { text-decoration: none; }
  .mobile-head-language .trp-language-switcher { padding: 0; line-height: 35px; height: 35px; }
}



/* ===== FAQ bottom CTA (imitates the original site's faq-banner.jpg, fixed-width centered card, controlled by page fields) ===== */
.fl-node-586baa625d3c7 {
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 15px;
}
.fl-node-586baa625d3c7 > .fl-row-content-wrap {
  position: relative;
  padding: 70px 20px 60px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: rgba(37, 37, 37, 1);
}
.fl-node-586baa625d3c7 .fl-heading {
  text-align: center;
  font-size: 20px;
  letter-spacing: 3px;
  color: #fff;
  margin: 0 0 20px;
}
.fl-node-586baa625d3c7 .fl-button-wrap { text-align: center; }
.fl-node-586baa625d3c7 .fl-button {
  display: inline-block;
  border-radius: 20px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  padding: 8px 30px;
  text-decoration: none;
}
.fl-node-586baa625d3c7 .fl-button:hover { background: #fff; color: #333; }
