/* ============================================
   首页样式 - Home Page CSS
   ============================================ */

/* ============================================
   Hero Section
   ============================================ */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-swiper .hero-pagination {
  position: absolute;
  bottom: 16px !important;
  width: auto !important;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.hero-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #c9151e;
  width: 36px;
  border-radius: 4px;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  max-width: 1400px;
  width: 100%;
  margin-left: -80px;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 20px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #c9151e;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #a10f18;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 21, 30, 0.3);
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ============================================
   Section Common
   ============================================ */
.home-section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
}

.section-title img {
  height: 46px;
}

.section-subtitle {
  font-size: 14px;
  color: #999;
  letter-spacing: 2px;
}

/* ============================================
   Company News Section
   ============================================ */
.company-news {
  background: #fafafa;
}

.news-grid {
  display: grid;
  grid-template-columns: 920fr 540fr;
  gap: 32px;
}

/* News Carousel */
.news-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  -webkit-aspect-ratio: 920 / 520;
  aspect-ratio: 920 / 520;
}

.news-swiper {
  width: 100%;
  height: 100%;
}

.news-swiper .swiper-slide {
  position: relative;
}

.news-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-carousel__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.news-carousel__title {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  display: block;
  max-width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-swiper .news-swiper-pagination {
  position: absolute;
  bottom: 16px !important;
  width: auto !important;
  left: auto !important;
  right: 16px;
  display: flex;
  gap: 6px;
}

.news-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-swiper-pagination .swiper-pagination-bullet-active {
  background: #c9151e;
  width: 24px;
  border-radius: 4px;
}

.news-list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

.news-list .list-header img {
  height: 46px;
}

.news-list .more_arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d5c1c3;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.news-list .more_arrow svg {
  width: 16px;
  height: 16px;
  color: #c9151e;
  transition: color 0.3s ease;
}

.news-list .more_arrow:hover {
  background: #c9151e;
  border: 1px solid #c9151e;
  color: #ffffff;
}

.news-list .more_arrow:hover svg {
  color: white;
}

.news-item {
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
}

.news-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 14px;
  height: 14px;
  background: url('../../images/home-list-icon.png') no-repeat;
  background-size: 100% 100%;
  flex-shrink: 0;
}

.news-item__title {
  font-size: 16px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.news-item:hover .news-item__title {
  color: #c9151e;
}

.news-item__date {
  font-size: 14px;
  color: #999;
}

/* ============================================
   About Us Section
   ============================================ */
.about-us {
  background: #fff;
  padding-bottom: 0;
}

.about-us__layout {
  position: relative;
  background-image: url('../../images/building_bg.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-bottom: 160px;
}

.about-us__left {
  padding-top: 24px;
}

.about-us__intro {
  width: 55%;
  margin-bottom: 24px;
}

.about-us__intro h3 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.about-us__intro p {
  text-indent: 2em;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  text-align: justify;
  /* text-justify: inter-ideograph; */
  text-wrap: pretty;
  word-break: break-all;
}

.about-us__brands {
  width: 55%;
}


.brands_title {
  font-size: 24px;
  font-weight: 900;
  color: #c9151e;
  margin-bottom: 10px;
}

.about-us__brand {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: center;
}

.about-us__brand img {
  width: 320px;
  height: auto;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-us__brand img:hover {
  transform: scale(1.05);
}


.about-us__stats {
  position: absolute;
  bottom: 80px;
  top: 40px;
  right: 0;
  width: 160px;
  border-radius: 20px 0px 0px 20px;
  background: linear-gradient(90deg, rgba(217, 41, 47, 1) 0.16%, rgba(196, 5, 10, 1) 100%);
  box-shadow: 0px 0px 10px rgba(255, 99, 99, 0.39);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

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

.stat-item__value {
  font-size: 32px;
  font-weight: 900;
  /* color: #fff; */
  background: linear-gradient(135deg, #FFD700 0%, #FFED8A 50%, #FFFACD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* text-shadow: 0 1px 1px rgba(180, 140, 0, 0.3); */
  /* filter: drop-shadow(0 1px 2px rgba(180, 140, 0, 0.2)); */
  font-family: "DIN Alternate", "DIN Next", "SF Pro Display", -apple-system, sans-serif;
  line-height: 1;
}

.stat-item__unit {
  font-size: 16px;
  color: #fff;
}

.stat-item__label {
  font-size: 14px;
  color: #fff;
}

.about-us__building {
  margin-top: 48px;
  margin-left: -24px;
  margin-right: -24px;
  height: 300px;
  overflow: hidden;
}

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

/* ============================================
   Customer Service Section
   ============================================ */
.customer-service {
  padding: 140px 0;
  background: linear-gradient(180deg, rgba(250, 250, 250, 0) 0%, rgba(255, 242, 242, 1) 100%);
}

.customer-service .section-title {
  margin-bottom: 36px;
}

.customer-service .section-title img {
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 32px;
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

.service-card__icon {
  /* width: 56px;
height: 56px;
border-radius: 50%;
background: rgba(201, 21, 30, 0.1);
display: flex;
align-items: center;
justify-content: center;
color: #c9151e;
transition: all 0.3s ease; */
}

/* .service-card:hover .service-card__icon {
  background: #c9151e;
  color: #fff;
} */

.service-card__icon img {
  width: 32px;
  height: 32px;
}

.service-card__label {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.service-feature {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  background-image: url('../../images/sy_khfw_ycbj.png');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.service-feature__content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 72%;
}

.service-feature__content img {
  height: 64px;
  margin-bottom: 8px;
}

.service-feature__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
  text-justify: inter-ideograph;
  text-wrap: pretty;
  word-break: break-all;
}

.service-feature__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c9151e;
  font-size: 14px;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.service-feature__btn:hover {
  gap: 12px;
}

/* ============================================
   Products Section
   ============================================ */
.products {
  background: #fff;
}

.products .section-title {
  margin-bottom: 36px;
}

.products .section-title img {
  margin: 0 auto;
}

.products__grid {
  display: grid;
  grid-template-columns: 4fr 5fr 5fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.products .more {
  border-radius: 24px;
  border: 1px solid rgba(223, 150, 153, 1);
  padding: 8px 16px;
  color: #c9151e;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  width: 120px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 36px;
}

.products .more:hover {
  background: #c9151e;
  color: #fff;
  border: 1px solid #c9151e;
}

.product-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.product-card--large {
  grid-row: span 2;
}

.product-card__img {
  /* width: 100%; */
  height: 100%;
  /* min-height: 280px; */
  object-fit: cover;
  object-position: right center;
  transition: transform 0.5s ease;
}

.product-card--large .product-card__img {
  /* min-height: 576px; */
  min-width: 100%;
}

.product-card:hover .product-card__img {
  transform: scale(1.08);
}

.product-card__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-card__title {
  font-size: 24px;
  font-weight: 700;
  color: #c9151e;
  margin-bottom: 8px;
}

.product-card--large .product-card__title {
  font-size: 32px;
}

.product-card__desc {
  font-size: 14px;
  color: #333;
  margin-bottom: 16px;
}

.product-card__link img {
  transition: all 0.3s ease;
  width: 36px;
}

.product-card:hover .product-card__link img {
  transform: translateX(5px);
}

/* ============================================
   Careers Section
   ============================================ */
.careers {
  /* background: #fafafa; */
  background: url('../../images/sy_jrwm_bg.png') no-repeat center;
  background-size: cover;
  padding: 80px 0 100px 0;
}

.careers .section-title {
  margin-bottom: 24px;
}

.careers .section-title img {
  margin: 0 auto;
}

.careers .section-subtitle {
  text-align: center;
  font-size: 14px;
  color: #333;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* .careers__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.careers__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
} */

.careers__content {
  position: relative;
  z-index: 1;
}

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

.career-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  -webkit-aspect-ratio: 460 / 170;
  aspect-ratio: 460 / 150;
}

.career-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.career-card__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* .career-card__bg::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 60px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8), #fff);
} */

.career-card__content {
  margin-left: 40%;
  flex: 1;
  background: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.career-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #c9151e;
  margin-bottom: 8px;
}

.career-card__desc {
  font-size: 13px;
  color: #666;
  line-height: 1.2;
  flex: 1;
}

.career-card__arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #d5c1c3;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.career-card__arrow svg {
  width: 16px;
  height: 16px;
  color: #c9151e;
  transition: color 0.3s ease;
}

.career-card__arrow:hover {
  background: #c9151e;
  border: 1px solid #c9151e;
}

.career-card__arrow:hover svg {
  color: #fff;
}

/* ============================================
   Mobile Service Section
   ============================================ */
.mobile-service {
  background: #fff;
  background-image: url('../../images/sy_zsjl_bg.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  padding-bottom: 0;
  overflow: hidden;
}

.mobile-service .section-title img {
  height: 70px;
}

.mobile-service__grid {
  display: grid;
  grid-template-columns: 340fr 582fr;
  gap: 48px;
}

.mobile-service__content {
  padding-bottom: 230px;
}

.mobile-service__qr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}

.mobile-service__qr-grid-hover-card {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 2px 4px 9px 0px rgba(225, 117, 117, 0.38);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
  white-space: nowrap;
  border-radius: 8px;
  display: flex;
  gap: 16px;
}

/* 小三角箭头 */
.mobile-service__qr-grid-hover-card::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  filter: drop-shadow(0 -2px 3px rgba(225, 117, 117, 0.38));
}

.qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.qr-item__box {
  width: 75px;
  height: 75px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.qr-item:hover .qr-item__box {
  transform: translateY(-8px);
}

.qr-item__box img {
  width: 100%;
  height: 100%;
}

.mobile-service__qr-grid-hover-card .qr-code-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.mobile-service__qr-grid-hover-card img {
  width: 120px;
  max-width: none;
  height: auto;
}

.qr-item:hover .mobile-service__qr-grid-hover-card {
  opacity: 1;
  visibility: visible;
  min-width: 160px;
}


.mobile-service__phone {
  position: relative;
}

.phone-model {
  width: 45%;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.6s ease;
  transition-delay: 0.3s;
}

/* .phone-model.skewed {
  transform: skewX(-9deg) translateX(-50%);
} */

.phone-model:hover {
  /* transform: skewX(-9deg) translateX(-50%); */
}

/* PC端：hover展示 */
@media (min-width: 992px) {
  .phone-model:hover .qr-model {
    animation: dialogIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
    pointer-events: none;
  }

  .phone-model:not(:hover) .qr-model {
    animation: dialogOut 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    pointer-events: none;
  }
}

/* 移动端由 JS 控制自动展示 */

.phone-model:hover .phone-tag.fade-out {
  /* transform: scale(1) skewX(9deg) translateY(0) !important; */
}

.phone-model>img {
  width: 100%;
  height: auto;
}

.qr-model {
  position: absolute;
  top: 20%;
  left: 18%;
  width: 26%;
  min-width: 188px;
  background-color: #ffffff;
  box-shadow: 0px 0px 16px 0px rgba(176, 176, 176, 0.47);
  border-radius: 15px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 99;
  opacity: 0;
}

.qr-model.fade-in {
  animation: dialogIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.qr-model__title {
  font-size: 12px;
  color: #333;
  font-weight: bold;
}

.qr-model__title span {
  color: #c9151e;
}

.qr-model__dr {
  font-size: 12px;
  color: #666;
}

.phone-tag {
  position: absolute;
  z-index: 20;
  opacity: 0;
  width: 152px;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px 12px;
  transition: opacity 0.8s ease-out;
}

.phone-tag img {
  height: 20px;
  width: auto;
}

.phone-tag span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.phone-tag.left-tag {
  background: url(../../images/sy_dialog_left.png) no-repeat;
  background-size: 100% 100%;
}

.phone-tag.right-tag {
  background: url(../../images/sy_dialog_right.png) no-repeat;
  background-size: 100% 100%;
}

.phone-tag--1 {
  left: -8%;
  top: -3%;
  animation: tagFloat 2s ease-in-out infinite;
}

.phone-tag--2 {
  right: -22%;
  top: -3%;
  animation: tagFloat 2s ease-in-out infinite 0.3s;
}

.phone-tag--3 {
  left: -40%;
  top: 20%;
  animation: tagFloat 2s ease-in-out infinite 0.6s;
}


.phone-tag--4 {
  left: -40%;
  top: 38%;
  animation: tagFloat 2s ease-in-out infinite 0.6s;
}

.phone-tag--5 {
  right: -34%;
  top: 38%;
  animation: tagFloat 2s ease-in-out infinite 0.6s;
}

.phone-tag--4 {}

.phone-tag--5 {}

@keyframes tagFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* QR Model dialog pop-up animation */
/* .qr-model.fade-out {
  animation: dialogIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  pointer-events: none;
} */

@keyframes dialogIn {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
    /* transform: scale(0.85) skewX(9deg) translateY(20px); */
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    /* transform: scale(1) skewX(9deg) translateY(0); */
  }
}

@keyframes dialogOut {
  0% {
    opacity: 1;
    /* transform: scale(1) skewX(9deg) translateY(0); */
    transform: scale(1) translateY(0);
  }

  100% {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
    /* transform: scale(0.85) skewX(9deg) translateY(20px); */
  }
}

.phone-tag.fade-out {
  opacity: 1;
  pointer-events: none;
}

/* ============================================
   Responsive
   ============================================ */

@media(max-width: 1919px) {
  .home-header__inner {
    max-width: 1200px;
  }

  .hero-content {
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .home-header__inner {
    max-width: 1200px;
  }

  .hero-content {
    margin-left: -40px;
  }

  .hero-title {
    font-size: 56px;
  }

  .about-us__layout {
    grid-template-columns: 1fr 1fr;
  }

  .products__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .product-card--large {
    grid-row: span 1;
  }
}

@media (max-width: 991px) {
  .viewer-canvas>img {
    background: #fff;
  }

  .home-header__nav,
  .home-header__phone {
    display: none;
  }

  .home-header__mobile-toggle {
    display: block;
  }

  .hero-content {
    margin-left: 0;
    left: 24px;
    transform: translateY(-50%);
  }

  .hero-title {
    font-size: 48px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .about-us__layout {
    grid-template-columns: 1fr;
    background-position: bottom right;
    background-size: 100% auto;
    padding-bottom: 0;
  }

  .about-us__intro {
    width: calc(100% - 136px);
    padding-bottom: 10px;
  }

  .about-us__brands {
    width: calc(100% - 166px);
  }

  .brands_title {
    margin-bottom: 0;
  }

  .stat-item__value {
    font-size: 28px;
  }

  .about-us__brand {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-us__building {
    margin-left: 0;
    margin-right: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .careers__grid {
    grid-template-columns: 1fr;
  }

  .career-card__arrow {
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
  }

  .qr-item:hover .qr-item__box {
    transform: none;
  }

  .qr-item:hover .mobile-service__qr-grid-hover-card {
    display: none;
  }

  .qr-model {
    min-width: 125px;
    padding: 6px;
  }

  .qr-model__title {
    font-size: 11px;
  }

  .qr-model__dr {
    font-size: 11px;
  }

  .mobile-service__grid {
    grid-template-columns: 1fr;
  }

  .mobile-service__phone {
    height: 180px;
  }

  .phone-model {
    width: 50%;
    top: -60px
  }

  .phone-tag {
    width: 100px;
    gap: 4px;
    height: 56px;
    padding: 0 10px 10px;
  }

  .phone-tag span {
    font-size: 12px;
  }

  .phone-tag img {
    width: 16px;
  }

  .phone-tag--1 {
    left: -25%;
    top: -8%;
  }

  .phone-tag--2 {
    right: -35%;
    top: -8%;
  }

  .phone-tag--3 {
    left: -50%;
    top: 20%;
  }

  .phone-tag--4 {
    left: -40%;
    top: 42%;
  }

  .phone-tag--5 {
    right: -50%;
    top: 30%;
  }

  .service-feature__content img {
    margin-bottom: 16px;
  }

  .service-feature {
    background-size: auto 40%;
  }

  .service-feature__desc {
    margin-bottom: 0;
  }

  .service-feature__content {
    flex: none;
    max-width: 100%;
    padding: 16px;
    padding-bottom: 80px;
  }

  .about-us__stats {
    top: 76px;
    width: 126px;
    bottom: auto;
    padding: 12px 10px;
  }

  .stat-item {
    padding: 12px 0;
  }

  .more_arrow {
    width: 32px !important;
    height: 32px !important;
  }

  .mobile-service__content {
    padding-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .hero {
    /* height: 80vh; */
    /* height: 260px; */
    height: 210px;
  }

  .home-section {
    padding: 16px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .news-carousel__title {
    font-size: 16px;
  }

  .service-cards {
    grid-template-columns: 1fr 1fr;
  }


  .mobile-service__qr-grid {
    justify-items: center;
  }

  .qr-model {
    transform: none;
  }
}

@media (max-width: 576px) {
  .hero-content {
    left: 16px;
    right: 16px;
  }

  .hero-title {
    font-size: 28px;
  }

  .about-us__brands {
    flex-direction: column;
  }

  .service-cards {
    /* grid-template-columns: 1fr; */
  }
}