/* ===== CSS Variables ===== */
:root {
  --primary-color: #0A2E5B;
  --primary-dark: #082347;
  --primary-light: #1E63B0;
  --secondary-color: #1A1A2E;
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --bg-light: #F4F7FA;
  --bg-white: #FFFFFF;
  --border-color: rgba(10, 46, 91, 0.15);
  --shadow-light: rgba(10, 46, 91, 0.08);
  --shadow-medium: rgba(10, 46, 91, 0.15);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --gradient-primary: linear-gradient(135deg, #0A2E5B 0%, #1E63B0 50%, #0A2E5B 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 46, 91, 0.9) 0%, rgba(30, 99, 176, 0.8) 100%);
  
  --font-primary: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  
  --section-padding: 80px 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.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  font-weight: 400;
  overflow-x: hidden;
}
a {
    text-decoration: none;
}

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

.section-68cbc8 {
  padding: var(--section-padding);
}

.section-alt-0f50bf {
  background-color: var(--bg-light);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

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

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

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

p {
  margin-bottom: 1rem;
}

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

ul {
  list-style: none;
}

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

/* ===== Header & Navigation ===== */
.header-fb885a {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-fb885a.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.nav-wrapper-3ad7bf {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-7ab858 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-7ab858 i {
  font-size: 28px;
}

.nav-menu-f1500e {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link-27f831 {
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-dark);
  border-radius: var(--border-radius);
  position: relative;
  transition: var(--transition);
}

.nav-link-27f831:hover,
.nav-link-27f831.active {
  color: var(--primary-color);
}

.nav-link-27f831::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link-27f831:hover::after,
.nav-link-27f831.active::after {
  width: 20px;
}

.mobile-toggle-a8f5cd {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-size: 24px;
  cursor: pointer;
}

/* ===== Footer ===== */
.footer-c33fa1 {
  background: var(--secondary-color);
  padding-top: 80px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-top-17b7c2 {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-d8803d {
  max-width: 400px;
}

.footer-logo-c3d750 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.footer-logo-c3d750 i {
  font-size: 28px;
}

.footer-desc-1d3f9e {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social-252680 {
  display: flex;
  gap: 15px;
}

.social-link-ae73f1 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 18px;
  transition: var(--transition);
}

.social-link-ae73f1:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-3px);
}

.footer-links-085769 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column-b69476 h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--bg-white);
  margin-bottom: 20px;
}

.footer-column-b69476 ul {
  list-style: none;
  padding: 0;
}

.footer-column-b69476 li {
  margin-bottom: 12px;
}

.footer-column-b69476 a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-column-b69476 a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-column-b69476 i {
  margin-right: 8px;
  color: var(--primary-light);
}

.footer-bottom-635a81 {
  padding: 25px 0;
  text-align: center;
}

.footer-bottom-635a81 p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}

.footer-bottom-635a81 a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-bottom-635a81 a:hover {
  color: var(--primary-light);
}

/* ===== Back to Top Button ===== */
.back-to-top-942d4f {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  color: var(--bg-white);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(10, 46, 91, 0.25);
  z-index: 999;
}

.back-to-top-942d4f.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top-942d4f:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(10, 46, 91, 0.4);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .nav-menu-f1500e {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }
  
  .nav-menu-f1500e.active {
    right: 0;
  }
  
  .nav-link-27f831 {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-link-27f831::after {
    display: none;
  }
  
  .mobile-toggle-a8f5cd {
    display: block;
    z-index: 1001;
  }
  
  .footer-top-17b7c2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links-085769 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container-94f99e {
    padding: 0 15px;
  }
  
  .logo-7ab858 {
    font-size: 20px;
  }
  
  .logo-7ab858 i {
    font-size: 24px;
  }
  
  .footer-links-085769 {
    grid-template-columns: 1fr;
  }
  
  .back-to-top-942d4f {
    width: 45px;
    height: 45px;
    font-size: 18px;
    bottom: 20px;
    right: 20px;
  }
}

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

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

.section-title-ed5a2f::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.section-subtitle-cab847 {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn-b3d4c6 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary-e41573 {
  background: var(--secondary-color);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(30, 99, 176, 0.3);
}

.btn-primary-e41573:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 99, 176, 0.4);
}

.btn-secondary-65c6a3 {
  background: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

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

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

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

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

.navbar-671caa {
  padding: 1rem 0;
}

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

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

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

.nav-menu-f1500e {
  display: flex;
  gap: 2rem;
}

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

.nav-link-27f831::after {
  content: '';
  position: absolute;
  bottom: 0;
  /*left: 0;*/
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

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

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

.nav-toggle-7edf4a {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle-7edf4a .bar-e41e30 {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero-226e93 {
  min-height: 100vh;
  background: var(--gradient-hero);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-226e93::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/static/somke1/imgs/modern_logistics_distribution_center_warehouse.jpg') no-repeat;
  background-size: cover;
  opacity: 0.3;
}

.hero-content-bed35a {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text-af6363 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title-24c724 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-30593d {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.5;
}

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

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

.hero-feature-d38c89 i {
  font-size: 1.5rem;
  color: var(--bg-white);
}

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

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

.service-card-50e1d4 {
  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-50e1d4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.service-card-50e1d4:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px var(--shadow-medium);
}

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

.service-icon-74882a i {
  font-size: 2rem;
  color: var(--bg-white);
}

.service-card-50e1d4 h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card-50e1d4 p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 0;
}

.services-image-045eb3 {
  position: relative;
  margin-top: 3rem;
}

.section-image-dd2d3b {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px var(--shadow-light);
}

.services-stats-efcfb8 {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  background: var(--bg-white);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px var(--shadow-medium);
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item-c0d078 {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.stat-item-c0d078 i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.stat-content-666f94 {
  display: flex;
  flex-direction: column;
}

.stat-number-dc5fcf {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label-a1e1f5 {
  font-size: 0.9rem;
  color: var(--text-medium);
}

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

.advantage-item-97006b {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

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

.advantage-icon-dd4ac6 i {
  font-size: 1.5rem;
  color: var(--bg-white);
}

.advantage-content-83e790 h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.advantage-content-83e790 p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 0;
}

.advantages-image-0f4add img {
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px var(--shadow-light);
}

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

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

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

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

.about-feature-30675c {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-feature-30675c i {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-top: 4px;
}

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

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

.about-image-e770fa img {
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px var(--shadow-light);
}

.company-values-f8934d {
  text-align: center;
}

.company-values-f8934d h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}

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

.value-item-eb9968 {
  background: var(--bg-white);
  padding: 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);
}

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

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

.value-icon-9d74fe i {
  font-size: 1.5rem;
  color: var(--bg-white);
}

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

.value-item-eb9968 p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 0;
}

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

.category-filter-1e9050 {
  padding: 10px 20px;
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.category-filter-1e9050:hover,
.category-filter-1e9050.active {
  background: var(--secondary-color);
  color: var(--bg-white);
  border-color: var(--secondary-color);
}

.products-grid-5730d7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.product-card-795d8e {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow-light);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.product-card-795d8e:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-medium);
}

.product-image-0e3ab2 {
  height: 200px;
  overflow: hidden;
}

.product-img-3ad86f {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card-795d8e:hover .product-img-3ad86f {
  transform: scale(1.05);
}

.product-info-98ac08 {
  padding: 1.5rem;
}

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

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

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

.product-features-35d898 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-features-35d898 span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--text-medium);
}

.product-features-35d898 i {
  color: var(--secondary-color);
  font-size: 0.8rem;
}

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

.news-card-220be8 {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow-light);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  gap: 1.5rem;
}

.news-card-220be8:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow-medium);
}

.news-date-c7cd4b {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--gradient-primary);
  color: var(--bg-white);
  padding: 1rem 0.8rem;
  border-radius: var(--border-radius);
  min-width: 70px;
  text-align: center;
}

.date-day-92b7af {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.date-month-d6a3f2 {
  font-size: 0.8rem;
  opacity: 0.9;
}

.news-content-15f806 {
  flex: 1;
}

.news-content-15f806 h3 {
  margin-bottom: 1rem;
}

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

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

.news-content-15f806 p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.news-meta-aaf639 span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-more-6d2be8 {
  text-align: center;
}

/* ===== FAQ Section ===== */
.faq-container-81cda9 {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

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

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

.faq-item-ba1ef9.active .faq-icon-5551c6 {
  transform: rotate(180deg);
}

.faq-answer-8e25fc {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--bg-light);
}

.faq-item-ba1ef9.active .faq-answer-8e25fc {
  max-height: 500px;
  padding: 1.5rem;
}

.faq-answer-8e25fc p {
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.faq-answer-8e25fc ul {
  padding-left: 1.5rem;
}

.faq-answer-8e25fc li {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
  position: relative;
  list-style: disc;
}

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

.testimonial-card-51d413 {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow-light);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
}

.testimonial-card-51d413::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 3rem;
  color: var(--secondary-color);
  font-family: Georgia, serif;
}

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

.testimonial-header-26003c {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar-3816cd {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary-color);
}

.testimonial-info-6c6a06 h4 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.testimonial-info-6c6a06 p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.testimonial-rating-8b607a {
  margin-left: auto;
  display: flex;
  gap: 2px;
}

.testimonial-rating-8b607a i {
  color: #FFD700;
  font-size: 1rem;
}

.testimonial-content-c51d1f p {
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0;
}

.testimonials-stats-b1f902 {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow-light);
}

.testimonials-stats-b1f902 .stat-item-c0d078 {
  text-align: center;
}

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

.testimonials-stats-b1f902 .stat-icon-e34089 i {
  color: var(--bg-white);
  font-size: 1.5rem;
}

.testimonials-stats-b1f902 .stat-content-666f94 {
  align-items: center;
}
/* Flink */
.flink-section-e4f6d5 {
    background: white;
    color: #2d3748;
    padding: 30px 0;
}
.flink-header-158f5c{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.flink-section-e4f6d5 li{
    list-style: none;
    display: inline;
    padding-right: 20px;
}
.flink-section-e4f6d5 a{
    color: #718096;
    text-decoration: none;
}
/* ===== Footer ===== */
.footer-c33fa1 {
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 3rem 0 1rem;
}

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

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

.footer-logo-c3d750 i {
  font-size: 2rem;
  color: var(--bg-white);
}

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

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

.social-link-ae73f1 {
  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-ae73f1:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

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

.footer-links-085769 li {
  margin-bottom: 0.5rem;
}

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

.footer-links-085769 a:hover {
  color: var(--bg-white);
}

.footer-contact-118b92 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item-70bb9e {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-70bb9e i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 2px;
  width: 20px;
}

.contact-content-95dd5e {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-content-95dd5e span:first-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.contact-content-95dd5e a,
.contact-content-95dd5e span:last-child {
  color: var(--bg-white);
  font-weight: 500;
}

.contact-content-95dd5e a:hover {
  color: var(--secondary-color);
}

.footer-bottom-635a81 {
  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-03e6d5 p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.footer-links-bottom-b947d5 {
  display: flex;
  gap: 1.5rem;
}

.footer-links-bottom-b947d5 a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links-bottom-b947d5 a:hover {
  color: var(--bg-white);
}

/* ===== Back to Top Button ===== */
.back-to-top-942d4f {
  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;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.back-to-top-942d4f.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top-942d4f:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-medium);
}

/* ===== Animation Classes ===== */
.animate-fade-in-4490dc {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-in-4490dc.visible-89e3ef {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .advantages-content-13fd51,
  .about-content-a23dad {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .advantages-image-0f4add img,
  .about-image-e770fa img {
    height: 300px;
  }
  
  .hero-features-b43af3 {
    gap: 1.5rem;
  }
  
  .services-stats-efcfb8 {
    position: static;
    transform: none;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }
  
  .nav-menu-f1500e {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 20px var(--shadow-medium);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 2rem 0;
  }
  
  .nav-menu-f1500e.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-item-aa153d {
    padding: 0.5rem 2rem;
  }
  
  .nav-toggle-7edf4a {
    display: flex;
  }
  
  .nav-toggle-7edf4a.active .bar-e41e30:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle-7edf4a.active .bar-e41e30:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle-7edf4a.active .bar-e41e30:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-title-24c724 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-30593d {
    font-size: 1.1rem;
  }
  
  .hero-features-b43af3 {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-buttons-a41522 {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .advantage-icon-dd4ac6{
    margin: 0 auto 1rem;
  }
  .services-grid-eec407,
  .products-grid-5730d7,
  .news-grid-0cf614,
  .testimonials-grid-c3a1f3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .services-stats-efcfb8 {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .testimonials-stats-b1f902 {
    gap: 2rem;
    padding: 1.5rem;
  }
  
  .testimonials-stats-b1f902 .stat-item-c0d078 {
    min-width: 120px;
  }
  
  .section-image-dd2d3b {
    height: 200px;
  }
  
  .advantages-image-0f4add img,
  .about-image-e770fa img {
    height: 250px;
  }
  
  .footer-bottom-635a81 {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .back-to-top-942d4f {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title-24c724 {
    font-size: 2rem;
  }
  
  .section-title-ed5a2f {
    font-size: 1.5rem;
  }
  
  .service-card-50e1d4,
  .testimonial-card-51d413,
  .value-item-eb9968 {
    padding: 1.5rem;
  }
  
  .advantage-item-97006b {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .product-categories-f2768e {
    gap: 0.5rem;
  }
  
  .category-filter-1e9050 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .news-card-220be8 {
    flex-direction: column;
    gap: 1rem;
  }
  
  .news-date-c7cd4b {
    align-self: flex-start;
    min-width: 60px;
  }
  
  .testimonial-header-26003c {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .testimonial-rating-8b607a {
    margin-left: 0;
  }
}

/* ===== Print Styles ===== */
@media print {
  .header-fb885a,
  .back-to-top-942d4f,
  .hero-buttons-a41522,
  .btn-b3d4c6 {
    display: none !important;
  }
  
  .section-68cbc8 {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
  
  .service-card-50e1d4,
  .product-card-795d8e,
  .testimonial-card-51d413 {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
}

/* ===== Accessibility Improvements ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.sr-only-4432b4 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Focus Styles for Better Accessibility ===== */
a:focus,
button:focus,
.nav-link-27f831:focus,
.btn-b3d4c6:focus,
.category-filter-1e9050:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}