/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



:root {
  --color-bg: #F8F9FA;
  --color-bg-alt: #E9ECEF;
  --color-dark: #0D1B2A;
  --color-heading: #1B4965;
  --color-text: #343A40;
  --color-muted: #6C757D;
  --color-accent: #5FA8D3;
  --color-border: rgba(27, 73, 101, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:  "Microsoft YaHei", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, border-color 0.3s ease;
}

::selection {
  background-color: rgba(95, 168, 211, 0.3);
  color: var(--color-heading);
}

/* ===== Utility ===== */
.font-dm {
  font-family: 'DM Sans', sans-serif;
}

.font-serif-sc {
  font-family: 'Noto Serif SC', serif;
}

.container-main {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-spacing {
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-label {
  
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(248, 249, 250, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.5s;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 52px;
}

.header-nav a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.3s;
}

.header-nav a:hover {
  color: var(--color-heading);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background:#157098;
  transition: width 0.3s;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-nav a.active {
  color: #157098;
}

.header-nav a.active::after {
  width: 100%;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
  border-radius: 999px;

}

.header-phone svg {
  width: 14px;
  height: 14px;
  color: #fff;
  flex-shrink: 0;
}

.header-phone span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

/* ===== Banner Carousel ===== */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.banner-slide.active {
  opacity: 1;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
  transform: scale(1);
}

.banner-slide.active .banner-bg {
  transform: scale(1.08);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0.5) 0%, rgba(13,27,42,0.35) 50%, rgba(13,27,42,0.55) 100%);
}

.banner-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.banner-text-wrap {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-slide.active .banner-text-wrap {
  opacity: 1;
  transform: translateY(0);
}

.banner-title {
  font-size: 72px;
  font-weight: 600;
  letter-spacing: 5px;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.banner-title .highlight {
  color: #fff;
}

.banner-subtitle {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.banner-subtitle .highlight {
  color: #4ecdc4;
}

.banner-desc {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 90px;
  max-width: 560px;
  letter-spacing: 0.02em;
}

.banner-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.banner-btn-primary {
 background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
  border: none;
  box-shadow: 0 4px 20px rgba(78, 205, 196, 0.3);
}

.banner-btn-primary:hover {
  box-shadow: 0 6px 28px rgba(78, 205, 196, 0.45);
  transform: translateY(-1px);
}

.banner-btn-primary svg {
  width: 18px;
  height: 18px;
}

.banner-btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.banner-btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
}

.banner-btn-ghost svg {
  width: 16px;
  height: 16px;
}

/* Banner arrows */
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.banner-arrow:hover {
  background: rgba(255,255,255,0.25);
}

.banner-arrow svg {
  width: 20px;
  height: 20px;
}

.banner-arrow.prev {
  left: 24px;
}

.banner-arrow.next {
  right: 24px;
}

/* Banner dots */
.banner-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.banner-dot {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  padding: 0;
}

.banner-dot.active {
  background: #fff;
}

/* ===== Section Title ===== */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-left {
  text-align: left;
  margin-bottom: 40px;
}

.section-title .title-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 2px;
}

.section-title-left .title-deco {
  justify-content: flex-start;
}

.section-title .title-deco .line {
  width: 32px;
  height: 1px;
  background: var(--color-accent);
}

.section-title h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-heading);
  letter-spacing: 0.05em;
}

/* ===== About ===== */
.about-section {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-text h3 .accent-bar {
  width: 4px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 2px;
}

.about-text p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
}

.about-brand {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--color-border);
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  padding: 10px 28px;
  background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.about-btn:hover {
   background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
  color: #fff;
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Products ===== */
.products-section {
  /*background: var(--color-bg-alt);*/
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}

.product-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.product-img {
  overflow: hidden;
  height: 240px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-info {
  padding: 24px 24px 0;
}

.product-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
  display: none;
}

.product-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 10px;
}

.product-info .desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--color-border);
}

.product-items {
  list-style: none;
  padding: 0 24px 20px;
}

.product-items li {
  font-size: 14px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.product-items li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.product-items li a {
  color: var(--color-text);
  transition: color 0.3s;
}

.product-items li a:hover {
  color: var(--color-accent);
}

.products-btn-wrap {
  text-align: center;
  margin-top: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
 background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
 background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
}

/* ===== Services ===== */
.services-section {
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.88);
}

.services-section .container-main {
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 28px 28px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-accent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(95, 168, 211, 0.3);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(95, 168, 211, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(95, 168, 211, 0.25);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.service-body {
  flex: 1;
}

.service-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-bottom: 8px;
}

.service-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.service-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  margin-left: auto;
  flex-shrink: 0;
  line-height: 1;
}

/* ===== News ===== */
/* ===== News ===== */
.news-section {
  /*background: var(--color-bg);*/
  background: var(--color-bg-alt);
}

.news-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
  min-width: 0;
}

.news-sidebar .news-image {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 8px;
}

.news-sidebar .news-image img {
  width: 100%;
  height: auto;
}

.news-sidebar .section-title-left {
  margin-bottom: 0;
}

.news-sidebar p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-muted);
  margin-top: 0;
  margin-bottom: 20px;
}

.news-main {
  min-width: 0;
  overflow: hidden;
}

.news-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.news-tab {
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all 0.3s;
  background: #fff;
  color: var(--color-muted);
}

.news-tab.active {
  background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
  color: #fff;
  border-color: transparent;
}

.news-tab:not(.active):hover {
  color: var(--color-heading);
  border-color: var(--color-accent);
}

.news-list {
  list-style: none;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  transition: all 0.3s;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item:hover {
  padding-left: 12px;
  padding-right: 12px;
  background: var(--color-bg-alt);
  border-radius: 6px;
  border-bottom-color: transparent;
}

.news-item:hover + .news-item {
  border-top-color: transparent;
}

.news-item .badge {
  flex-shrink: 0;
  padding: 4px 12px;
  font-size: 12px;
  line-height: 1;
  border-radius: 4px;
  background: rgba(95, 168, 211, 0.1);
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

.news-item .badge-alt {
  background: rgba(120, 120, 120, 0.1);
  color: var(--color-muted);
}

.news-item h4 {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}

.news-item:hover h4 {
  color: var(--color-accent);
}

.news-item .date {
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--color-muted);
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.news-item .arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s;
}

.news-item:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

.news-more {
  margin-top: 24px;
}

.news-more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #0b8b9a;
  border: 1px solid rgba(95, 168, 211, 0.6);
  border-radius: 6px;
  background: rgba(95, 168, 211, 0.06);
  transition: all 0.3s;
}

.news-more a:hover {
  background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
  border-color: #fff;
  color: #fff;
}

/* ===== Footer ===== */
.logos[data-v-33fab748] {
    display: inline;
    margin: 0 5px;
    width: 16px;
}
.footer {
  background: #0D1B2A;
  color: #fff;
}

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
 padding: 38px 24px 19px;
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 3fr;
  gap: 40px;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 5px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

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

.footer-products h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}

.footer-products ul {
  list-style: none;
}

.footer-products li {
  margin-bottom: 0px;
}

.footer-products a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-products a:hover {
  color: var(--color-accent);
}

.footer-qr h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}

.footer-qr-grid {
  display: flex;
  gap: 24px;
}

.qr-placeholder {
  text-align: center;
}

.qr-box {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.qr-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.qr-box svg {
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.3);
}

.qr-box span {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

.qr-placeholder > span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ===== Inner Page Common ===== */
.page-banner {
  position: relative;
  height: 300px;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 64px;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
 
}



.page-banner-content {
  position: relative;
  z-index: 2;
  animation: pageBannerIn 0.8s ease both;
}

@keyframes pageBannerIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-banner-content h1 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.page-banner-content .text-label {
  color: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb .sep {
  color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
  color: rgba(255,255,255,0.9);
}

/* ===== Product List Page ===== */
.product-list-section {
  background: var(--color-bg);
}

.product-list-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

.product-sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
}

.product-sidebar-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

.product-sidebar-title {
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-sidebar-title svg {
  width: 20px;
  height: 20px;
}

.product-sidebar-nav {
  list-style: none;
  padding: 8px 0;
}

.product-sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-size: 16px;
  color: var(--color-text);
  transition: all 0.3s;
  position: relative;
}

.product-sidebar-nav li a::after {
  content: '';
  position: absolute;
  right: 20px;
  width: 16px;
  height: 16px;
  color: var(--color-muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s;
}

.product-sidebar-nav li a:hover,
.product-sidebar-nav li a.active {
  color: var(--color-accent);
  background: rgba(95, 168, 211, 0.06);
  font-weight: 500;
}

.product-sidebar-nav li a:hover::after,
.product-sidebar-nav li a.active::after {
  opacity: 1;
  transform: translateX(0);
}

.product-sidebar-nav li a .nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border);
  flex-shrink: 0;
  transition: all 0.3s;
}

.product-sidebar-nav li a:hover .nav-dot,
.product-sidebar-nav li a.active .nav-dot {
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(95, 168, 211, 0.15);
}

.product-sidebar-sub {
  list-style: none;
  padding: 4px 0 4px 20px;
}

.product-sidebar-sub li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px 10px 20px;
  font-size: 14px;
  color: var(--color-muted);
  transition: all 0.3s;
}

.product-sidebar-sub li a:hover {
  color: var(--color-accent);
  background: rgba(95, 168, 211, 0.04);
}

.product-sidebar-sub li a .nav-dash {
  width: 10px;
  height: 1px;
  background: var(--color-border);
  flex-shrink: 0;
  transition: all 0.3s;
}

.product-sidebar-sub li a:hover .nav-dash {
  background: var(--color-accent);
  width: 14px;
}

.product-sidebar-contact {
  margin-top: 20px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(10,110,189,0.06) 0%, rgba(0,198,167,0.06) 100%);
  border-radius: 12px;
  border: 1px dashed rgba(95, 168, 211, 0.3);
}

.product-sidebar-contact h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 10px;
}

.product-sidebar-contact p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.8;
}

.product-sidebar-contact .tel {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  margin-top: 8px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-self: start;
}

.product-grid-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid transparent;
}

.product-grid-card .card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-grid-card .card-body {
  flex: 1;
  display: block;
  flex-direction: column;
  padding: 20px 22px 24px;
  position: relative;
}

.product-grid-card .card-body .card-desc {
  flex: 1;
}

.product-grid-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-6px);
  border-color: rgba(95, 168, 211, 0.2);
}

.product-grid-card .card-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-grid-card .card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

.product-grid-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-grid-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.product-grid-card .card-body {
  padding: 20px 22px 24px;
  position: relative;
}

.product-grid-card .card-body .card-category {
  display: inline-block;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(10,110,189,0.08) 0%, rgba(0,198,167,0.08) 100%);
  color: var(--color-accent);
  margin-bottom: 10px;
}

.product-grid-card .card-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.product-grid-card:hover .card-body h3 {
  color: var(--color-accent);
}

.product-grid-card .card-body .card-desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-grid-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-grid-card .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-grid-card .card-tag {
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 4px;
  background: var(--color-bg-alt);
  color: var(--color-muted);
  transition: all 0.3s;
}

.product-grid-card:hover .card-tag {
  background: rgba(95, 168, 211, 0.08);
  color: var(--color-accent);
}

.product-grid-card .card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.product-grid-card .card-arrow svg {
  width: 14px;
  height: 14px;
  color: var(--color-muted);
  transition: all 0.3s;
}

.product-grid-card:hover .card-arrow {
  background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
}

.product-grid-card:hover .card-arrow svg {
  color: #fff;
  transform: translateX(2px);
}

.product-grid-card .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ===== Product Detail Page ===== */
.product-detail-section {
  background: var(--color-bg);
}

.detail-product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  overflow: hidden;
  margin-bottom: 40px;
}

.detail-product-inner {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 0;
  padding: 40px;
}

.detail-product-img {
  position: relative;
  overflow: hidden;
   height: 460px;
 
}

.detail-product-img img {
  width: 100%;
  height: 460px;
 
  object-fit: cover;
  display: block;
}

.detail-product-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.detail-product-body .detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(10,110,189,0.1) 0%, rgba(0,198,167,0.1) 100%);
  color: var(--color-accent);
  margin-bottom: 16px;
  width: fit-content;
}

.detail-product-body .detail-badge svg {
  width: 14px;
  height: 14px;
}

.detail-product-body h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.detail-product-body .detail-label-en {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--color-border);
}

.detail-product-body .detail-desc {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 28px;
}

.detail-product-body .detail-contact-card {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(10,110,189,0.04) 0%, rgba(0,198,167,0.04) 100%);
  border-radius: 12px;
  border: 1px solid rgba(95, 168, 211, 0.12);
  display: flex;
  align-items: center;
  gap: 20px;
}

.detail-contact-card .contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-contact-card .contact-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.detail-contact-card .contact-text p {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.detail-contact-card .contact-text .tel {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-heading);
}

/* Detail Tabs / Sections below product card */
.detail-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.detail-section-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.detail-section-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.detail-section-card.full-width {
  grid-column: 1 / -1;
}

.detail-section-header {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(to right, rgba(95,168,211,0.03) 0%, transparent 100%);
}

.detail-section-header .section-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(10,110,189,0.1) 0%, rgba(0,198,167,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-section-header .section-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

.detail-section-header h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-heading);
}

.detail-section-body {
  padding: 40px;
}

/* Specs table in detail */
.detail-section-body table {
  width: 100%;
  border-collapse: collapse;
}

.detail-section-body table tr {
  transition: background 0.3s;
}

.detail-section-body table tr:hover {
  background: rgba(95, 168, 211, 0.04);
}

.detail-section-body table th,
.detail-section-body table td {
  padding: 12px 16px;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.detail-section-body table tr:last-child th,
.detail-section-body table tr:last-child td {
  border-bottom: none;
}

.detail-section-body table th {
  color: var(--color-muted);
  font-weight: 500;
  width: 140px;
}

.detail-section-body table td {
  color: var(--color-text);
  font-weight: 500;
}

/* Features list */
.detail-section-body .feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.detail-section-body .feature-list li {
  font-size: 14px;
  color: var(--color-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
  padding: 12px 16px;
  background: var(--color-bg);
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.detail-section-body .feature-list li:hover {
  background: rgba(95, 168, 211, 0.06);
  border-color: rgba(95, 168, 211, 0.15);
  transform: translateX(2px);
}

.detail-section-body .feature-list li .feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Application tags */
.detail-section-body .app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-section-body .app-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  background: var(--color-bg);
  color: var(--color-text);
  transition: all 0.3s;
  border: 1px solid transparent;
}

.detail-section-body .app-tag:hover {
  background: rgba(95, 168, 211, 0.08);
  color: var(--color-accent);
  border-color: rgba(95, 168, 211, 0.25);
  transform: translateY(-1px);
}

.detail-section-body .app-tag svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

/* ===== About Page ===== */
.about-page-section {
  background: var(--color-bg);
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-page-text h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-page-text h3 .accent-bar {
  width: 4px;
  height: 22px;
  background: var(--color-accent);
  border-radius: 2px;
}

.about-page-text p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 20px;
}

.about-page-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.about-page-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-milestones {
  background: var(--color-bg-alt);
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.milestone-item {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}

.milestone-item:hover {
  transform: translateY(-4px);
}

.milestone-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.milestone-label {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
}

.about-partners {
  background: var(--color-bg);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.partner-item {
  padding: 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-align: center;
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
  transition: transform 0.3s;
}

.partner-item:hover {
  transform: translateY(-2px);
}

/* ===== Services Page ===== */
.services-page-section {
  background: var(--color-bg);
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-page-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s;
  border-left: 4px solid transparent;
}

.service-page-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-left-color: var(--color-accent);
}

.service-page-card .service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(95, 168, 211, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-page-card .service-icon-box svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.service-page-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 12px;
}

.service-page-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-page-card ul {
  list-style: none;
}

.service-page-card ul li {
  font-size: 14px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.service-page-card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* ===== News Featured Card ===== */
.news-featured-card {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 40px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  margin-bottom: 48px;
  transition: all 0.5s ease;
  min-width: 0;
}

.news-featured-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.news-featured-img {
  overflow: hidden;
  min-height: 280px;
}

.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-featured-card:hover .news-featured-img img {
  transform: scale(1.05);
}

.news-featured-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.news-featured-body .news-tag {
  background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
  color: #fff;
  padding: 4px 14px;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  display: inline-block;
  width: fit-content;
}

.news-featured-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.5;
  margin-bottom: 14px;
  transition: color 0.3s;
}

.news-featured-card:hover .news-featured-body h2 {
  color: var(--color-accent);
}

.news-featured-body p {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.9;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-featured-date {
  font-size: 13px;
  color: var(--color-muted);
  font-family: 'DM Sans', sans-serif;
}

.news-featured-more {
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 500;
  transition: letter-spacing 0.3s;
}

.news-featured-card:hover .news-featured-more {
  letter-spacing: 2px;
}

/* ===== News Detail Page ===== */
.news-detail-section {
  background: var(--color-bg);
}

.news-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
}

.news-detail-main {
  background: #fff;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.news-detail-header {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.news-detail-header h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.news-detail-meta span {
  font-size: 13px;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-detail-meta span svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

.news-detail-body {
  font-size: 15px;
  color: var(--color-text);
  line-height: 2;
}

.news-detail-body p {
  margin-bottom: 20px;
}

.news-detail-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-heading);
  margin: 32px 0 16px;
}

.news-detail-body ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.news-detail-body ul li {
  margin-bottom: 8px;
  line-height: 1.9;
}

.news-detail-body .detail-highlight-box {
  background: rgba(95, 168, 211, 0.06);
  border-left: 4px solid var(--color-accent);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}

.news-detail-body .detail-highlight-box p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-text);
}

.news-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-sidebar-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.news-sidebar-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

.news-sidebar-list {
  list-style: none;
}

.news-sidebar-list li {
  margin-bottom: 14px;
  border-bottom: 1px dashed #eee;
  padding-bottom: 10px;
}

.news-sidebar-list li a {
  font-size: 15px;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

.news-sidebar-list li a:hover {
  color: #1b4965;
}

.news-sidebar-list li .sidebar-date {
  font-size: 14px;
  color: var(--color-muted);
  font-family: 'DM Sans', sans-serif;
  margin-top: 4px;
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 13px;
  background: rgba(95,168,211,0.08);
  color: var(--color-accent);
  border-radius: 4px;
  transition: all 0.3s;
  cursor: default;
}

.sidebar-tag:hover {
  background: rgba(95,168,211,0.15);
}

.sidebar-contact-info {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 2;
}

.sidebar-contact-desc {
  margin-bottom: 8px;
}

.sidebar-contact-tel,
.sidebar-contact-email {
  margin-bottom: 4px;
  color: var(--color-heading);
  font-weight: 600;
}

.sidebar-contact-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
}

.sidebar-contact-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.news-detail-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.news-detail-nav a {
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s;
  max-width: 45%;
}

.news-detail-nav a:hover {
  color:#1b4965;
}

.news-detail-nav a span {
  color: var(--color-muted);
  font-size: 12px;
}

/* ===== News Page ===== */
.news-page-section {
  background: var(--color-bg);
   overflow-x: hidden;
}

.news-page-list {
  list-style: none;
  min-width: 0;
}

.news-page-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 24px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
  position: relative;
  background: transparent;
  align-items: stretch;
   min-width: 0;
}

.news-page-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--color-border);
  transition: all 0.4s ease;
}

.news-page-item:hover::after {
  left: 0;
  right: 0;
  background: transparent;
}

.news-page-item:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 0 0 1px rgba(95,168,211,0.08);
  transform: translateX(4px);
}

.news-date-box {
  text-align: center;
  padding: 16px;
  background: rgba(95, 168, 211, 0.06);
  border-radius: 8px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.news-page-item:hover .news-date-box {
  background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
}

.news-date-box .day {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  transition: color 0.4s ease;
}

.news-page-item:hover .news-date-box .day {
  color: #fff;
}

.news-date-box .month {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 6px;
  transition: color 0.4s ease;
}

.news-page-item:hover .news-date-box .month {
  color: rgba(255,255,255,0.85);
}

.news-page-item .news-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
   min-width: 0;
    overflow: hidden;
}

.news-page-item .news-content-top {
  flex: 1;
}

.news-page-item .news-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 8px;
  transition: color 0.4s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-page-item:hover .news-content h3 {
  color: var(--color-accent);
}

.news-page-item .news-content p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-page-item .news-content .news-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 4px;
  background: rgba(95, 168, 211, 0.1);
  color: var(--color-accent);
  margin-bottom: 10px;
  transition: all 0.4s ease;
}

.news-page-item:hover .news-content .news-tag {
  background: rgba(95, 168, 211, 0.15);
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 500;
  margin-top: 12px;
  transition: all 0.4s ease;
  opacity: 0.7;
}

.news-page-item:hover .news-read-more {
  opacity: 1;
  letter-spacing: 1px;
}

/* ===== Contact Page ===== */
.contact-page-section {
  background: var(--color-bg);
}

.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card-item {
  background: #fff;
  border-radius: 14px;
  padding: 36px 24px 28px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0a6ebd, #00c6a7);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-card-item:hover::before {
  opacity: 1;
}

.contact-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(10,110,189,0.1);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a6ebd, #00c6a7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.4s ease;
}

.contact-card-item:hover .contact-card-icon {
  transform: scale(1.1);
}

.contact-card-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
  transition: all 0.4s ease;
}

.contact-card-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.contact-card-item p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.contact-form-card {
  background: #fff;
  padding: 44px 40px;
}

.contact-form-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.contact-form-desc {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-form-img {
  position: relative;
  overflow: hidden;
}

.contact-form-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-img::after {
  content: '';
  position: absolute;
  inset: 0;
 
}

.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-list li .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(95, 168, 211, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-list li .icon-box svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
}

.contact-info-list li .info-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.contact-info-list li .info-text p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-group label em {
  color: #e74c3c;
  font-style: normal;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid #e8ecf1;
  border-radius: 8px;
  background: #f8fafc;
  color: var(--color-text);
  outline: none;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(95, 168, 211, 0.1);
  background: #fff;
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 40px;
  background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  letter-spacing: 1px;
}

.btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 110, 189, 0.35);
}

.btn-submit svg {
  transition: transform 0.3s ease;
}

.btn-submit:hover svg {
  transform: translateX(3px);
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 40px;
  background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  letter-spacing: 1px;
}

.btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 110, 189, 0.35);
}

.btn-submit svg {
  transition: transform 0.3s ease;
}

.btn-submit:hover svg {
  transform: translateX(3px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 51;
  margin-left: auto;
  margin-right: 0px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-grid,
  .news-layout,
  .about-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .product-list-layout {
    grid-template-columns: 1fr;
  }
  .product-sidebar {
    position: static;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-product-inner {
    grid-template-columns: 1fr;
  }
  .detail-product-img img {
    min-height: 220px;
    max-height: 280px;
  }
  .detail-sections {
    grid-template-columns: 1fr;
  }
  .detail-section-body .feature-list {
    grid-template-columns: 1fr;
  }
  .milestone-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-page-grid {
    grid-template-columns: 1fr;
  }
  .contact-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-img {
    max-height: 280px;
  }
  .contact-form-img::after {
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
  }
}

@media (max-width: 800px) {
    .breadcrumb .current{ display:none;}
    .banner-content{ padding-top:54px;}
    .banner-content{ font-size:14px;}
    .banner-dots{ bottom:20px;}
  .header-inner {
    padding: 0 16px;
  }
  .header-logo img {
    height: 40px;
  }
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow-y: auto;
    max-height: calc(100vh - 64px);
    z-index: 49;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  }
  .header-nav.open {
    display: flex;
    animation: navSlideIn 0.35s ease;
  }
  @keyframes navSlideIn {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .header-nav a {
    padding: 18px 28px;
    font-size: 17px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: var(--color-text);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header-nav a::after {
    display: none;
  }
  .header-nav a::before {
    content: '';
    width: 3px;
    height: 0;
    border-radius: 2px;
    background: linear-gradient(135deg, #0a6ebd 0%, #00c6a7 100%);
    transition: height 0.3s;
    flex-shrink: 0;
  }
  .header-nav a.active {
    color: var(--color-accent);
    background: rgba(95, 168, 211, 0.04);
  }
  .header-nav a.active::before {
    height: 20px;
  }
  .header-nav a:hover {
    color: var(--color-accent);
    background: rgba(95, 168, 211, 0.04);
  }
  .header-nav a:hover::before {
    height: 20px;
  }
  .menu-toggle {
    display: flex;
  }
  .header-phone {
    display: none;
  }
  .banner-title {
    font-size: 30px;
    letter-spacing: 2px;
  }
  .banner-subtitle {
    font-size: 17px;
  }
  .banner-desc {
    font-size: 13px;
    max-width: 90%;
    margin-bottom: 48px;
  }
  .banner-btns {
    flex-direction: column;
    gap: 12px;
  }
  .banner-btn {
    padding: 11px 28px;
    font-size: 14px;
  }
  .banner-arrow {
    display: none;
  }
  .page-banner {
    height: 200px;
  }
  .page-banner-content h1 {
    font-size: 26px;
    letter-spacing: 0.04em;
  }
  .section-spacing {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .section-title {
    margin-bottom: 20px;
  }
  .about-text h3{ margin-top:10px;}
  
  .section-title h2 {
    font-size: 26px;
  }
  .products-grid,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-grid {
    gap: 32px;
  }
  .about-text h3,
  .about-page-text h3 {
    font-size: 18px;
  }
  .milestone-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .milestone-num {
    font-size: 32px;
  }
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .partner-item {
    padding: 16px 12px;
    font-size: 14px;
  }
 .news-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .news-item {
    flex-wrap: wrap;
    gap: 8px;
  }
  .news-item h4 {
    white-space: normal;
    min-width: 0;
    flex-basis: calc(100% - 80px);
  }
  .news-item .date {
    width: 100%;
    order: 3;
    margin-left: 0;
    font-size: 12px;
  }
  .news-item .arrow {
    display: none;
  }
  .news-tabs {
    gap: 8px;
  }
  .news-tab {
    padding: 8px 18px;
    font-size: 14px;
  }
  .news-more a {
    padding: 8px 18px;
    font-size: 13px;
  }
  .news-featured-img {
    min-height: 180px;
  }
  .news-featured-body h2 {
    font-size: 17px;
  }
  .news-page-item {
    grid-template-columns: 80px 1fr;
    gap: 16px;
    padding: 16px;
  }
  .news-date-box {
    padding: 12px 8px;
  }
  .news-date-box .day {
    font-size: 26px;
  }
  .news-page-item .news-content h3 {
    font-size: 16px;
  }
  .news-detail-layout {
    grid-template-columns: 1fr;
  }
  .news-detail-main {
    padding: 24px;
  }
  .news-detail-header h1 {
    font-size: 20px;
  }
  .news-detail-meta {
    gap: 12px;
  }
  .news-detail-body h3 {
    font-size: 16px;
  }
  .contact-cards-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 24px 20px;
  }
  .contact-form-card h3 {
    font-size: 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .detail-product-inner {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .detail-product-img,
  .detail-product-img img {
    height: auto;
    max-height: 280px;
  }
  .detail-product-body {
    padding: 24px 0 0;
  }
  .detail-product-body h2 {
    font-size: 22px;
  }
  .detail-sections {
    grid-template-columns: 1fr;
  }
  .detail-section-body .feature-list {
    grid-template-columns: 1fr;
  }
  .product-list-layout {
    grid-template-columns: 1fr;
  }
  .product-sidebar {
    position: static;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-copyright {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  .footer-qr-grid {
    justify-content: flex-start;
  }
  .container-main {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header-inner {
    max-width: 100%;
  }
  .banner {
    height: 54vh;
    min-height: 300px;
  }
  .product-sidebar-contact{ display:none;}
  .container-main{max-width: 100%;}
  .product-grid-card{ height:auto;}
      .news-page-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .news-featured-card{ gap:5px;}
    .news-date-box{ display:none;}
    .news-featured-card{ margin-bottom:14px;}
    .news-item a{ display:block!important;}
    .news-item h4{ margin-top:10px;}
    .news-featured-card{ display:block!important;}
    .news-detail-nav{}
    .detail-contact-card .contact-icon{ width:40px; height:40px;}
    .detail-product-body .detail-contact-card{ padding:10px;}
    .detail-product-card{ margin-bottom:20px;}
    .section-spacing {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .products-btn-wrap{ margin-top:26px;}
        .section-title {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .banner-subtitle {
    font-size: 15px;
  }
  .page-banner {
    height: 170px;
  }
  .page-banner-content h1 {
    font-size: 22px;
  }
  .section-title h2 {
    font-size: 22px;
  }
  .header-logo img {
    height: 35px;
  }
  .footer-brand img{ height: 35px;}
  .header-inner {
    height: 56px;
  }
  .page-banner {
    margin-top: 56px;
  }
  .header-nav {
    max-height: calc(100vh - 56px);
  }
  .milestone-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .milestone-item {
    padding: 20px 12px;
  }
  .milestone-num {
    font-size: 28px;
  }
  .partner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .news-page-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .news-date-box {
    flex-direction: row;
    gap: 8px;
    padding: 8px 12px;
  }
  .news-date-box .day {
    font-size: 20px;
  }
  .news-date-box .month {
    margin-top: 0;
    font-size: 12px;
  }
  .footer-links{ display: none;}
  .footer-products{ display: none;}
  .footer-qr{ display: none;}




}
