/* ========================================
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* Container */
.gy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ==================== TOP BAR ==================== */
.gy-topbar {
  background: #1a1a2e;
  color: #ccc;
  font-size: 13px;
  height: 40px;
  line-height: 40px;
}

.gy-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gy-topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gy-topbar-icon {
  font-size: 16px;
  color: #f0c040;
}

.gy-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gy-topbar-right a {
  color: #ccc;
  transition: color 0.3s;
}

.gy-topbar-right a:hover {
  color: #f0c040;
}

.gy-topbar-divider {
  color: #555;
}

/* ==================== HEADER ==================== */
.gy-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1000;
  transition: all 0.3s;
}

.gy-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.gy-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.gy-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gy-logo img {
  height: 50px;
  width: auto;
}

.gy-logo-text strong {
  font-size: 18px;
  color: #1a3c6e;
  font-weight: 700;
  white-space: nowrap;
}

/* Navigation */
.gy-nav ul {
  display: flex;
  gap: 0;
}

.gy-nav > ul > li {
  position: relative;
}

.gy-nav > ul > li > a {
  display: block;
  padding: 0 22px;
  line-height: 80px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.gy-nav > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #1a6fb5;
  transition: width 0.3s;
}

.gy-nav > ul > li:hover > a,
.gy-nav > ul > li.active > a {
  color: #1a6fb5;
}

.gy-nav > ul > li:hover > a::after,
.gy-nav > ul > li.active > a::after {
  width: 100%;
}

/* Subnav */
.gy-subnav {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 999;
  display: block;
}

.gy-has-sub:hover .gy-subnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gy-subnav li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.gy-subnav li a:hover {
  background: #1a6fb5;
  color: #fff;
}

.gy-subnav li:last-child a {
  border-bottom: none;
}

/* Mobile Toggle */
.gy-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.gy-mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

/* ==================== BANNER ==================== */
.gy-banner {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.gy-banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.gy-banner-slide.active {
  opacity: 1;
}

.gy-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 30, 60, 0.75) 0%, rgba(10, 30, 60, 0.4) 100%);
}

.gy-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  color: #fff;
}

.gy-banner-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

.gy-banner-subtitle {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #f0c040;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.gy-banner-desc {
  font-size: 40px;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 1.2s ease;
}

.gy-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 35px;
  background: #1a6fb5;
  color: #fff;
  font-size: 15px;
  border-radius: 4px;
  transition: all 0.3s;
  animation: fadeInUp 1.4s ease;
}

.gy-banner-btn:hover {
  background: #145a94;
  transform: translateX(5px);
}

.gy-btn-arrow {
  font-size: 14px;
  transition: transform 0.3s;
}

.gy-banner-btn:hover .gy-btn-arrow {
  transform: translateX(5px);
}

/* Banner Dots */
.gy-banner-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.gy-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s;
}

.gy-dot.active {
  background: #f0c040;
  border-color: #f0c040;
  transform: scale(1.2);
}

/* Banner Arrows */
.gy-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 20px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 10;
}

.gy-banner-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

.gy-arrow-left {
  left: 30px;
}

.gy-arrow-right {
  right: 30px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== SECTION HEADER ==================== */
.gy-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.gy-section-header h2 {
  font-size: 32px;
  color: #1a1a2e;
  font-weight: 700;
  margin-bottom: 8px;
}

.gy-section-en {
  font-size: 14px;
  color: #999;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.gy-section-sub {
  font-size: 15px;
  color: #777;
  margin-bottom: 15px;
}

.gy-section-line {
  width: 60px;
  height: 3px;
  background: #1a6fb5;
  margin: 0 auto;
}

.gy-section-header-light h2 {
  color: #fff;
}

.gy-section-sub-light {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.gy-line-light {
  background: #f0c040;
}

/* ==================== ABOUT SECTION ==================== */
.gy-about {
  padding: 70px 0;
  background: #f5f5f5;
  border-bottom: 1px solid #e8e8e8;
}

.gy-about-layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.gy-about-left {
  flex: 1.2;
}

.gy-about-en {
  font-size: 36px;
  font-weight: 900;
  color: #333;
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.gy-about-cn {
  font-size: 18px;
  font-weight: 700;
  color: #444;
  margin-bottom: 24px;
}

.gy-about-desc {
  font-size: 14px;
  line-height: 2.2;
  color: #666;
  text-align: justify;
}

.gy-about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 10px;
}

.gy-about-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.gy-about-feature-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.gy-about-feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.gy-about-feature-text p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

/* Stats - removed, kept placeholder for layout compatibility */
.gy-stats {
  display: none;
  color: #fff;
}

.gy-stat-item {
  text-align: center;
  position: relative;
}

.gy-stat-item::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}

.gy-stat-item:last-child::after {
  display: none;
}

.gy-stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #f0c040;
  display: inline;
}

.gy-stat-unit {
  font-size: 16px;
  color: #f0c040;
  display: inline;
  margin-left: 2px;
}

.gy-stat-label {
  font-size: 16px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.gy-stat-en {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ==================== PRODUCTS ==================== */
.gy-products {
  background: #fff;
}

/* Banner */
.gy-products-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.gy-products-banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gy-products-banner-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.gy-products-banner-text h2 {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 6px;
  margin-bottom: 12px;
}

.gy-products-banner-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 4px;
}

/* Cards Area */
.gy-products-cards {
  padding: 50px 0 60px;
  background: #f0f0f0;
}

.gy-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gy-product-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.gy-product-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.gy-product-img {
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
}

.gy-product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.gy-product-card:hover .gy-product-img img {
  transform: scale(1.05);
}

.gy-product-info {
  padding: 20px 24px 16px;
  flex: 1;
}

.gy-product-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.gy-product-info p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

.gy-product-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px 20px;
  text-decoration: none;
  gap: 10px;
}

.gy-product-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #b71c1c;
}

.gy-product-link span:last-child {
  font-size: 13px;
  color: #888;
  transition: color 0.3s;
}

.gy-product-card:hover .gy-product-link span:last-child {
  color: #b71c1c;
}

/* ==================== ADVANTAGES ==================== */
.gy-advantages {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #1a3c6e 100%);
}

.gy-advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.gy-advantage-card {
  text-align: center;
  padding: 30px 15px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  color: #fff;
}

.gy-advantage-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  border-color: rgba(240, 192, 64, 0.3);
}

.gy-advantage-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(240, 192, 64, 0.4);
}

.gy-advantage-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gy-advantage-card h3 {
  font-size: 17px;
  margin-bottom: 5px;
  color: #fff;
}

.gy-advantage-en {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.gy-advantage-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}

/* ==================== INDUSTRY APPLICATION ==================== */
.gy-industry {
  padding: 70px 0 80px;
  background: #f7f8fa;
}

.gy-industry-title {
  margin-bottom: 40px;
  text-align: center;
}

.gy-industry-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}

.gy-industry-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #1a6fb5;
  border-radius: 2px;
}

.gy-industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gy-industry-card {
  position: relative;
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gy-industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gy-industry-card:hover img {
  transform: scale(1.1);
}

/* Default bottom label */
.gy-industry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 2;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gy-industry-card:hover .gy-industry-overlay {
  padding: 30px 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.2) 100%);
}

.gy-industry-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  transition: margin-bottom 0.4s ease;
}

.gy-industry-card:hover .gy-industry-overlay h3 {
  margin-bottom: 10px;
}

.gy-industry-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.4s ease;
}

.gy-industry-card:hover .gy-industry-overlay p {
  max-height: 80px;
  opacity: 1;
}

/* ==================== NEWS ==================== */
.gy-news {
  padding: 80px 0;
  background: #f7f8fa;
}

.gy-news-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
}

.gy-section-en-left {
  font-size: 14px;
  color: #999;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.gy-view-more {
  font-size: 14px;
  color: #1a6fb5;
  border: 1px solid #1a6fb5;
  padding: 8px 20px;
  border-radius: 4px;
  transition: all 0.3s;
}

.gy-view-more:hover {
  background: #1a6fb5;
  color: #fff;
}

.gy-news-grid {
  display: flex;
  gap: 30px;
}

.gy-news-main {
  flex: 0 0 400px;
}

.gy-news-main a {
  display: block;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.gy-news-main a:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.gy-news-img {
  height: 250px;
  overflow: hidden;
}

.gy-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gy-news-main a:hover .gy-news-img img {
  transform: scale(1.05);
}

.gy-news-info {
  padding: 20px;
  position: relative;
}

.gy-news-date {
  font-size: 12px;
  color: #999;
}

.gy-news-info h3 {
  font-size: 16px;
  color: #333;
  margin: 8px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gy-news-info p {
  font-size: 13px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gy-read-more {
  font-size: 13px;
  color: #1a6fb5;
}

.gy-news-day {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #eee;
}

/* News List */
.gy-news-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gy-news-item {
  display: flex;
  gap: 15px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
  padding: 15px;
}

.gy-news-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.gy-news-item-img {
  flex: 0 0 150px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
}

.gy-news-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gy-news-item-info {
  flex: 1;
  position: relative;
}

.gy-news-item-info h4 {
  font-size: 15px;
  color: #333;
  margin: 5px 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gy-news-item-info p {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gy-news-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.gy-news-item-bottom .gy-news-day {
  position: static;
  font-size: 16px;
  color: #ddd;
}

/* ==================== LINKS ==================== */
.gy-links {
  padding: 15px 0;
  background: #f0f0f0;
  border-top: 1px solid #e0e0e0;
}

.gy-links-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gy-links-title {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  font-style: italic;
}

.gy-links-inner a {
  font-size: 13px;
  color: #888;
  transition: color 0.3s;
}

.gy-links-inner a:hover {
  color: #1a6fb5;
}

/* ==================== FOOTER ==================== */
.gy-footer {
  background: #2d2d2d;
  color: #b0b0b0;
}

.gy-footer-main {
  padding: 45px 0 40px;
}

.gy-footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.gy-footer-contact ul {
  list-style: none;
}

.gy-footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #b0b0b0;
  line-height: 2.4;
}

.gy-footer-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #b0b0b0;
  flex-shrink: 0;
}

.gy-footer-icon-circle svg {
  width: 16px;
  height: 16px;
}

.gy-footer-qrcodes {
  display: flex;
  gap: 30px;
  flex-shrink: 0;
}

.gy-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.gy-qr-item img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 4px;
}

.gy-qr-item span {
  font-size: 13px;
  color: #b0b0b0;
}

.gy-footer-bottom {
  background: #222;
  text-align: center;
  padding: 15px 0;
}

.gy-footer-bottom p {
  font-size: 13px;
  color: #cccccc;
}
.gy-footer-bottom p a{
  color: #cccccc;
}

/* ==================== SIDE TOOLS ==================== */
.gy-side-tools {
  position: fixed;
  right: 15px;
  bottom: 150px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gy-side-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-height: 50px;
  background: #1a6fb5;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 8px 4px;
  text-align: center;
}

.gy-side-item:hover {
  background: #145a94;
}

.gy-side-icon {
  font-size: 18px;
}

.gy-side-text {
  font-size: 10px;
  margin-top: 2px;
  line-height: 1.2;
}

.gy-back-top {
  background: #555;
}

.gy-back-top:hover {
  background: #333;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .gy-advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gy-about-layout {
    flex-direction: column;
    gap: 40px;
  }

  .gy-about-img {
    flex: 0 0 auto;
    width: 100%;
  }

  .gy-footer-flex {
    flex-direction: column;
    gap: 30px;
  }

  .gy-news-grid {
    flex-direction: column;
  }

  .gy-news-main {
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .gy-topbar {
    display: none;
  }

  .gy-header-inner {
    height: 60px;
  }

  .gy-mobile-toggle {
    display: flex;
  }

  .gy-nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .gy-nav-open {
    display: block;
  }

  .gy-nav ul {
    flex-direction: column;
  }

  .gy-nav > ul > li > a {
    line-height: 50px;
    padding: 0 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .gy-nav > ul > li > a::after {
    display: none;
  }

  .gy-subnav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f7f8fa;
  }

  .gy-banner {
    height: 400px;
  }

  .gy-banner-content {
    padding: 0 20px;
  }

  .gy-banner-title {
    font-size: 26px;
  }

  .gy-banner-subtitle {
    font-size: 18px;
  }

  .gy-banner-desc {
    font-size: 13px;
  }

  .gy-banner-arrow {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .gy-arrow-left {
    left: 10px;
  }

  .gy-arrow-right {
    right: 10px;
  }

  .gy-products-grid {
    grid-template-columns: 1fr;
  }

  .gy-products-banner {
    height: 250px;
  }

  .gy-products-banner-text h2 {
    font-size: 28px;
  }

  .gy-advantages-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gy-industry-card {
    height: 300px;
  }

  .gy-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .gy-stat-item {
    flex: 0 0 45%;
  }

  .gy-stat-item::after {
    display: none;
  }

  .gy-stat-number {
    font-size: 36px;
  }

  .gy-footer-qrcodes {
    flex-direction: row;
    justify-content: center;
  }

  .gy-section-header h2 {
    font-size: 26px;
  }

  .gy-about, .gy-products, .gy-advantages, .gy-industry {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .gy-banner {
    height: 350px;
  }

  .gy-banner-title {
    font-size: 22px;
  }

  .gy-advantages-grid {
    grid-template-columns: 1fr;
  }

  .gy-industry-grid {
    grid-template-columns: 1fr;
  }

  .gy-industry-card {
    height: 250px;
  }

  .gy-news-item {
    flex-direction: column;
  }

  .gy-news-item-img {
    flex: 0 0 auto;
    height: 150px;
  }

  .gy-logo-text strong {
    font-size: 14px;
  }
}

/* ==================== PAGE BANNER (Sub Pages) ==================== */
.gy-page-banner {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.gy-page-banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gy-page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.gy-page-banner-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.gy-page-banner-text h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.gy-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.gy-page-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.gy-page-breadcrumb a:hover {
  color: #fff;
}

.gy-page-breadcrumb span:last-child {
  color: #fff;
}

/* ==================== INDUSTRY PAGE ==================== */
.gy-industry-page {
  padding: 70px 0 80px;
  background: #f7f8fa;
}

.gy-industry-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gy-industry-page-card {
  position: relative;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gy-industry-page-img {
  width: 100%;
  height: 100%;
}

.gy-industry-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gy-industry-page-card:hover .gy-industry-page-img img {
  transform: scale(1.1);
}

.gy-industry-page-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 28px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 2;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gy-industry-page-card:hover .gy-industry-page-overlay {
  padding-bottom: 36px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.2) 100%);
}

.gy-industry-page-overlay h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  transition: margin-bottom 0.4s ease;
}

.gy-industry-page-card:hover .gy-industry-page-overlay h3 {
  margin-bottom: 10px;
}

.gy-industry-page-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.4s ease;
}

.gy-industry-page-card:hover .gy-industry-page-overlay p {
  max-height: 80px;
  opacity: 1;
}

@media (max-width: 768px) {
  .gy-page-banner {
    height: 220px;
  }

  .gy-page-banner-text h1 {
    font-size: 26px;
  }

  .gy-industry-page-grid {
    grid-template-columns: 1fr;
  }

  .gy-industry-page-card {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .gy-industry-page-card {
    height: 240px;
  }
}

/* ==================== INDUSTRY ZIGZAG PAGE ==================== */
.gy-ind-zigzag {
  padding: 60px 0 80px;
  background: #fff;
}

.gy-ind-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 60px;
}

.gy-ind-row:last-child {
  margin-bottom: 0;
}

/* Image on the left, text on the right */
.gy-ind-row-img-left {
  flex-direction: row;
}

/* Image on the right, text on the left */
.gy-ind-row-img-right {
  flex-direction: row-reverse;
}

.gy-ind-row-img {
  flex: 0 0 50%;
  max-width: 50%;
}

.gy-ind-row-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.gy-ind-row-text {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.gy-ind-row-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #b71c1c;
  letter-spacing: 1px;
}

/* Scroll-in animations for zigzag rows */
.gy-ind-row .gy-ind-row-img {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gy-ind-row .gy-ind-row-text {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

/* Image-left row: image from left, text from right */
.gy-ind-row-img-left .gy-ind-row-img {
  transform: translateX(-100px);
}
.gy-ind-row-img-left .gy-ind-row-text {
  transform: translateX(100px);
}

/* Image-right row: image from right, text from left */
.gy-ind-row-img-right .gy-ind-row-img {
  transform: translateX(100px);
}
.gy-ind-row-img-right .gy-ind-row-text {
  transform: translateX(-100px);
}

/* Visible state after scroll trigger */
.gy-ind-row-visible .gy-ind-row-img,
.gy-ind-row-visible .gy-ind-row-text {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .gy-ind-row {
    flex-direction: column !important;
    margin-bottom: 40px;
  }

  .gy-ind-row-img {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .gy-ind-row-img img {
    height: 260px;
  }

  .gy-ind-row-text {
    padding: 20px 0;
  }
}

/* ==================== APPLICATION BANNER ==================== */
.gy-app-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.gy-app-banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gy-app-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.gy-app-banner-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10%;
  z-index: 2;
  overflow: hidden;
}

.gy-app-banner-en {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 6px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(-60px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gy-app-banner-en.gy-anim-in {
  opacity: 1;
  transform: translateY(0);
}

.gy-app-banner-cn {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 4px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s,
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.gy-app-banner-cn.gy-anim-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .gy-app-banner {
    height: 260px;
  }

  .gy-app-banner-en {
    font-size: 30px;
  }

  .gy-app-banner-cn {
    font-size: 16px;
  }

  .gy-app-banner-text {
    padding-left: 6%;
  }
}

/* ==================== CONTACT PAGE ==================== */
.gy-contact-section {
  padding: 60px 0 80px;
  background: #fff;
}

.gy-contact-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Left: Contact Info */
.gy-contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.gy-contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gy-contact-info-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.gy-contact-info-label {
  font-size: 15px;
  color: #b71c1c;
  white-space: nowrap;
}

.gy-contact-info-value {
  font-size: 15px;
  color: #b71c1c;
}

/* Right: Message Form */
.gy-contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gy-contact-input {
  width: 100%;
  height: 44px;
  border: 1px solid #ddd;
  border-bottom: none;
  padding: 0 16px;
  font-size: 14px;
  color: #333;
  outline: none;
  background: #fff;
  box-sizing: border-box;
}

.gy-contact-input::placeholder {
  color: #aaa;
}

.gy-contact-input:focus {
  border-color: #999;
}

.gy-contact-textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-bottom: none;
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  outline: none;
  background: #fff;
  resize: vertical;
  font-family: inherit;
  box-sizing: border-box;
}

.gy-contact-textarea::placeholder {
  color: #aaa;
}

.gy-contact-textarea:focus {
  border-color: #999;
}

.gy-contact-captcha-row {
  display: flex;
  align-items: stretch;
}

.gy-contact-captcha-input {
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.gy-contact-captcha-img {
  width: 120px;
  height: 44px;
  border: 1px solid #ddd;
  cursor: pointer;
  flex-shrink: 0;
}

.gy-contact-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.gy-contact-submit-btn {
  padding: 10px 40px;
  background: #8a8abf;
  color: #fff;
  font-size: 15px;
  border: none;
  cursor: pointer;
  letter-spacing: 4px;
  transition: background 0.3s;
}

.gy-contact-submit-btn:hover {
  background: #6e6ea8;
}

@media (max-width: 768px) {
  .gy-contact-layout {
    flex-direction: column;
    gap: 40px;
  }

  .gy-contact-info {
    gap: 24px;
  }
}

/* ==================== PRODUCTS LIST PAGE ==================== */
.gy-prodlist-section {
  padding: 60px 0 80px;
  background: #fff;
}

.gy-prodlist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gy-prodlist-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.3s ease;
  cursor: pointer;
}

.gy-prodlist-card-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay per card within each row */
.gy-prodlist-card:nth-child(3n+2) {
  transition-delay: 0.12s;
}
.gy-prodlist-card:nth-child(3n+3) {
  transition-delay: 0.24s;
}
.gy-prodlist-card-visible:nth-child(3n+2) {
  transition-delay: 0.12s;
}
.gy-prodlist-card-visible:nth-child(3n+3) {
  transition-delay: 0.24s;
}

.gy-prodlist-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.gy-prodlist-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.gy-prodlist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gy-prodlist-card:hover .gy-prodlist-img img {
  transform: scale(1.06);
}

.gy-prodlist-title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  padding: 18px 10px;
}

@media (max-width: 1024px) {
  .gy-prodlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gy-prodlist-card:nth-child(2n+2) {
    transition-delay: 0.12s;
  }
}

@media (max-width: 480px) {
  .gy-prodlist-grid {
    grid-template-columns: 1fr;
  }

  .gy-prodlist-img {
    height: 220px;
  }
}

/* ==================== ABOUT PAGE ==================== */

/* Features Row */
.gy-about-features {
  padding: 50px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.gy-about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.gy-about-feat-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gy-about-feat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gy-about-feat-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.gy-about-feat-content p {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
}

/* Company Intro */
.gy-about-intro {
  padding: 70px 0 60px;
  background: #fff;
}

.gy-about-intro-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.gy-about-intro-left {
  flex: 1;
}

.gy-about-intro-left h2 {
  font-size: 28px;
  font-weight: 900;
  color: #222;
  margin-bottom: 28px;
  line-height: 1.4;
}

.gy-about-intro-left p {
  font-size: 15px;
  color: #666;
  line-height: 2;
  text-align: justify;
}

.gy-about-intro-right {
  flex: 0 0 420px;
}

.gy-about-intro-right img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Honor Section */
.gy-about-honor {
  padding-bottom: 0;
}

.gy-about-honor-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  text-align: center;
  padding: 40px 0 30px;
}

.gy-about-honor-bg {
  background: #f0f0f0;
  padding: 50px 0 60px;
}

.gy-about-honor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gy-about-honor-card {
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.gy-about-honor-img {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gy-about-honor-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gy-about-honor-line {
  width: 60%;
  height: 1px;
  background: #ddd;
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .gy-about-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gy-about-intro-layout {
    flex-direction: column;
    gap: 30px;
  }

  .gy-about-intro-right {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .gy-about-honor-grid {
    grid-template-columns: 1fr;
  }

  .gy-about-honor-img {
    height: 200px;
  }
}

/* ==================== ABOUT PAGE SCROLL ANIMATIONS ==================== */

/* Features row - each item fades up with stagger */
.gy-about-feat-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gy-scroll-visible .gy-about-feat-item {
  opacity: 1;
  transform: translateY(0);
}

.gy-scroll-visible .gy-about-feat-item:nth-child(2) {
  transition-delay: 0.2s;
}
.gy-scroll-visible .gy-about-feat-item:nth-child(3) {
  transition-delay: 0.4s;
}

/* Intro section - left slides from left, right slides from right */
.gy-about-intro-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gy-about-intro-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.gy-intro-visible .gy-about-intro-left {
  opacity: 1;
  transform: translateX(0);
}

.gy-intro-visible .gy-about-intro-right {
  opacity: 1;
  transform: translateX(0);
}

/* Honor title - fade up */
.gy-about-honor-title {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gy-about-honor-title.gy-scroll-up-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Honor cards - stagger fade up */
.gy-about-honor-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gy-honor-cards-visible .gy-about-honor-card {
  opacity: 1;
  transform: translateY(0);
}

.gy-honor-cards-visible .gy-about-honor-card:nth-child(2) {
  transition-delay: 0.2s;
}
.gy-honor-cards-visible .gy-about-honor-card:nth-child(3) {
  transition-delay: 0.4s;
}

/* ==================== PRODUCT DETAIL PAGE ==================== */
.gy-detail-breadcrumb {
  background: #f0f0f0;
  padding: 14px 0;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 70px;
}

.gy-detail-breadcrumb .gy-container {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 14px;
  color: #999;
}

.gy-detail-breadcrumb a {
  color: #555;
  transition: color 0.3s;
}

.gy-detail-breadcrumb a:hover {
  color: #b71c1c;
}

.gy-detail-breadcrumb-sep {
  margin: 0 10px;
  color: #bbb;
  font-size: 12px;
}

.gy-detail-breadcrumb-current {
  color: #999;
}

.gy-detail-section {
  padding: 60px 0 80px;
  background: #fff;
}

.gy-detail-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.gy-detail-img {
  flex: 0 0 55%;
  max-width: 55%;
  overflow: hidden;
}

.gy-detail-img img {
  width: 100%;
  height: auto;
  display: block;
}

.gy-detail-info {
  flex: 1;
  padding-top: 10px;
}

.gy-detail-title {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.gy-detail-divider {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin-bottom: 24px;
}

.gy-detail-desc {
  font-size: 15px;
  color: #666;
  line-height: 2;
  text-align: justify;
}

.gy-detail-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.gy-detail-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  transition: color 0.3s;
}

.gy-detail-nav-item:hover {
  color: #b71c1c;
}

.gy-detail-nav-arrow {
  font-size: 14px;
  color: #999;
}

@media (max-width: 768px) {
  .gy-detail-layout {
    flex-direction: column;
    gap: 30px;
  }

  .gy-detail-img {
    flex: none;
    max-width: 100%;
  }

  .gy-detail-title {
    font-size: 22px;
  }
}

/* ==================== HOMEPAGE SCROLL ANIMATIONS ==================== */

/* About: left slides from left, right slides from right */
.gy-about-layout .gy-about-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gy-about-layout .gy-about-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.gy-home-about-visible .gy-about-left,
.gy-home-about-visible .gy-about-right {
  opacity: 1;
  transform: translateX(0);
}

/* Products banner text: title from top, subtitle from bottom */
.gy-products-banner .gy-products-banner-text h2 {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gy-products-banner .gy-products-banner-text p {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s,
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.gy-home-prodbanner-visible .gy-products-banner-text h2,
.gy-home-prodbanner-visible .gy-products-banner-text p {
  opacity: 1;
  transform: translateY(0);
}

/* Product cards: stagger fade up */
.gy-products-grid .gy-product-card {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gy-home-prodcards-visible .gy-product-card {
  opacity: 1;
  transform: translateY(0);
}

.gy-home-prodcards-visible .gy-product-card:nth-child(2) {
  transition-delay: 0.15s;
}

.gy-home-prodcards-visible .gy-product-card:nth-child(3) {
  transition-delay: 0.3s;
}

/* Industry cards: stagger scale up */
.gy-industry-grid .gy-industry-card {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gy-home-industry-visible .gy-industry-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gy-home-industry-visible .gy-industry-card:nth-child(2) {
  transition-delay: 0.12s;
}

.gy-home-industry-visible .gy-industry-card:nth-child(3) {
  transition-delay: 0.24s;
}

.gy-home-industry-visible .gy-industry-card:nth-child(4) {
  transition-delay: 0.36s;
}
