/* =====================================================================
   Belagri 克隆主题 — 对齐原版 Bricks 设计系统
   真实令牌来自 belagri.com.hk 内联样式 (bricks-frontend-inline)
   ===================================================================== */

:root {
  --green: #3fac4b;          /* --bricks-color-uddvdl 主绿 */
  --green-dark: #139521;     /* 按钮渐变终点 */
  --teal: #69c8d1;           /* --bricks-color-ssaelv 青 */
  --ink: #0f1a2a;            /* --bricks-color-eyzncs 标题深字 */
  --text: #27364b;           /* --bricks-color-plgcct 正文 */
  --muted: #64748b;          /* --bricks-color-dmdpcr 浅字 */
  --green-light: #f5fbf6;    /* --bricks-color-frcjbq 浅绿底 */
  --border: #cbd4e1;         /* --bricks-color-owyvst 边框 */
  --white: #ffffff;
  --radius-btn: 8px;
  --radius-card: 15px;
  --shadow-card: 0 1px 0 rgba(9,30,66,.31), 0 5px 3px rgba(9,30,66,.2);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei",
               "PingFang SC", "Noto Sans CJK SC", "Hiragino Sans GB", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { color: var(--ink); margin: 0 0 .5em; font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(34px, 5vw, 52px); }
h2 { font-size: clamp(28px, 4vw, 38px); }
h3 { font-size: clamp(22px, 3vw, 28px); }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
p { margin: 0 0 1em; }
a { color: var(--text); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.container { max-width: 1440px; margin: 0 auto; padding: 0 20px; width: 100%; }
.section { padding: 80px 0; }
/* 關於我們等內頁 section：原版 .page-section.brxe-section padding:80px 0（原站區塊間距） */
.page-section { padding: 80px 0; }
@media (max-width: 991px) { .section { padding: 60px 0; } }
@media (max-width: 767px) { .section { padding: 40px 0; } }

/* 渐变标题（仿 .gradient-header 文字裁剪） */
.gradient-text {
  display: inline-block;
  background-image: linear-gradient(90deg, #3fac4b, #69c8d1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2, .section-head h3 { margin: 0; color: var(--ink); font-weight: 700; line-height: 1.4; }
.section-head h3 { font-size: 1.9em; }
/* 仿原版 .section-head .gradient-text 下方分隔线效果（兼用 h3 + special_header span） */
.section-head h3 { position: relative; padding-bottom: 14px; display: inline-block; }
.section-head h3::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 64px; height: 3px; border-radius: 3px;
  background-image: linear-gradient(90deg, #3fac4b, #69c8d1);
}

/* ---------- 按钮（仿 .bricks-button + .gradient-button） ---------- */
.btn {
  display: inline-block;
  color: var(--white);
  background-image: linear-gradient(#3fac4b, #139521);
  border: none; border-radius: var(--radius-btn);
  padding: 12px 36px; font-size: 16px; font-weight: 600; cursor: pointer;
  transition: filter .2s, transform .2s;
}
.btn:hover { color: var(--white); filter: brightness(1.05); transform: translateY(-1px); }

/* ===================== 顶栏（仿 #brxe-axnwog 160deg 渐变） ===================== */
.topbar {
  background-image: linear-gradient(160deg, #3fac4b, #69c8d1);
  color: var(--white); font-size: 14px;
}
.topbar .container { display: flex; align-items: center; gap: 20px; padding-top: 10px; padding-bottom: 10px; }
.topbar a { color: var(--white); display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: #eafaf1; }
.topbar svg { width: 24px; height: 24px; fill: currentColor; }
.topbar .topbar-right { margin-left: auto; display: flex; gap: 20px; }

/* ===================== 主导航（仿 #brxe-vzsdeg 白底 sticky） ===================== */
.site-header { background: var(--white); box-shadow: 0 3px 5px 0 rgba(9,30,66,.2); position: sticky; top: 0; z-index: 100; }
.site-header .container { display: flex; align-items: center; gap: 24px; padding-top: 12px; padding-bottom: 12px; }
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-logo img { height: 80px; width: 80px; object-fit: contain; }
.site-logo .logo-text { font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.site-logo .logo-text small { display: block; font-size: 12px; font-weight: 400; color: var(--muted); }

.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 28px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { font-size: 16px; font-weight: 500; color: var(--text); padding: 8px 0; display: inline-block; }
.main-nav > ul > li:hover > a { color: var(--teal); }
.main-nav .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  box-shadow: 0 8px 24px rgba(9,30,66,.12); padding: 8px 0; display: none; z-index: 200;
}
.main-nav li:hover > .sub-menu { display: block; }
.main-nav .sub-menu li a { display: block; padding: 8px 18px; font-size: 15px; color: var(--text); white-space: nowrap; }
.main-nav .sub-menu li a:hover { color: var(--teal); }
/* 帶下拉的菜單項：右側加向下箭頭提示（仿原版 Bricks SVG chevron） */
.main-nav > ul > li.menu-item-has-children > a {
  position: relative;
  padding-right: 22px;
}
.main-nav > ul > li.menu-item-has-children > a::after {
  content: '';
  position: absolute;
  right: 2px; top: 50%;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  opacity: .7;
  pointer-events: none;
}
.main-nav > ul > li.menu-item-has-children:hover > a::after {
  transform: translateY(-30%) rotate(-135deg);
}
/* 聯絡我們：原版綠色漸變按鈕（仿 #brxe-kkqdoy .gradient-button，
   background linear-gradient(#3fac4b,#139521)、圓角 8px、白字、padding 12px 28px） */
.header-cta {
  margin-left: 8px;
  display: inline-block;
  background-image: linear-gradient(135deg, #3fac4b, #139521);
  color: #fff;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 8px;
  white-space: nowrap;
  text-decoration: none;
  transition: filter .15s ease, box-shadow .15s ease;
}
.header-cta:hover {
  color: #fff;
  filter: brightness(1.06);
  box-shadow: 0 4px 12px rgba(19, 149, 33, .35);
}

/* 移动端菜单 */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.menu-toggle span { display: block; width: 26px; height: 3px; background: var(--green); margin: 5px 0; border-radius: 2px; }
@media (max-width: 767px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .site-header.open .main-nav {
    display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
    box-shadow: 0 8px 24px rgba(9,30,66,.12); padding: 12px 20px;
  }
  .site-header.open .main-nav > ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .site-header.open .main-nav .sub-menu { position: static; box-shadow: none; border: none; padding-left: 16px; display: none; }
  .site-header.open .main-nav li:hover > .sub-menu { display: block; }
  .header-cta { padding: 10px 18px; }
}

/* ===================== 首屏 Hero（仿 #brxe-nadaue 50vh + 暗遮罩） ===================== */
.hero { position: relative; }
.hero .swiper { position: relative; }
.hero .slide {
  min-height: 50vh; background-size: cover; background-position: center; background-repeat: no-repeat;
  display: flex; align-items: center; position: relative;
}
.hero .slide::after {
  content: ""; position: absolute; inset: 0;
  background-color: rgba(15, 26, 42, 0.28);
}
.hero .slide-inner { position: relative; z-index: 2; max-width: 640px; color: #fff; }
.hero .slide-inner h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.35); margin-bottom: 14px; }
.hero .slide-inner p { font-size: 19px; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.35); margin: 0; }
.hero .hero-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.25); color: #fff; font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center; backdrop-filter: blur(2px);
}
.hero .hero-btn:hover { background: rgba(255,255,255,.45); color: #fff; }
.hero .hero-prev { left: 50px; }
.hero .hero-next { right: 50px; }
.hero .hero-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero .hero-dots button {
  width: 11px; height: 11px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.5); padding: 0;
}
.hero .hero-dots button.active { background: var(--teal); width: 28px; border-radius: 6px; }
@media (max-width: 767px) {
  .hero .hero-prev { left: 12px; } .hero .hero-next { right: 12px; }
  .hero .slide { min-height: 42vh; }
}

/* ===================== 公司简介（仿 #brxe-lnamgi flex gap 80px） ===================== */
.intro .intro-grid { display: flex; align-items: center; gap: 80px; }
.intro .intro-media { flex: 1; }
.intro .intro-media img { width: 100%; border-radius: 18px; box-shadow: var(--shadow-card); }
.intro .intro-text { flex: 1; }
.intro .intro-text p { font-size: 17px; color: var(--text); }
@media (max-width: 991px) { .intro .intro-grid { gap: 40px; flex-direction: column; } }

/* ===================== 產品目錄（仿 #brxe-nxdqpw 3x3 + .brxe-rirjwk 白卡） ===================== */
.catalog { background-color: #f5f7f6; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.catalog-card {
  height: 130px; background-color: #fff; border-radius: 10px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; padding: 10px 24px;
  background-size: contain; background-repeat: no-repeat; background-position: center right;
  position: relative; overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.catalog-card:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(9,30,66,.31), 0 10px 14px rgba(9,30,66,.18); }
.catalog-card h4 {
  position: relative; z-index: 2; margin: 0; font-size: 21px; font-weight: 700; color: var(--ink);
  max-width: 56%;
}
.catalog-card:hover h4 { color: var(--teal); }
@media (max-width: 991px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 478px) { .catalog-grid { grid-template-columns: 1fr; } }

/* ===================== 認證及榮譽 ===================== */
.honors { background-color: #f5f7f6; }
.honors-grid { display: flex; justify-content: center; }
.honors-card { display: flex; align-items: center; gap: 50px; max-width: 1100px; width: 100%; padding: 40px; }
.honors-img { flex: 0 0 auto; width: 320px; }
.honors-img img { width: 100%; border-radius: 12px; display: block; }
.honors-text { flex: 1; }
.honors-title { font-size: 2em; margin: 0 0 16px; }
.honors-text p { font-size: 1.02em; line-height: 1.9; color: #27364b; margin: 0; }
@media (max-width: 767px) {
  .honors-card { flex-direction: column; gap: 24px; padding: 28px 22px; }
  .honors-img { width: 220px; }
  .honors-title { font-size: 1.5em; }
}

/* ===================== 我們的優勢（仿 #brxe-bruddx 浅绿底 + #brxe-chnuox 4列） ===================== */
.advantages { background-color: var(--green-light); }
.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.adv-card {
  background: #fff; border-radius: var(--radius-card); padding: 32px 22px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.adv-card:hover { transform: translateY(-3px); box-shadow: 0 1px 0 rgba(9,30,66,.31), 0 12px 18px rgba(9,30,66,.18); }
.adv-card .adv-icon { width: 64px; height: 64px; margin-bottom: 14px; }
.adv-card .adv-icon img { width: 100%; height: 100%; object-fit: contain; }
.adv-card h5 { margin: 0 0 8px; }
.adv-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
@media (max-width: 991px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 478px) { .adv-grid { grid-template-columns: 1fr; } }

/* ===================== 聯絡我們 / 页脚联系区（仿 #brxe-ezppqu + svg 纹理） ===================== */
.contact { background-color: var(--green-light); position: relative; padding: 80px 0; }
.contact .container { max-width: 1100px; }
.contact .container > h3 { text-align: center; margin-bottom: 28px; }
.contact::after {
  content: ""; position: absolute; inset: 0; opacity: .3; pointer-events: none;
  background-image: url('http://127.0.0.1/wp-content/uploads/2024/04/background_footer.svg');
  background-repeat: repeat; background-size: auto;
}
.contact .container { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.contact-form-card, .contact-info { background: #fff; border-radius: var(--radius-card); padding: 3.5rem 2.5rem; box-shadow: var(--shadow-card); }
.contact-form-card h3, .contact-info h3 { margin-bottom: 20px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px;
  font-size: 15px; font-family: inherit; color: var(--text); background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--teal);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .btn { width: 100%; margin-top: 6px; }
.contact-info .info-block { margin-bottom: 24px; }
.contact-info .info-block h4 { font-size: 17px; margin-bottom: 8px; color: var(--green); }
.contact-info .info-block p { margin: 0; color: var(--text); font-size: 15px; }
.contact-info a { color: var(--text); }
.contact-info a:hover { color: var(--teal); }
@media (max-width: 991px) { .contact-grid { grid-template-columns: 1fr; } .contact-form .form-row { grid-template-columns: 1fr; } }

/* ===================== 页脚版权条（仿 #brxe-radqzz 90deg 渐变） ===================== */
.site-footer-bar {
  background-image: linear-gradient(90deg, #3fac4b, #69c8d1);
  color: #fff; text-align: center; padding: 20px 0; font-size: 14px;
}
.site-footer-bar a { color: #fff; }

/* ===================== 分类 / 产品 列表页 ===================== */
.page-hero { background-image: linear-gradient(160deg, #3fac4b, #69c8d1); color: #fff; padding: 56px 0; }
.page-hero h1 { color: #fff; margin: 0; }
.page-hero .breadcrumb { font-size: 14px; opacity: .9; margin-bottom: 8px; }
.page-hero .breadcrumb a { color: #fff; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s; display: block;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 1px 0 rgba(9,30,66,.31), 0 12px 18px rgba(9,30,66,.18); }
.product-card .pc-thumb { aspect-ratio: 1/1; background: #eef3f0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-card .pc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .pc-thumb .ph { font-size: 56px; }
.product-card .pc-name { padding: 14px 16px; font-weight: 600; color: var(--ink); font-size: 16px; }
@media (max-width: 991px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 478px) { .product-grid { grid-template-columns: 1fr; } }

/* ===================== 分类 / 产品 顶部 header ===================== */
.page-header { background-image: linear-gradient(160deg, #3fac4b, #69c8d1); color: #fff; padding: 56px 0; }
.page-header h1 { color: #fff; margin: 0; }
.page-header .breadcrumb { font-size: 14px; opacity: .9; margin-bottom: 8px; }
.page-header .breadcrumb a { color: #fff; }
.page-header .term-desc { max-width: 860px; margin: 16px auto 0; color: rgba(255,255,255,.92); line-height: 1.85; font-size: 0.98rem; }
.page-header .term-desc p { margin: 0 0 .6em; }

/* ===================== 产品详情页（1:1 对齐原版 belagri 木瓜頁 / Bricks 真实数值） ===================== */
/* 顶部：白底小麵包屑（原版產品頁無綠塊）。.brxe-breadcrumbs: flex row gap:10px */
.single-products .page-header { background: #fff; color: var(--ink); padding: 24px 0 4px; box-shadow: none; }
.single-products .page-header .breadcrumb { color: #64748b; font-size: 14px; opacity: 1; margin-bottom: 0; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.single-products .page-header .breadcrumb a { color: #64748b; }
.single-products .page-header .breadcrumb a:hover { color: var(--teal); }

/* .brxe-block 基線: display:flex; flex-direction:column; width:100% ; 頁覆蓋 #brxe-ftqtpk: flex-direction:row; column-gap:40px; justify-content:center */
.product-detail { padding: 32px 0 8px; }
/* 兩欄 grid：圖列封頂 480px（避免原版 width:80% 在 flex 容器中被當成全寬 80%=1152px 的 bug） */
.product-detail-grid { display: grid; grid-template-columns: minmax(320px, 480px) 1fr; gap: 40px; align-items: start; }
/* 圖卡 #brxe-neioty width:80% + .shadow_box_md: padding:10/20, border-radius:15, bg #fff, 陰影精確值 */
.product-detail-image { width: 100%; box-sizing: border-box; background: #ffffff; border-radius: 15px; padding: 20px; box-shadow: 0px 1px 0px 0px rgba(9,30,66,.31), 0px 5px 3px 0px rgba(9,30,66,.2); display: flex; align-items: center; justify-content: center; }
/* 圖 #brxe-ysatxo: max-width:300px; max-height:300px; img aspect-ratio:1/1; object-fit:contain */
.product-detail-image img { max-width: 300px; max-height: 300px; width: 100%; height: auto; aspect-ratio: 1/1; object-fit: contain; border-radius: 0; }
.product-detail-info { flex: 1; min-width: 0; }
/* 標題 h1 原版 font-size:2.4em (body 16px ≈ 38px) */
.product-detail-info h1 { font-size: 2.4em; font-weight: 700; color: #0f1a2a; margin: 0 0 .5em; line-height: 1.4; }
/* 分類標籤 .jet-listing-dynamic-terms__link color: teal(#69c8d1) */
.product-detail-meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 14px 0; }
.product-detail-meta a { display: inline-block; color: #69c8d1; font-size: 15px; font-weight: 600; }
.product-detail-meta a:hover { color: #3fac4b; }
/* 描述 .brxe-text-basic 鏈接色 #64748b；正文用 --text(#27364b) */
.product-description { font-size: 15px; line-height: 1.7; color: #27364b; margin-bottom: 4px; }
.product-description p { margin: 0 0 1em; }
/* 分隔線 .brxe-divider.horizontal .line: width:50%; border-top:1px solid; color #cbd4e1 */
.product-divider { height: 0; border: 0; border-top: 1px solid #cbd4e1; width: 50%; margin: 18px 0; }
/* 聯絡按鈕 .gradient-button.brxe-button: linear-gradient(#3fac4b,#139521) */
.contact-btn { display: inline-block; background-image: linear-gradient(#3fac4b, #139521); color: #fff; border-radius: 8px; padding: 12px 36px; font-weight: 600; margin-top: 6px; }
.contact-btn:hover { color: #fff; filter: brightness(1.05); }
/* 原版彩色字 .special_header: 綠色 + 底部 1px 綠邊（用於「相關產品」的產品、「聯絡我們」的聯絡） */
.special_header { color: #3fac4b; border-bottom: 1px solid #3fac4b; padding-bottom: 1px; }

/* 相關產品 #brxe-slodth: h3 標題(1.8em≈29px) + #brxe-lqpnxi grid repeat(4,1fr) */
.related-products { padding: 40px 0 80px; }
.related-products .related-title { font-size: 1.8em; font-weight: 700; color: #0f1a2a; margin: 0 0 22px; line-height: 1.4; }
.related-products .product-grid { gap: 20px; }
.related-products .pc-name { font-size: 1.1em; }

@media (max-width: 991px) {
  .product-detail-grid { grid-template-columns: 1fr; justify-items: center; }
  .product-detail-image { max-width: 360px; }
}
@media (max-width: 767px) {
  .related-products .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-info h1 { font-size: 1.8em; }
}

/* ===================== 「信譽產品」頁：產品目錄分類網格 ===================== */
.catalog-page { padding: 64px 0 80px; }
.catalog-page .catalog-title { font-size: 2.4em; color: #0f1a2a; font-weight: 700; margin: 0 0 40px; line-height: 1.4; }
.catalog-page .catalog-grid { margin-top: 8px; }

/* ===================== 「我們的業務」頁：優勢結構化佈局 ===================== */
.business-page { padding: 64px 0 80px; }
.business-page .business-title { font-size: 2.4em; color: #0f1a2a; font-weight: 700; margin: 0 0 18px; line-height: 1.4; }
.business-page .business-subtitle { font-size: 1.8em; color: #0f1a2a; font-weight: 700; margin: 0 0 30px; line-height: 1.4; }
.business-page .business-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 48px; }
.business-page .business-feature {
 background: #fff; border-radius: 12px; padding: 28px 18px; box-shadow: 0 1px 0 rgba(9,30,66,.31), 0 5px 3px rgba(9,30,66,.2);
 text-align: center; transition: transform .2s, box-shadow .2s;
}
.business-page .business-feature:hover { transform: translateY(-3px); box-shadow: 0 1px 0 rgba(9,30,66,.31), 0 12px 18px rgba(9,30,66,.18); }
.business-page .business-feature h5 { margin: 0; font-size: 1.1em; }
.business-page .business-feature h5 .gradient-text,
.business-page .business-feature h5 { color: #3fac4b; font-weight: 700; }
.business-page .business-addrs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 28px; }
.business-page .business-addr {
 background: #fff; border-radius: 15px; padding: 28px;
 box-shadow: 0 1px 0 rgba(9,30,66,.31), 0 5px 3px rgba(9,30,66,.2);
 color: #27364b; font-size: 16px;
}
.business-page .business-desc { font-size: 16px; line-height: 1.8; color: #27364b; margin: 12px 0; }
.business-page .btn { margin-top: 18px; }

/* 我們的業務：3 個獨立業務模塊（對齊原版 蔬菜加工/蔬菜批發/農業基地） */
.business-module { background: #f5f7f6; }
.business-module .business-mod-title { font-size: 2em; font-weight: 700; margin: 0 0 20px; }
.business-module p { font-size: 1.02em; line-height: 1.9; color: #27364b; max-width: 920px; margin: 0; }
@media (max-width: 767px) {
 .business-page .business-features { grid-template-columns: repeat(2, 1fr); }
 .business-page .business-addrs { grid-template-columns: 1fr; }
}

/* 聯絡表單 — 提交提示 + 防垃圾蜜罐欄位 */
.contact-alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 15px; line-height: 1.5; }
.contact-alert--ok { background: #e7f7ec; color: #139521; border: 1px solid #b7e6c4; }
.contact-alert--err { background: #fdeaea; color: #c0392b; border: 1px solid #f3c0c0; }
.belagri-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   關於我們頁 — 1:1 對齊 belagri 參考（4 大模塊）
   ============================================================ */
/* 仿原版 .gradient-header 文字漸變裁剪 */
.gradient-header {
  display: inline-block;
  background-image: linear-gradient(90deg, #3fac4b, #69c8d1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* 仿原版 .shadow_box_md */
.shadow_box_md {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0px 1px 0px 0px rgba(9, 30, 66, 0.31);
  box-shadow: 0px 5px 3px 0px rgba(9, 30, 66, 0.2);
}
.about-page .about-h3 { font-size: 1.8em; color: #0f1a2a; font-weight: 700; line-height: 1.4; margin: 0 0 24px; }
.about-page .about-h3 .special_header { padding-bottom: 2px; }

/* 公司簡介：圖文兩欄 */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-intro-text p { font-size: 1.02em; line-height: 1.9; color: #27364b; }
.about-intro-img img { width: 100%; border-radius: 15px; box-shadow: 0px 1px 0px 0px rgba(9,30,66,.31), 0px 5px 3px 0px rgba(9,30,66,.2); }

/* 農業基地直接採購：5 張卡片 */
.about-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.about-card { padding: 26px 16px; text-align: center; transition: transform .2s ease; }
.about-card:hover { transform: translateY(-3px); }
.about-card h5 { font-size: 1.08em; margin: 0 0 8px; font-weight: 700; }
.about-card p { margin: 0; font-size: .95em; color: #5b6b7e; line-height: 1.6; }

/* ISO 22000：圖文兩欄（對齊原版 #brxe-uodjow：兩列 gap、圖片 height:300px contain 居中） */
.about-iso-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-iso-title { font-size: 2em; font-weight: 700; margin: 0 0 20px; }
.about-iso-text p { font-size: 1.02em; line-height: 1.9; color: #27364b; }
.about-iso-img { display: flex; align-items: center; justify-content: center; }
.about-iso-img img { width: auto; height: 300px; max-width: 100%; object-fit: contain; display: block; border-radius: 12px; box-shadow: 0px 1px 0px 0px rgba(9,30,66,.31), 0px 5px 3px 0px rgba(9,30,66,.2); }
/* 驗證及榮譽：4 條好處清單（綠色對勾） */
.verify-list { list-style: none; margin: 18px 0 0; padding: 0; }
.verify-list li { position: relative; padding-left: 28px; margin-bottom: 12px; line-height: 1.7; color: #27364b; font-size: 1.02em; }
.verify-list li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 15px; height: 8px; border-left: 2.5px solid #3fac4b; border-bottom: 2.5px solid #3fac4b; transform: rotate(-45deg); }

/* 淨菜加工 源頭減廢 */
.about-waste-text { max-width: 920px; font-size: 1.02em; line-height: 1.9; color: #27364b; margin: 0; }

@media (max-width: 991px) {
  .page-section { padding: 60px 0; }
  .about-cards { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid,
  .about-iso-grid { grid-template-columns: 1fr; }
  .about-intro-img,
  .about-iso-img { order: -1; }
}
@media (max-width: 767px) {
  .page-section { padding: 40px 0; }
}
@media (max-width: 575px) {
  .about-cards { grid-template-columns: 1fr; }
  .about-page .about-h3 { font-size: 1.5em; }
}

/* 我們的業務：加工實景圖廊(3 圖網格) + 配送實景橫幅 */
.biz-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 30px 0; }
.biz-gallery img { width: 100%; height: auto; aspect-ratio: 784 / 362; object-fit: cover; border-radius: 12px; display: block; box-shadow: 0 4px 14px rgba(9,30,66,.12); }
.biz-delivery { margin: 30px 0; }
.biz-delivery img { width: 100%; height: auto; border-radius: 12px; display: block; box-shadow: 0 4px 14px rgba(9,30,66,.12); }
@media (max-width: 991px) { .biz-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .biz-gallery { grid-template-columns: 1fr; } }

/* 公司介紹影片(首頁 intro / 關於我們) — 替換原圖，點擊播放 */
.intro-media video.intro-video,
.about-intro-img video.intro-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  background: #000;
  box-shadow: 0 10px 30px rgba(9,30,66,.14);
  outline: none;
}
