/* ============================================
   INDUSTRA - home.css (首页专用样式)
   轮播、特性卡片、产品、解决方案、数据统计、工程案例
   ============================================ */

/* ============================================
   首页轮播
   ============================================ */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0s 0.8s;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0s;
  z-index: 2;
}
.product-tags {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  z-index: 2;
}
.product-tag {
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  background: rgba(247, 39, 11, 0.9);
  border-radius: 0.375rem;
  backdrop-filter: blur(8px);
}
.product-tag-craft {
  padding: 0.3rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #f7270b;
  background: transparent;
  border: 1px solid #f7270b;
  border-radius: 0.375rem;
  backdrop-filter: blur(8px);
}

/* 产品详情页标签（工艺 / 规格） */
.tag {
  display: inline-block;
  padding: 5px 14px;
  background: #fef1f0;
  color: #f7270b;
  font-size: 14px;
  border-radius: 20px;
}

.slide-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.slide-image,
.slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}
.slide.active .slide-image,
.slide.active .slide-video {
  animation: ken-burns 8s ease-out forwards;
}
@keyframes ken-burns {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 30, 58, 0.92) 0%, rgba(7, 30, 58, 0.55) 55%, rgba(7, 30, 58, 0.15) 100%);
}
@media (max-width: 768px) {
  .slide-overlay {
    background: linear-gradient(180deg, rgba(7, 30, 58, 0.85) 0%, rgba(7, 30, 58, 0.7) 100%);
  }
}

/* 轮播内容动画 - 随 .active 触发 */
.slide-eyebrow,
.slide-title,
.slide-subtitle,
.slide-actions {
  opacity: 0;
  transform: translateY(30px);
}
.slide.active .slide-eyebrow {
  animation: slide-up-in 1s var(--ease-out-expo) 0.5s forwards;
}
.slide.active .slide-title {
  animation: slide-up-in 1.2s var(--ease-out-expo) 0.8s forwards;
}
.slide.active .slide-subtitle {
  animation: slide-up-in 1.2s var(--ease-out-expo) 1.2s forwards;
}
.slide.active .slide-actions {
  animation: slide-up-in 1.2s var(--ease-out-expo) 1.6s forwards;
}
@keyframes slide-up-in {
  to { opacity: 1; transform: translateY(0); }
}

/* 轮播小标签 */
.slide-eyebrow {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* 轮播一级标题 */
.slide-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

/* 轮播二级标题 */
.slide-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 540px;
}

/* 移动端幻灯片样式调整 */
@media (max-width: 768px) {
  .slide-eyebrow {
    padding: 0.25rem 0.625rem;
    margin-bottom: 0.75rem;
    font-size: 0.6875rem;
  }

  .slide-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 0.75rem;
  }

  .slide-subtitle {
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }

  .slide-actions {
    flex-direction: row;
    gap: 0.625rem !important;
  }

  .slide-actions .btn-primary,
  .slide-actions .btn-ghost {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .slide-actions .btn-primary span,
  .slide-actions .btn-ghost span {
    width: 0.75rem !important;
    height: 0.75rem !important;
  }
}

/* 轮播箭头 */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: #fff;
  background: rgba(247, 39, 11, 0.75);
  border: none;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.25s, transform 0.25s var(--ease-out-expo), box-shadow 0.25s;
  cursor: pointer;
}
.carousel-arrow:hover {
  background: var(--color-primary);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(247, 39, 11, 0.45);
}
.carousel-arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* 轮播指示器 */
.indicator {
  width: 2rem;
  height: 0.25rem;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  border-radius: 999px;
  transition: background-color 0.3s, width 0.3s var(--ease-out-expo);
  cursor: pointer;
}
.indicator:hover { background: rgba(255, 255, 255, 0.6); }
.indicator.active {
  background: #fff;
  width: 3rem;
}

/* 滚动提示 */
.writing-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.scroll-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: #fff;
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* ============================================
   特性卡片（为什么选择我们）- 增强悬浮
   ============================================ */
.feature-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), border-color 0.35s;
}
/* 顶部高亮条 - 悬浮时从左滑入 */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.14);
  border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
  background: #fef1f0;
  border-radius: 0.875rem;
  transition: background-color 0.35s var(--ease-out-expo), color 0.35s, transform 0.35s var(--ease-spring), border-radius 0.35s;
}
.feature-card:hover .feature-icon {
  background: var(--color-primary);
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
  border-radius: 1rem;
}
.feature-title {
  font-family: 'Lexend', 'Noto Sans SC', sans-serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}
.feature-card:hover .feature-title { color: var(--color-primary); }
.feature-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-ink-muted);
}

/* ============================================
   产品筛选按钮
   ============================================ */
.filter-btn {
  padding: 0.5rem 1.125rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-ink-muted);
  background: white;
  border: 1px solid var(--color-line);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.filter-btn.active {
  color: white;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* ============================================
   分页按钮
   ============================================ */
.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink-muted);
  background: white;
  border: 1px solid var(--color-line);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.25s;
}
.pagination-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.pagination-btn.active {
  color: white;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* ============================================
   产品卡片 - 网格布局
   ============================================ */
.product-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .product-masonry {
    grid-template-columns: repeat(4, 1fr);
  }
}
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), border-color 0.35s;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px -16px rgba(15, 23, 42, 0.18);
  border-color: rgba(247,39,11,0.3);
}
.product-image {
  position: relative;
  overflow: hidden;
  background: var(--color-muted);
}

/* 骨架屏占位符 */
.product-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--color-muted) 25%,
    #f8fafc 50%,
    var(--color-muted) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.product-image.loaded::before {
  opacity: 0;
  visibility: hidden;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
  position: relative;
  z-index: 2;
}
.product-card:hover .product-image img { transform: scale(1.1); }

/* 产品名称 */
.product-name {
  padding: 0.75rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-ink);
  text-align: center;
  letter-spacing: 0.02em;
}

/* 图片遮罩 + 查看详情按钮 */
.product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out-expo);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  color: var(--color-primary);
  background: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  transform: translateY(12px);
  transition: transform 0.35s var(--ease-out-expo) 0.05s, gap 0.25s;
  cursor: pointer;
}
.product-card:hover .product-overlay-btn { transform: translateY(0); }
.product-overlay-btn:hover { gap: 0.75rem; }


.product-body { padding: 1.25rem 1.25rem 1.5rem; }
.product-title {
  font-family: 'Lexend', 'Noto Sans SC', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}
.product-card:hover .product-title { color: var(--color-primary); }
.product-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-ink-muted);
  margin-bottom: 1rem;
}

/* 筛选标签 */
.filter-tab {
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-ink-muted);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  transition: all 0.25s var(--ease-out-expo);
  cursor: pointer;
}
.filter-tab:hover {
  color: var(--color-primary);
  border-color: #cfe0f0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(10, 77, 140, 0.15);
}
.filter-tab.active {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 6px 16px -4px rgba(10, 77, 140, 0.4);
}

/* ============================================
   解决方案卡片 - 增强悬浮
   ============================================ */
.solution-card {
  position: relative;
  display: block;
  padding: 1.5rem 1.25rem;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 0.875rem;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out-expo), border-color 0.35s, background-color 0.35s, box-shadow 0.35s;
}
.solution-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  background: linear-gradient(135deg, #fff8f7 0%, #fef1f0 100%);
  box-shadow: 0 20px 40px -16px rgba(247, 39, 11, 0.18);
}
.solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.875rem;
  color: var(--color-primary);
  background: #fef1f0;
  border-radius: 0.75rem;
  transition: background-color 0.35s var(--ease-out-expo), color 0.35s, transform 0.35s var(--ease-spring);
}
.solution-card:hover .solution-icon {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.08) rotate(-5deg);
}
.solution-icon svg { width: 1.5rem; height: 1.5rem; }
.solution-name {
  font-family: 'Lexend', 'Noto Sans SC', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.25rem;
  transition: color 0.25s;
}
.solution-card:hover .solution-name { color: var(--color-primary); }
.solution-desc {
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  line-height: 1.5;
}

/* ============================================
   数据统计
   ============================================ */
.stat-item {
  text-align: center;
  color: #fff;
  transition: transform 0.3s var(--ease-out-expo);
}
.stat-item:hover { transform: translateY(-4px); }
.stat-number {
  font-family: 'Lexend', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

/* ============================================
   工程案例卡片 - 优雅悬浮效果
   ============================================ */
.project-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(15, 23, 42, 0.12);
  border-color: rgba(247, 39, 11, 0.15);
}
.project-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-muted);
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-image img { transform: scale(1.05); }

/* 图片遮罩 */
.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(15,23,42,0) 40%, rgba(15,23,42,0.75) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  transform: translateY(6px);
  transition: transform 0.3s ease, gap 0.2s ease;
}
.project-card:hover .project-overlay-btn { transform: translateY(0); }
.project-overlay-btn:hover { gap: 0.625rem; }

.project-body { padding: 1.5rem; }
.project-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #f7270b;
  background: #fff;
  border: 1px solid #f7270b;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}
.project-card:hover .project-tag {
  background: #f7270b;
  color: #fff;
}
.project-title {
  font-family: 'Lexend', 'Noto Sans SC', sans-serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
.project-card:hover .project-title { color: var(--color-primary); }
.project-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-ink-muted);
  margin-bottom: 1rem;
}
.project-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  transition: color 0.2s ease;
}
.project-link:hover { color: var(--color-primary-dark); }

/* ============================================
   产品品质 - 图片对角布局
   ============================================ */
.quality-images-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 480px;
  max-height: 560px;
  margin: 0 auto;
}

.quality-images-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.quality-img-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 72%;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.quality-img-top:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.18);
  z-index: 3;
}

.quality-img-top img {
  transition: transform 0.6s var(--ease-out-expo);
}

.quality-img-top:hover img {
  transform: scale(1.08);
}

.quality-img-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 62%;
  height: 68%;
  z-index: 2;
  padding: 6px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.quality-img-bottom:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.quality-img-bottom img {
  border-radius: calc(1rem - 6px);
  transition: transform 0.6s var(--ease-out-expo);
}

.quality-img-bottom:hover img {
  transform: scale(1.08);
}

/* ============ COOPERATION SECTION - PARALLAX ============ */
.cooperation-section {
  position: relative;
  background-image: url('https://shijia-shangye.oss-cn-qingdao.aliyuncs.com/taoci/images/bg-image.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cooperation-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.555);
  z-index: 1;
}

/* 深色背景下的文字颜色 */
.cooperation-section .section-eyebrow {
  color: #fff;
  background: rgba(247, 39, 11, 0.9);
}

.cooperation-section .section-title {
  color: #fff;
}

.cooperation-section .section-desc {
  color: rgba(255, 255, 255, 0.85);
}

/* 移动端禁用视差效果 */
@media only screen and (max-device-width: 1366px) {
  .cooperation-section {
    background-attachment: scroll;
  }
}

/* ============ FEATURES SECTION ============ */
#features article {
  transition: all 0.35s var(--ease-out-expo);
}

#features article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.12);
  border-color: rgba(247, 39, 11, 0.2);
  background: #fff;
}

#features article:hover h3 {
  color: var(--color-primary);
}

#features article:hover svg {
  transform: scale(1.1);
}

#features article svg {
  color: #c41e08;
  transition: transform 0.3s ease;
}

#features article h3 {
  transition: color 0.3s ease;
}

/* ============ QUALITY SECTION ============ */
#quality article {
  transition: all 0.35s var(--ease-out-expo);
}

#quality article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.12);
  border-color: rgba(247, 39, 11, 0.2);
  background: #fff;
}

#quality article:hover h3 {
  color: var(--color-primary);
}

#quality article:hover svg {
  transform: scale(1.1);
}

#quality article svg {
  color: #c41e08;
  transition: transform 0.3s ease;
}

#quality article h3 {
  transition: color 0.3s ease;
}

/* ============ JOIN SECTION ============ */
#join .grid svg {
  color: #f7270b;
}

#join .section-eyebrow {
  color: #fff;
  background: rgba(247, 39, 11, 0.9);
}

/* 移动端加盟卡片样式调整 */
@media (max-width: 1024px) {
  #join .grid > a {
    padding: 1.25rem;
  }

  #join .grid > a .w-16 {
    width: 2.75rem !important;
    height: 2.75rem !important;
  }

  #join .grid > a .w-7 {
    width: 1.25rem !important;
    height: 1.25rem !important;
  }

  #join .grid > a h3 {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }

  #join .grid > a ul {
    font-size: 0.6875rem;
    line-height: 1.5;
  }

  #join .grid > a ul li {
    margin-bottom: 0.25rem;
  }
}

/* ============ CONTACT SECTION ============ */
#contact {
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

#contact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(247, 39, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

#contact .section-eyebrow {
  color: #fff;
  background: rgba(247, 39, 11, 0.9);
}

#contact .contact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

#contact .contact-stat-item {
  text-align: center;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
}

#contact .contact-stat-number {
  font-family: 'Lexend', 'Noto Sans SC', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f7270b;
  line-height: 1;
  margin-bottom: 0.375rem;
}

#contact .contact-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

#contact .contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

#contact .contact-info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(247, 39, 11, 0.3);
  transform: translateX(4px);
}

#contact .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(247, 39, 11, 0.15);
  border-radius: 0.625rem;
  flex-shrink: 0;
}

#contact .contact-icon svg {
  color: #f7270b;
}

#contact .contact-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
}

#contact .contact-image {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

#contact .contact-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

#contact .contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

#contact .contact-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  #contact .contact-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  
  #contact .contact-stat-item {
    padding: 0.875rem 0.5rem;
  }
  
  #contact .contact-stat-number {
    font-size: 1.5rem;
  }
}

/* ============ FLOATING CONTACT BAR ============ */
.floating-btn-wrapper {
  position: relative !important;
}

.floating-btn-wrapper .floating-tooltip {
  position: absolute !important;
  right: calc(100% + 12px) !important;
  top: 50% !important;
  left: auto !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100 !important;
  pointer-events: none;
}

.floating-btn-wrapper:hover .floating-tooltip {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
}

.floating-tooltip img {
  display: block !important;
  width: 96px !important;
  height: 96px !important;
  max-width: none !important;
}
