/* ==============================================
   沃普农业 — 内页通用样式
   inner-pages.css
   适用：about / culture / factory / contact
   ============================================== */

/* ── 中文字体 ── */
body { font-family: 'Noto Sans SC', 'Roboto', sans-serif; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 80px 0 60px;
  position: relative;
  color: var(--white);
  min-height: 280px;
  display: flex;
  align-items: center;
  background-color: #1a4a1f;
}
/* 通用横幅背景层 */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
}
/* 关于页横幅：渐变叠加工厂图（勿用无效 background-image 简写） */
.page-hero--about {
  background-image:
    linear-gradient(135deg, rgba(26, 74, 31, 0.88) 0%, rgba(45, 122, 53, 0.75) 100%),
    url("/assets/images/factory.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* 企业文化页横幅 */
.page-hero--culture {
  background-image:
    linear-gradient(135deg, rgba(26, 74, 31, 0.85) 0%, rgba(45, 122, 53, 0.70) 100%),
    url("/assets/images/factory.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* 工厂展示页横幅 */
.page-hero--factory {
  background-image:
    linear-gradient(135deg, rgba(26, 74, 31, 0.88) 0%, rgba(45, 122, 53, 0.72) 100%),
    url("/assets/images/factory.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* 联系我们页横幅 */
.page-hero--contact {
  background-image:
    linear-gradient(135deg, rgba(26, 74, 31, 0.90) 0%, rgba(45, 122, 53, 0.78) 100%),
    url("/assets/images/factory.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-hero-short { min-height: 220px; padding: 60px 0 48px; }
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 12px 0 10px;
  line-height: 1.15;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
}

/* ── BREADCRUMB ── */
.breadcrumb ol { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.breadcrumb li::after { content: '/'; color: rgba(255,255,255,0.4); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--white); }

/* ── SECTION HELPERS ── */
.section-pad { padding: 72px 0; }
.bg-white { background: var(--white); }
.bg-light { background: var(--bg-light); }
.bg-green-dark { background: var(--green-dark); }
.section-header-center { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.section-title-left {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-desc { color: var(--text-light); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ── BUTTONS EXTRA ── */
.btn-outline-green { background: transparent; color: var(--green-main); border: 2px solid var(--green-main); }
.btn-outline-green:hover { background: var(--green-main); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--green-dark), var(--green-main)); padding: 56px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band-text h2 { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-band-text p { color: rgba(255,255,255,0.82); font-size: 1rem; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; margin-top: 16px; line-height: 1.65; max-width: 280px; }
.footer-desc { font-size: 0.87rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.footer-social a:hover { background: var(--green-main); color: var(--white); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.footer-socials a:hover { background: var(--green-main); color: var(--white); }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; font-family: var(--font-head); }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.6); }
.footer-col ul li a:hover { color: var(--green-light); padding-left: 4px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; color: rgba(255,255,255,0.65); margin-bottom: 10px; }
.footer-contact-list li i { color: var(--green-light); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--green-light); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-contacts p { font-size: 0.87rem; color: rgba(255,255,255,0.65); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-contacts p i { color: var(--green-light); flex-shrink: 0; }
.footer-contacts p a { color: rgba(255,255,255,0.65); }
.footer-contacts p a:hover { color: var(--green-light); }

/* ── BACK TO TOP ── */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; border-radius: 50%; background: var(--green-main); color: var(--white); font-size: 1rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: var(--transition); z-index: 9999; }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-3px); }

/* ── SEARCH OVERLAY ──
   由 style.css 统一控制（.search-overlay / .active），此处勿覆盖 display/背景，
   否则会与首页搜索层冲突或遮挡整页。 */
.search-box { display: flex; width: min(600px, 90vw); }
.search-box input { flex: 1; padding: 16px 20px; font-size: 1.1rem; border: none; border-radius: 6px 0 0 6px; outline: none; }
.search-box button { padding: 0 24px; background: var(--green-main); color: var(--white); border: none; border-radius: 0 6px 6px 0; font-size: 1.1rem; cursor: pointer; }

/* ── MOBILE MENU ── */
.mobile-menu-btn { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 6px; color: var(--text-dark); font-size: 1.2rem; }
@media (max-width: 900px) {
  .mobile-menu-btn { display: flex; }
  .main-nav { display: none; position: fixed; inset: 0; background: var(--white); z-index: 1500; flex-direction: column; padding: 80px 24px 24px; overflow-y: auto; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li > a { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; background: var(--bg-light); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .top-bar-left { display: none; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}

/* ======================================================
   ABOUT PAGE
   ====================================================== */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-intro-text p { color: var(--text-mid); line-height: 1.8; }
.about-cta-row { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.about-img-stack { position: relative; }
.about-img-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--green-main); color: var(--white);
  border-radius: var(--radius); padding: 16px 20px;
  text-align: center; box-shadow: var(--shadow);
}
.badge-year { font-family: var(--font-head); font-size: 2rem; font-weight: 800; line-height: 1; }
.badge-label { font-size: 0.75rem; opacity: 0.85; margin-top: 2px; }
.about-img-small {
  position: absolute; top: -24px; right: -24px;
  width: 140px; height: 100px; object-fit: cover;
  border-radius: var(--radius); border: 4px solid var(--white);
  box-shadow: var(--shadow);
}
@media (max-width: 860px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-img-small { display: none; }
  .about-img-badge { left: 16px; }
}

/* STATS DARK */
.stats-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item-light { text-align: center; padding: 40px 20px; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-item-light:last-child { border-right: none; }
.stat-number-light { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--white); display: inline; }
.stat-unit-light { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--green-light); display: inline; }
.stat-label-light { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-top: 6px; }
@media (max-width: 700px) {
  .stats-grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-item-light { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
}

/* TIMELINE */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border); transform: translateX(-50%); }
.timeline-item { display: flex; justify-content: flex-end; padding-right: calc(50% + 32px); margin-bottom: 40px; position: relative; }
.timeline-item.right { justify-content: flex-start; padding-right: 0; padding-left: calc(50% + 32px); }
.timeline-dot { position: absolute; left: 50%; top: 20px; width: 14px; height: 14px; background: var(--green-main); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--green-pale); transform: translateX(-50%); z-index: 1; }
.timeline-card { background: var(--white); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow); border-left: 4px solid var(--green-main); max-width: 380px; }
.timeline-item.right .timeline-card { border-left: none; border-right: 4px solid var(--green-light); }
.timeline-year { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--green-main); margin-bottom: 4px; }
.timeline-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.timeline-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }
@media (max-width: 700px) {
  .timeline::before { left: 16px; }
  .timeline-item, .timeline-item.right { padding: 0 0 0 48px; justify-content: flex-start; }
  .timeline-dot { left: 16px; }
  .timeline-card { max-width: 100%; }
}

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--white); margin: 0 auto 14px; }
.team-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-title { font-size: 0.82rem; color: var(--green-main); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 0.83rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 14px; }
.team-social { display: flex; justify-content: center; gap: 10px; }
.team-social a { width: 32px; height: 32px; border-radius: 50%; background: var(--green-pale); color: var(--green-main); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.team-social a:hover { background: var(--green-main); color: var(--white); }
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .team-grid { grid-template-columns: 1fr; } }

/* CERTIFICATIONS */
.cert-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.cert-item { background: var(--white); border-radius: var(--radius); padding: 24px 16px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.07); transition: var(--transition); border: 1px solid var(--border); }
.cert-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cert-icon { font-size: 2rem; color: var(--green-main); margin-bottom: 10px; }
.cert-name { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.cert-desc { font-size: 0.75rem; color: var(--text-light); }
@media (max-width: 900px) { .cert-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .cert-strip { grid-template-columns: 1fr 1fr; } }

/* PARTNER LOGOS */
.partner-logos { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.partner-logo-item { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 32px; font-weight: 700; font-size: 0.95rem; color: var(--text-mid); transition: var(--transition); }
.partner-logo-item:hover { border-color: var(--green-main); color: var(--green-main); background: var(--green-pale); }

/* ======================================================
   CULTURE PAGE
   ====================================================== */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mvv-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: var(--shadow); text-align: center; transition: var(--transition); }
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mvv-mission { border-top: 4px solid var(--green-main); }
.mvv-vision { border-top: 4px solid var(--accent); }
.mvv-values { border-top: 4px solid #1565c0; }
.mvv-icon { font-size: 2.4rem; color: var(--green-main); margin-bottom: 14px; }
.mvv-vision .mvv-icon { color: var(--accent); }
.mvv-values .mvv-icon { color: #1565c0; }
.mvv-card h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.mvv-divider { width: 40px; height: 3px; background: var(--green-main); margin: 12px auto 16px; border-radius: 2px; }
.mvv-vision .mvv-divider { background: var(--accent); }
.mvv-values .mvv-divider { background: #1565c0; }
.mvv-main { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.mvv-sub { font-size: 0.87rem; color: var(--text-mid); line-height: 1.75; text-align: left; }
.mvv-values-list { text-align: left; }
.mvv-values-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; color: var(--text-mid); margin-bottom: 10px; line-height: 1.6; }
.mvv-values-list li i { color: var(--green-main); margin-top: 3px; flex-shrink: 0; }
@media (max-width: 860px) { .mvv-grid { grid-template-columns: 1fr; } }

/* CULTURE PILLARS */
.culture-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pillar-item { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; box-shadow: var(--shadow); position: relative; overflow: hidden; transition: var(--transition); }
.pillar-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pillar-num { font-family: var(--font-head); font-size: 4rem; font-weight: 900; color: var(--green-pale); position: absolute; top: -8px; right: 16px; line-height: 1; }
.pillar-icon { font-size: 2rem; color: var(--green-main); margin-bottom: 14px; }
.pillar-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.pillar-item p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.75; }
@media (max-width: 860px) { .culture-pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .culture-pillars { grid-template-columns: 1fr; } }

/* QUOTE BANNER */
.quote-banner { padding: 64px 0; }
.quote-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.quote-icon { font-size: 3rem; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
blockquote { font-size: 1.2rem; color: rgba(255,255,255,0.92); line-height: 1.8; font-style: italic; margin-bottom: 28px; }
.quote-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.quote-avatar { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--white); }
.quote-author strong { display: block; color: var(--white); font-weight: 700; }
.quote-author span { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* EMPLOYEE LIFE */
.life-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.life-card-col { display: flex; flex-direction: column; gap: 20px; }
.life-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.life-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.life-card-large img { height: 360px; }
.life-card-col .life-card img { height: 170px; }
.life-card:hover img { transform: scale(1.05); }
.life-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.75)); padding: 20px 20px 18px; color: var(--white); }
.life-card-tag { display: inline-block; background: var(--green-main); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 12px; margin-bottom: 6px; }
.life-card-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.88); line-height: 1.5; }
@media (max-width: 700px) { .life-grid { grid-template-columns: 1fr; } }

/* BENEFITS */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-item { background: var(--white); border-radius: var(--radius); padding: 28px 22px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: var(--transition); border: 1px solid var(--border); }
.benefit-item:hover { border-color: var(--green-main); transform: translateY(-4px); }
.benefit-icon { font-size: 2rem; color: var(--green-main); margin-bottom: 12px; }
.benefit-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.benefit-item p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }
@media (max-width: 700px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }

/* ======================================================
   FACTORY PAGE
   ====================================================== */
.factory-stats-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 0; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.factory-stats-row { display: flex; align-items: stretch; justify-content: space-around; flex-wrap: wrap; }
.fstat { display: flex; align-items: center; gap: 14px; padding: 22px 24px; }
.fstat i { font-size: 1.8rem; color: var(--green-main); }
.fstat strong { display: block; font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--text-dark); }
.fstat span { font-size: 0.8rem; color: var(--text-light); }
.fstat-divider { width: 1px; background: var(--border); align-self: stretch; margin: 12px 0; }
@media (max-width: 900px) { .factory-stats-row { justify-content: flex-start; } .fstat-divider { display: none; } }

.factory-base-header { text-align: center; margin-bottom: 40px; }
.base-badge { display: inline-block; background: var(--green-main); color: var(--white); font-size: 0.78rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; margin-bottom: 10px; letter-spacing: 1px; }
.base-badge-2 { background: var(--accent); }
.factory-base-header h2 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; margin-bottom: 6px; }
.factory-base-header p { color: var(--text-light); }

.factory-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.factory-intro-grid-reverse { direction: rtl; }
.factory-intro-grid-reverse > * { direction: ltr; }
.factory-intro-text p { color: var(--text-mid); line-height: 1.8; }
.factory-specs { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.fspec-item { display: flex; align-items: flex-start; gap: 12px; }
.fspec-item i { color: var(--green-main); margin-top: 3px; width: 16px; flex-shrink: 0; }
.fspec-item strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-dark); }
.fspec-item span { font-size: 0.82rem; color: var(--text-mid); }
@media (max-width: 860px) { .factory-intro-grid { grid-template-columns: 1fr; } .factory-intro-grid-reverse { direction: ltr; } }

/* GALLERY */
.factory-gallery {}
.gallery-main-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 10px; }
.gallery-main-wrap img { width: 100%; height: 300px; object-fit: cover; transition: opacity 0.3s ease; }
.gallery-zoom-btn { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; background: rgba(0,0,0,0.5); color: var(--white); border-radius: 6px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.9rem; transition: var(--transition); }
.gallery-zoom-btn:hover { background: var(--green-main); }
.gallery-thumbs { display: flex; gap: 8px; }
.gthumb { flex: 1; border-radius: 6px; overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: var(--transition); padding: 0; }
.gthumb img { width: 100%; height: 64px; object-fit: cover; display: block; }
.gthumb.active, .gthumb:hover { border-color: var(--green-main); }

/* PROCESS FLOW */
.process-flow { display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; justify-content: center; }
.process-step { background: var(--white); border-radius: var(--radius); padding: 20px 14px; text-align: center; box-shadow: var(--shadow); width: 120px; flex-shrink: 0; transition: var(--transition); }
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-main); }
.process-num { font-family: var(--font-head); font-size: 0.7rem; font-weight: 800; color: var(--green-main); letter-spacing: 1px; margin-bottom: 6px; }
.process-icon { font-size: 1.6rem; color: var(--green-main); margin-bottom: 8px; }
.process-step h4 { font-size: 0.82rem; font-weight: 700; margin-bottom: 6px; }
.process-step p { font-size: 0.72rem; color: var(--text-light); line-height: 1.5; }
.process-arrow { color: var(--green-light); font-size: 1rem; padding: 0 4px; align-self: center; margin-top: -20px; }
@media (max-width: 900px) { .process-flow { gap: 12px; } .process-arrow { display: none; } .process-step { width: calc(25% - 12px); } }
@media (max-width: 600px) { .process-step { width: calc(50% - 12px); } }

/* R&D LAB */
.lab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lab-card { background: var(--white); border-radius: var(--radius); padding: 24px 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid var(--border); transition: var(--transition); }
.lab-card:hover { border-color: var(--green-main); transform: translateY(-4px); }
.lab-icon { font-size: 1.8rem; color: var(--green-main); margin-bottom: 10px; }
.lab-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.lab-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }
@media (max-width: 700px) { .lab-grid { grid-template-columns: 1fr 1fr; } }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; z-index: 3000; display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.88); }
.lightbox-content { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: var(--radius); display: block; }
.lightbox-close { position: absolute; top: -40px; right: 0; color: var(--white); font-size: 1.4rem; background: none; border: none; cursor: pointer; }
.lightbox-caption { color: rgba(255,255,255,0.8); text-align: center; margin-top: 12px; font-size: 0.88rem; }

/* ======================================================
   CONTACT PAGE
   ====================================================== */
/* Contact info cards bar */
.contact-cards-bar { background: var(--white); padding: 0; border-bottom: 1px solid var(--border); }
.contact-cards-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.contact-card-item { padding: 28px 24px; text-align: center; border-right: 1px solid var(--border); transition: var(--transition); }
.contact-card-item:last-child { border-right: none; }
.contact-card-item:hover { background: var(--green-pale); }
.cc-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--green-pale); color: var(--green-main); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin: 0 auto 12px; }
.contact-card-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.cc-main { display: block; font-size: 1rem; font-weight: 700; color: var(--green-main); margin-bottom: 4px; }
.contact-card-item p { font-size: 0.8rem; color: var(--text-light); }
@media (max-width: 700px) { .contact-cards-row { grid-template-columns: 1fr 1fr; } }

/* Main contact grid (legacy / alternate layouts) */
.contact-main-grid { display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: start; }
@media (max-width: 1000px) { .contact-main-grid { grid-template-columns: 1fr; } }

/* Contact: two-column split (info left, map right) */
.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-two-col { grid-template-columns: 1fr; }
}
.contact-two-col-left,
.contact-two-col-right { min-width: 0; }
.contact-two-col-heading {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green-main);
  display: inline-block;
  line-height: 1.25;
}

.contact-office-info { display: flex; flex-direction: column; min-width: 0; }
.contact-kv-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contact-kv-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.contact-kv-label {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--text-dark);
}
.contact-kv-dots {
  flex: 1;
  min-width: 16px;
  border-bottom: 1px dotted var(--border);
  height: 0;
  align-self: center;
  opacity: 0.85;
}
.contact-kv-value {
  flex: 1 1 200px;
  min-width: 0;
  text-align: right;
  color: var(--text-mid);
}
@media (max-width: 600px) {
  .contact-kv-row { flex-wrap: wrap; }
  .contact-kv-dots { display: none; }
  .contact-kv-value { flex: 1 1 100%; text-align: left; margin-top: 4px; }
}
.contact-kv-value a {
  color: var(--green-main);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-kv-value a:hover { color: var(--green-dark); }
.btn-contact-route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  background: #f29924;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(242, 153, 36, 0.35);
}
.btn-contact-route:hover {
  background: #e08815;
  color: var(--white);
  transform: translateY(-1px);
}
/* Map in two-col right panel */
.contact-two-col-right .map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.contact-two-col-right #map.leaflet-map {
  width: 100%;
  height: 340px;
}

/* Full-width inquiry block below office section */
.contact-inquiry-section .contact-form-wrap { max-width: 900px; margin: 0 auto; }

/* Form */
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow); }
.contact-form-header { margin-bottom: 28px; }
.contact-form-header h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.contact-form-header h2 i { color: var(--green-main); }
.contact-form-header p { font-size: 0.9rem; color: var(--text-mid); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.req { color: #e53935; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 6px; font-size: 0.9rem; font-family: inherit;
  color: var(--text-dark); background: var(--white); transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-main); box-shadow: 0 0 0 3px rgba(45,122,53,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-err { display: block; font-size: 0.78rem; color: #e53935; margin-top: 4px; min-height: 16px; }
.form-secure { text-align: center; font-size: 0.78rem; color: var(--text-light); margin-top: 10px; }
.form-secure i { color: var(--green-main); margin-right: 4px; }
.form-group-check label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; font-weight: 400; color: var(--text-mid); cursor: pointer; }
.form-group-check input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--green-main); }

/* Product checkboxes */
.product-checkboxes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.checkbox-label { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-mid); cursor: pointer; }
.checkbox-label input[type="checkbox"] { accent-color: var(--green-main); }

/* Subject tabs */
.subject-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.stab { padding: 7px 14px; border-radius: 20px; border: 1.5px solid var(--border); font-size: 0.82rem; font-weight: 600; color: var(--text-mid); background: var(--white); cursor: pointer; transition: var(--transition); }
.stab:hover { border-color: var(--green-main); color: var(--green-main); }
.stab.active { background: var(--green-main); border-color: var(--green-main); color: var(--white); }

/* Company info card */
.contact-info-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.contact-info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; color: var(--text-dark); }
.contact-info-card h3 i { color: var(--green-main); }
.company-info-list { display: flex; flex-direction: column; gap: 12px; }
.ci-item { display: flex; align-items: flex-start; gap: 12px; }
.ci-item > i { color: var(--green-main); margin-top: 3px; width: 16px; flex-shrink: 0; }
.ci-item strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-dark); }
.ci-item span, .ci-item a { font-size: 0.83rem; color: var(--text-mid); }
.ci-item a:hover { color: var(--green-main); }

/* Business managers */
.bm-list { display: flex; flex-direction: column; gap: 14px; }
.bm-item { display: flex; align-items: center; gap: 12px; padding: 12px; background: var(--bg-light); border-radius: var(--radius); }
.bm-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--white); flex-shrink: 0; }
.bm-info { flex: 1; }
.bm-info strong { display: block; font-size: 0.9rem; font-weight: 700; }
.bm-info span { font-size: 0.78rem; color: var(--text-light); }
.bm-contacts { display: flex; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.bm-contacts a { font-size: 0.78rem; color: var(--green-main); display: flex; align-items: center; gap: 4px; }
.bm-contacts a:hover { text-decoration: underline; }
.bm-status { font-size: 0.72rem; font-weight: 700; padding: 3px 8px; border-radius: 10px; }
.bm-status.online { background: #e8f5e9; color: #2e7d32; }

/* Map */
.map-title { font-size: 1rem; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.map-title i { color: var(--green-main); }
.map-container { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-actions { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }

/* Offices */
.offices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.office-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px 20px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); }
.office-card:hover { border-color: var(--green-main); transform: translateY(-4px); }
.office-flag { font-size: 2rem; margin-bottom: 10px; }
.office-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 12px; color: var(--green-dark); }
.office-card p { display: flex; align-items: flex-start; gap: 8px; font-size: 0.83rem; color: var(--text-mid); margin-bottom: 8px; line-height: 1.5; }
.office-card p i { color: var(--green-main); margin-top: 2px; flex-shrink: 0; }
.office-card p a { color: var(--text-mid); }
.office-card p a:hover { color: var(--green-main); }
@media (max-width: 860px) { .offices-grid { grid-template-columns: 1fr 1fr; } }

/* Contact FAQ */
.contact-faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.cfaq-item { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.cfaq-q { width: 100%; display: flex; align-items: center; gap: 10px; padding: 16px 20px; font-size: 0.95rem; font-weight: 600; color: var(--text-dark); text-align: left; background: none; border: none; cursor: pointer; transition: var(--transition); }
.cfaq-q:hover { color: var(--green-main); background: var(--green-pale); }
.cfaq-q[aria-expanded="true"] { color: var(--green-main); background: var(--green-pale); }
.cfaq-q i:first-child { color: var(--green-main); flex-shrink: 0; }
.cfaq-arrow { margin-left: auto; font-size: 0.75rem; transition: transform 0.3s ease; }
.cfaq-q[aria-expanded="true"] .cfaq-arrow { transform: rotate(180deg); }
.cfaq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.cfaq-a.open { max-height: 300px; }
.cfaq-a p { padding: 0 20px 16px; font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

/* Modal */
.b2b-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; }
.b2b-modal[hidden] { display: none; }
.b2b-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.b2b-modal-box { position: relative; z-index: 1; background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px; width: min(480px, 92vw); box-shadow: var(--shadow-lg); }

/* Leaflet Map */
#map.leaflet-map { height: 320px; width: 100%; border-radius: var(--radius); }
.leaflet-popup-content-wrapper { border-radius: var(--radius); }
.leaflet-popup-content { font-family: inherit; font-size: 0.88rem; }
