/* ===== CSS Variables ===== */
:root {
  --primary-color: #1a1a2e;
  --secondary-color: #16213e;
  --accent-color: #0f3460;
  --gold-color: #d4af37;
  --text-dark: #2c3e50;
  --text-medium: #5a6c7d;
  --text-light: #95a5a6;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e1e8ed;
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-heavy: rgba(0, 0, 0, 0.25);
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.85) 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  
  --font-primary: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --section-padding: 100px 0;
  --section-padding-mobile: 60px 0;
  --container-padding: 0 20px;
  --container-max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-white);
  font-weight: 400;
  overflow-x: hidden;
}
a {
    text-decoration: none;
}

.container-9fd7ec {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-f9016b {
  padding: var(--section-padding);
}

.section-alt-97a1d5 {
  background-color: var(--bg-light);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* ===== Image Placeholder ===== */
.image-placeholder-2aa843 {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.image-placeholder-2aa843::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.image-placeholder-2aa843 i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.image-placeholder-2aa843 span {
  font-size: 0.9rem;
  opacity: 0.7;
}

.avatar-placeholder-8396b0 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
}

.avatar-placeholder-8396b0 i {
  color: white;
  opacity: 1;
}

.qr-placeholder-50dcba {
  width: 150px;
  height: 150px;
  margin: 1rem auto 0;
}

.qr-placeholder-50dcba i {
  font-size: 4rem;
}

/* ===== Section Headers ===== */
.section-header-7b8cf5 {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title-485ba1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title-485ba1::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.section-subtitle-14d3cb {
  font-size: 1.15rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== Buttons ===== */
.btn-7b6179 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary-d0d8f4 {
  background: var(--gradient-primary);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
}

.btn-primary-d0d8f4:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(26, 26, 46, 0.4);
}

.btn-secondary-ab43e9 {
  background: transparent;
  color: var(--bg-white);
  border-color: var(--bg-white);
}

.btn-secondary-ab43e9:hover {
  background: var(--bg-white);
  color: var(--primary-color);
}

.btn-outline-ca5f99 {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-ca5f99:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* ===== Header & Navigation ===== */
.header-7f97b2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow-light);
  z-index: 1000;
  transition: var(--transition);
}

.header-7f97b2.scrolled {
  box-shadow: 0 4px 30px var(--shadow-medium);
}

.navbar-daf5e2 {
  padding: 1rem 0;
}

.nav-container-447991 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.nav-logo-b7f66b {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-logo-icon-aa787d {
  font-size: 2rem;
  color: var(--secondary-color);
}

.nav-menu-b0115b {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link-c43882 {
  position: relative;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 0;
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav-link-c43882::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition);
}

.nav-link-c43882:hover,
.nav-link-c43882.active {
  color: var(--secondary-color);
}

.nav-link-c43882:hover::after,
.nav-link-c43882.active::after {
  width: 100%;
}

.nav-link-c43882.contact-btn-33935d {
  background: var(--gradient-primary);
  color: var(--bg-white);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  margin-left: 1rem;
}

.nav-link-c43882.contact-btn-33935d::after {
  display: none;
}

.nav-link-c43882.contact-btn-33935d:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
}

.nav-toggle-78bf47 {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle-78bf47 .bar-5d34a2 {
  width: 28px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle-78bf47.active .bar-5d34a2:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle-78bf47.active .bar-5d34a2:nth-child(2) {
  opacity: 0;
}

.nav-toggle-78bf47.active .bar-5d34a2:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Hero Section ===== */
.hero-74d8e1 {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-background-05abc4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

.hero-background-05abc4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../imgs/banner.jpg');
  opacity: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay-b80b86 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

.hero-content-2a3f69 {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-text-54382b {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: var(--bg-white);
}

.hero-title-b5c757 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  color: var(--bg-white);
}

.hero-subtitle-820c1a {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.6;
  font-weight: 300;
  color: var(--bg-white);
}

.hero-features-0fea53 {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-feature-480bca {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
}

.hero-feature-480bca i {
  font-size: 1.5rem;
  color: var(--gold-color);
}

.hero-buttons-8245c0 {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stats-dfcf48 {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-grid-681f30 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item-6d209f {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--bg-white);
  text-align: left;
}

.stat-icon-851463 {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-851463 i {
  font-size: 1.5rem;
  color: var(--gold-color);
}

.stat-content-93d801 {
  display: flex;
  flex-direction: column;
}

.stat-number-393181 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label-cd7190 {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===== Services Section ===== */
.services-grid-c97266 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card-107cc5 {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow-light);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card-107cc5::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
}

.service-card-107cc5:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 35px var(--shadow-medium);
}

.service-icon-14d882 {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.service-card-107cc5:hover .service-icon-14d882 {
  transform: scale(1.1) rotate(5deg);
}

.service-icon-14d882 i {
  font-size: 2.2rem;
  color: var(--bg-white);
}

.service-card-107cc5 h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card-107cc5 p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features-394b4d {
  text-align: left;
  margin-top: 1.5rem;
}

.service-features-394b4d li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.service-features-394b4d i {
  color: var(--gold-color);
  font-size: 0.9rem;
}

/* ===== Advantages Section ===== */
.advantages-content-d30e56 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.advantage-item-9a7d55 {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 15px var(--shadow-light);
  transition: var(--transition);
}

.advantage-item-9a7d55:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 25px var(--shadow-medium);
}

.advantage-icon-99ced2 {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advantage-icon-99ced2 i {
  font-size: 1.8rem;
  color: var(--bg-white);
}

.advantage-content-6bb8e5 h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.advantage-content-6bb8e5 p {
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

.advantages-image-9ded99 {
  position: relative;
}

.advantages-image-9ded99 .image-placeholder-2aa843 {
  height: 500px;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 35px var(--shadow-medium);
}

/* ===== About Section ===== */
.about-content-ddc11e {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text-a843c6 h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about-text-a843c6 p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-features-d1abf7 {
  margin-top: 2rem;
}

.about-feature-bd2973 {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.about-feature-bd2973:hover {
  background: var(--bg-white);
  box-shadow: 0 4px 20px var(--shadow-light);
}

.about-feature-bd2973 i {
  font-size: 2rem;
  color: var(--gold-color);
  flex-shrink: 0;
}

.about-feature-content-7c9f74 h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.about-feature-content-7c9f74 p {
  color: var(--text-medium);
  margin: 0;
  font-size: 0.95rem;
}

.about-image-043189 .image-placeholder-2aa843 {
  height: 500px;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 35px var(--shadow-medium);
}

.company-values-9ae2a6 {
  margin-top: 4rem;
}

.company-values-9ae2a6 h3 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
  font-size: 2rem;
}

.values-grid-774f38 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-item-6d8d94 {
  text-align: center;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow-light);
  transition: var(--transition);
}

.value-item-6d8d94:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-medium);
}

.value-icon-a952c2 {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon-a952c2 i {
  font-size: 2rem;
  color: var(--bg-white);
}

.value-item-6d8d94 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-item-6d8d94 p {
  color: var(--text-medium);
  margin: 0;
  line-height: 1.7;
}

/* ===== Products Section ===== */
.product-categories-e89779 {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-filter-ba1f83 {
  padding: 12px 24px;
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  color: var(--text-medium);
}

.category-filter-ba1f83:hover,
.category-filter-ba1f83.active {
  background: var(--gradient-primary);
  color: var(--bg-white);
  border-color: transparent;
  transform: translateY(-2px);
}

.products-grid-beec1b {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card-0909aa {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-light);
  transition: var(--transition);
}

.product-card-0909aa:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 35px var(--shadow-medium);
}

.product-image-248063 {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-image-248063 .image-placeholder-2aa843 {
  height: 100%;
  border-radius: 0;
}

.product-info-f45440 {
  padding: 2rem;
}

.product-info-f45440 h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.product-category-04db5a {
  color: var(--gold-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-desc-a2b886 {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-features-0575b2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-features-0575b2 span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.product-features-0575b2 i {
  color: var(--gold-color);
  font-size: 0.8rem;
}

/* ===== News Section ===== */
.news-grid-f815b4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.news-card-2e8e0c {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card-2e8e0c:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px var(--shadow-medium);
}

.news-image-15433e {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-image-15433e .image-placeholder-2aa843 {
  height: 100%;
  border-radius: 0;
}

.news-content-c926ef {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.news-date-b7904d {
  position: absolute;
  top: -50px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--bg-white);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.date-day-059350 {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.date-month-6f3c6b {
  display: block;
  font-size: 0.85rem;
  opacity: 0.9;
}

.news-content-c926ef h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.news-content-c926ef h3 a {
  color: var(--primary-color);
  transition: var(--transition);
}

.news-content-c926ef h3 a:hover {
  color: var(--secondary-color);
}

.news-content-c926ef p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.news-meta-aa37ec {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.news-meta-aa37ec span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-meta-aa37ec i {
  color: var(--gold-color);
}

.news-more-b26ca5 {
  text-align: center;
}

/* ===== FAQ Section ===== */
.faq-container-a2d673 {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-ac1c6e {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 15px var(--shadow-light);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item-ac1c6e:hover {
  box-shadow: 0 4px 25px var(--shadow-medium);
}

.faq-question-de5367 {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question-de5367:hover {
  background: var(--bg-light);
}

.faq-question-de5367 h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin: 0;
  flex: 1;
}

.faq-icon-4a69e3 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  transition: var(--transition);
}

.faq-item-ac1c6e.active .faq-icon-4a69e3 {
  transform: rotate(180deg);
}

.faq-answer-3e2e3b {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item-ac1c6e.active .faq-answer-3e2e3b {
  max-height: 500px;
}

.faq-answer-3e2e3b p {
  padding: 0 2rem 1.5rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin: 0;
}

/* ===== Testimonials Section ===== */
.testimonials-grid-a2a93e {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card-e2694b {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow-light);
  transition: var(--transition);
}

.testimonial-card-e2694b:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px var(--shadow-medium);
}

.testimonial-header-926d3c {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-avatar-542745 {
  flex-shrink: 0;
}

.testimonial-info-4b76ba {
  flex: 1;
}

.testimonial-info-4b76ba h4 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.testimonial-info-4b76ba p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.testimonial-rating-50f738 {
  display: flex;
  gap: 0.25rem;
}

.testimonial-rating-50f738 i {
  color: var(--gold-color);
  font-size: 0.9rem;
}

.testimonial-content-db59b3 {
  color: var(--text-medium);
  line-height: 1.8;
  font-style: italic;
}

.testimonials-stats-f35d31 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonials-stats-f35d31 .stat-item-6d209f {
  text-align: center;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow-light);
  transition: var(--transition);
}

.testimonials-stats-f35d31 .stat-item-6d209f:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-medium);
}

.testimonials-stats-f35d31 .stat-icon-851463 {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.testimonials-stats-f35d31 .stat-icon-851463 i {
  font-size: 1.8rem;
  color: var(--bg-white);
}

.testimonials-stats-f35d31 .stat-content-93d801 {
  color: var(--text-dark);
}

.testimonials-stats-f35d31 .stat-number-393181 {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.testimonials-stats-f35d31 .stat-label-cd7190 {
  color: var(--text-medium);
  font-size: 1rem;
}

/* ===== Contact Section ===== */
.contact-content-dd1e5f {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info-1e23f0 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item-437151 {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow-light);
  transition: var(--transition);
}

.contact-item-437151:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 30px var(--shadow-medium);
}

.contact-icon-37ef76 {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-37ef76 i {
  font-size: 1.5rem;
  color: var(--bg-white);
}

.contact-details-a65a65 h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.contact-details-a65a65 p {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-details-a65a65 p:last-child {
  margin-bottom: 0;
}

.wechat-qr-df7d47 {
  margin-top: 1rem;
}

.contact-form-wrapper-1610f1 {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow-light);
}

.contact-form-e5acaa {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group-138e4d {
  display: flex;
  flex-direction: column;
}

.form-group-138e4d label {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group-138e4d label span {
  color: #e74c3c;
}

.form-group-138e4d input,
.form-group-138e4d select,
.form-group-138e4d textarea {
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--bg-white);
}

.form-group-138e4d input:focus,
.form-group-138e4d select:focus,
.form-group-138e4d textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(22, 33, 62, 0.1);
}

.form-group-138e4d textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== Flink Section ===== */
.flink-section-054191 {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
}

.flink-header-343cb5 {
  font-size: 1.1rem;
  font-weight: 600;
  padding-bottom: 15px;
  color: var(--primary-color);
}

.flink-section-054191 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.flink-section-054191 li {
  display: inline;
}

.flink-section-054191 a {
  color: var(--text-medium);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.flink-section-054191 a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* ===== Footer ===== */
.footer-b6071f {
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 4rem 0 2rem;
}

.footer-content-db4050 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-44208f {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-logo-44208f i {
  font-size: 2rem;
  color: var(--gold-color);
}

.footer-desc-ae2a3e {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social-876326 {
  display: flex;
  gap: 1rem;
}

.social-link-674c08 {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link-674c08:hover {
  background: var(--gold-color);
  transform: translateY(-3px);
}

.social-link-674c08 i {
  font-size: 1.2rem;
}

.footer-section-16bb78 h3 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links-d94abe {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-d94abe a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links-d94abe a:hover {
  color: var(--gold-color);
  padding-left: 5px;
}

.footer-contact-fc7f51 .contact-item-437151 {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.footer-contact-fc7f51 .contact-item-437151:hover {
  transform: none;
}

.footer-contact-fc7f51 .contact-icon-37ef76 {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-contact-fc7f51 .contact-icon-37ef76 i {
  font-size: 1.2rem;
}

.footer-contact-fc7f51 .contact-content-dd1e5f {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-fc7f51 .contact-content-dd1e5f span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-contact-fc7f51 .contact-content-dd1e5f a {
  color: var(--bg-white);
  font-weight: 500;
}

.footer-contact-fc7f51 .contact-content-dd1e5f a:hover {
  color: var(--gold-color);
}

.footer-bottom-fb8ec5 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright-9c2579 p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-links-bottom-5a06ff {
  display: flex;
  gap: 2rem;
}

.footer-links-bottom-5a06ff a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links-bottom-5a06ff a:hover {
  color: var(--gold-color);
}

/* ===== Back to Top Button ===== */
.back-to-top-2fd8ad {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--bg-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px var(--shadow-medium);
  transition: var(--transition);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.back-to-top-2fd8ad.visible-f33b7a {
  opacity: 1;
  visibility: visible;
}

.back-to-top-2fd8ad:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px var(--shadow-heavy);
}

.back-to-top-2fd8ad i {
  font-size: 1.2rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-title-b5c757 {
    font-size: 2.8rem;
  }
  
  .advantages-content-d30e56,
  .about-content-ddc11e,
  .contact-content-dd1e5f {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .advantages-image-9ded99 .image-placeholder-2aa843,
  .about-image-043189 .image-placeholder-2aa843 {
    height: 400px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 15px;
  }
  
  .nav-menu-b0115b {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow-medium);
    transition: var(--transition);
    gap: 0;
  }
  
  .nav-menu-b0115b.active {
    left: 0;
  }
  
  .nav-item-faefff {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-link-c43882 {
    display: block;
    padding: 1rem 0;
    width: 100%;
  }
  
  .nav-link-c43882.contact-btn-33935d {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .nav-toggle-78bf47 {
    display: flex;
  }
  
  .hero-title-b5c757 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle-820c1a {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-features-0fea53 {
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .hero-feature-480bca {
    font-size: 1rem;
  }
  
  .stats-grid-681f30 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .services-grid-c97266,
  .products-grid-beec1b,
  .news-grid-f815b4,
  .testimonials-grid-a2a93e {
    grid-template-columns: 1fr;
  }
  
  .product-categories-e89779 {
    gap: 0.75rem;
  }
  
  .category-filter-ba1f83 {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .values-grid-774f38 {
    grid-template-columns: 1fr;
  }
  
  .testimonials-stats-f35d31 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content-db4050 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-fb8ec5 {
    flex-direction: column;
    text-align: center;
  }
  
  .back-to-top-2fd8ad {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .hero-title-b5c757 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle-820c1a {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-features-0fea53 {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons-8245c0 {
    /*flex-direction: column;*/
    width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons-8245c0 .btn-7b6179 {
    width: 40%;
  }
  
  .stats-grid-681f30 {
    /*grid-template-columns: 1fr;*/
  }
  
  .section-title-485ba1 {
    font-size: 1.8rem;
  }
  
  .section-subtitle-14d3cb {
    font-size: 1rem;
  }
  
  .service-card-107cc5,
  .product-card-0909aa,
  .news-card-2e8e0c,
  .testimonial-card-e2694b {
    padding: 1.5rem;
  }
  .advantages-image-9ded99 .image-placeholder-2aa843,
  .about-image-043189 .image-placeholder-2aa843{
      height: 300px;
  }
  .product-image-248063{
      height: 200px;
  }
  
  .contact-form-wrapper-1610f1 {
    padding: 1.5rem;
  }
  
  .testimonials-stats-f35d31 {
    grid-template-columns: 1fr;
  }
}

