* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; line-height: 1.6; color: #333; background: #fff; overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; background: transparent; padding: 0 50px; height: 80px; display: flex; align-items: center; justify-content: space-between; box-shadow: none; z-index: 1000; transition: background 0.3s, box-shadow 0.3s; }
.navbar.scrolled { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.navbar.scrolled .nav-links a { color: #333; }
.navbar.scrolled .nav-links a:hover { color: #1a56a8; }
.navbar.scrolled .nav-links > li > a { color: #333; }
.navbar.scrolled .nav-links > li > a:hover { color: #1a56a8; }
.navbar.scrolled .btn-search { color: #333; }
.navbar.scrolled .btn-nav { border-color: #1a56a8; color: #1a56a8; }
.navbar.scrolled .btn-nav:hover { background: #1a56a8; color: #fff; }
.logo { font-size: 28px; font-weight: 700; color: #1a56a8; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo img { height: 55px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links > li { position: relative; padding: 28px 0; }
.nav-links a { text-decoration: none; color: #fff; font-weight: 500; font-size: clamp(13px, 1.1vw, 18px); transition: color 0.3s; display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.nav-links a:hover { color: rgba(255,255,255,0.7); }
.nav-links a i { font-size: 10px; transition: transform 0.3s; }
.nav-links a:hover i { transform: rotate(180deg); }
.has-dropdown .dropdown { position: absolute; top: 100%; left: 0; background: #fff; min-width: 200px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease 0.15s; z-index: 100; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0.1s; }
.dropdown li { list-style: none; }
.dropdown a { color: #333; font-size: clamp(13px, 1vw, 16px); padding: 10px 20px; display: block; transition: background 0.3s, color 0.3s; white-space: nowrap; }
.dropdown a:hover { background: #f0f4ff; color: #1a56a8; }
.has-sub-dropdown { position: relative; }
.has-sub-dropdown > a { display: flex !important; justify-content: space-between; align-items: center; }
.has-sub-dropdown > a i { font-size: 10px; transform: none !important; }
.sub-dropdown { position: absolute; left: 100%; top: 0; background: #fff; min-width: 180px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); padding: 10px 0; opacity: 0; visibility: hidden; transform: translateX(10px); transition: all 0.3s; z-index: 101; list-style: none; }
.has-sub-dropdown:hover .sub-dropdown { opacity: 1; visibility: visible; transform: translateX(0); }
.sub-dropdown li { list-style: none; }
.sub-dropdown a { color: #333; font-size: clamp(13px, 1vw, 16px); padding: 10px 20px; display: block; transition: background 0.3s, color 0.3s; white-space: nowrap; }
.sub-dropdown a:hover { background: #f0f4ff; color: #1a56a8; }
.nav-actions { display: flex; gap: 15px; align-items: center; }
.lang-selector { position: relative; }
.lang-selector > a { color: #fff; text-decoration: none; font-size: 18px; display: flex; align-items: center; gap: 5px; transition: color 0.3s; cursor: pointer; }
.lang-selector > a i.fa-globe { font-size: 20px; }
.lang-selector > a i { font-size: 10px; }
.navbar.scrolled .lang-selector > a { color: #333; }
.lang-dropdown { position: absolute; top: 100%; right: 0; background: #fff; min-width: 120px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s; z-index: 100; pointer-events: none; }
.lang-selector:hover .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.lang-dropdown a { display: block; padding: 10px 18px; color: #333; text-decoration: none; font-size: 16px; transition: background 0.3s, color 0.3s; }
.lang-dropdown a:hover { background: #f0f4ff; color: #1a56a8; }
.lang-dropdown a.active { color: #1a56a8; font-weight: 600; }
.btn-search { background: none; border: none; cursor: pointer; font-size: 18px; color: #fff; transition: color 0.3s; }
.btn-nav { background: transparent; color: #fff; padding: 10px 25px; border: 2px solid #fff; border-radius: 25px; font-weight: 500; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; font-size: 15px; }
.btn-nav:hover { background: #fff; color: #1a56a8; }
.btn-primary { background: #1a56a8; color: #fff; padding: 10px 25px; border: none; border-radius: 25px; font-weight: 500; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: #134a91; transform: translateY(-2px); }

/* Hero Slider */
.hero { margin-top: 0; min-height: 100vh; position: relative; overflow: hidden; background: #1a1a2e; }
.hero-video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-video-bg video { width: 100%; height: 120%; object-fit: cover; object-position: center top; }
.hero-video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.45); }
.hero-slider { position: relative; width: 100%; height: 100vh; z-index: 1; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-container { max-width: 1400px; margin: 0 auto; padding: 120px 50px 80px; position: relative; z-index: 2; width: 100%; height: 100%; display: flex; align-items: center; }
.hero-content { color: #fff; max-width: 550px; }
.hero-logo { margin-bottom: 30px; }
.hero-logo img { height: 40px; width: auto; }
.hero-title { font-size: 36px; font-weight: 400; line-height: 1.3; margin-bottom: 25px; }
.hero-desc { font-size: 15px; opacity: 0.9; margin-bottom: 0; line-height: 1.8; }
.hero-desc a { color: #fff; text-decoration: underline; }
.hero-desc a:hover { opacity: 0.8; }
.hero-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.hero-dots .dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; }
.hero-dots .dot.active { background: #fff; transform: scale(1.2); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.2); border: none; color: #fff; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 18px; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.hero-arrow:hover { background: rgba(255,255,255,0.4); }
.hero-prev { left: 30px; }
.hero-next { right: 30px; }

/* Stats */
.stats { padding: 80px 50px; background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%); }
.stats-container { max-width: 1400px; margin: 0 auto; }
.stats-header { text-align: center; margin-bottom: 60px; }
.stats-header h2 { font-size: 36px; color: #1a1a2e; margin-bottom: 15px; }
.stats-header p { color: #666; font-size: 18px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-card { background: #fff; padding: 40px 30px; border-radius: 20px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; }
.stat-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(26, 86, 168, 0.15); }
.stat-icon { width: 70px; height: 70px; background: linear-gradient(135deg, #1a56a8 0%, #2d7dd2 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; color: #fff; font-size: 28px; }
.stat-number { font-size: 48px; font-weight: 700; color: #1a56a8; margin-bottom: 10px; }
.stat-label { color: #666; font-size: 16px; }

/* Science */
.science { padding: 100px 50px; background: #fff; }

/* Product Tabs */
.product-tabs { display: flex; gap: 0; margin-bottom: 50px; justify-content: center; overflow: hidden; }
.product-tabs-wrapper { display: flex; width: 100%; }
.product-tab { text-align: center; cursor: pointer; padding: 10px 15px; position: relative; transition: all 0.3s; flex: 1; }
.product-tab-image { width: 100%; height: 120px; overflow: hidden; border-radius: 8px; margin-bottom: 10px; }
.product-tab-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.product-tab:hover .product-tab-image img { transform: scale(1.05); }
.product-tab span { font-size: 15px; color: #333; font-weight: 500; }
.product-tab::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-top: 8px solid #1a56a8; opacity: 0; transition: opacity 0.3s; }
.product-tab.active::after { opacity: 1; }
.product-tab.active::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: #1a56a8; border-radius: 2px; }
.product-tab.active span { color: #1a56a8; }
.product-tabs-nav { display: none; }

/* Product Panels */
.product-panels { margin-top: 30px; }
.product-panel { display: none; }
.product-panel.active { display: block; }
.product-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
.product-item { background: #fff; border-radius: 12px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; border: 1px solid #e8e8e8; display: flex; flex-direction: column; }
.product-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.product-item-image { flex: 1; display: flex; align-items: center; justify-content: center; padding: 15px; background: #fff; }
.product-item-image img { max-width: 90%; max-height: 240px; object-fit: contain; }
.product-item-name { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; background: #1a3a5c; color: #fff; font-size: 15px; gap: 10px; min-height: 70px; }
.product-item-name span { flex: 1; line-height: 1.4; }
.product-item-name i { font-size: 20px; flex-shrink: 0; opacity: 0.8; transition: opacity 0.3s; }
.product-item:hover .product-item-name i { opacity: 1; }

/* About Intro */
.about-intro { padding: 80px 50px; background: #f8f9fc; position: relative; overflow: hidden; }
.about-intro-container { max-width: 1400px; margin: 0 auto; }
.about-intro-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.about-intro-header-left h2 { font-size: 36px; color: #1a1a2e; margin-bottom: 10px; font-weight: 700; }
.about-subtitle { color: #1a56a8; font-size: 16px; }
.about-bars { color: #1a56a8; letter-spacing: 2px; }
.btn-about-more { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: #1a56a8; color: #fff; text-decoration: none; border-radius: 6px; font-size: 15px; font-weight: 500; transition: all 0.3s; }
.btn-about-more:hover { background: #134a91; }
.about-intro-body { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.about-video { border-radius: 8px; overflow: hidden; aspect-ratio: 16/9; background: #000; }
.about-video iframe { width: 100%; height: 100%; }
.about-intro-right { }
.about-desc { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 40px; }
.about-stats-row { display: flex; }
.about-stat { flex: 1; text-align: center; padding: 20px 10px; border-left: 1px solid #e0e0e0; }
.about-stat:first-child { border-left: none; }
.about-stat-top { display: flex; align-items: baseline; justify-content: center; gap: 2px; white-space: nowrap; }
.about-stat-number { font-size: 42px; font-weight: 700; color: #1a56a8; line-height: 1; }
.about-stat-unit { font-size: 18px; color: #1a56a8; font-weight: 500; }
.about-stat-label { font-size: 13px; color: #999; margin-top: 6px; }
.section-container { max-width: 1600px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; position: relative; }
.section-header .view-more { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.section-header h2 { font-size: 36px; color: #1a1a2e; margin-bottom: 15px; }
.section-header p { color: #666; font-size: 18px; max-width: 600px; margin: 0 auto; }
.science-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.science-card { background: linear-gradient(135deg, #f8f9fc 0%, #fff 100%); border-radius: 20px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.science-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.science-card-image { height: 200px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.science-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.science-card:hover .science-card-image img { transform: scale(1.1); }
.science-card-content { padding: 30px; }
.science-card h3 { font-size: 22px; color: #1a1a2e; margin-bottom: 15px; }
.science-card p { color: #666; margin-bottom: 20px; line-height: 1.7; }
.science-card a { color: #1a56a8; text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s; }
.science-card a:hover { gap: 12px; }

/* Solutions */
.solutions { padding: 100px 50px; background: #f8f9fc; }
.solutions-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; height: 560px; max-width: 1600px; margin: 0 auto; }
.solution-card { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; }
.solution-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.solution-card:nth-child(2) { grid-column: 2 / 4; grid-row: 1; }
.solution-card:nth-child(3) { grid-column: 2; grid-row: 2; }
.solution-card:nth-child(4) { grid-column: 3; grid-row: 2; }
.solution-card:nth-child(5) { grid-column: 4; grid-row: 1 / 3; }
.solution-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.solution-card:hover img { transform: scale(1.05); }
.solution-title { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%); transition: opacity 0.5s ease; }
.solution-title h3 { color: #fff; font-size: 18px; font-weight: 500; }
.solution-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26, 86, 168, 0.85); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 30px; text-align: center; opacity: 0; transition: opacity 0.5s ease; }
.solution-overlay h3 { color: #fff; font-size: 20px; margin-bottom: 12px; }
.solution-overlay p { color: rgba(255,255,255,0.9); font-size: 14px; line-height: 1.7; }
.solution-card:hover .solution-title { opacity: 0; }
.solution-card:hover .solution-overlay { opacity: 1; }
.solution-card.active .solution-title { opacity: 0; }
.solution-card.active .solution-overlay { opacity: 1; }
.solution-link { color: #fff; text-decoration: none; font-size: 14px; font-weight: 500; margin-top: 15px; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 2px; transition: gap 0.3s; }
.solution-link:hover { gap: 12px; }

/* Pipeline */
.pipeline { padding: 100px 50px; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); color: #fff; position: relative; overflow: hidden; }
.pipeline::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: 
    radial-gradient(circle at 20% 50%, rgba(26, 86, 168, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45, 125, 210, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(91, 163, 230, 0.08) 0%, transparent 40%);
    animation: pulseBg 8s ease-in-out infinite alternate; }
.pipeline::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: 
    linear-gradient(0deg, transparent 24%, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.03) 26%, transparent 27%, transparent 74%, rgba(255,255,255,0.03) 75%, rgba(255,255,255,0.03) 76%, transparent 77%),
    linear-gradient(90deg, transparent 24%, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.03) 26%, transparent 27%, transparent 74%, rgba(255,255,255,0.03) 75%, rgba(255,255,255,0.03) 76%, transparent 77%);
    background-size: 80px 80px; }
@keyframes pulseBg { 0% { opacity: 0.6; } 100% { opacity: 1; } }
.pipeline .section-container { position: relative; z-index: 1; }
.pipeline .section-header h2 { color: #fff; }
.pipeline .section-header p { color: rgba(255,255,255,0.7); }
.pipeline-areas { display: flex; justify-content: center; gap: 40px; margin-top: 50px; flex-wrap: wrap; }
.pipeline-area { text-align: center; padding: 40px 50px; background: rgba(255,255,255,0.05); border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s; cursor: pointer; }
.pipeline-area:hover { background: rgba(255,255,255,0.1); border-color: #2d7dd2; transform: translateY(-5px); }
.pipeline-area i { font-size: 50px; color: #5ba3e6; margin-bottom: 20px; }
.pipeline-area h3 { font-size: 20px; margin-bottom: 10px; }
.pipeline-area p { color: rgba(255,255,255,0.6); font-size: 14px; }

/* Stories */
.stories { padding: 100px 50px; background: #f8f9fc; }
.stories-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; }
.stories-header h2 { font-size: 36px; color: #1a1a2e; }
.stories-header a { color: #1a56a8; text-decoration: none; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.stories-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.expert-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.expert-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.expert-tab { padding: 10px 28px; border: 1px solid #ddd; border-radius: 25px; background: #fff; color: #666; font-size: 15px; cursor: pointer; transition: all 0.3s; }
.expert-tab:hover { border-color: #1a56a8; color: #1a56a8; }
.expert-tab.active { background: #1a56a8; color: #fff; border-color: #1a56a8; }
.expert-link { display: inline-block; margin-top: 12px; color: #1a56a8; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.3s; }
.expert-link:hover { color: #e63946; }
.story-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: none; transition: transform 0.3s; }
.story-card:hover { transform: translateY(-10px); }
.story-image { height: 200px; background: linear-gradient(135deg, #1a56a8 0%, #2d7dd2 100%); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 50px; overflow: hidden; }
.story-image img { object-position: top; }
.story-content { padding: 25px; }
.story-tag { display: inline-block; background: rgba(26, 86, 168, 0.1); color: #1a56a8; padding: 5px 12px; border-radius: 15px; font-size: 12px; margin-bottom: 15px; }
.story-content h3 { font-size: 18px; color: #1a1a2e; margin-bottom: 10px; line-height: 1.5; }
.story-date { color: #666; font-size: 15px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* FAQ */
.faq { padding: 100px 50px; background: #f5f1ec; }
.faq .section-header h2 { color: #1a3a8a; text-align: left; font-size: 42px; font-weight: 700; }
.faq .section-header { text-align: left; margin-bottom: 50px; }
.faq-title-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; }
.faq-title-row h2 { font-size: 42px; color: #1a3a8a; font-weight: 700; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.faq-card { position: relative; padding-bottom: 30px; }
.faq-card-image { height: 280px; overflow: hidden; width: 90%; }
.faq-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.faq-card:hover .faq-card-image img { transform: scale(1.05); }
.faq-card-content { background: #fff; border-radius: 0 0 30px 0; padding: 35px 40px 40px; position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.08); margin-left: 60px; margin-top: -80px; }
.faq-card-content::after { content: ''; position: absolute; bottom: -25px; left: 0; width: 0; height: 0; border-top: 25px solid #fff; border-right: 35px solid transparent; }
.faq-card-content h3 { font-size: 22px; color: #1a3a8a; margin-bottom: 18px; font-weight: 700; }
.faq-card-content p { font-size: 18px; color: #555; line-height: 1.8; }

/* Sustainability */
.sustainability { padding: 100px 50px; background: #fff; }
.sustainability .section-header p { max-width: 90%; }
.sustainability-content { display: grid; grid-template-columns: 2fr 3fr; gap: 60px; align-items: stretch; }
.sustainability-image { border-radius: 12px; overflow: hidden; }
.sustainability-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.sustainability-list { display: flex; flex-direction: column; gap: 20px; padding-top: 40px; }
.sustainability-item { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; padding: 18px 0; border-bottom: 1px solid #eee; font-size: 17px; color: #333; cursor: pointer; transition: color 0.3s; }
.sustainability-item:last-child { border-bottom: none; }
.sustainability-item:hover { color: #1a56a8; }
.sustainability-icon { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #333; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; transition: all 0.3s; }
.sustainability-item:hover .sustainability-icon { border-color: #1a56a8; color: #1a56a8; }
.sustainability-item.active .sustainability-icon { border-color: #1a56a8; color: #1a56a8; }
.sustainability-item.active .sustainability-icon i { transform: rotate(90deg); }
.sustainability-icon i { transition: transform 0.3s; }
.sustainability-item-title { flex: 1; }
.sustainability-desc { width: 100%; padding: 10px 0 5px 60px; font-size: 14px; color: #666; line-height: 1.7; display: none; }
.sustainability-item.active .sustainability-desc { display: block; }

/* News */
.news { padding: 100px 50px; background: #fff; }
.news-title-row { display: flex; justify-content: center; align-items: center; margin-bottom: 40px; position: relative; }
.news-title-row h2 { font-size: 36px; color: #1a1a2e; }
.news-title-row .view-more { position: absolute; right: 0; }
.view-more { color: #e63946; text-decoration: none; font-size: 18px; font-weight: 500; display: flex; align-items: center; gap: 8px; transition: gap 0.3s; }
.view-more:hover { gap: 12px; }
.news-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 50px; flex-wrap: wrap; }
.news-tab { padding: 10px 28px; border: 1px solid #ddd; border-radius: 25px; background: #fff; color: #666; font-size: 15px; cursor: pointer; transition: all 0.3s; }
.news-tab:hover { border-color: #1a56a8; color: #1a56a8; }
.news-tab.active { background: #1a56a8; color: #fff; border-color: #1a56a8; }
.news-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.news-item { display: flex; gap: 20px; align-items: flex-start; padding: 25px; border-bottom: 1px solid #eee; border-radius: 10px; transition: all 0.3s; overflow: hidden; }
.news-item:hover { background: #f8f9fc; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transform: translateY(-3px); }
.news-item:last-child { border-bottom: none; }
.news-item-date { text-align: center; min-width: 80px; }
.news-item-date .year { display: block; font-size: 28px; font-weight: 300; color: #333; }
.news-item-date .date-label { display: block; font-size: 12px; color: #999; text-transform: uppercase; margin: 2px 0; }
.news-item-date .day-month { display: block; font-size: 16px; color: #333; }
.news-item-date .day-month strong { font-size: 28px; font-weight: 700; }
.news-item-image { width: 280px; min-width: 280px; height: 180px; border-radius: 8px; overflow: hidden; }
.news-item-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-item:hover .news-item-image img { transform: scale(1.1); }
.news-item-content { flex: 1; }
.news-item-content h3 { font-size: 20px; color: #1a1a2e; margin-bottom: 12px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-item-content p { color: #666; font-size: 14px; line-height: 1.7; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.btn-readmore { display: inline-block; padding: 8px 24px; border: 1px solid #333; border-radius: 4px; color: #333; text-decoration: none; font-size: 14px; transition: all 0.3s; }
.btn-readmore:hover { background: #1a56a8; color: #fff; border-color: #1a56a8; }

/* Investors */
.investors { padding: 100px 50px; background: linear-gradient(135deg, #f8f9fc 0%, #fff 100%); }
.investors-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.investors-content h2 { font-size: 36px; color: #1a1a2e; margin-bottom: 20px; }
.investors-content p { color: #666; font-size: 18px; margin-bottom: 30px; }
.investor-links { display: flex; gap: 20px; flex-wrap: wrap; }
.investor-link { padding: 15px 30px; background: #fff; border-radius: 10px; text-decoration: none; color: #333; font-weight: 500; display: flex; align-items: center; gap: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: all 0.3s; }
.investor-link:hover { background: #1a56a8; color: #fff; }
.investors-image { background: linear-gradient(135deg, #1a56a8 0%, #2d7dd2 100%); height: 350px; border-radius: 20px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 80px; }

/* Footer */
.footer { background: #1a1a2e url('../images/bottom.jpg') center center / cover no-repeat; color: #fff; padding: 80px 50px 40px; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26, 26, 46, 0.3); }
.footer-container { max-width: 1600px; margin: 0 auto; position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 2fr 0.8fr 1.5fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-brand .logo { color: #fff; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 15px; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: all 0.3s; }
.social-links a:hover { background: #1a56a8; }
.footer-column h4 { font-size: 18px; margin-bottom: 25px; color: #fff; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 14px; }
.footer-column a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 15px; transition: color 0.3s; }
.footer-column a:hover { color: #5ba3e6; }
.footer-column ul:not(.contact-info) a { display: inline-flex; align-items: center; gap: 6px; }
.footer-column ul:not(.contact-info) a i { font-size: 10px; }
.contact-info li a { display: flex; align-items: flex-start; gap: 8px; }
.contact-info li a i { margin-top: 3px; min-width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 14px; }
.footer-bottom-links { display: flex; gap: 30px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-bottom-links a:hover { color: #fff; }

/* Footer Contact Form */
.footer-form { display: flex; flex-direction: column; gap: 10px; }
.footer-form input, .footer-form textarea { width: 100%; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; background: rgba(255,255,255,0.08); color: #fff; font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.3s; }
.footer-form input::placeholder, .footer-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.footer-form input:focus, .footer-form textarea:focus { border-color: #3b7de0; }
.footer-form textarea { resize: vertical; min-height: 70px; }
.footer-form button { padding: 10px 20px; background: #1a5ab8; color: #fff; border: none; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; transition: background 0.3s; }
.footer-form button:hover { background: #14478f; }
.footer-form button:disabled { opacity: 0.6; cursor: not-allowed; }
.footer-form-msg { color: #4caf50; font-size: 13px; margin-top: 8px; }

/* Mobile Menu */
.back-to-top { position: fixed; bottom: 40px; right: 40px; width: 45px; height: 45px; background: #1a56a8; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; text-decoration: none; box-shadow: 0 4px 15px rgba(26, 86, 168, 0.3); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s; z-index: 999; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #134a91; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(26, 86, 168, 0.4); }

/* Side Contact Float */
.side-contact { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 999; display: flex; flex-direction: column; background: rgba(150, 150, 150, 0.85); border-radius: 30px 0 0 30px; padding: 15px 12px; gap: 20px; }
.side-contact a { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; text-decoration: none; transition: transform 0.3s; }
.side-contact a:hover { transform: scale(1.2); }
.side-contact-toggle { display: block; width: 45px; height: 35px; background: none; border: none; border-top: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 14px; cursor: pointer; padding-top: 8px; transition: transform 0.3s; }
.side-contact { transition: right 0.3s ease; }
.side-contact.collapsed { right: -50px; }
.side-contact.collapsed .side-contact-toggle i { transform: rotate(180deg); }
.side-contact-close { display: block; width: 45px; height: 35px; background: none; border: none; border-top: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 16px; cursor: pointer; padding-top: 8px; transition: opacity 0.3s; }
.side-contact-close:hover { opacity: 0.7; }
.side-contact.hidden { right: -100px; opacity: 0; pointer-events: none; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; font-size: 24px; color: #fff; transition: color 0.3s; position: relative; z-index: 10; padding: 10px; }
.navbar.scrolled .mobile-menu-btn { color: #333; }
.mobile-menu-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 1999; }
.mobile-menu-overlay.active { display: block; }
.mobile-menu { position: fixed; top: 0; right: -300px; width: 300px; height: 100vh; background: #fff; z-index: 2000; transition: right 0.3s; overflow-y: auto; padding: 20px 0; box-shadow: -5px 0 20px rgba(0,0,0,0.1); }
.mobile-menu.active { right: 0; }
.mobile-menu-close { display: flex; justify-content: flex-end; padding: 0 20px 20px; }
.mobile-menu-close button { background: none; border: none; font-size: 24px; cursor: pointer; color: #333; }
.mobile-menu ul { list-style: none; padding: 0; }
.mobile-menu > ul > li { border-bottom: 1px solid #f0f0f0; }
.mobile-menu > ul > li > a { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; color: #333; text-decoration: none; font-size: 18px; font-weight: 500; }
.mobile-menu > ul > li > a i { font-size: 12px; transition: transform 0.3s; }
.mobile-menu > ul > li.open > a i { transform: rotate(180deg); }
.mobile-menu .mobile-dropdown { display: none; background: #f8f9fc; padding: 0; }
.mobile-menu > ul > li.open .mobile-dropdown { display: block; }
.mobile-dropdown a { display: block; padding: 14px 20px 14px 35px; color: #666; text-decoration: none; font-size: 16px; transition: color 0.3s; }
.mobile-dropdown a:hover { color: #1a56a8; }
.mobile-menu .mobile-lang a { justify-content: flex-start; gap: 8px; color: #1a5ab8; font-weight: 500; border-top: 1px solid #eee; margin-top: 10px; }
.has-mobile-sub > a { display: flex !important; justify-content: space-between; align-items: center; }
.has-mobile-sub > a i { font-size: 12px; transition: transform 0.3s; }
.has-mobile-sub.open > a i { transform: rotate(180deg); }
.mobile-sub-dropdown { display: none; background: #f0f2f7; padding: 0; }
.has-mobile-sub.open .mobile-sub-dropdown { display: block; }
.mobile-sub-dropdown a { display: block; padding: 12px 20px 12px 50px; color: #666; text-decoration: none; font-size: 15px; transition: color 0.3s; }
.mobile-sub-dropdown a:hover { color: #1a56a8; }

/* Responsive */
@media (max-width: 1200px) {
    .nav-links { gap: 16px; }
    .btn-nav { padding: 8px 18px; font-size: 13px; }
    .lang-selector > a { font-size: 13px; }
    .lang-selector > a i.fa-globe { font-size: 18px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .science-grid { grid-template-columns: repeat(2, 1fr); }
    .solutions-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
    .solution-card:nth-child(1) { grid-column: auto; grid-row: auto; }
    .solution-card:nth-child(2) { grid-column: auto; grid-row: auto; }
    .solution-card:nth-child(3) { grid-column: auto; grid-row: auto; }
    .solution-card:nth-child(4) { grid-column: auto; grid-row: auto; }
    .solution-card:nth-child(5) { grid-column: auto; grid-row: auto; }
    .solution-card { height: 250px; }
    .expert-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .navbar { padding: 0 30px; }
    .nav-links { display: none; }
    .btn-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-container { padding: 120px 30px 60px; }
    .hero-title { font-size: 30px; }
    .hero-arrow { width: 40px; height: 40px; font-size: 14px; }
    .hero-prev { left: 15px; }
    .hero-next { right: 15px; }
    .about-intro-container { padding: 0; }
    .about-intro-body { grid-template-columns: 1fr; }
    .stories-slider { grid-template-columns: 1fr; }
    .expert-grid { grid-template-columns: repeat(2, 1fr); }
    .investors-container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .logo img { height: 40px; }
    .about-container, .culture-container, .growth-container, .history-container, .honors-container, .jobs-container, .products-container, .product-detail-container, .responsibility-container, .talent-container { padding: 0 20px !important; }
    .hero-slide { background-position: 55% center; }
    .hero-container { padding: 100px 20px 50px; }
    .hero-title { font-size: 26px; }
    .stats-grid { grid-template-columns: 1fr; }
    .science-grid { grid-template-columns: 1fr; }
    .solutions-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; height: auto; gap: 8px; }
    .solution-card:nth-child(1) { grid-column: 1; grid-row: 1; aspect-ratio: 3/4; height: auto; }
    .solution-card:nth-child(2) { grid-column: 1 / 3; grid-row: 2; aspect-ratio: 16/9; height: auto; }
    .solution-card:nth-child(3) { grid-column: 1; grid-row: 3; aspect-ratio: 1/1; height: auto; }
    .solution-card:nth-child(4) { grid-column: 2; grid-row: 3; aspect-ratio: 1/1; height: auto; }
    .solution-card:nth-child(5) { grid-column: 2; grid-row: 1; aspect-ratio: 3/4; height: auto; }
    .solution-card { height: auto; }
    .solutions { padding: 60px 20px; }
    .faq-grid { grid-template-columns: 1fr; }
    .news { padding: 60px 20px; }
    .news-title-row { flex-direction: column; align-items: center; gap: 10px; }
    .news-title-row h2 { font-size: 28px; }
    .news-title-row .view-more { font-size: 14px; position: static; margin-left: 0; }
    .news-tabs { justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
    .news-tab { padding: 8px 16px; font-size: 14px; white-space: nowrap; }
    .news-item { flex-direction: column; padding: 20px; }
    .news-list { grid-template-columns: 1fr; }
    .news-item-date { display: flex; gap: 10px; align-items: baseline; min-width: auto; }
    .news-item-image { width: 100%; min-width: auto; height: 200px; }
    .lang-selector > a { font-size: 16px; }
    .lang-selector > a i.fa-globe { font-size: 20px; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .sustainability-content { grid-template-columns: 1fr; gap: 30px; }
    .sustainability { padding: 60px 20px; }
    .product-tabs { overflow: hidden; position: relative; margin-bottom: 10px; }
    .science { padding: 60px 15px; }
    .science .section-header .view-more { position: static; transform: none; display: flex; justify-content: center; margin-top: 10px; }
    .product-tabs-wrapper { display: flex; transition: transform 0.3s ease; flex-wrap: nowrap; }
    .product-tab { flex: 0 0 33.33%; padding: 10px 4px; }
    .product-tab-image { height: 70px; border-radius: 6px; }
    .product-tabs-nav { display: flex; justify-content: center; gap: 8px; margin-bottom: 30px; }
    .product-tabs-nav button { width: 30px; height: 30px; border-radius: 50%; border: 1px solid #ddd; background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 12px; }
    .product-tabs-nav button:hover { background: #1a56a8; color: #fff; border-color: #1a56a8; }
    .product-list { grid-template-columns: 1fr; padding: 0 15px; }
    .product-item-image { height: 220px; }
    .about-intro { padding: 60px 20px; }
    .about-intro-header { flex-direction: column; gap: 15px; }
    .about-intro-body { grid-template-columns: 1fr; gap: 30px; }
    .about-stats-row { gap: 20px; }
    .about-stat-number { font-size: 32px; }
    /* Expert cards - horizontal layout on mobile */
    .expert-grid { grid-template-columns: 1fr; gap: 15px; }
    .story-card { display: flex; flex-direction: row; border-radius: 12px; align-items: stretch; }
    .story-card .story-image { width: 120px; min-width: 120px; height: auto; border-radius: 12px 0 0 12px; aspect-ratio: auto; background: none; }
    .story-card .story-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
    .story-card .story-content { padding: 12px 15px; display: flex; flex-direction: column; justify-content: center; flex: 1; }
    .story-card .story-content .story-tag { font-size: 12px; padding: 4px 10px; margin-bottom: 8px; }
    .story-card .story-content h3 { font-size: 17px; margin-bottom: 6px; }
    .story-card .story-content .story-date { font-size: 14px; line-height: 1.5; -webkit-line-clamp: 2; }
    .story-card .expert-link { margin-top: 8px; font-size: 14px; }
    .story-card:hover { transform: none; }
}


/* Inner Page Navbar */
.navbar-inner { background: transparent; }

/* Page Banner */
.page-banner { position: relative; height: 350px; margin-top: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.page-banner-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center; animation: bannerBreathe 8s ease-in-out infinite; z-index: 0; }
.page-banner-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.45); z-index: 1; }
.page-banner-content { position: relative; z-index: 2; text-align: center; color: #fff; }
.page-banner-content h1 { font-size: 42px; font-weight: 700; margin-bottom: 10px; }
.page-banner-content p { font-size: 18px; opacity: 0.9; }

@keyframes bannerBreathe {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* Breadcrumb */
.breadcrumb { background: #f8f9fc; padding: 18px 50px; border-bottom: 1px solid #eee; }
.breadcrumb-container { max-width: 1600px; margin: 0 auto; display: flex; align-items: center; gap: 10px; font-size: 14px; }
.breadcrumb-container a { color: #666; text-decoration: none; transition: color 0.3s; }
.breadcrumb-container a:hover { color: #1a56a8; }
.breadcrumb-container span { color: #999; }
.breadcrumb-container span i { font-size: 10px; }
.breadcrumb-container .current { color: #1a56a8; font-weight: 500; }

/* News List Section */
.newslist-section { padding: 60px 50px 100px; }
.newslist-container { max-width: 1600px; margin: 0 auto; }

/* News List Tabs */
.newslist-tabs { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; justify-content: center; }
.newslist-tab { padding: 10px 28px; border: 1px solid #ddd; border-radius: 25px; background: #fff; color: #666; font-size: 15px; cursor: pointer; transition: all 0.3s; }
.newslist-tab:hover { border-color: #1a56a8; color: #1a56a8; }
.newslist-tab.active { background: #1a56a8; color: #fff; border-color: #1a56a8; }

/* News List Grid */
.newslist-grid { display: flex; flex-direction: column; gap: 30px; margin-bottom: 60px; }
.newslist-item { display: flex; gap: 30px; padding: 25px; border-radius: 12px; background: #fff; border: 1px solid #eee; transition: all 0.3s; }
.newslist-item:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-3px); border-color: transparent; }
.newslist-item-image { width: 280px; min-width: 280px; height: 180px; border-radius: 8px; overflow: hidden; }
.newslist-item-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.newslist-item:hover .newslist-item-image img { transform: scale(1.05); }
.newslist-item-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.newslist-item-date { font-size: 13px; color: #999; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.newslist-item-content h3 { font-size: 20px; margin-bottom: 12px; line-height: 1.4; }
.newslist-item-content h3 a { color: #1a1a2e; text-decoration: none; transition: color 0.3s; }
.newslist-item-content h3 a:hover { color: #1a56a8; }
.newslist-item-content p { color: #666; font-size: 14px; line-height: 1.7; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.newslist-readmore { color: #1a56a8; text-decoration: none; font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.newslist-readmore:hover { gap: 10px; }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; text-decoration: none; font-size: 15px; transition: all 0.3s; }
.pagination-num { color: #333; background: #f0f2f5; }
.pagination-num:hover { background: #e0e4ea; }
.pagination-num.active { background: #1a56a8; color: #fff; }
.pagination-prev, .pagination-next { color: #333; background: #f0f2f5; }
.pagination-prev:hover, .pagination-next:hover { background: #1a56a8; color: #fff; }
.pagination-dots { color: #999; background: transparent; }

/* News List Responsive */
@media (max-width: 768px) {
    .page-banner { height: 250px; }
    .page-banner-content h1 { font-size: 28px; }
    .breadcrumb { padding: 14px 20px; }
    .newslist-section { padding: 40px 20px 60px; }
    .newslist-item { flex-direction: column; gap: 15px; }
    .newslist-item-image { width: 100%; min-width: auto; height: 200px; }
    .newslist-tabs { justify-content: center; }
}


/* News Detail */
.news-detail-section { padding: 60px 50px 100px; }
.news-detail-container { max-width: 1600px; margin: 0 auto; position: relative; }
.news-detail-article { max-width: 1200px; margin: 0 auto; }
.news-detail-title { font-size: 28px; font-weight: 700; color: #1a1a2e; line-height: 1.4; margin-bottom: 20px; text-align: center; }
.news-detail-meta { display: flex; justify-content: center; gap: 25px; margin-bottom: 40px; padding-bottom: 25px; border-bottom: 1px solid #eee; }
.news-detail-meta span { font-size: 14px; color: #999; display: flex; align-items: center; gap: 6px; }
.news-detail-meta span i { color: #1a56a8; }
.news-detail-content { line-height: 1.9; color: #444; font-size: 18px; overflow: hidden; }
.news-detail-content img { max-width: 100%; height: auto; display: block; }
.news-detail-content p { margin-bottom: 25px; }
.news-detail-image { margin: 30px 0; border-radius: 8px; overflow: hidden; }
.news-detail-image img { width: 100%; height: auto; display: block; }

/* Share Sidebar Fixed */
.news-detail-share-sidebar { position: fixed; left: 50px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 99; padding-top: 300px; }
.news-detail-share-sidebar .share-label { font-size: 13px; color: #666; text-align: center; line-height: 1.3; margin-bottom: 5px; font-weight: 500; }
.news-detail-share-sidebar a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid #ddd; border-radius: 6px; color: #555; font-size: 18px; text-decoration: none; transition: all 0.3s; }
.news-detail-share-sidebar a:hover { border-color: #1a56a8; color: #1a56a8; background: #f0f4ff; }

/* Prev / Next Navigation */
.news-detail-nav { display: flex; justify-content: space-between; gap: 30px; margin-top: 30px; padding-top: 30px; border-top: 1px solid #eee; }
.news-nav-prev, .news-nav-next { flex: 1; text-decoration: none; padding: 20px; border-radius: 8px; background: #f8f9fc; transition: all 0.3s; display: flex; flex-direction: column; gap: 8px; }
.news-nav-prev:hover, .news-nav-next:hover { background: #eef2f7; transform: translateY(-2px); }
.news-nav-next { text-align: right; align-items: flex-end; }
.news-nav-label { font-size: 13px; color: #999; display: flex; align-items: center; gap: 5px; }
.news-nav-title { font-size: 15px; color: #333; font-weight: 500; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-nav-prev:hover .news-nav-title, .news-nav-next:hover .news-nav-title { color: #1a56a8; }

/* News Detail Responsive */
@media (max-width: 1200px) {
    .news-detail-share-sidebar { display: none !important; }
    .news-detail-share-mobile { display: flex !important; }
}
@media (max-width: 768px) {
    .news-detail-section { padding: 40px 20px 60px; }
    .news-detail-title { font-size: 22px; }
    .news-detail-meta { flex-wrap: wrap; gap: 12px; justify-content: center; }
    .news-detail-content { font-size: 15px; }
    .news-detail-nav { flex-direction: column; gap: 15px; }
    .news-nav-next { text-align: left; align-items: flex-start; }
    .news-detail-share-sidebar { display: none !important; }
    .news-detail-share-mobile { display: flex !important; }
}

/* Mobile Share Section */
.news-detail-share-mobile { display: none; align-items: center; gap: 15px; padding: 25px 0; margin-top: 40px; border-top: 1px solid #eee; }
.news-detail-share-mobile > span { font-size: 15px; color: #666; font-weight: 500; white-space: nowrap; }
.share-mobile-icons { display: flex; gap: 10px; }
.share-mobile-icons a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid #ddd; border-radius: 6px; color: #555; font-size: 18px; text-decoration: none; transition: all 0.3s; }
.share-mobile-icons a:hover { border-color: #1a56a8; color: #1a56a8; background: #f0f4ff; }

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */

/* Contact Page - Get In Touch Section */
.get-in-touch-section { padding: 80px 50px; background: #fff; }
.get-in-touch-wrapper { max-width: 1600px; margin: 0 auto; display: flex; gap: 50px; align-items: stretch; }
.get-in-touch-left { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.get-in-touch-left h2 { font-size: 36px; color: #1a1a2e; margin-bottom: 15px; font-weight: 700; }
.get-in-touch-container { max-width: 1600px; margin: 0 auto; }
.get-in-touch-container h2 { font-size: 36px; color: #1a1a2e; margin-bottom: 15px; }
.touch-divider { width: 40px; height: 4px; background: #1a1a2e; margin-bottom: 30px; }
.touch-desc { font-size: 16px; color: #666; line-height: 1.8; margin-bottom: 30px; max-width: 700px; }
.touch-info { margin-bottom: 30px; }
.touch-info p { font-size: 16px; color: #333; line-height: 2.2; display: flex; align-items: flex-start; gap: 10px; }
.touch-info p i { width: 24px; color: #1a56a8; margin-right: 8px; margin-top: 4px; min-width: 18px; }
.touch-social { display: flex; gap: 15px; }
.touch-social a { width: 40px; height: 40px; border-radius: 50%; border: none; outline: none; box-shadow: none; display: flex; align-items: center; justify-content: center; color: #fff; background: #1a56a8; text-decoration: none; font-size: 18px; transition: all 0.3s; }
.touch-social a:hover { background: #134a91; color: #fff; transform: translateY(-3px); }
.get-in-touch-right { flex: 1; min-height: 450px; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.get-in-touch-right iframe { width: 100%; height: 100%; display: block; }

/* Contact Page - Contact Form */
.contact-section { padding: 80px 50px; background: #f8f9fc; }
.contact-container { max-width: 1600px; margin: 0 auto; background: #fff; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); padding: 60px 80px; }
.contact-header { text-align: center; margin-bottom: 40px; }
.contact-header h2 { font-size: 32px; color: #1a1a2e; margin-bottom: 12px; }
.contact-header p { font-size: 15px; color: #888; }
.contact-form { display: flex; flex-direction: column; gap: 25px; }
.form-row { display: flex; gap: 30px; }
.form-group { flex: 1; display: flex; align-items: center; gap: 12px; }
.form-group-icon { display: flex; align-items: center; gap: 6px; color: #1a56a8; font-size: 14px; white-space: nowrap; min-width: 80px; }
.form-group-icon i { font-size: 18px; color: #1a56a8; }
.form-group input, .form-group textarea { flex: 1; border: none; border-bottom: 1px solid #ddd; padding: 12px 0; font-size: 14px; font-family: 'Inter', sans-serif; color: #333; background: transparent; outline: none; transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus { border-bottom-color: #1a56a8; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
.form-group-full { display: flex; align-items: flex-start; gap: 12px; }
.form-group-full .form-group-icon { padding-top: 12px; }
.form-group-full textarea { flex: 1; border: 1px solid #eee; border-radius: 8px; padding: 15px; font-size: 14px; font-family: 'Inter', sans-serif; color: #333; background: #f8f9fc; outline: none; resize: vertical; min-height: 140px; transition: border-color 0.3s; }
.form-group-full textarea:focus { border-color: #1a56a8; background: #fff; }
.form-group-full textarea::placeholder { color: #bbb; }
.form-submit { text-align: center; margin-top: 15px; }
.form-submit button { background: transparent; color: #1a56a8; border: 2px solid #1a56a8; padding: 12px 50px; border-radius: 30px; font-size: 15px; font-weight: 500; cursor: pointer; transition: all 0.3s; font-family: 'Inter', sans-serif; }
.form-submit button:hover { background: #1a56a8; color: #fff; }

@media (max-width: 992px) {
    .get-in-touch-wrapper { flex-direction: column; }
    .get-in-touch-right { height: auto; min-height: auto; flex: none; }
    .get-in-touch-right iframe { height: 400px; }
}
@media (max-width: 768px) {
    .get-in-touch-section { padding: 40px 20px; }
    .get-in-touch-wrapper { gap: 30px; }
    .get-in-touch-left h2 { font-size: 28px; }
    .get-in-touch-right { height: auto; min-height: auto; }
    .get-in-touch-right iframe { height: 400px; }
    .get-in-touch-container h2 { font-size: 26px; }
    .touch-desc { font-size: 14px; }
    .touch-info p { font-size: 14px; }
    .contact-section { padding: 40px 20px; }
    .contact-container { padding: 40px 25px; }
    .form-row { flex-direction: column; gap: 25px; }
    .form-group-icon { min-width: 70px; font-size: 13px; }
    .contact-header h2 { font-size: 24px; }
}

/* About Page */
.about-section { padding: 80px 0; background: #f9f9f9; }
.about-container { max-width: 1600px; margin: 0 auto; padding: 0 50px; }
.about-container img { max-width: 100%; height: auto; display: block; margin: 20px 0; border-radius: 8px; }
.about-container h2, .about-container h3 { font-size: 28px; font-weight: 700; color: #1a1a1a; margin: 30px 0 16px; }
.about-container h3 { font-size: 22px; }
.about-container p { font-size: 18px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.about-container table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.about-container table td, .about-container table th { border: 1px solid #ddd; padding: 10px 14px; font-size: 16px; }
.about-container .ql-code-block-container { background: none; padding: 0; }
.about-container .ql-code-block { background: none; padding: 0; white-space: normal; font-family: inherit; font-size: inherit; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.about-image img { width: 100%; height: auto; display: block; }
.about-text h2 { font-size: 28px; font-weight: 700; color: #1a1a1a; margin-bottom: 20px; }
.about-text p { font-size: 18px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 30px; padding: 30px 0; }
.about-stat { text-align: center; position: relative; }
.about-stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 15%; height: 70%; width: 1px; background: #ddd; }
.about-stat .stat-number { font-size: 42px; font-weight: 800; color: #1a5ab8; line-height: 1.2; }
.about-stat .stat-number .stat-unit { font-size: 20px; font-weight: 600; }
.about-stat .stat-label { font-size: 14px; color: #888; margin-top: 8px; }
@media (max-width: 768px) { .about-content { grid-template-columns: 1fr; gap: 30px; } .about-section { padding: 40px 0; } .about-text h2 { font-size: 22px; } .about-text p { font-size: 15px; } .about-stats { grid-template-columns: repeat(3, 1fr); gap: 0; } .about-stat .stat-number { font-size: 28px; } }
.about-content-reverse { margin-top: 60px; }
.about-content-reverse .about-image { order: 2; }
.about-content-reverse .about-text { order: 1; }
@media (max-width: 768px) { .about-content-reverse .about-image { order: 1; } .about-content-reverse .about-text { order: 2; } }

/* Culture Page */
.culture-section { padding: 80px 0; background: #f9f9f9; }
.culture-container { max-width: 1600px; margin: 0 auto; padding: 0 50px; }
.culture-container img { max-width: 100%; height: auto; display: block; margin: 20px 0; border-radius: 8px; }
.culture-container h2, .culture-container h3 { font-size: 28px; font-weight: 700; color: #1a1a1a; margin: 30px 0 16px; }
.culture-container h3 { font-size: 22px; }
.culture-container p { font-size: 18px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.culture-container .ql-code-block-container { background: none; padding: 0; }
.culture-container .ql-code-block { background: none; padding: 0; white-space: normal; font-family: inherit; font-size: inherit; }
.culture-header { text-align: center; margin-bottom: 60px; }
.culture-header h2 { font-size: 32px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.culture-header p { font-size: 16px; color: #555; line-height: 1.8; max-width: 800px; margin: 0 auto; }
.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 60px; }
.vision-mission-card { background: #fff; border-radius: 12px; padding: 40px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); position: relative; overflow: hidden; }
.vision-mission-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(180deg, #1a5ab8, #3b7de0); }
.vision-mission-card h3 { font-size: 20px; font-weight: 700; color: #1a5ab8; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.vision-mission-card h3 i { font-size: 24px; }
.vision-mission-card p { font-size: 18px; color: #555; line-height: 1.8; }
.vision-mission-card .vision-detail { font-size: 15px; color: #777; margin-top: 12px; }
.first-principle { margin-bottom: 60px; }
.first-principle-card { background: linear-gradient(135deg, #1a5ab8, #3b7de0); border-radius: 12px; padding: 50px 40px; text-align: center; color: #fff; }
.first-principle-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.first-principle-card h3 i { font-size: 24px; }
.first-principle-card p { font-size: 22px; font-weight: 600; letter-spacing: 1px; }
.culture-purpose { margin-bottom: 60px; }
.purpose-card { background: #fff; border-radius: 12px; padding: 40px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); text-align: center; position: relative; overflow: hidden; }
.purpose-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #1a5ab8, #3b7de0); }
.purpose-card h3 { font-size: 20px; font-weight: 700; color: #1a5ab8; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.purpose-card h3 i { font-size: 24px; }
.purpose-card p { font-size: 18px; color: #555; line-height: 1.8; }
.culture-philosophy-title { text-align: center; margin-bottom: 40px; }
.culture-philosophy-title h3 { font-size: 24px; font-weight: 700; color: #fff; }
.culture-philosophy-section { background: url('../images/montain.jpg') center center / cover no-repeat fixed; position: relative; padding: 80px 0; }
.culture-philosophy-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26, 40, 70, 0.75); }
.culture-philosophy-section .culture-container { position: relative; z-index: 1; }
.culture-philosophy { display: flex; flex-direction: column; gap: 20px; margin-bottom: 0; }
.philosophy-item { background: rgba(255,255,255,0.95); border-radius: 12px; padding: 28px 36px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 24px; transition: transform 0.3s, box-shadow 0.3s; }
.philosophy-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.philosophy-num { font-size: 28px; font-weight: 700; color: #1a5ab8; min-width: 48px; text-align: center; }
.philosophy-item p { font-size: 16px; color: #555; line-height: 1.8; margin: 0; }
.culture-values-section { background: #fff; }
.core-values-title { text-align: center; margin-bottom: 40px; }
.core-values-title h3 { font-size: 24px; font-weight: 700; color: #1a1a1a; }
.core-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 60px; }
.core-values .core-value-card:nth-child(n+5) { grid-column: span 1; }
.core-values { grid-template-columns: repeat(12, 1fr); }
.core-values .core-value-card:nth-child(1),
.core-values .core-value-card:nth-child(2),
.core-values .core-value-card:nth-child(3),
.core-values .core-value-card:nth-child(4) { grid-column: span 3; }
.core-values .core-value-card:nth-child(5),
.core-values .core-value-card:nth-child(6),
.core-values .core-value-card:nth-child(7) { grid-column: span 4; }
.core-value-card { background: #fff; border-radius: 12px; padding: 32px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); text-align: center; transition: transform 0.3s; }
.core-value-card:hover { transform: translateY(-4px); }
.core-value-card .value-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #1a5ab8, #3b7de0); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.core-value-card .value-icon i { font-size: 24px; color: #fff; }
.core-value-card h4 { font-size: 17px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.core-value-card p { font-size: 14px; color: #666; line-height: 1.7; }
@media (max-width: 992px) { .core-values { grid-template-columns: repeat(2, 1fr) !important; } .core-values .core-value-card:nth-child(n) { grid-column: span 1 !important; } }
@media (max-width: 768px) { .vision-mission { grid-template-columns: 1fr; } .core-values { grid-template-columns: 1fr !important; } .core-values .core-value-card:nth-child(n) { grid-column: span 1 !important; } .culture-philosophy { gap: 15px; } .philosophy-item { padding: 20px; gap: 16px; } .philosophy-num { font-size: 22px; min-width: 36px; } .first-principle-card p { font-size: 18px; } .culture-philosophy-section { background-attachment: scroll; } }

/* Growth Page */
.growth-section { padding: 80px 0; background: #f9f9f9; }
.growth-container { max-width: 1600px; margin: 0 auto; padding: 0 50px; }
.growth-container img { max-width: 100%; height: auto; display: block; margin: 20px 0; border-radius: 8px; }
.growth-container h2, .growth-container h3 { font-size: 28px; font-weight: 700; color: #1a1a1a; margin: 30px 0 16px; }
.growth-container h3 { font-size: 22px; }
.growth-container p { font-size: 18px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.growth-container .ql-code-block-container { background: none; padding: 0; }
.growth-container .ql-code-block { background: none; padding: 0; white-space: normal; font-family: inherit; font-size: inherit; }
.growth-section h2 { text-align: center; font-size: 28px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.growth-section .section-desc { text-align: center; font-size: 18px; color: #666; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.growth-blocks { display: flex; flex-direction: column; gap: 40px; }
.growth-block { background: #fff; border-radius: 12px; padding: 40px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.growth-block h3 { font-size: 22px; font-weight: 700; color: #1a5ab8; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.growth-block h3 i { font-size: 24px; }
.growth-block p { font-size: 18px; color: #555; line-height: 1.8; margin-bottom: 20px; }
.growth-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.growth-list-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: #f8faf9; border-radius: 8px; }
.growth-list-item i { color: #1a5ab8; margin-top: 3px; font-size: 14px; flex-shrink: 0; }
.growth-list-item span { font-size: 14px; color: #555; line-height: 1.5; }
.career-path { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; }
.career-step { text-align: center; padding: 24px 16px; background: #f8faf9; border-radius: 8px; position: relative; }
.career-step::after { content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: -14px; top: 50%; transform: translateY(-50%); color: #1a5ab8; font-size: 12px; }
.career-step:last-child::after { display: none; }
.career-step .step-num { width: 36px; height: 36px; background: #1a5ab8; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; margin: 0 auto 12px; }
.career-step h4 { font-size: 14px; font-weight: 600; color: #1a1a1a; margin-bottom: 6px; }
.career-step p { font-size: 12px; color: #888; }
@media (max-width: 768px) { .growth-list { grid-template-columns: 1fr; } .career-path { grid-template-columns: repeat(2, 1fr); } .career-step::after { display: none; } }
@media (max-width: 576px) { .career-path { grid-template-columns: 1fr; } }

/* History Page */
.history-section { padding: 80px 0; background: #f9f9f9; overflow: visible; }
.history-container { max-width: 1600px; margin: 0 auto; padding: 0 50px; overflow: visible; }
.history-section h2 { text-align: center; font-size: 28px; font-weight: 700; color: #1a1a1a; margin-bottom: 50px; }
.history-layout { display: flex; gap: 60px; position: relative; overflow: visible; }
.history-main { flex: 1; position: relative; padding-left: 6px; }
.history-main::before { content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px; background: #e0e0e0; }
.history-main::after { content: ''; position: absolute; left: 11px; top: 0; width: 2px; height: var(--line-height, 0); background: #1a5ab8; z-index: 1; }
.history-item { display: flex; gap: 40px; padding-bottom: 60px; position: relative; }
.history-item-left { display: flex; align-items: flex-start; gap: 20px; flex-shrink: 0; }
.history-dot { width: 14px; height: 14px; background: #f9f9f9; border-radius: 50%; border: 3px solid #ccc; position: relative; margin-top: 8px; z-index: 2; transition: all 0.3s; margin-left: -1px; }
.history-year { font-size: 36px; font-weight: 800; color: #333; line-height: 1; min-width: 80px; transition: color 0.3s; }
.history-item.active .history-dot { border: 4px solid #1a5ab8; background: #fff; }
.history-item.active .history-year { color: #1a5ab8; }
.history-item-right { flex: 1; padding-top: 6px; }
.history-item-right p { font-size: 18px; color: #555; line-height: 1.8; margin: 0; }
.history-item-right img { max-width: 500px; width: 100%; border-radius: 8px; margin-top: 20px; }
.history-nav { width: 120px; flex-shrink: 0; position: sticky; top: 100px; align-self: flex-start; border-left: 2px solid #e0e0e0; padding-left: 20px; }
.history-nav ul { list-style: none; padding: 0; margin: 0; }
.history-nav li { margin-bottom: 12px; }
.history-nav a { font-size: 15px; color: #999; text-decoration: none; font-weight: 500; transition: color 0.3s; }
.history-nav a:hover, .history-nav a.active { color: #1a5ab8; font-weight: 700; }
@media (max-width: 768px) { .history-layout { flex-direction: column; gap: 0; } .history-nav { display: none; } .history-item { flex-direction: column; gap: 8px; } .history-item-left { gap: 12px; } .history-year { font-size: 22px; min-width: auto; } .history-item-right { padding-left: 24px; padding-top: 0; } }

/* Honors Page */
.honors-section { padding: 80px 0; background: #f9f9f9; }
.honors-container { max-width: 1600px; margin: 0 auto; padding: 0 50px; }
.honors-section h2 { text-align: center; font-size: 36px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.honors-section .section-desc { text-align: center; font-size: 18px; color: #666; margin-bottom: 30px; }
.honors-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.honors-tab { padding: 10px 28px; border: 1px solid #ddd; border-radius: 25px; background: #fff; color: #666; font-size: 15px; cursor: pointer; transition: all 0.3s; font-weight: 500; }
.honors-tab:hover { border-color: #1a5ab8; color: #1a5ab8; }
.honors-tab.active { background: #1a5ab8; color: #fff; border-color: #1a5ab8; font-weight: 700; }
.honors-panel { display: none; }
.honors-panel.active { display: block; }
.honors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.honor-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.honor-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.honor-card-img { width: 100%; overflow: hidden; border-bottom: 1px solid #f0f0f0; padding: 16px; }
.honor-card-img img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
.honor-card:hover .honor-card-img img { transform: scale(1.03); }
.honor-card p { font-size: 16px; color: #333; text-align: center; padding: 16px 12px; margin: 0; line-height: 1.4; font-weight: 600; }
.honors-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; }
.page-btn { width: 36px; height: 36px; border: 1px solid #ddd; border-radius: 6px; background: #fff; font-size: 14px; color: #666; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.page-btn.active, .page-btn:hover { background: #1a5ab8; color: #fff; border-color: #1a5ab8; }
.page-btn.next { font-size: 12px; }
/* Lightbox */
.honors-lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; align-items: center; justify-content: center; }
.honors-lightbox.active { display: flex; }
.lightbox-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); }
.lightbox-content { position: relative; max-width: 90%; max-height: 90%; }
.lightbox-content img { max-width: 100%; max-height: 85vh; border-radius: 8px; box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.lightbox-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
@media (max-width: 992px) { .honors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .honors-grid { grid-template-columns: 1fr; } .honors-container { padding: 0 16px; } }

/* Jobs Page */
.jobs-section { padding: 80px 0; background: #f9f9f9; }
.jobs-container { max-width: 1600px; margin: 0 auto; padding: 0 50px; }
.jobs-section h2 { text-align: center; font-size: 28px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.jobs-section .section-desc { text-align: center; font-size: 18px; color: #666; margin-bottom: 50px; }
.job-card { background: #fff; border-radius: 12px; padding: 32px; margin-bottom: 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.job-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.job-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.job-card-header h3 { font-size: 20px; font-weight: 700; color: #1a1a1a; }
.job-tag { display: inline-block; background: #e8f0fa; color: #1a56a8; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.job-meta { display: flex; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
.job-meta span { font-size: 13px; color: #888; display: flex; align-items: center; gap: 6px; }
.job-meta span i { color: #1a56a8; }
.job-card p { font-size: 16px; color: #555; line-height: 1.7; margin-bottom: 20px; }
.job-desc { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 16px; max-height: 3.6em; overflow: hidden; transition: max-height 0.4s ease; }
.job-desc.expanded { max-height: 2000px; }
.job-desc p { margin-bottom: 10px; }
.job-desc ol, .job-desc ul { padding-left: 20px; margin-bottom: 10px; }
.job-desc li { margin-bottom: 6px; }
.job-desc strong { color: #1a1a1a; }
.job-desc-toggle { background: none; border: none; color: #1a5ab8; font-size: 13px; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 5px; padding: 0; margin-bottom: 20px; transition: color 0.3s; }
.job-desc-toggle:hover { color: #134a8a; }
.job-desc-toggle i { font-size: 11px; transition: transform 0.3s; }
.job-desc-toggle.active i { transform: rotate(180deg); }
.btn-apply { display: inline-flex; align-items: center; gap: 8px; background: #1a56a8; color: #fff; padding: 10px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: background 0.3s; }
.btn-apply:hover { background: #134a8a; }
.jobs-section .pagination { margin-top: 40px; }
@media (max-width: 768px) { .job-card { padding: 20px; } .job-card-header h3 { font-size: 18px; } .job-meta { gap: 10px 16px; } .job-meta span { font-size: 12px; } .job-desc { font-size: 14px; } }
.file-upload-area { position: relative; border: 2px dashed #d0d5dd; border-radius: 8px; padding: 40px 20px; text-align: center; transition: border-color 0.3s, background 0.3s; cursor: pointer; }
.file-upload-area:hover { border-color: #1a5ab8; background: #f8fbff; }
.file-upload-area.has-file { border-color: #1a5ab8; background: #f0f7ff; }
.file-upload-area input[type="file"] { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-upload-placeholder i { font-size: 36px; color: #1a5ab8; margin-bottom: 12px; }
.file-upload-placeholder p { font-size: 14px; color: #666; }
.file-upload-placeholder p span { color: #1a5ab8; font-weight: 600; text-decoration: underline; }
.file-upload-info { font-size: 14px; color: #1a5ab8; font-weight: 500; margin-top: 10px; }
.file-upload-info i { margin-right: 6px; }
.file-hint { font-size: 12px; color: #999; font-weight: 400; margin-left: 8px; }
.resume-form #applyPosition { background: #f0f4ff; color: #1a5ab8; font-weight: 600; }

/* Products Page */
.products-section { padding: 80px 0; background: #f9f9f9; }
.products-container { max-width: 1600px; margin: 0 auto; padding: 0 50px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.product-card-image { position: relative; overflow: hidden; height: 220px; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-content { padding: 24px; }
.product-card-content h3 { font-size: 20px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.product-card-content p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 16px; }
.product-card-link { display: inline-flex; align-items: center; gap: 6px; color: #1a5ab8; font-weight: 600; font-size: 14px; text-decoration: none; transition: gap 0.3s; }
.product-card-link:hover { gap: 10px; }
@media (max-width: 992px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .products-grid { grid-template-columns: 1fr; } }

/* Product List Page */
.productlist-section { padding: 60px 50px 100px; background: #f0f2f5; }
.productlist-container { max-width: 1600px; margin: 0 auto; }
.productlist-search { display: flex; max-width: 680px; margin: 0 auto 50px; }
.productlist-search-input { flex: 1; padding: 14px 24px; font-size: 15px; border: 2px solid #ddd; border-right: none; border-radius: 6px 0 0 6px; outline: none; transition: border-color 0.3s; }
.productlist-search-input:focus { border-color: #1a56a8; }
.productlist-search-btn { width: 56px; display: flex; align-items: center; justify-content: center; background: #1a56a8; color: #fff; border: none; border-radius: 0 6px 6px 0; font-size: 18px; cursor: pointer; transition: background 0.3s; }
.productlist-search-btn:hover { background: #143f7a; }
.productlist-body { display: flex; gap: 40px; align-items: flex-start; }
.productlist-sidebar { width: 220px; flex-shrink: 0; }
.sidebar-block { margin-bottom: 30px; }
.sidebar-block-title { background: #1a56a8; color: #fff; padding: 14px 20px; font-size: 18px; font-weight: 700; border-radius: 6px 6px 0 0; }
.sidebar-list { list-style: none; padding: 0; margin: 0; background: #fff; border-radius: 0 0 6px 6px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.sidebar-list li { border-bottom: 1px solid #f0f0f0; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li a { display: block; padding: 13px 20px; font-size: 16px; color: #333; text-decoration: none; transition: all 0.3s; }
.sidebar-list li a:hover, .sidebar-list li a.active { color: #1a56a8; background: #f5f8ff; padding-left: 26px; }
.productlist-main { flex: 1; min-width: 0; }
.productlist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 50px; }
.productlist-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.productlist-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.productlist-card-image { position: relative; background: #f8f9fc; padding: 20px; display: flex; align-items: center; justify-content: center; min-height: 200px; }
.productlist-card-image img { max-width: 100%; max-height: 180px; object-fit: contain; }
.productlist-tag { position: absolute; top: 12px; right: 12px; padding: 4px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; color: #fff; }
.tag-vaccine { background: #1a56a8; }
.tag-medicine { background: #1a5ab8; }
.tag-additive { background: #e8830c; }
.productlist-card-info { padding: 20px; }
.productlist-card-info h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; line-height: 1.4; }
.productlist-card-info p { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.productlist-card-link { font-size: 13px; color: #1a56a8; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.3s; }
.productlist-card-link:hover { gap: 8px; }
@media (max-width: 1200px) { .productlist-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 992px) { .productlist-body { flex-direction: column; } .productlist-sidebar { width: 100%; display: flex; gap: 20px; } .sidebar-block { flex: 1; margin-bottom: 0; } }
@media (max-width: 768px) { .productlist-section { padding: 40px 20px 60px; } .productlist-grid { grid-template-columns: 1fr; } .productlist-sidebar { flex-direction: column; } .sidebar-block { flex: none; } }

/* Product Detail Page */
.product-detail-section { padding: 80px 0; background: #f9f9f9; }
.product-detail-container { max-width: 1600px; margin: 0 auto; padding: 0 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-detail-image { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.product-detail-image img { width: 100%; height: auto; display: block; }
.product-detail-info h2 { font-size: 28px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.product-detail-info .product-desc { font-size: 18px; color: #555; line-height: 1.8; margin-bottom: 30px; }
.product-specs { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.product-specs tr { border-bottom: 1px solid #eee; }
.product-specs td { padding: 12px 16px; font-size: 14px; }
.product-specs td:first-child { font-weight: 600; color: #333; width: 40%; background: #f5f5f5; }
.product-specs td:last-child { color: #555; }
.btn-inquiry { display: inline-flex; align-items: center; gap: 8px; background: #1a5ab8; color: #fff; padding: 14px 32px; border-radius: 6px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background 0.3s; margin-top: 30px; }
.btn-inquiry:hover { background: #14478f; }
.product-detail-rich { margin-top: 20px; overflow: hidden; }
.product-detail-rich img { max-width: 100%; height: auto; display: block; }
.product-detail-rich h3 { font-size: 17px; font-weight: 700; color: #1a56a8; margin: 28px 0 12px; padding-bottom: 8px; border-bottom: 1px solid #eee; }
.product-detail-rich h3:first-child { margin-top: 0; }
.product-detail-rich p { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 10px; }
.product-detail-rich ol { padding-left: 20px; margin: 10px 0; }
.product-detail-rich ol li { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 6px; }
@media (max-width: 768px) { .product-detail-container { grid-template-columns: 1fr; gap: 30px; } }

/* Responsibility Page */
.responsibility-section { padding: 80px 0; background: #f9f9f9; }
.responsibility-section { padding: 0; background: #fff; }
.responsibility-section .responsibility-container { max-width: 100%; padding: 0; }
.responsibility-container .section-header { text-align: center; margin-bottom: 60px; }
.responsibility-container .section-header h2 { font-size: 28px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.responsibility-container .section-header p { font-size: 18px; color: #555; line-height: 1.8; max-width: 90%; margin: 0 auto; }
.responsibility-container .ql-code-block-container { background: none; padding: 0; }
.responsibility-container .ql-code-block { background: none; padding: 0; white-space: normal; font-family: inherit; font-size: inherit; }
.responsibility-container img { max-width: 100%; height: auto; }
.responsibility-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 60px; }
.responsibility-intro img { width: 100%; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.responsibility-intro-text h2 { font-size: 28px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.responsibility-intro-text p { font-size: 18px; color: #555; line-height: 1.8; }
.responsibility-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.responsibility-item { background: #fff; border-radius: 12px; padding: 32px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: transform 0.3s; }
.responsibility-item:hover { transform: translateY(-4px); }
.responsibility-item .item-icon { width: 50px; height: 50px; background: linear-gradient(135deg, #1a5ab8, #3b7de0); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.responsibility-item .item-icon i { font-size: 22px; color: #fff; }
.responsibility-item h3 { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.responsibility-item p { font-size: 14px; color: #666; line-height: 1.7; }
@media (max-width: 768px) { .responsibility-intro { grid-template-columns: 1fr; } }

/* Talent Page */
.talent-section { padding: 80px 0; background: #f9f9f9; }
.talent-container { max-width: 1600px; margin: 0 auto; padding: 0 50px; }
.talent-container img { max-width: 100%; height: auto; display: block; margin: 20px 0; border-radius: 8px; }
.talent-container h2, .talent-container h3 { font-size: 28px; font-weight: 700; color: #1a1a1a; margin: 30px 0 16px; }
.talent-container h3 { font-size: 22px; }
.talent-container p { font-size: 18px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.talent-container .ql-code-block-container { background: none; padding: 0; }
.talent-container .ql-code-block { background: none; padding: 0; white-space: normal; font-family: inherit; font-size: inherit; }
.talent-intro { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.talent-intro h2 { font-size: 28px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.talent-intro p { font-size: 18px; color: #555; line-height: 1.8; }
.talent-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.talent-value { background: #fff; border-radius: 12px; padding: 40px 28px; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; border-top: 4px solid #1a5ab8; }
.talent-value:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.talent-value .value-icon { width: 70px; height: 70px; background: linear-gradient(135deg, #1a5ab8, #3b7de0); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.talent-value .value-icon i { font-size: 28px; color: #fff; }
.talent-value h3 { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.talent-value p { font-size: 14px; color: #666; line-height: 1.7; }
.talent-philosophy { margin-top: 60px; background: #fff; border-radius: 12px; padding: 50px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.talent-philosophy h3 { font-size: 22px; font-weight: 700; color: #1a1a1a; margin-bottom: 20px; }
.talent-philosophy p { font-size: 18px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.talent-philosophy ul { list-style: none; padding: 0; }
.talent-philosophy ul li { padding: 10px 0; font-size: 18px; color: #555; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; gap: 12px; }
.talent-philosophy ul li i { color: #1a5ab8; font-size: 14px; }
@media (max-width: 992px) { .talent-values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .talent-values { grid-template-columns: 1fr; } .talent-philosophy { padding: 30px; } }

/* Global Market Page */
.global-market-section { padding: 80px 50px; background: #fff; overflow: hidden; }
.global-market-container { max-width: 1600px; margin: 0 auto; overflow: hidden; }
.global-market-header { text-align: center; margin-bottom: 60px; }
.global-market-header h2 { font-size: 36px; color: #1a1a2e; margin-bottom: 10px; }
.global-market-header p { font-size: 18px; color: #666; }
.global-market-content { display: flex; gap: 40px; align-items: flex-start; }
.global-map { flex: 1; position: relative; min-height: 480px; background: transparent; border-radius: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 0; }
.world-map-svg { width: 100%; height: auto; display: block; filter: brightness(0) saturate(100%) invert(80%) sepia(5%) saturate(500%) hue-rotate(180deg) brightness(95%); opacity: 0.7; }
.map-markers-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.map-marker { position: absolute; transform: translate(-50%, -50%); cursor: pointer; z-index: 5; }
.map-marker .marker-dot { display: block; width: 10px; height: 10px; background: #e53935; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 2px 6px rgba(229, 57, 53, 0.4); transition: transform 0.3s; }
.map-marker:hover .marker-dot { transform: scale(1.5); }
.map-marker .marker-pulse { position: absolute; top: 50%; left: 50%; width: 10px; height: 10px; transform: translate(-50%, -50%); background: rgba(229, 57, 53, 0.3); border-radius: 50%; animation: markerPulse 2s ease-out infinite; }
.map-marker-hq .marker-dot { width: 14px; height: 14px; background: #1a56a8; border: 2px solid #fff; box-shadow: 0 2px 8px rgba(26, 86, 168, 0.5); }
.map-marker-hq .marker-pulse { width: 14px; height: 14px; background: rgba(26, 86, 168, 0.3); }
.map-marker .marker-label { position: absolute; top: -4px; left: 18px; font-size: 11px; font-weight: 700; color: #1a56a8; white-space: nowrap; }
@keyframes markerPulse { 0% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 100% { transform: translate(-50%, -50%) scale(3.5); opacity: 0; } }
.map-tooltip { position: absolute; background: #fff; color: #1a1a2e; padding: 8px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; box-shadow: 0 4px 15px rgba(0,0,0,0.15); pointer-events: none; opacity: 0; transform: translateY(5px); transition: opacity 0.2s, transform 0.2s; z-index: 20; white-space: nowrap; }
.map-tooltip.visible { opacity: 1; transform: translateY(0); }
.map-tooltip::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: #fff; }
.map-arrows-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 3; pointer-events: none; }
.arrow-path { fill: none; stroke: #e53935; stroke-width: 1.5; stroke-dasharray: 6, 4; marker-end: url(#arrowHead); opacity: 0.6; animation: arrowDash 30s linear infinite; }
@keyframes arrowDash { 0% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -300; } }
.global-offices { width: 420px; flex-shrink: 0; max-height: 520px; overflow-y: auto; }
.global-offices h3 { font-size: 22px; color: #1a56a8; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 2px solid #1a56a8; }
.office-card { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 25px; margin-bottom: 20px; display: flex; gap: 20px; align-items: flex-start; transition: box-shadow 0.3s, transform 0.3s; }
.office-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-3px); }
.office-card-icon { width: 60px; height: 60px; background: #e8f0fe; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.office-card-icon i { font-size: 28px; color: #1a56a8; }
.office-card-info { flex: 1; }
.office-card-info h4 { font-size: 17px; color: #1a1a2e; margin-bottom: 10px; font-weight: 600; }
.office-card-info p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 4px; }
.office-card-info p i { width: 18px; color: #1a56a8; margin-right: 6px; }
.regions-section { padding: 80px 50px; background: url('../images/shouhou.jpg') center/cover no-repeat fixed; position: relative; overflow: hidden; }
.regions-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.55); z-index: 0; }
.regions-container { max-width: 1600px; margin: 0 auto; position: relative; z-index: 1; }
.regions-header { text-align: center; margin-bottom: 50px; }
.regions-header h2 { font-size: 32px; color: #fff; margin-bottom: 10px; }
.regions-header p { font-size: 16px; color: rgba(255,255,255,0.8); }
.regions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.region-card { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 35px 25px; text-align: center; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.15); transition: transform 0.3s, box-shadow 0.3s; }
.region-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); background: rgba(255,255,255,0.15); }
.region-card-icon { width: 70px; height: 70px; background: rgba(255,255,255,0.15); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #fff; font-size: 28px; }
.region-card h3 { font-size: 18px; color: #fff; margin-bottom: 10px; }
.region-card p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }
@media (max-width: 1024px) { .global-market-content { flex-direction: column; } .global-offices { width: 100%; max-height: none; overflow-y: visible; } .regions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .global-market-section { padding: 40px 20px; } .global-market-header h2 { font-size: 26px; } .global-map { min-height: 280px; overflow: hidden; } .global-offices { width: 100%; max-height: none; overflow-y: visible; } .global-offices h3 { font-size: 18px; } .office-card { padding: 18px; gap: 15px; } .office-card-icon { width: 45px; height: 45px; } .office-card-icon i { font-size: 20px; } .office-card-info h4 { font-size: 15px; } .office-card-info p { font-size: 13px; } .regions-section { padding: 40px 20px; background-attachment: scroll; } .regions-grid { grid-template-columns: 1fr !important; } }

/* Global Market - Online Inquiry Section */
.inquiry-section { padding: 80px 50px; background: #f8f9fc; overflow: hidden; }
.inquiry-container { max-width: 1600px; margin: 0 auto; background: #fff; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); padding: 60px 80px; }
.inquiry-header { text-align: center; margin-bottom: 40px; }
.inquiry-header h2 { font-size: 32px; color: #1a1a2e; margin-bottom: 12px; }
.inquiry-header p { font-size: 15px; color: #888; }
.inquiry-form { display: flex; flex-direction: column; gap: 25px; }
.inquiry-row { display: flex; gap: 30px; }
.inquiry-group { flex: 1; display: flex; align-items: center; gap: 12px; }
.inquiry-icon { display: flex; align-items: center; gap: 6px; color: #1a56a8; font-size: 14px; white-space: nowrap; min-width: 80px; }
.inquiry-icon i { font-size: 18px; color: #1a56a8; }
.inquiry-group input { flex: 1; border: none; border-bottom: 1px solid #ddd; padding: 12px 0; font-size: 14px; font-family: 'Inter', sans-serif; color: #333; background: transparent; outline: none; transition: border-color 0.3s; }
.inquiry-group input:focus { border-bottom-color: #1a56a8; }
.inquiry-group input::placeholder { color: #bbb; }
.inquiry-group-full { display: flex; align-items: flex-start; gap: 12px; }
.inquiry-group-full .inquiry-icon { padding-top: 12px; }
.inquiry-group-full textarea { flex: 1; border: 1px solid #eee; border-radius: 8px; padding: 15px; font-size: 14px; font-family: 'Inter', sans-serif; color: #333; background: #f8f9fc; outline: none; resize: vertical; min-height: 140px; transition: border-color 0.3s; }
.inquiry-group-full textarea:focus { border-color: #1a56a8; background: #fff; }
.inquiry-group-full textarea::placeholder { color: #bbb; }
.inquiry-submit { text-align: center; margin-top: 15px; }
.inquiry-submit button { background: transparent; color: #1a56a8; border: 2px solid #1a56a8; padding: 12px 50px; border-radius: 30px; font-size: 15px; font-weight: 500; cursor: pointer; transition: all 0.3s; font-family: 'Inter', sans-serif; }
.inquiry-submit button:hover { background: #1a56a8; color: #fff; }
@media (max-width: 768px) { .inquiry-section { padding: 40px 20px; } .inquiry-container { padding: 40px 25px; } .inquiry-row { flex-direction: column; gap: 25px; } .inquiry-icon { min-width: 70px; font-size: 13px; } .inquiry-header h2 { font-size: 24px; } }


/* Solution List Page */
.solutionlist-intro { padding: 60px 50px; background: #fff; }
.solutionlist-intro-container { max-width: 1600px; margin: 0 auto; display: flex; gap: 60px; align-items: center; }
.solutionlist-intro-image { flex: 0 0 45%; border-radius: 12px; overflow: hidden; }
.solutionlist-intro-image img { width: 100%; height: 360px; object-fit: cover; display: block; }
.solutionlist-intro-content { flex: 1; }
.solutionlist-intro-content h2 { font-size: 28px; color: #1a1a2e; margin-bottom: 20px; font-weight: 700; }
.solutionlist-intro-content p { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 25px; }
.solutionlist-intro-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.solutionlist-intro-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #333; }
.solutionlist-intro-features li i { color: #1a56a8; font-size: 16px; }

.solutionlist-section { padding: 60px 50px 80px; background: #f0f2f5; }
.solutionlist-container { max-width: 1600px; margin: 0 auto; }
.solutionlist-header { text-align: center; margin-bottom: 50px; }
.solutionlist-header h2 { font-size: 28px; color: #1a1a2e; margin-bottom: 12px; font-weight: 700; }
.solutionlist-header p { font-size: 16px; color: #666; }
.solutionlist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 50px; }
.solutionlist-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.solutionlist-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.solutionlist-card-image { position: relative; overflow: hidden; height: 200px; }
.solutionlist-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.solutionlist-card:hover .solutionlist-card-image img { transform: scale(1.05); }
.solutionlist-card-info { padding: 20px; }
.solutionlist-card-info h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; line-height: 1.4; }
.solutionlist-card-info p { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.solutionlist-card-link { font-size: 13px; color: #1a56a8; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.3s; }
.solutionlist-card-link:hover { gap: 8px; }

.solutionlist-products { padding: 60px 50px 100px; background: #fff; }
.solutionlist-products-container { max-width: 1600px; margin: 0 auto; }
.solutionlist-products-header { text-align: center; margin-bottom: 50px; }
.solutionlist-products-header h2 { font-size: 28px; color: #1a1a2e; margin-bottom: 12px; font-weight: 700; }
.solutionlist-products-header p { font-size: 16px; color: #666; }
.solutionlist-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

@media (max-width: 1200px) { .solutionlist-grid { grid-template-columns: repeat(2, 1fr); } .solutionlist-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 992px) { .solutionlist-intro-container { flex-direction: column; gap: 30px; } .solutionlist-intro-image { flex: none; width: 100%; } .solutionlist-intro-image img { height: 280px; } }
@media (max-width: 768px) { .solutionlist-intro { padding: 40px 20px; } .solutionlist-intro-content h2 { font-size: 24px; } .solutionlist-intro-features { grid-template-columns: 1fr; } .solutionlist-section { padding: 40px 20px 60px; } .solutionlist-grid { grid-template-columns: 1fr; } .solutionlist-products { padding: 40px 20px 60px; } .solutionlist-products-grid { grid-template-columns: 1fr; } }

/* Solution Detail Page */
.solution-detail-section { padding: 80px 50px; background: #fff; }
.solution-detail-container { max-width: 1600px; margin: 0 auto; }
.solution-detail-header { margin-bottom: 30px; }
.solution-detail-header h1 { font-size: 32px; font-weight: 700; color: #1a1a2e; margin-bottom: 16px; }
.solution-detail-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.solution-detail-meta span { font-size: 14px; color: #888; display: inline-flex; align-items: center; gap: 6px; }
.solution-detail-meta span i { color: #1a56a8; }
.solution-detail-cover { margin-bottom: 40px; border-radius: 12px; overflow: hidden; }
.solution-detail-cover img { width: 100%; height: 400px; object-fit: cover; display: block; }
.solution-detail-content { line-height: 1.8; overflow: hidden; }
.solution-detail-content img { max-width: 100%; height: auto; display: block; }
.solution-detail-content h2 { font-size: 22px; font-weight: 700; color: #1a56a8; margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 1px solid #eee; }
.solution-detail-content h2:first-child { margin-top: 0; }
.solution-detail-content h3 { font-size: 18px; font-weight: 600; color: #1a1a2e; margin: 28px 0 12px; }
.solution-detail-content p { font-size: 16px; color: #444; margin-bottom: 16px; }
.solution-detail-content ul, .solution-detail-content ol { padding-left: 24px; margin: 12px 0 20px; }
.solution-detail-content li { font-size: 16px; color: #444; line-height: 1.8; margin-bottom: 8px; }
.solution-detail-cta { margin-top: 50px; padding: 40px; background: #f8f9fc; border-radius: 12px; text-align: center; }
.solution-detail-cta p { font-size: 18px; color: #333; margin-bottom: 20px; }

.solution-detail-related { padding: 60px 50px; background: #f0f2f5; }
.solution-detail-related-container { max-width: 1600px; margin: 0 auto; }
.solution-detail-related-container > h2 { font-size: 28px; font-weight: 700; color: #1a1a2e; text-align: center; margin-bottom: 40px; }
.solution-detail-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

@media (max-width: 1200px) { .solution-detail-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .solution-detail-section { padding: 40px 20px; } .solution-detail-header h1 { font-size: 24px; } .solution-detail-cover img { height: 240px; } .solution-detail-content h2 { font-size: 20px; } .solution-detail-content p, .solution-detail-content li { font-size: 15px; } .solution-detail-related { padding: 40px 20px; } .solution-detail-related-grid { grid-template-columns: 1fr; } .solution-detail-cta { padding: 30px 20px; } }
