/* ===================================
   首页专属样式
   =================================== */

/* 通用 Section */
.section {
  padding: var(--spacing-xxl) 0;
}

/* ===================================
   品牌 Swiper 轮播
   =================================== */
.brand-swiper {
  width: 100%;
  aspect-ratio: 1920 / 760;
  height: auto;
  max-height: 760px;
  margin-top: 0;
  position: relative;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Swiper 导航 */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  font-weight: 700;
}

/* 分页器 - 长条状 */
.swiper-pagination {
  bottom: 50px;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  width: 20px!important;
  height: 4px!important;
  border-radius: 2px!important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
  width: 40px!important;
}

/* 服务区块 */
.services-section {
  background-color: var(--background-light);
}

/* 核心优势区块 - 全新两栏布局 */
.advantages-section {
  padding: 80px 0;
  background-color: #fff;
}

.advantages-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* 左侧内容 */
.advantages-left {
  flex: 0 0 50%;
  padding: 60px 40px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

/* ===================================
   入场动画
   =================================== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.is-visible {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

/* 延迟类 */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

.adv-header {
  margin-bottom: 30px;
}

.adv-title-zh {
  font-size: 28px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 6px;
}

.adv-title-en {
  font-size: 14px;
  color: #999;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.adv-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.adv-image-wrapper {
  margin-bottom: 30px;
  border-radius: 4px;
  overflow: hidden;
}

.adv-warehouse-img {
  width: 100%;
  height: auto;
  display: block;
}

.adv-eight-title {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.adv-line {
  width: 4px;
  height: 20px;
  background-color: var(--primary-color);
  margin-right: 10px;
}

.adv-eight-title h3 {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
}

.adv-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 10px;
}

.adv-icon-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
}

.adv-icon-item i {
  font-size: 20px;
  color: var(--primary-color);
  margin-right: 8px;
  background: rgba(25, 118, 210, 0.1);
  padding: 8px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 右侧内容 */
.advantages-right {
  flex: 0 0 50%;
  position: relative;
  background-image: url('../images/wmdys2.png');
  background-size: cover;
  background-position: center;
  padding: 60px 40px;
  display: flex;
  align-items: center;
}

.adv-right-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.adv-right-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.adv-right-title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


.adv-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
}

.adv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color);
  transition: all 0.4s ease;
  z-index: 0;
}

.adv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--primary-color);
}

.adv-card:hover::before {
  height: 100%;
}

.adv-card > * {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.adv-card h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
  display: block;
}

.adv-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #666;
}

.adv-card:hover h4,
.adv-card:hover p {
  color: #fff;
}

/* 响应式调整 */
@media (max-width: 1200px) {
  .advantages-left {
    flex: 0 0 50%;
    padding: 60px 4%;
  }
  .advantages-right {
    flex: 0 0 50%;
    padding: 60px 4%;
  }
  .adv-icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .adv-cards-grid {
    flex-wrap: wrap;
  }
  .adv-col {
    flex: 0 0 calc(50% - 10px);
  }
  .adv-col:nth-child(1), .adv-col:nth-child(2), .adv-col:nth-child(3) {
    margin-top: 0;
  }
}

.map-overview-hint {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
}

.warehouse-detail-panel {
  animation: fadeInUp 0.3s ease;
}

.detail-warehouse-name {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.detail-images {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  overflow-x: auto;
}

.detail-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.detail-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.detail-info-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(31, 96, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
  font-size: 16px;
}

.detail-info-text h5 {
  font-size: 13px;
  color: #999;
  margin: 0 0 2px 0;
  font-weight: 400;
}

.detail-info-text p {
  font-size: 14px;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

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

.map-overview-list li {
  cursor: pointer;
  transition: background-color 0.2s;
  padding: 8px 10px 8px 30px;
  border-radius: 6px;
}

.map-overview-list li:hover {
  background-color: rgba(31, 96, 233, 0.05);
}

.map-overview-list li.active {
  background-color: rgba(31, 96, 233, 0.1);
}

@media (max-width: 992px) {
  .advantages-left, .advantages-right {
    flex: 0 0 100%;
  }
  .advantages-right {
    padding: 60px 5%;
  }
  .adv-col {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .adv-cards-grid {
    flex-direction: column;
  }
  .adv-col {
    flex: 0 0 100%;
  }
}

/* 我们的服务区块 */
.services-section {
  background-color: #f8fafd;
  padding: 80px 0;
}

.services-header {
  margin-bottom: 50px;
}

.services-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  max-width: 900px;
  margin: 15px auto 0;
  text-align: center;
}

.services-title-zh {
  font-size: 28px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 6px;
}

.services-title-en {
  font-size: 14px;
  color: #999;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
}

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

.service-item {
  display: flex;
  height: 100px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--primary-color);
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item-left {
  width: 120px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 2px;
}

.service-item-right {
  flex: 1;
  background-color: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 30px 0 50px;
}

.service-item-right p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.service-icon {
  position: absolute;
  left: 120px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background-color: var(--primary-color);
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  z-index: 2;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .service-item {
    height: auto;
    min-height: 90px;
  }
  .service-item-right {
    padding: 15px 15px 15px 40px;
  }
  .service-item-left {
    width: 90px;
    font-size: 16px;
  }
  .service-icon {
    left: 90px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

/* 合作品牌区块 */
.partners-section {
  background-color: #fff;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--spacing-lg);
  align-items: center;
}

.partner-logo {
  background-color: #fff;
  padding: var(--spacing-md);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* 新闻区块 */
.news-section {
  background-color: var(--background-light);
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-loading {
  display: flex;
  gap: 24px;
  width: 100%;
}

.skeleton-card {
  flex: 1;
  height: 320px;
  background: #f3f4f6;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .news-list {
    grid-template-columns: 1fr;
  }
}

.news-grid {
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.news-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.news-card-cover {
  height: 200px;
  overflow: hidden;
  background-color: var(--secondary-color);
}

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

.news-card:hover .news-card-cover img {
  transform: scale(1.1);
}

.news-card-content {
  padding: var(--spacing-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-category {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 0.75rem;
  border-radius: 4px;
  margin-bottom: var(--spacing-sm);
}

.news-card-title {
  font-size: 1.125rem;
  line-height: 1.4;
  min-height: 2.8em;
  margin-bottom: var(--spacing-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-summary {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  min-height: 4.8em;
  margin-bottom: var(--spacing-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: auto;
}

.news-card-date {
  color: var(--text-light);
}

.section-more {
  text-align: center;
  margin-top: var(--spacing-lg);
}

/* 底部咨询区块 */
.consult-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff;
}

.consult-section .section-title h2 {
  color: #fff;
}

.consult-section .section-title p {
  color: rgba(255, 255, 255, 0.9);
}

.consult-cta {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.consult-cta .btn {
  background-color: #fff;
  color: var(--primary-color);
}

.consult-cta .btn:hover {
  background-color: var(--background-light);
}

/* 动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 响应式 */
@media (max-width: 1200px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .range-content {
    grid-template-columns: 1fr;
  }
  
  .range-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .slide-title {
    font-size: 2.5rem;
  }
  
  .slide-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .brand-swiper {
    aspect-ratio: 1920 / 760;
    height: auto;
  }
  
  .slide-title {
    font-size: 2rem;
  }
  
  .slide-subtitle {
    font-size: 1rem;
  }
  
  .slide-actions {
    flex-direction: column;
  }

  .data-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px 12px;
  }

  .data-item {
    width: calc(50% - 6px);
    flex: 0 0 calc(50% - 6px);
    padding: 8px 6px;
  }

  .data-number {
    font-size: 2rem;
  }

  .data-number .plus,
  .data-number .percent,
  .data-number .prefix {
    font-size: 16px;
  }

  .data-number .data-unit,
  .data-label {
    font-size: 12px;
  }

  .data-divider {
    width: 70%;
    margin-bottom: 4px;
  }
  
  .range-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .global-map-section {
    padding: 56px 0;
  }

  .map-wrapper {
    height: 400px;
  }

  .map-overview-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .map-overview-desc {
    font-size: 14px;
  }
  
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .range-stats {
    grid-template-columns: 1fr;
  }

  .global-map-section {
    padding: 44px 0;
  }

  .map-wrapper {
    height: 300px;
  }

  .map-overview-title {
    font-size: 22px;
  }

  .map-overview-desc {
    font-size: 13px;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-card {
    padding: var(--spacing-md);
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .services-desc {
    font-size: 15px;
  }
}

/* Data Display Section */
.company-data-section {
  background-color: #1F60E9;
  color: #fff;
  padding: 30px 0;
}

.data-grid {
  /* display: grid;
  grid-template-columns: repeat(6, 1fr); */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  text-align: center;
}

.data-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.data-number {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  color: #FFF;
}

.data-number .plus, .data-number .percent, .data-number .prefix {
  font-size: 24px;
  margin-left: 2px;
}

.data-number .data-unit {
  font-size: 14px;
  margin-left: 4px;
  font-weight: 400;
  /* opacity: 0.85; */
}

.data-divider {
    width: 100%;
    height: 2px;
    background-color: #FFF;
    margin-bottom: 6px;
    opacity: 0.8;
    border-radius: 1px;
}

.data-label {
  font-size: 14px;
  color: #FFF;
  /* opacity: 0.85; */
}

@media (max-width: 992px) {
  .data-grid {
    gap: 40px 20px;
  }
}

@media (max-width: 576px) {
  .data-grid {
    gap: 12px 10px;
  }

  .data-item {
    width: calc(50% - 5px);
    flex: 0 0 calc(50% - 5px);
    padding: 6px 4px;
  }

  .data-number {
    font-size: 1.75rem;
  }

  .data-number .plus,
  .data-number .percent,
  .data-number .prefix {
    font-size: 14px;
  }

  .data-number .data-unit,
  .data-label {
    font-size: 11px;
  }
}

/* Global Map Section */
.global-map-section {
  background-color: #fff;
  padding: 80px 0;
}

.global-map-container {
  display: flex;
  /* align-items: center; */
  gap: 50px;
}

.map-left {
  flex: 0 0 60%;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
}

#global-map {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.leaflet-container {
  font-family: inherit;
}

.leaflet-marker {
  position: relative;
  width: 20px;
  height: 20px;
}

.marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #1F60E9;
  border-radius: 50%;
  animation: markerPulse 2s infinite;
  box-shadow: 0 0 0 rgba(31, 96, 233, 0.4);
}

.marker-selected .marker-pulse {
  background-color: #1F60E9;
  box-shadow: 0 0 0 rgba(31, 96, 233, 0.6);
  animation: markerPulseBlueActive 2s infinite;
}

@keyframes markerPulseBlueActive {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 96, 233, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(31, 96, 233, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(31, 96, 233, 0);
  }
}

@keyframes markerPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 96, 233, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(31, 96, 233, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(31, 96, 233, 0);
  }
}

.marker-popup {
  text-align: center;
  padding: 8px;
}

.marker-popup .popup-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.marker-popup .popup-description {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-tip {
  box-shadow: none;
}

.leaflet-tooltip {
  background: rgba(51, 51, 51, 0.9);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.leaflet-tooltip::before {
  border-top-color: rgba(51, 51, 51, 0.9);
}

.map-right {
  flex: 1;
}

.map-overview-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.map-overview-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-top: 10px;
}



.map-overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.map-overview-list li {
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}

.map-overview-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.map-overview-list h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.map-overview-list p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

@media (max-width: 992px) {
  .global-map-container {
    flex-direction: column;
  }
  .map-left, .map-right {
    flex: 0 0 100%;
    width: 100%;
  }
}

/* Services Vertical List */
.services-vertical-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.service-vertical-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-vertical-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color);
  transition: all 0.4s ease;
  z-index: 0;
}

.service-vertical-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-bottom-color: var(--primary-color);
}

.service-vertical-item:hover::before {
  height: 100%;
}

.service-vertical-item > * {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.service-vertical-item .service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 15px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: all 0.3s ease;
  /* Override old service-icon styles */
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  border: none;
  z-index: 2;
}

.service-vertical-item h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.service-vertical-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.service-vertical-item:hover .service-icon {
  background-color: #fff;
  color: var(--primary-color);
}

.service-vertical-item:hover h3,
.service-vertical-item:hover p {
  color: #fff;
}

@media (max-width: 1200px) {
  .services-vertical-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .services-vertical-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-vertical-list {
    grid-template-columns: 1fr;
  }
}

/* Advantages Full Container */
.advantages-full-container {
  position: relative;
  background-image: url('../images/wmdys2.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-radius: 16px;
  overflow: hidden;
  padding: 60px;
  margin-top: 40px;
}

.adv-cards-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .adv-cards-grid-full {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .adv-cards-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-full-container {
    padding: 40px 30px;
  }
}

@media (max-width: 576px) {
  .adv-cards-grid-full {
    grid-template-columns: 1fr;
  }
  .advantages-full-container {
    padding: 30px 20px;
  }
}
