/* Project-owned class layer.
   Modern International Enterprise Design System */

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

/* Global Reset & Typography System */
:root {
  --primary-blue: #0084c7;
  --primary-blue-hover: #0284c7;
  --primary-gradient: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  --accent-cyan: #06b6d4;
  --text-dark: #0f172a;
  --text-body: #475569;
  --text-muted: #94a3b8;
  --bg-light: #f8fafc;
  --bg-dark: #0b132a;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 10px 25px -5px rgba(2, 132, 199, 0.3);
}

html {
  background: #fff;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-body);
  background-color: #fff;
  line-height: 1.6;
}

.vc-html { background: #fff; }
.vc-site { margin: 0; }

.vc-page-home {}
.vc-page-products {}
.vc-page-products-more {}
.vc-page-product-detail {}
.vc-page-about {}
.vc-page-applications {}
.vc-page-news-list {}
.vc-page-news-detail {}
.vc-page-contact {}

.vc-page {
  position: relative;
}

/* Site header / navigation (Glassmorphic Header) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 90px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-sizing: border-box;
  width: 1280px;
  max-width: 92%;
  height: 90px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-logo-link {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-logo-link:hover {
  opacity: 0.9;
}

.site-logo-image {
  display: block;
  width: auto;
  height: 52px;
  max-width: 240px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: 100%;
}

.site-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  height: 44px;
  color: #334155;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav-link::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.site-nav-link:hover {
  color: var(--primary-blue);
  background: rgba(2, 132, 199, 0.04);
}

.site-nav-link:hover::after {
  width: 24px;
}

.site-nav-link.is-active {
  color: var(--primary-blue);
  background: rgba(2, 132, 199, 0.08);
  font-weight: 700;
}

.site-nav-link.is-active::after {
  width: 28px;
}

/* Home banner only base overrides */
.home-banner {
  position: relative;
  height: 620px;
  overflow: hidden;
}

.home-banner-slider {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--bg-dark);
}

.home-banner-slider.swiper {
  width: 100%;
}

.home-banner-slider .swiper-slide {
  height: 620px;
}

.home-banner-slide {
  position: relative;
  height: 100%;
}

/* Hide legacy elements */
#module1006,
.floatRightTop {
  display: none !important;
}

/* Hero & Content wrappers */
.vc-hero,
.vc-hero-slider {
  position: relative;
}

.vc-hero-slider {
  overflow: hidden;
}

.vc-hero-slide {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Main content helpers */
.vc-main-wrap,
.vc-main,
.vc-content,
.vc-content-forms,
.vc-content-main {
  position: relative;
}

.vc-rich-text {
  box-sizing: border-box;
}

/* Products Cards */
.vc-product-grid {
  position: relative;
}

.vc-product-card {
  box-sizing: border-box;
}

.vc-product-card-media,
.vc-product-card-text,
.vc-product-card-title {
  box-sizing: border-box;
}

.vc-product-image-link,
.vc-inquiry-button {
  text-decoration: none;
}

.vc-product-image-link {
  display: block;
}

.vc-product-detail,
.vc-product-detail-title,
.vc-product-detail-brief,
.vc-product-detail-props {
  box-sizing: border-box;
}

/* News Cards & Social Share */
.vc-news-card {
  box-sizing: border-box;
}

.vc-news-title {
  text-decoration: none;
}

.vc-news-summary,
.vc-news-time {
  box-sizing: border-box;
}

.shareInfo .shareListPanel,
.shareInfo .sharePanel {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.shareInfo .shareIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  color: #fff;
  background: #4b5563;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 18px 18px !important;
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease, background-color .2s ease;
}

.shareInfo .shareIcon:hover {
  opacity: .9;
  transform: translateY(-2px);
}

.shareInfo .custom-share-icon {
  background-image: none !important;
  background-size: auto !important;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.shareInfo .shareIcon.linkedin {
  background-color: #0a66c2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20.45 20.45h-3.56v-5.57c0-1.33-.02-3.04-1.85-3.04-1.86 0-2.14 1.45-2.14 2.94v5.67H9.34V9h3.42v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.27 2.37 4.27 5.46v6.28ZM5.32 7.43a2.06 2.06 0 1 1 0-4.12 2.06 2.06 0 0 1 0 4.12Zm1.78 13.02H3.54V9H7.1v11.45ZM22.22 0H1.77C.79 0 0 .77 0 1.72v20.56C0 23.23.79 24 1.77 24h20.45c.98 0 1.78-.77 1.78-1.72V1.72C24 .77 23.2 0 22.22 0Z'/%3E%3C/svg%3E");
}

.shareInfo .shareIcon.x_twitter {
  background-color: #0f172a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18.9 1.15h3.68l-8.04 9.19L24 22.85h-7.4l-5.8-7.58-6.63 7.58H.49l8.6-9.83L0 1.15h7.59l5.24 6.93 6.07-6.93Zm-1.29 19.5h2.04L6.48 3.23H4.29l13.32 17.42Z'/%3E%3C/svg%3E");
}

.shareInfo .shareIcon.facebook {
  background-color: #1877f2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M24 12.07C24 5.4 18.63 0 12 0S0 5.4 0 12.07C0 18.1 4.39 23.1 10.13 24v-8.44H7.08v-3.49h3.05V9.41c0-3.02 1.79-4.69 4.53-4.69 1.31 0 2.69.24 2.69.24v2.97h-1.51c-1.49 0-1.96.93-1.96 1.89v2.25h3.33l-.53 3.49h-2.8V24C19.61 23.1 24 18.1 24 12.07Z'/%3E%3C/svg%3E");
  background-size: 20px 20px !important;
}

.shareInfo .shareIcon.email {
  background-color: #64748b;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M3 5h18a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1Zm1.9 2 7.1 5.2L19.1 7H4.9Zm15.1 1.4-7.4 5.4a1 1 0 0 1-1.2 0L4 8.4V17h16V8.4Z'/%3E%3C/svg%3E");
}

/* Shared page-width container (used by global contact CTA, etc.) */
.home-section-inner {
  box-sizing: border-box;
  position: relative;
  width: 1280px;
  max-width: 92%;
  margin: 0 auto;
  padding: 0 16px;
}

/* Primary CTA button */
.btn-primary,
.btn-primary:link,
.btn-primary:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border: 1px solid #38bdf8;
  border-radius: 8px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 8px 20px -4px rgba(2, 132, 199, 0.5);
  transition: all 0.25s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  border-color: #7dd3fc;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -4px rgba(2, 132, 199, 0.6);
}

/* Global contact CTA bar (above site footer) */
.home-contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #0b132a 0%, #1e293b 100%);
  color: #ffffff;
}

.home-contact-stage {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.home-contact-logo {
  display: block;
  max-width: 210px;
  height: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

.home-contact-logo:hover {
  opacity: 1;
}

.home-contact-tagline {
  margin: 0 0 16px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

.home-contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.home-contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.16);
  color: #e2e8f0 !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-contact-social-link:hover {
  background: rgba(56, 189, 248, 0.28);
  transform: translateY(-1px);
}

.home-contact-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
}

.home-contact-title.is-muted {
  color: #94a3b8;
}

.home-contact-line {
  margin: 0 0 10px;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
}

.home-contact-label {
  color: #94a3b8;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .home-contact-stage {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Modern Industrial Site Footer */
.site-footer {
  background: var(--bg-dark);
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 1280px;
  max-width: 92%;
  margin: 0 auto;
  padding: 40px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.site-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-footer-links a:hover {
  color: var(--accent-cyan);
}

.site-footer-copy {
  color: #64748b;
  font-size: 13px;
}

.site-footer-divider {
  margin: 0 4px;
  color: #334155;
}
