/*
Theme Name: Gongsheng Net
Description: Custom high-tech premium theme for Hainan Gongsheng Network Technology Co., Ltd.
Version: 1.0.0
Text Domain: gongsheng
*/

/* ==========================================================================
   Hainan Gongsheng Official Website Redesign - Core Design Tokens & System
   Curated Palette: #122a88 (Gongsheng Deep Blue) & #00a0e9 (Gongsheng Electric Cyan)
   Style Theme: High-end Cyber-Tech, Glassmorphism, AI & Digital Future
   ========================================================================== */

:root {
  /* Dynamic CSS Variables - Editable via Visual CMS */
  --primary-color: #00a0e9; /* Shift primary to electric cyan in dark theme for high visibility text */
  --primary-color-actual: #122a88; /* Keep original Gongsheng deep blue for actual backgrounds */
  --primary-color-rgb: 0, 160, 233;
  --accent-color: #00a0e9;
  --accent-color-rgb: 0, 160, 233;
  --bg-color: #08123c;
  --text-color: #ffffff;
  --text-muted: #8da2c4;
  --card-bg: rgba(18, 42, 136, 0.45);
  --border-color: rgba(0, 160, 233, 0.3);
  
  /* Constant Tokens */
  --font-primary: 'Outfit', 'Inter', 'Noto Sans SC', -apple-system, sans-serif;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
  --glow-shadow: 0 4px 20px rgba(0, 160, 233, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

/* Reset & Global Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* AI Neural Network Canvas Background */
#neural-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: auto;
  opacity: 0.65;
}

/* Base Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(var(--accent-color-rgb), 0.3);
  border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(var(--accent-color-rgb), 0.1);
  border: 1px solid rgba(var(--accent-color-rgb), 0.25);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(var(--accent-color-rgb), 0.08);
}

.required {
  color: #ff3366;
  margin-left: 3px;
}

/* Grid & Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

/* Sections */
.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  margin-bottom: 50px;
}

.section-header.text-center {
  text-align: center;
}

.section-title {
  font-size: 1.75rem;
  margin-bottom: 14px;
  font-weight: 800;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 0.88rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
}

.section-header:not(.text-center) .section-subtitle {
  margin: 0;
}

/* Glassmorphic Card base */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(var(--accent-color-rgb), 0.4);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6), 0 0 15px rgba(var(--accent-color-rgb), 0.15);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--border-radius-md);
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  border: 1px solid rgba(var(--accent-color-rgb), 0.4);
  box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
}

.btn-primary:hover {
  background-color: rgba(var(--primary-color-rgb), 0.85);
  box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.5), var(--glow-shadow);
  transform: translateY(-2px);
}

.btn-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(var(--accent-color-rgb), 0.25);
}

.btn-gradient:hover {
  box-shadow: 0 6px 25px rgba(var(--accent-color-rgb), 0.45), var(--glow-shadow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
  box-shadow: var(--glow-shadow);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.glow-btn {
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(var(--accent-color-rgb), 0.25);
  position: relative;
  overflow: hidden;
}

.glow-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  transition: var(--transition-smooth);
  opacity: 0;
}

.glow-btn:hover::after {
  opacity: 1;
  left: 120%;
  transition: all 0.8s ease-in-out;
}

/* ==========================================================================
   Header Navigation Bar (Glassmorphic)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 42, 136, 0.95); /* High-end semi-transparent Gongsheng deep blue */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0;
  box-shadow: 0 10px 30px rgba(18, 42, 136, 0.06);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.navbar.scrolled .nav-container {
  height: 64px;
}

.brand,
.nav-actions,
.nav-toggle {
  display: flex;
  align-self: center;
}

.logo-img {
  height: 42px; /* Sleek, crisp height for high-definition branding */
  width: auto;  /* Respect the logo image aspect ratio dynamically */
  object-fit: contain;
  flex-shrink: 0; /* Ironclad protection: absolutely prevent the flex containers from squeezing the logo */
  display: block;
}

.logo-text-fallback {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-color);
}

.logo-meta {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--accent-color);
  letter-spacing: 0.05em;
}

.nav-list {
  display: flex;
  align-items: stretch;
  gap: 8px;
  list-style: none;
  flex-wrap: nowrap;
  height: 100%;
}

.nav-list li {
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  height: 100%;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0 16px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  height: 100%;
}

.nav-link i {
  font-size: 0.75rem;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  background: rgba(var(--accent-color-rgb), 0.1);
  box-shadow: inset 0 0 10px rgba(var(--accent-color-rgb), 0.05);
}

.nav-link:hover i {
  transform: translateY(2px);
}

.dropdown:hover .nav-link i.fa-chevron-down {
  transform: rotate(180deg) !important;
}

.nav-link i.fa-chevron-down {
  transition: transform var(--transition-fast) ease !important;
}

/* Dropdown Menu System */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 250px;
  background: rgba(8, 12, 30, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 12px;
  box-shadow: var(--glass-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Hover hide delay (0.3s) on opacity, transform, and visibility to prevent accidental dismissal */
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, visibility 0s linear 0.3s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  /* No delay when hovering in */
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s;
}

.dropdown-menu li {
  list-style: none;
  margin-bottom: 6px;
}

.dropdown-menu li:last-child {
  margin-bottom: 0;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.dropdown-menu a i {
  width: 16px;
  color: var(--accent-color);
}

.dropdown-menu a:hover {
  background: rgba(var(--accent-color-rgb), 0.15);
  color: #ffffff;
  transform: translateX(4px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   Home View: Hero Banner & Widgets
   ========================================================================== */
.main-content {
  padding-top: 80px; /* offset fixed header */
}

.page-view {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.page-view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.hero-section {
  position: relative;
  padding: 100px 0 60px 0;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-info {
  flex: 1.1;
}.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 550px;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-visual {
  flex: 0.9;
  position: relative;
  display: flex;
  justify-content: center;
}

.glow-sphere {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-color-rgb), 0.25) 0%, transparent 70%);
  filter: blur(30px);
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-15px) scale(1.05); }
  100% { transform: translateY(0px) scale(1); }
}

/* Glassmorphic Mockup */
.mockup-container {
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.mockup-header {
  background: rgba(var(--primary-color-rgb), 0.25);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  display: inline-block;
}

.mockup-dot.red { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #27c93f; }

.mockup-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 12px;
}

.mockup-body {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-image: linear-gradient(135deg, rgba(8,12,30,0.85) 0%, rgba(18,42,136,0.7) 100%);
  transition: var(--transition-smooth);
}

.visual-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.visual-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(var(--accent-color-rgb), 0.8);
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(var(--accent-color-rgb), 0.4);
}

.visual-ring {
  width: 80px;
  height: 80px;
  border: 2px dashed rgba(var(--accent-color-rgb), 0.4);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 12s linear infinite;
  position: relative;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.visual-ring .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent-color);
  position: absolute;
  top: 10px;
}

.visual-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}

.v-stat {
  display: flex;
  flex-direction: column;
}

.v-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-color);
}

.v-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Home View: Interactive Grid Systems
   ========================================================================== */

/* 1. Dynamic Stats Counter Box */
.stat-box {
  padding: 30px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(var(--accent-color-rgb), 0.1) 0%, transparent 60%);
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.stat-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* 2. Why Choose Feature Card */
.feature-card {
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  background: rgba(var(--accent-color-rgb), 0.15);
  border: 1px solid rgba(var(--accent-color-rgb), 0.3);
  color: var(--accent-color);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: var(--glow-shadow);
  transform: scale(1.05) rotate(5deg);
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 3. Solutions Teaser Widget (Horizontal layout tabs) */
.solutions-teaser-layout {
  display: flex;
  gap: 32px;
}

.sol-sidebar-nav {
  flex: 0.35;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sol-tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--border-radius-sm);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.sol-tab-btn i {
  color: var(--accent-color);
  opacity: 0;
  transform: translateX(-5px);
  transition: var(--transition-fast);
}

.sol-tab-btn:hover, .sol-tab-btn.active {
  background: var(--card-bg);
  border-color: var(--border-color);
  color: #ffffff;
}

.sol-tab-btn.active i {
  opacity: 1;
  transform: translateX(0);
}

.sol-teaser-content {
  flex: 0.65;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
}

.sol-detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.sol-detail-header span {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(var(--accent-color-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-color);
}

.sol-detail-header h4 {
  font-size: 1.6rem;
  color: #ffffff;
}

.sol-detail-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* 4. Product Quick Matrix Mini-cards */
.prod-preview-card {
  padding: 30px 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.prod-preview-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  height: 48px;
  display: flex;
  align-items: center;
}

.prod-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(18, 42, 136, 0.08);
  box-sizing: border-box;
}

.prod-preview-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.prod-preview-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 52px;
}

.prod-preview-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.prod-preview-card:hover .prod-preview-link i {
  transform: translateX(4px);
}

.prod-preview-link i {
  transition: var(--transition-fast);
}

/* ==========================================================================
   Product Slider Carousel (Seeyon-Style)
   ========================================================================== */
.product-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
}

.product-carousel-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  height: 480px;
}

.product-carousel-track {
  display: flex;
  gap: 40px;
  height: 100%;
  width: max-content;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.product-carousel-slide {
  width: 860px;
  height: 100%;
  flex-shrink: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.35;
  transform: scale(0.9);
  filter: blur(2px);
  cursor: pointer;
}

.product-carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  z-index: 10;
}

.product-slide-card {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, #0e1b40 0%, #122a88 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(8, 18, 60, 0.3);
  overflow: hidden;
  position: relative;
}

.product-slide-info {
  width: 55%;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  z-index: 2;
  text-align: left;
}

.product-slide-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.product-slide-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  padding: 4px;
}

.product-slide-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(0, 160, 233, 0.2);
  border: 1px solid rgba(0, 160, 233, 0.4);
  color: #00a0e9;
  padding: 3px 8px;
  border-radius: 4px;
}

.product-slide-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.product-slide-tagline {
  font-size: 1rem;
  font-weight: 500;
  color: #00a0e9 !important;
  margin-bottom: 16px;
  line-height: 1.4;
}

.product-slide-desc {
  font-size: 0.85rem;
  color: #cbd5e1 !important;
  line-height: 1.6;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-slide-advantages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: auto;
}

.adv-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #94a3b8;
}

.adv-item i {
  color: #00a0e9;
  font-size: 0.9rem;
}

.product-slide-action {
  margin-top: 20px;
}

.prod-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00a0e9 !important;
  transition: all 0.3s ease;
  cursor: pointer;
  border-bottom: 1px dashed transparent;
  padding-bottom: 2px;
}

.prod-slide-link:hover {
  color: #ffffff !important;
  border-bottom-color: #ffffff;
  transform: translateX(4px);
}

.product-slide-media {
  width: 45%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.media-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #122a88;
}

.media-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-mask::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 60px;
  height: 100%;
  background: linear-gradient(to right, #0e1b40, transparent);
  z-index: 2;
}

.product-slide-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 40px;
  height: 100%;
  background: #0e1b40;
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
  z-index: 2;
  transform: scaleY(1.1);
}

/* Light theme card override styles (seamless transition for Fishery Integrated Platform) */
.product-slide-card.light-theme-card {
  background: linear-gradient(135deg, #b0dbff 0%, #e0f2fe 100%) !important;
  border: 1px solid rgba(18, 42, 136, 0.1) !important;
}

.product-slide-card.light-theme-card .product-slide-header {
  display: none !important;
}

.product-slide-card.light-theme-card .product-slide-info {
  color: #0e1b40 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding: 45px 50px !important;
}

.product-slide-card.light-theme-card .product-slide-title {
  color: #122a88 !important;
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}

.product-slide-card.light-theme-card .product-slide-tagline {
  display: none !important;
}

.product-slide-card.light-theme-card .product-slide-desc {
  color: #475569 !important;
  -webkit-line-clamp: 4 !important;
  margin-top: auto !important;
  margin-bottom: 18px !important;
  line-height: 1.5 !important;
}

.product-slide-card.light-theme-card .product-slide-advantages {
  gap: 6px !important;
  margin-bottom: 24px !important;
}

.product-slide-card.light-theme-card .adv-item {
  color: #475569 !important;
  font-size: 0.8rem !important;
}

.product-slide-card.light-theme-card .adv-item i {
  color: #122a88 !important;
}

.product-slide-card.light-theme-card .product-slide-action {
  margin-top: 0 !important;
  margin-bottom: auto !important;
}

.product-slide-card.light-theme-card .prod-slide-link {
  color: #122a88 !important;
}

.product-slide-card.light-theme-card .prod-slide-link:hover {
  color: #00a0e9 !important;
  border-bottom-color: #00a0e9 !important;
}

.product-slide-card.light-theme-card .media-mask {
  background: #ffffff !important;
}

.product-slide-card.light-theme-card .media-mask img {
  object-fit: contain !important;
  width: 100% !important;
  height: 100% !important;
  transform: scale(0.96) !important;
  transform-origin: center center !important;
}

.product-slide-card.light-theme-card .media-mask::before {
  display: none !important;
}

.product-slide-card.light-theme-card .product-slide-media::after {
  background: linear-gradient(to bottom, #b0dbff, #e0f2fe) !important;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #cee7fe !important;
  border: 1px solid rgba(18, 42, 136, 0.15) !important;
  color: #122a88 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(18, 42, 136, 0.1);
}

.carousel-control:hover {
  background: #a4d3ff !important;
  border-color: #122a88 !important;
  box-shadow: 0 0 20px rgba(164, 211, 255, 0.6) !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.carousel-control.prev {
  left: calc(50% - 480px);
}

.carousel-control.next {
  right: calc(50% - 480px);
}

@media (max-width: 1024px) {
  .product-carousel-slide {
    width: 680px;
  }
  .carousel-control.prev {
    left: 20px;
  }
  .carousel-control.next {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .product-carousel-container {
    height: auto;
    min-height: 520px;
  }
  
  .product-carousel-slide {
    width: calc(100vw - 40px);
    margin: 0;
    opacity: 0.2;
  }
  
  .product-carousel-slide.active {
    opacity: 1;
  }
  
  .product-slide-card {
    flex-direction: column-reverse;
  }
  
  .product-slide-info {
    width: 100%;
    height: 60%;
    padding: 24px;
  }
  
  .product-slide-card.light-theme-card .product-slide-info {
    padding: 24px !important;
  }
  
  .product-slide-media {
    width: 100%;
    height: 180px;
  }
  
  .product-slide-media::after,
  .media-mask::before {
    display: none;
  }
  
  .carousel-control {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  
  .carousel-control.prev {
    left: 10px;
  }
  
  .carousel-control.next {
    right: 10px;
  }
}

/* 5. Elegant Testimonials Cases Slider */
.carousel-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}.case-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 10px;
}

.case-card {
  padding: 40px;
  position: relative;
  text-align: center;
  border-radius: var(--border-radius-md);
  border: 1px dashed var(--border-color);
}

.case-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: inline-block;
}

.case-card h4 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.case-company {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.case-result {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
  border-radius: var(--border-radius-sm);
  display: inline-block;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: rgba(var(--accent-color-rgb), 0.15);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* ==========================================================================
   Core Products View (Detail Tabular Workbench)
   ========================================================================== */
.products-header-banner, .solutions-header-banner, .support-banner, .about-banner {
  padding: 60px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
  margin-bottom: 40px;
}

#view-products .view-title {
  background: linear-gradient(to right, #122a88, #00a0e9) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.prod-tab-header {
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--border-radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.prod-tab-header:hover, .prod-tab-header.active {
  background: var(--primary-color);
  border-color: rgba(var(--accent-color-rgb), 0.4);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
}

.prod-tab-header.active i {
  color: var(--accent-color);
}

/* Product Workbench details layout */
.product-workbench {
  padding: 48px;
}

.prod-details-title-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.prod-details-icon {
  font-size: 2.5rem;
}

.prod-details-title-row h3 {
  font-size: 2rem;
  background: linear-gradient(to right, #122a88, #00a0e9) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
}

.prod-details-tagline {
  font-size: 1.15rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 24px;
  border-left: 3px solid var(--accent-color);
  padding-left: 12px;
}

.prod-details-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Inner Workbench Sub-Navigation */
.workbench-subtabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 30px;
}

.w-subtab-btn {
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.w-subtab-btn:hover, .w-subtab-btn.active {
  color: #ffffff;
}

.w-subtab-btn.active {
  border-bottom-color: var(--accent-color);
}

/* Workbench sub views */
.w-view {
  display: none;
}

.w-view.active {
  display: block;
}

/* Implementation flow item inside product details */
.flow-text {
  font-size: 1.05rem;
  line-height: 1.75;
}

.adv-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  list-style: none;
}

.adv-list .adv-item {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--border-radius-sm);
}

.adv-list .adv-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 2px;
}

.adv-item-info h5 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: #ffffff;
}

.adv-item-info p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.prod-case-card {
  border-left: 4px solid var(--accent-color);
  padding: 24px 30px;
  background: rgba(255,255,255,0.02);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.prod-case-card h5 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.prod-case-card p {
  font-size: 1rem;
  line-height: 1.7;
}

/* ==========================================================================
   Solutions View
   ========================================================================== */
.sol-card {
  padding: 30px;
  height: 100%;
}

.sol-icon {
  width: 50px;
  height: 50px;
  background: rgba(var(--accent-color-rgb), 0.15);
  border: 1px solid rgba(var(--accent-color-rgb), 0.3);
  border-radius: 8px;
  font-size: 1.4rem;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.sol-card:hover .sol-icon {
  background: var(--accent-color);
  color: #ffffff;
  transform: scale(1.05);
}

.sol-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.sol-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* CTA Banner widget */
.cta-banner {
  margin-top: 60px;
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--accent-color-rgb), 0.15) 0%, transparent 60%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-banner h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

/* ==========================================================================
   Services & Partners View
   ========================================================================== */
.service-box {
  padding: 40px 30px;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(var(--primary-color-rgb), 0.3);
  border: 1px solid var(--border-color);
  color: var(--accent-color);
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.service-box h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: #ffffff;
}

.service-box p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.partners-block {
  margin-top: 80px;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.partner-tag {
  padding: 16px 28px;
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--border-radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  transition: var(--transition-fast);
}

.partner-tag:hover {
  background: var(--card-bg);
  border-color: var(--border-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.partner-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.partner-role {
  font-size: 0.75rem;
  color: var(--accent-color);
}

/* ==========================================================================
   About View Elements
   ========================================================================== */
.about-profile {
  display: flex;
  gap: 48px;
  padding: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.profile-text {
  flex: 1.1;
}

.profile-text h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.profile-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.vision-box {
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--accent-color);
  padding: 20px;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  margin-top: 30px;
}

.vision-box i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.vision-box p {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #ffffff;
}

.vision-box h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.profile-image-container {
  flex: 0.9;
}

/* Interactive values grid mesh net */
.interactive-values-net {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.value-net-node {
  padding: 20px;
  background: rgba(var(--accent-color-rgb), 0.05);
  border: 1px solid rgba(var(--accent-color-rgb), 0.15);
  border-radius: var(--border-radius-sm);
  text-align: center;
  transition: var(--transition-smooth);
}

.value-net-node:hover {
  background: rgba(var(--accent-color-rgb), 0.12);
  border-color: var(--accent-color);
  transform: scale(1.03);
}

.value-net-node h5 {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.value-net-node p {
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Qualifications Grid */
.honors-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.honor-badge-card {
  padding: 24px;
  text-align: center;
}

.honor-badge-card i {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 16px;
  filter: drop-shadow(0 0 5px rgba(var(--accent-color-rgb), 0.4));
}

.honor-badge-card h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.honor-badge-card p {
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Milestones Timeline Container */
.timeline-section {
  margin-bottom: 80px;
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.08);
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  width: 100%;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 4px solid var(--accent-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 24px;
  box-shadow: 0 0 10px var(--accent-color);
  z-index: 10;
}

.timeline-content {
  width: 45%;
  padding: 24px;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}

.timeline-year {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Contact block & Grid input */
.contact-section {
  padding: 48px;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-info h3, .contact-form-block h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}

.contact-list li i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.wechat-qr {
  display: flex;
  align-items: center;
  gap: 20px;
}

.wechat-qr i.fa-weixin {
  font-size: 2.2rem;
  color: #07c160;
}

.qr-placeholder {
  width: 90px;
  height: 90px;
  border: 1px solid var(--border-color);
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.qr-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(var(--accent-color-rgb), 0.15);
}

.qr-placeholder i {
  font-size: 2rem;
  color: var(--text-muted);
}

.wechat-qr span {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 150px;
  line-height: 1.4;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.85);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius-sm);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(var(--accent-color-rgb), 0.2);
}

/* ==========================================================================
   WordPress-Style Premium Visual CMS Sidebar Modal Panel
   ========================================================================== */
.cms-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: var(--transition-smooth);
}

.cms-modal.open {
  display: block;
  opacity: 1;
}

.cms-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.cms-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  width: 480px;
  height: 100%;
  background: rgba(8, 12, 30, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid var(--border-color);
  border-radius: 0;
  box-shadow: -10px 0 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cms-modal.open .cms-sidebar {
  transform: translateX(0);
}

.cms-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: relative;
}

.cms-header h3 {
  font-size: 1.25rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cms-header h3 i {
  color: var(--accent-color);
}

.cms-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(var(--accent-color-rgb), 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  align-self: flex-start;
  margin-top: 4px;
}

.cms-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.cms-close-btn:hover {
  color: #ffffff;
}

.cms-tabs {
  display: flex;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow-x: auto;
}

.cms-tab-btn {
  padding: 12px 18px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.cms-tab-btn:hover, .cms-tab-btn.active {
  color: #ffffff;
}

.cms-tab-btn.active {
  border-bottom-color: var(--accent-color);
  background: rgba(var(--accent-color-rgb), 0.05);
}

.cms-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cms-section {
  display: none;
}

.cms-section.active {
  display: block;
}

.cms-section h4 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  padding-bottom: 10px;
}

.cms-form-group {
  margin-bottom: 20px;
}

.cms-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.cms-form-group input[type="text"], .cms-form-group input[type="email"], .cms-form-group textarea, .cms-form-group select {
  width: 100%;
  padding: 10px 14px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius-sm);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.cms-form-group input:focus, .cms-form-group textarea:focus, .cms-form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
}

.cms-select-full {
  background: rgba(var(--accent-color-rgb), 0.1) !important;
  border-color: rgba(var(--accent-color-rgb), 0.3) !important;
  font-weight: 600;
}

.color-picker-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.color-picker-row input[type="color"] {
  width: 44px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.color-picker-row input[type="text"] {
  flex: 1;
  font-family: monospace;
}

.cms-tip {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.stats-row {
  display: flex;
  gap: 8px;
}

.cms-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Floating visual CMS controller gear trigger button */
#btn-open-cms {
  animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(0, 160, 233, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 160, 233, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 160, 233, 0); }
}


/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #122a88;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
}

.footer-map {
  margin-bottom: 60px;
}

.footer-brand-info h4 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-slogan {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-brief {
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer-map h5 {
  color: #ffffff;
  font-size: 0.5rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-map h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
}

.footer-contact-info li i {
  color: var(--accent-color);
  margin-top: 3px;
}

/* Seeyon-Style Elegant Footer Components */
.footer-highlights {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 50px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.highlight-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 160, 233, 0.1);
  border: 1px solid rgba(0, 160, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent-color);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.highlight-item:hover .highlight-icon-box {
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: var(--glow-shadow);
  transform: translateY(-3px);
}

.highlight-text-box h6 {
  color: #ffffff;
  font-size: 0.45rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.highlight-text-box p {
  color: var(--text-muted);
  font-size: 0.35rem;
  line-height: 1.4;
}

.footer-contact-col {
  display: block;
  text-align: left;
}

.footer-contact-tip {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.footer-qr-container {
  display: flex;
  gap: 16px;
  margin: 4px 0;
}

.qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.qr-code-placeholder {
  width: 80px;
  height: 80px;
  background: #0a164d;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 2.2rem;
  transition: var(--transition-smooth);
}

.qr-code-img {
  width: 100px;
  height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: #ffffff;
  padding: 4px;
  box-sizing: border-box;
  transition: var(--transition-smooth);
  object-fit: cover;
}

.qr-item:hover .qr-code-img {
  border-color: var(--accent-color);
  transform: scale(1.05);
  box-shadow: var(--glow-shadow);
}

.qr-item:hover .qr-code-placeholder {
  border-color: var(--accent-color);
  background: #0d1e67;
  transform: scale(1.05);
  box-shadow: var(--glow-shadow);
}

.qr-item span {
  font-size: 0.85rem;
  color: #475569;
  font-weight: 500;
}

.footer-hotlines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.hotline-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hotline-label {
  font-size: 0.85rem;
  color: #475569;
  font-weight: 500;
}

.hotline-number {
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
}

.hotline-number:hover {
  color: #ffffff;
  text-shadow: var(--glow-shadow);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 30px;
}

.footer-bottom p {
  font-size: 0.35rem;
  color: var(--text-muted);
}


/* ==========================================================================
   Responsive Grid Adaptations (Media Queries)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title { font-size: 3rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-profile { flex-direction: column; padding: 30px; }
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(18, 42, 136, 0.08);
    padding: 30px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-link {
    width: 100%;
    font-size: 1.1rem;
    color: #334155 !important;
  }

  .nav-toggle {
    display: block;
  }

  .nav-actions {
    display: none; /* simple mobile design */
  }
}

@media (min-width: 1025px) and (max-width: 1350px) {
  .nav-link {
    padding: 0 10px !important;
    font-size: 0.85rem !important;
    gap: 4px !important;
  }
  .nav-link::after {
    width: calc(100% - 20px) !important;
  }
  .nav-list {
    gap: 4px !important;
  }
  #btn-header-contact {
    padding: 6px 10px !important;
    font-size: 0.8rem !important;
  }
}

@media (max-width: 768px) {

  .hero-container {
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
  }

  .hero-info {
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 30px auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .grid-5 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  
  .solutions-teaser-layout {
    flex-direction: column;
  }

  .timeline-container::before {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-content {
    width: calc(100% - 40px);
    margin-left: 40px;
    text-align: left !important;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .adv-list {
    grid-template-columns: 1fr;
  }

  .honors-masonry {
    grid-template-columns: 1fr;
  }

  .cms-sidebar {
    width: 100%;
  }
}

/* ==========================================================================
   Seeyon-Style Dropdown Megamenu
   ========================================================================== */
.mega-dropdown {
  position: static !important; /* Allow panel to span full width */
}

.megamenu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(30px) !important;
  -webkit-backdrop-filter: blur(30px) !important;
  border-top: 1px solid rgba(0, 160, 233, 0.2) !important;
  border-bottom: 2px solid var(--accent-color) !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg) !important;
  padding: 40px 0;
  box-shadow: 0 20px 50px rgba(18, 42, 136, 0.12) !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(15px);
  z-index: 999;
  /* Hover hide delay (0.5s) on opacity, transform, visibility, and pointer-events to prevent accidental dismissal */
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, visibility 0s linear 0.5s, pointer-events 0s linear 0.5s;
}

.megamenu-panel::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
  pointer-events: auto;
  z-index: 10;
}

.dropdown:hover .megamenu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  /* No delay when hovering in */
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s;
}

.mega-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 60px;
}

.mega-left {
  border-right: 1px solid rgba(0, 160, 233, 0.15);
  padding-right: 40px;
}

.mega-left h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-left p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.mega-search-box {
  display: flex;
  background: rgba(18, 42, 136, 0.05);
  border: 1px solid rgba(0, 160, 233, 0.2);
  border-radius: var(--border-radius-sm);
  padding: 4px;
  margin-bottom: 16px;
  transition: var(--transition-fast);
}

.mega-search-box:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(0, 160, 233, 0.2);
  background: #ffffff;
}

.mega-search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--primary-color);
  outline: none;
}

.mega-search-box button {
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
}

.mega-search-hints {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mega-hint {
  color: var(--accent-color);
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(0, 160, 233, 0.08);
}

.mega-hint:hover {
  background: var(--accent-color);
  color: #ffffff;
}

.mega-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mega-col h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0, 160, 233, 0.15) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  box-sizing: border-box;
}

.mega-col h5 i {
  color: var(--accent-color);
  font-size: 0.95rem;
  width: 20px;
  height: 20px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-col ul {
  list-style: none;
}

.mega-col ul li {
  margin-bottom: 10px;
}

.mega-col ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.mega-col ul li a i {
  color: var(--accent-color);
  font-size: 0.85rem;
  width: 18px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-col ul li a:hover {
  background: rgba(0, 160, 233, 0.08);
  color: var(--primary-color);
  transform: translateX(5px);
}


/* ==========================================================================
   Premium Auto-Playing Banner Carousel Slider
   ========================================================================== */
/* ==========================================================================
   Premium Auto-Playing Banner Carousel Slider (Seeyon style)
   ========================================================================== */
.hero-showcase-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent; /* Seamless blend with body & running particles underneath */
  padding: 80px 0 100px 0;
  border-bottom: 1px solid rgba(0, 160, 233, 0.08);
}

.hero-showcase-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

.showcase-badge {
  background: rgba(0, 160, 233, 0.08) !important;
  border: 1px solid rgba(0, 160, 233, 0.25) !important;
  color: #00a0e9 !important;
  margin-bottom: 16px;
  display: inline-block;
}

.hero-showcase-title {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto 16px auto;
  text-shadow: none;
  text-align: center;
}

.hero-showcase-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.product-carousel-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  padding: 0 60px;
}

.product-carousel-viewport {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.product-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Product Showcase Marquee Mode */
.product-carousel-track.marquee-active {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: productMarqueeLeft 40s linear infinite;
  transition: none !important; /* Disable any JS transition overrides */
  transform: none !important; /* Disable any JS transform overrides */
}

/* Pause marquee on hover */
.product-carousel-viewport:hover .product-carousel-track.marquee-active {
  animation-play-state: paused;
}

@keyframes productMarqueeLeft {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.product-carousel-track.marquee-active .product-card-window {
  width: 360px; /* Fixed width for seamless scrolling track */
  flex-shrink: 0;
}

/* Hide navigation buttons when in marquee mode */
.product-carousel-wrapper .hero-carousel-btn {
  display: none !important;
}

@media (max-width: 768px) {
  .product-carousel-track.marquee-active .product-card-window {
    width: 280px; /* Slightly narrower cards on mobile */
  }
}

.product-card-window {
  flex-shrink: 0;
  width: calc((100% - 48px) / 3); /* 3 items visible side-by-side */
  background: #ffffff;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.product-card-window:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.card-img-container {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f3f7fc;
  border-bottom: 1px solid rgba(0, 160, 233, 0.08);
}

.card-static-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card-window:hover .card-static-img {
  transform: scale(1.06);
}

.card-text-content {
  padding: 16px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-top: 1px solid rgba(0, 160, 233, 0.06);
}

.card-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-color);
  background: rgba(0, 160, 233, 0.08);
  padding: 6px 14px;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.product-card-window .btn {
  margin-top: 0;
  padding: 6px 14px;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 160, 233, 0.2);
  color: #0e1b40;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-carousel-btn:hover {
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: var(--glow-shadow);
  border-color: var(--accent-color);
}

.hero-carousel-btn.prev {
  left: 0;
}

.hero-carousel-btn.next {
  right: 0;
}

/* Responsiveness for cards */
@media (max-width: 1024px) {
  .product-card-window {
    width: calc((100% - 24px) / 2); /* 2 items visible */
  }
  .hero-showcase-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .product-card-window {
    width: 100%; /* 1 item visible */
  }
  .product-carousel-wrapper {
    padding: 0 45px;
  }
  .hero-carousel-btn.prev {
    left: -5px;
  }
  .hero-carousel-btn.next {
    right: -5px;
  }
  .hero-showcase-title {
    font-size: 1.8rem;
  }
}


/* ==========================================================================
   AI Digital Employee Section
   ========================================================================== */
.section-ai-employee {
  background: radial-gradient(circle at center, rgba(18, 42, 136, 0.25) 0%, transparent 80%);
  padding: 100px 0;
}

.ai-employee-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  background: rgba(18, 42, 136, 0.45) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(0, 160, 233, 0.35) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5) !important;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-top: 40px;
}

.ai-employee-visual {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 160, 233, 0.1) 0%, rgba(8, 18, 60, 0.4) 100%);
  position: relative;
  border-right: 1px solid rgba(0, 160, 233, 0.15);
}

.hologram-grid {
  position: relative;
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hologram-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -110px; /* half of 220px */
  margin-left: -110px; /* half of 220px */
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(0, 160, 233, 0.3);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

.hologram-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -100px; /* half of 200px */
  margin-left: -100px; /* half of 200px */
  width: 200px;
  height: 200px;
  border: 1px solid rgba(0, 160, 233, 0.15);
  border-radius: 50%;
  animation: pulseHolo 3s ease-in-out infinite;
}

@keyframes pulseHolo {
  0% { transform: scale(0.95); opacity: 0.2; }
  50% { transform: scale(1.08); opacity: 0.6; border-color: var(--accent-color); }
  100% { transform: scale(0.95); opacity: 0.2; }
}

.ai-employee-img {
  position: absolute;
  top: 50%;
  left: 50%; /* perfectly centered concentric with the outer rings */
  margin-top: -85px;  /* half of 170px for flawless concentric centering */
  margin-left: -85px; /* half of 170px for flawless concentric centering */
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(0, 160, 233, 0.5);
  box-shadow: 0 8px 30px rgba(0, 160, 233, 0.3);
  z-index: 2;
}

.ai-employee-profile-card {
  padding: 16px 24px;
  width: 100%;
  max-width: 240px; /* Constrain maximum width to keep it perfectly aligned with avatar circle */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background: rgba(8, 18, 60, 0.8) !important;
  border: 1px solid rgba(0, 160, 233, 0.15) !important;
  border-radius: var(--border-radius-md) !important;
}

.ai-employee-profile-card h4 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.profile-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  background: rgba(0, 160, 233, 0.08);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 0px;
  white-space: nowrap;
}

.ai-employee-profile-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.ai-employee-chat-panel {
  display: flex;
  flex-direction: column;
  height: 560px; /* Increased from 520px for optimal spaciousness */
  background: rgba(8, 18, 60, 0.6);
  min-width: 0; /* Prevents grid item content from expanding parent columns horizontally */
}

.chat-header {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(0, 160, 233, 0.25);
  background: linear-gradient(to right, rgba(0, 160, 233, 0.1), transparent);
  position: relative;
}

.chat-avatar-mini {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 160, 233, 0.5);
  box-shadow: 0 4px 10px rgba(0, 160, 233, 0.2);
}

.chat-avatar-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-title-info h5 {
  font-size: 0.95rem;
  color: #ffffff;
}

.chat-title-info span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.chat-status-glow {
  position: absolute;
  right: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00c896;
  box-shadow: 0 0 10px #00c896;
  animation: beacon 2s infinite;
}

@keyframes beacon {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

.chat-body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(8, 18, 60, 0.8);
  min-height: 0; /* Critical flex constraint: prevents flex item from expanding beyond parent height, enabling proper scrollbars */
}

.message {
  max-width: 80%;
  display: flex;
  margin-bottom: 4px;
  animation: chatFadeIn 0.4s ease-out;
}

@keyframes chatFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.message .msg-content {
  padding: 12px 18px;
  border-radius: var(--border-radius-md);
  font-size: 0.9rem;
  line-height: 1.6;
}

.message.msg-ai {
  align-self: flex-start;
}

.message.msg-ai .msg-content {
  background: rgba(18, 42, 136, 0.6);
  border: 1px solid rgba(0, 160, 233, 0.35);
  color: #ffffff;
  border-top-left-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.message.msg-user {
  align-self: flex-end;
}

.message.msg-user .msg-content {
  background: linear-gradient(135deg, var(--accent-color) 0%, rgba(0, 160, 233, 0.6) 100%);
  color: #ffffff;
  border-top-right-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 160, 233, 0.25);
}

.chat-typing-indicator {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(18, 42, 136, 0.6);
  border: 1px solid rgba(0, 160, 233, 0.35);
  padding: 12px 20px;
  border-radius: var(--border-radius-md);
  border-top-left-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.chat-typing-indicator span {
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
  display: inline-block;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.chat-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

.chat-suggested-queries {
  padding: 12px 20px;
  background: rgba(8, 18, 60, 0.95);
  border-top: 1px solid rgba(0, 160, 233, 0.3);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
}

.chat-suggested-queries::-webkit-scrollbar {
  height: 4px;
}

.chat-query-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 99px;
  background: rgba(0, 160, 233, 0.12);
  border: 1px solid rgba(0, 160, 233, 0.35);
  color: var(--accent-color);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chat-query-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-1px);
}

.chat-input-area {
  padding: 16px 24px 24px 24px; /* Symmetric, clean and premium padding */
  background: rgba(8, 18, 60, 0.95);
  border-top: 1px solid rgba(0, 160, 233, 0.3);
  display: flex;
  gap: 12px;
  align-items: center;
}

.chat-input-area input {
  flex: 1;
  max-width: calc(100% - 130px); /* Limit input width to guarantee a fixed 130px safe zone, perfectly resolving cut-off button issues */
  min-width: 0;
  border: 1px solid rgba(0, 160, 233, 0.3);
  border-radius: var(--border-radius-sm);
  padding: 12px 18px;
  font-family: var(--font-primary);
  font-size: 0.88rem;
  color: #ffffff;
  outline: none;
  background: rgba(8, 18, 60, 0.8);
  transition: var(--transition-fast);
}

.chat-input-area input:focus {
  border-color: var(--accent-color);
  background: rgba(8, 18, 60, 0.95);
  box-shadow: 0 0 10px rgba(0, 160, 233, 0.25);
}

.chat-input-area button {
  padding: 12px 24px;
  flex-shrink: 0;
}


/* ==========================================================================
   Cases Search & Filtering Center SPA View
   ========================================================================== */
.cases-header-banner {
  background: radial-gradient(circle at top, rgba(18, 42, 136, 0.45) 0%, rgba(8, 18, 60, 0.95) 100%);
  padding: 80px 0 40px 0;
  border-bottom: 1px solid rgba(0, 160, 233, 0.3);
}

.cases-filter-workbench {
  padding: 32px;
  background: #ffffff !important;
  border: 1px solid #eaeaea !important;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  margin-bottom: 40px;
}

.search-bar-row {
  display: flex;
  align-items: center;
  background: rgba(8, 18, 60, 0.8);
  border: 1px solid rgba(0, 160, 233, 0.3);
  border-radius: var(--border-radius-sm);
  padding: 6px 18px;
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.search-bar-row:focus-within {
  border-color: var(--accent-color);
  background: rgba(8, 18, 60, 0.95);
  box-shadow: 0 0 12px rgba(0, 160, 233, 0.25);
}

.search-bar-row .search-icon {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-right: 12px;
}

.search-bar-row input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 0;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: #ffffff;
  outline: none;
}

.search-bar-row button {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 4px;
}

.filter-categories-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 10px;
}

.filter-row {
  display: flex;
  align-items: center;
}

.filter-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  min-width: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-label i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(0, 160, 233, 0.2);
  color: var(--text-muted);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(0, 160, 233, 0.12);
  color: #ffffff;
  border-color: var(--accent-color);
}

.filter-btn.active {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
  box-shadow: 0 4px 10px rgba(0, 160, 233, 0.2);
}

.cases-search-results-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.cases-search-results-meta span {
  font-size: 1.1rem;
  margin: 0 4px;
}

.case-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.case-card h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-top: 12px;
  margin-bottom: 8px;
}

.case-card .case-company {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.case-card .case-brief {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.case-card .case-result {
  font-size: 0.85rem;
  font-weight: 700;
  color: #00c896;
  background: rgba(0, 200, 150, 0.08);
  border: 1px solid rgba(0, 200, 150, 0.2);
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-card .case-result i {
  font-size: 0.9rem;
}


/* ==========================================================================
   Responsive Adaptation for New Sections
   ========================================================================== */
@media (max-width: 992px) {
  .mega-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .mega-left {
    border-right: none;
    border-bottom: 1px solid rgba(0, 160, 233, 0.15);
    padding-right: 0;
    padding-bottom: 20px;
  }
  
  .ai-employee-grid {
    grid-template-columns: 1fr;
  }
  
  .ai-employee-visual {
    border-right: none;
    border-bottom: 1px solid rgba(0, 160, 233, 0.15);
    padding: 30px 20px;
  }
  
  .filter-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .filter-label {
    margin-bottom: 4px;
  }
}

@media (max-width: 768px) {
  .hero-carousel {
    min-height: 720px;
    padding: 30px 0;
  }
  
  .hero-carousel-btn {
    display: none; /* Hide arrows on small screens, rely on dots */
  }
  
  .carousel-slide .hero-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .carousel-slide .hero-buttons {
    justify-content: center;
  }
  
  .carousel-slide .hero-visual {
    max-width: 100%;
  }
}

/* ==========================================================================
   Upgraded Sitemap-Aligned Components
   ========================================================================== */
.about-news-events-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  width: 100%;
}

.news-card-mini:hover, .event-card-mini:hover, .resource-item:hover, .course-card-mini:hover {
  background: rgba(0, 160, 233, 0.08) !important;
  border-color: var(--accent-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 160, 233, 0.08);
}

.qa-item:hover {
  background: rgba(0, 160, 233, 0.08) !important;
  border-color: var(--accent-color) !important;
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .about-news-events-grid {
    grid-template-columns: 1fr;
  }
  
  .community-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  
  .support-interactive-layout {
    grid-template-columns: 1fr !important;
  }
  
  #support-panel-forum {
    grid-column: span 1 !important;
  }
}

/* ==========================================================================
   Seeyon Style Authority Recognition Section
   ========================================================================== */
.stats-recognition-section {
  background: #ffffff !important;
  color: #333333 !important;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-recognition-section .section-title {
  color: #111111 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  font-weight: 800;
  font-size: 2.4rem;
  margin-bottom: 40px;
}

.recognition-board {
  max-width: 1200px;
  margin: 0 auto;
}

.recognition-row {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}

.recognition-row.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
}

.recognition-row.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.recognition-row.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.recognition-divider-line {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 20px 0;
  width: 100%;
}

/* Big Stats Cards */
.recognition-big-card {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 40px;
  background: #ffffff;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.big-num-wrapper {
  flex-shrink: 0;
}

.recognition-big-num {
  font-family: 'Outfit', sans-serif;
  font-size: 6.5rem;
  font-weight: 900;
  line-height: 1;
  display: inline-block;
}

.recognition-big-num.color-purple {
  background: linear-gradient(135deg, #6c5ce7 0%, #3b5998 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.recognition-big-num.color-orange {
  background: linear-gradient(135deg, #ff7675 0%, #d63031 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.big-card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.big-card-text h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0;
}

.source-label {
  font-size: 0.85rem;
  color: #888888;
}

/* Mid Stats Cards */
.recognition-mid-card {
  text-align: center;
  padding: 15px;
  position: relative;
}

.mid-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 8px;
  line-height: 1;
}

.mid-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #555555;
}

/* Small Stats Cards */
.recognition-small-card {
  text-align: center;
  padding: 15px;
}

.small-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 6px;
  line-height: 1;
}

.small-label {
  font-size: 0.9rem;
  color: #666666;
  font-weight: 500;
}

/* Row borders/dividers inside grids for middle and bottom rows */
.recognition-row.grid-3 .recognition-mid-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.recognition-row.grid-4 .recognition-small-card {
  position: relative;
}

.recognition-row.grid-4 .recognition-small-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.recognition-row.grid-2 .recognition-big-card:first-child {
  position: relative;
}

.recognition-row.grid-2 .recognition-big-card:first-child::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

/* Responsive styles */
@media (max-width: 992px) {
  .recognition-row.grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .recognition-row.grid-2 .recognition-big-card:first-child::after {
    display: none;
  }
  .recognition-row.grid-3 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .recognition-row.grid-3 .recognition-mid-card:not(:last-child)::after {
    display: none;
  }
  .recognition-row.grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .recognition-row.grid-4 .recognition-small-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .recognition-row.grid-4 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* ==========================================================================
   Seeyon Style Solutions Floating Cards Layout
   ========================================================================== */
.section-solutions-teaser {
  background: transparent !important; /* Seamless blend with dynamic running particles */
  padding: 60px 0 40px 0; /* Pulled up by reducing padding */
  position: relative;
  overflow: hidden;
}


.solutions-floating-layout {
  position: relative;
  width: 100%;
  margin-top: 20px; /* Pulled up by reducing margin */
}

.solutions-more-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 15px !important; /* Pulled up by reducing margin */
}

.btn-more-sol {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff !important;
  background: linear-gradient(to right, #122a88, #00a0e9) !important;
  border: none !important;
  padding: 10px 24px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(18, 42, 136, 0.2);
}

.btn-more-sol:hover {
  color: #ffffff !important;
  background: linear-gradient(to right, #10267d, #0093d6) !important;
  box-shadow: 0 6px 20px rgba(18, 42, 136, 0.35);
  transform: translateY(-2px);
}

.solutions-floating-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 500px; /* Reduced from 530px to pull everything up! */
  position: relative;
  max-width: 1450px; /* Increased from 1300px to expand the intervals/gaps! */
  margin: 0 auto;
  width: 100%;
  padding: 0 40px; /* Safety side padding */
}

/* Individual card */
.sol-floating-card {
  position: absolute; /* Enable absolute positioning for fluid horizontal gliding */
  flex-shrink: 0; /* Prevent squishing on smaller desktops */
  width: 240px;
  height: 160px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  overflow: visible; /* Show floating tags */
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); /* Premium hardware-accelerated 3D gliding transition */
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.sol-card-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
}

.sol-card-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 14, 58, 0.95) 0%, rgba(6, 14, 58, 0.25) 60%, transparent 100%);
  z-index: 2;
  transition: background 0.4s ease;
}

.sol-card-badge {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  background: rgba(18, 42, 136, 0.9);
  border: 1px solid rgba(0, 160, 233, 0.4);
  padding: 8px 14px;
  border-radius: 99px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

/* Card positions and rotations with premium spacing (no overlapping!) */
.card-far-left {
  left: calc(10% - 120px);
  transform: translateY(40px) rotate(-10deg);
  z-index: 2;
}

.card-left {
  left: calc(30% - 120px);
  transform: translateY(-20px) rotate(-5deg);
  z-index: 3;
}

.card-center {
  left: calc(50% - 140px);
  z-index: 5;
  width: 280px;
  height: 190px;
  transform: translateY(-60px) scale(1.1);
  box-shadow: 0 20px 50px rgba(0, 160, 233, 0.45);
  border-color: var(--accent-color);
}

.card-right {
  left: calc(70% - 120px);
  transform: translateY(-20px) rotate(5deg);
  z-index: 3;
}

.card-far-right {
  left: calc(90% - 120px);
  transform: translateY(40px) rotate(10deg);
  z-index: 2;
}

.card-hidden {
  opacity: 0;
  pointer-events: none;
  left: 50% !important;
  transform: translateY(100px) scale(0.5) rotate(0deg) !important;
  z-index: 1;
}

/* Floating tags around center card */
.floating-pointer-tag {
  position: absolute;
  z-index: 10;
  background: linear-gradient(135deg, var(--accent-color) 0%, rgba(0, 80, 255, 0.85) 100%);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 160, 233, 0.4);
  pointer-events: none;
  animation: floatTag 3s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.25);
  white-space: nowrap;
  opacity: 0; /* Fade out when not center card to avoid visual clutter */
  transition: opacity 0.4s ease;
}

.card-center .floating-pointer-tag {
  opacity: 1; /* Fade in when card is in center */
  pointer-events: auto;
}

.tag-top-left {
  top: -20px;
  left: -40px;
  animation-delay: 0s;
}

.tag-top-right {
  top: -10px;
  right: -40px;
  animation-delay: 0.7s;
}

.tag-bottom-left {
  bottom: 20px;
  left: -50px;
  animation-delay: 1.4s;
}

@keyframes floatTag {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Bottom text and button wrapper */
.solutions-bottom-title-wrapper {
  margin-top: -35px; /* Pulls the entire block up to fit beautifully closer under the cards */
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.solutions-bottom-title {
  font-size: 1.05rem; /* Exactly the same size as btn-more-sol ("查看更多方案") */
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-align: center;
  display: inline-block; /* Inline block allows absolute auto-centering and precise clip text width */
  max-width: 90%;
  /* Brand-consistent gradient matching "为客户提供定制化数字解决方案" */
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hovers */
.sol-floating-card:hover {
  z-index: 15;
  transform: scale(1.15) translateY(-30px) rotate(0deg) !important;
  border-color: var(--accent-color);
  box-shadow: 0 25px 50px rgba(0, 160, 233, 0.45);
}

.card-center:hover {
  transform: translateY(-90px) scale(1.15) rotate(0deg) !important;
}

.sol-floating-card:hover .sol-card-bg-img {
  transform: scale(1.15);
}

.sol-floating-card:hover .sol-card-badge {
  background: var(--accent-color);
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 160, 233, 0.4);
}

/* Responsive adjustment for floating cards */
@media (max-width: 992px) {
  .solutions-floating-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    gap: 20px;
    padding: 20px;
  }
  
  .sol-floating-card {
    position: static;
    width: 100% !important;
    height: 220px !important;
    transform: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .card-center {
    grid-column: span 2;
    width: 100% !important;
    height: 240px !important;
  }
  
  .floating-pointer-tag {
    display: none; /* Hide tags in mobile grid */
  }
}

@media (max-width: 576px) {
  .solutions-floating-grid {
    grid-template-columns: 1fr;
  }
  .card-center {
    grid-column: span 1;
  }
}
/* ==========================================================================
   Seeyon Style Cases Cards Layout
   ========================================================================== */
.section-cases {
  background: radial-gradient(circle at bottom, rgba(18, 42, 136, 0.2) 0%, transparent 80%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-cases .section-title {
  font-weight: 800;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 12px;
  /* Sync color and gradient with '为客户提供定制化数字解决方案' section-title */
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-cases .section-subtitle {
  color: var(--text-muted); /* Sync color with standard section-subtitle */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

/* Seeyon cases slider track */
.seeyon-cases-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
}

.seeyon-cases-grid {
  display: flex;
  gap: 30px;
  width: max-content;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.seeyon-case-card {
  width: 1000px;
  height: 480px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(12, 37, 131, 0.95) 0%, rgba(8, 26, 125, 0.7) 100%);
  border: 1px solid rgba(0, 160, 233, 0.4);
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
  opacity: 0.45;
  transform: scale(0.92);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.seeyon-case-card.active {
  opacity: 1;
  transform: scale(1);
}

.seeyon-case-card.prev,
.seeyon-case-card.next {
  opacity: 0.65;
  transform: scale(0.95);
}

.seeyon-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--accent-color), #00c896);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.seeyon-case-card.active:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-color);
  box-shadow: 0 20px 50px rgba(0, 160, 233, 0.4);
}

.seeyon-case-card.active:hover::before {
  opacity: 1;
}

/* Horizontal Card Splits */
.case-card-left {
  width: 55%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  position: relative;
}

.case-card-right {
  width: 45%;
  position: relative;
  overflow: hidden;
  /* Premium diagonal cut matching authentic top enterprise layouts */
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  background: #08123c;
}

.case-card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.85;
}

.seeyon-case-card:hover .case-card-bg-img {
  transform: scale(1.06);
}

.case-play-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 160, 233, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 160, 233, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.seeyon-case-card:hover .case-play-btn {
  transform: scale(1.12);
  background: var(--accent-color);
  box-shadow: 0 0 20px rgba(0, 160, 233, 0.7);
}

.case-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(8, 26, 125, 0.4) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.case-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.case-client-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 160, 233, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.1rem;
  border: 1px solid rgba(0, 160, 233, 0.3);
}

.case-client-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

.case-card-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.case-card-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Double metrics */
.case-card-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  margin-bottom: 20px;
}

.case-metric-item {
  display: flex;
  flex-direction: column;
}

.case-metric-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #00c896;
  line-height: 1;
  margin-bottom: 4px;
}

.case-metric-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.case-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case-detail-btn {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-color);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.case-detail-btn i {
  transition: transform 0.2s ease;
}

.seeyon-case-card:hover .case-detail-btn {
  color: #ffffff;
}

.seeyon-case-card:hover .case-detail-btn i {
  transform: translateX(4px);
}

/* Slider indicators/controls */
.cases-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.seeyon-slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.seeyon-slider-arrow:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.08);
}

/* Responsive seeyon cases */
@media (max-width: 1024px) {
  .seeyon-case-card {
    width: 720px;
    height: auto;
    flex-direction: column;
  }
  .case-card-left {
    width: 100%;
    padding: 30px;
  }
  .case-card-right {
    width: 100%;
    height: 250px;
    clip-path: none;
  }
  .case-card-overlay {
    background: linear-gradient(to top, rgba(8, 26, 125, 0.6) 0%, transparent 100%);
  }
}

@media (max-width: 768px) {
  .seeyon-case-card {
    width: calc(100vw - 60px);
    height: auto;
    flex-direction: column;
  }
  .case-card-left {
    width: 100%;
    padding: 24px;
  }
  .case-card-right {
    width: 100%;
    height: 200px;
    clip-path: none;
  }
}

/* ==========================================================================
   Seeyon Style Floating Vertical Navigation Sidebar
   ========================================================================== */
.seeyon-floating-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-20px);
  z-index: 1000;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: none;
  border-radius: 0 6px 6px 0;
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.3s ease;
}

.seeyon-floating-sidebar.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  padding-left: 0;
}

.sidebar-indicator {
  display: none;
}

.sidebar-item {
  display: block;
  padding: 8px 12px 8px 10px;
  font-size: 11px;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-left-color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border-left: 2px solid transparent;
}

.sidebar-item:hover {
  color: #00a0e9;
  background: rgba(0, 160, 233, 0.04);
}

.sidebar-item.active {
  color: #00a0e9;
  font-weight: 400;
  border-left-color: #00a0e9;
}

.sidebar-back-to-top {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid rgba(0, 160, 233, 0.4);
  background: transparent;
  color: #00a0e9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 5px;
  font-size: 10px;
}

.sidebar-back-to-top:hover {
  background: #00a0e9;
  color: #ffffff;
}

/* Hide on mobile screens */
@media (max-width: 1200px) {
  .seeyon-floating-sidebar {
    display: none;
  }
}

/* ==========================================================================
   Seeyon-Style Scrolling Partner Logo Wall Section (价值共创 融合发展)
   ========================================================================== */
.section-partner-wall {
  background: radial-gradient(circle at center, #fbfcfd 0%, #f4f7fc 100%);
  padding: 80px 0 60px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(18, 42, 136, 0.05);
  border-bottom: 1px solid rgba(18, 42, 136, 0.05);
}

.partner-marquee-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 0 40px 0;
  position: relative;
}

/* Blur overlays on left/right edges for premium fading effect */
.partner-marquee-container::before,
.partner-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.partner-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #f4f7fc 0%, transparent 100%);
}

.partner-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #f4f7fc 0%, transparent 100%);
}

.partner-marquee-row {
  width: 100%;
  overflow: hidden;
  display: flex;
  position: relative;
}

.partner-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.track-left {
  animation: marqueeLeft 35s linear infinite;
}

.track-right {
  animation: marqueeRight 35s linear infinite;
}

/* Pause marquee on hover */
.partner-marquee-row:hover .partner-marquee-track {
  animation-play-state: paused;
}

/* Hardware-accelerated 3D marquee translation to avoid tearing */
@keyframes marqueeLeft {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes marqueeRight {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* Logo Card Styling */
.partner-logo-card {
  width: 220px;
  height: 75px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(18, 42, 136, 0.04);
  box-shadow: 0 8px 24px rgba(18, 42, 136, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.partner-logo-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 160, 233, 0.12);
  border-color: rgba(0, 160, 233, 0.2);
}

.partner-logo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  user-select: none;
}

.partner-logo-content .logo-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.partner-logo-card:hover .logo-icon {
  transform: scale(1.1);
}

/* Brand Custom Stylings (Matching authentic brand guides) */
.logo-dingtalk {
  color: #0089ff;
}
.logo-dingtalk .logo-icon {
  color: #0089ff;
}

.logo-unicom {
  color: #e60012;
}
.logo-unicom .logo-icon {
  color: #e60012;
}

.logo-baidu {
  color: #1f3aff;
}
.logo-baidu .logo-icon {
  color: #ff0000;
}

.logo-alicloud {
  color: #ff6a00;
}
.logo-alicloud .logo-icon {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.5rem;
  font-weight: 900;
  color: #ff6a00;
}

.logo-iform {
  color: #007aff;
}
.logo-iform .logo-icon {
  font-weight: 900;
  background: #007aff;
  color: white;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
  line-height: 1.2;
}

.logo-fadada {
  color: #2841bc;
}
.logo-fadada .logo-icon {
  color: #ff5a00;
}

.logo-tencent {
  color: #0052d9;
}
.logo-tencent .logo-icon {
  color: #0052d9;
}

.logo-huawei {
  color: #e60012;
}
.logo-huawei .logo-icon {
  color: #e60012;
}

.logo-ctrip {
  color: #2b77ef;
}
.logo-ctrip .logo-icon {
  color: #ff9a00;
}

.logo-kingdee {
  color: #0066ff;
}
.logo-kingdee .logo-icon {
  color: #0066ff;
}

.logo-sie {
  color: #a41f24;
}
.logo-sie .logo-icon {
  font-weight: 900;
  border-right: 2px solid #a41f24;
  padding-right: 6px;
  font-size: 1.05rem;
}

.logo-commpro {
  color: #0087e0;
}
.logo-commpro .logo-icon {
  color: #0087e0;
}

.logo-kingsoft {
  color: #e02424;
}
.logo-kingsoft .logo-icon {
  color: #e02424;
}

.logo-intsig {
  color: #0b2f8f;
}
.logo-intsig .logo-icon {
  font-weight: 900;
  background: #0b2f8f;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
}

.logo-yonyou {
  color: #df001f;
}
.logo-yonyou .logo-icon {
  font-size: 0.85rem;
  font-weight: 900;
}

.logo-inspur {
  color: #004ea2;
}
.logo-inspur .logo-icon {
  color: #004ea2;
}

/* Adjust marquee speed on small screens for comfortable viewing */
@media (max-width: 768px) {
  .track-left, .track-right {
    animation-duration: 25s;
  }
  .partner-logo-card {
    width: 180px;
    height: 65px;
    border-radius: 14px;
  }
  .partner-logo-content {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   Hainan Gongsheng Official Website Redesign - Redesign & Style Overrides
   ========================================================================== */

/* 1. Transparent Canvas Overlay & Body Base */
body {
  background-color: #ffffff; /* Base page color is white */
  color: #1e293b; /* Base text is charcoal */
}

#neural-canvas {
  opacity: 0.6; /* Subtle glowing floating background elements */
}

/* ==========================================================================
   1. Cover (Hero) Section Redesign (Ultra-Premium Split Layout & Dynamic Effects)
   ========================================================================== */
.hero-showcase-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 95px 0 95px 0;
  background: radial-gradient(circle at 75% 30%, #0a1f5c 0%, #061138 50%, #03081c 100%) !important;
  overflow: hidden;
  border-bottom: none;
  z-index: 1;
}

/* Hide old static hero image background */
.hero-showcase-section::before {
  display: none !important;
}

.hero-showcase-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 160, 233, 0.08) 0%, rgba(3, 8, 28, 0.7) 80%, #03081c 100%) !important;
  z-index: -2 !important;
  pointer-events: none;
}

/* Ambient Floating Lights */
.hero-ambient-lights {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: ambientFloat 12s ease-in-out infinite alternate;
}
.orb-primary { width: 500px; height: 500px; background: #0066ff; top: -10%; left: -5%; }
.orb-cyan { width: 450px; height: 450px; background: #00f2fe; bottom: 10%; right: -5%; animation-delay: -4s; }
.orb-purple { width: 350px; height: 350px; background: #6b11ff; top: 40%; left: 40%; animation-delay: -8s; opacity: 0.3; }

@keyframes ambientFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.1); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* AI Neural Network Canvas */
#neural-canvas {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  pointer-events: none !important;
  opacity: 0.65 !important;
}

/* Three.js 3D Particle Wave Container */
.particle-wave-container {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 520px !important;
  z-index: 2 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

/* Hero Content Container & Grid */
.hero-showcase-container {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: -30px;
}
.hero-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Column Styling */
.hero-content-left {
  text-align: left !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
}
.showcase-badge-wrapper {
  margin-bottom: 20px;
  align-self: flex-start !important;
}
.showcase-badge {
  background: rgba(0, 160, 233, 0.15) !important;
  border: 1px solid rgba(0, 242, 254, 0.35) !important;
  color: #00f2fe !important;
  padding: 5px 14px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
}
.pulsing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00f2fe;
  box-shadow: 0 0 10px #00f2fe;
  animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-main-title {
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1.18;
  color: #ffffff;
  margin: 0 0 14px 0;
  letter-spacing: -1px;
  font-family: 'Outfit', sans-serif;
  align-self: flex-start !important;
  text-align: left !important;
}
.gradient-text {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-sub-slogan {
  font-size: 0.88rem;
  font-weight: 600;
  color: #a5c2f4;
  margin-bottom: 12px;
  align-self: flex-start !important;
  text-align: left !important;
}
.hero-desc-text {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  max-width: 560px;
  align-self: flex-start !important;
  text-align: left !important;
}

/* Action Buttons */
.hero-actions {
  display: flex !important;
  justify-content: flex-start !important;
  gap: 14px;
  align-items: center;
  margin: 0 0 24px 0 !important;
  padding: 0 !important;
  width: auto !important;
  align-self: flex-start !important;
}
.btn-hero {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-hero-primary {
  background: linear-gradient(135deg, #0066ff 0%, #00a0e9 100%);
  color: #ffffff !important;
  box-shadow: 0 12px 35px rgba(0, 160, 233, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0, 242, 254, 0.65);
  background: linear-gradient(135deg, #00a0e9 0%, #00f2fe 100%);
}
.btn-hero-outline {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  backdrop-filter: blur(12px);
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #00f2fe;
  color: #00f2fe !important;
  transform: translateY(-3px);
}

/* High-End Hero Stats */
.hero-live-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-self: flex-start !important;
  width: 100%;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
}
.stat-val {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}
.stat-plus {
  color: #00f2fe;
  font-size: 1.2rem;
  margin-left: 2px;
}
.stat-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   Right Column - Banner Showcase with Breathing & Dynamic Shimmer
   ========================================================================== */
.hero-content-right {
  position: relative;
  width: 100%;
}
.hero-banner-showcase-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Breathing Ring Glow */
.breathing-glow-ring {
  position: absolute;
  width: 90%;
  height: 85%;
  top: 7.5%;
  left: 5%;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.5) 0%, rgba(0, 102, 255, 0.2) 60%, transparent 80%);
  filter: blur(40px);
  z-index: 1;
  animation: ringBreathe 6s ease-in-out infinite;
}
@keyframes ringBreathe {
  0%, 100% { transform: scale(0.96); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* Main Breathing Banner Card */
.breathing-banner-card {
  position: relative;
  width: 100%;
  z-index: 2;
  border-radius: 26px;
  padding: 6px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.5), rgba(0, 160, 233, 0.15), rgba(255, 255, 255, 0.25));
  box-shadow: 0 25px 70px rgba(0, 160, 233, 0.35);
  animation: bannerBreathe 6s ease-in-out infinite;
}
@keyframes bannerBreathe {
  0%, 100% {
    transform: translateY(0px) scale(1.0);
    box-shadow: 0 25px 70px rgba(0, 160, 233, 0.35);
  }
  50% {
    transform: translateY(-14px) scale(1.025);
    box-shadow: 0 35px 95px rgba(0, 242, 254, 0.6);
  }
}

.banner-card-frame {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(8, 19, 61, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 242, 254, 0.35);
  display: block;
  line-height: 0;
  box-shadow: inset 0 0 25px rgba(0, 160, 233, 0.2);
}
.banner-card-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 0 30px rgba(0, 160, 233, 0.15);
  pointer-events: none;
  z-index: 2;
}
.banner-main-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.breathing-banner-card:hover .banner-main-image {
  transform: scale(1.05);
}

/* Cyber Shimmer Sweep across Banner Image */
.banner-shimmer-sweep {
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-25deg);
  animation: shimmerSweep 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}
@keyframes shimmerSweep {
  0%, 70% { left: -150%; }
  100% { left: 150%; }
}

/* 3D Floating HUD Telemetry Cards */
.floating-hud-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: rgba(10, 24, 68, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 242, 254, 0.4);
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 242, 254, 0.15);
  color: #ffffff;
}
.hud-top-left {
  top: -25px;
  left: -30px;
  animation: hudFloatLeft 5s ease-in-out infinite reverse;
}
@keyframes hudFloatLeft {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8px, -12px); }
}
.hud-bottom-right {
  bottom: -25px;
  right: -30px;
  animation: hudFloatRight 6s ease-in-out infinite reverse;
}
@keyframes hudFloatRight {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, 12px); }
}
.hud-top-right {
  top: -25px;
  right: -30px;
  animation: hudFloatRightTop 5.5s ease-in-out infinite;
}
@keyframes hudFloatRightTop {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -12px); }
}
.hud-bottom-left {
  bottom: -25px;
  left: -30px;
  animation: hudFloatLeftBottom 6.5s ease-in-out infinite;
}
@keyframes hudFloatLeftBottom {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8px, 12px); }
}

.hud-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.25), rgba(0, 160, 233, 0.5));
  color: #00f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(0, 160, 233, 0.3);
}
.hud-info h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}
.hud-info p {
  margin: 4px 0 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 8px #00ff88;
}

/* ==========================================================================
   Bottom Flowing Ocean Wave Transition
   ========================================================================== */
.hero-bottom-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
  pointer-events: none;
}
.waves-svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}
.wave-parallax > use {
  animation: moveWave 20s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.wave-parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.wave-parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.wave-parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.wave-parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }
@keyframes moveWave {
  0% { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}

/* Responsive Styles for New Hero Section */
@media (max-width: 1199px) {
  .hero-main-title { font-size: 1.9rem; }
  .hud-top-left { left: -10px; }
  .hud-bottom-right { right: -10px; }
  .hud-top-right { right: -10px; }
  .hud-bottom-left { left: -10px; }
}
@media (max-width: 991px) {
  .hero-showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left !important;
  }
  .hero-content-left {
    text-align: left !important;
    align-items: flex-start !important;
  }
  .hero-actions {
    justify-content: flex-start !important;
    align-self: flex-start !important;
  }
  .hero-live-stats {
    justify-content: flex-start !important;
  }
  .hero-desc-text {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .hero-banner-showcase-wrapper {
    max-width: 380px;
  }
}
@media (max-width: 575px) {
  .hero-main-title { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; width: 100%; align-items: flex-start !important; }
  .btn-hero { width: auto; justify-content: flex-start; }
  .hero-live-stats { flex-direction: column; gap: 16px; align-items: flex-start !important; }
  .stat-divider { display: none; }
  .floating-hud-badge { transform: scale(0.85); }
  .hud-top-left { top: -15px; left: -5px; }
  .hud-top-right { top: -15px; right: -5px; }
  .hud-bottom-left { bottom: -15px; left: -5px; }
  .hud-bottom-right { bottom: -15px; right: -5px; }
}

/* ==========================================================================
   2. Navbar / Site Header (顶部菜单栏背景色改为白色，字体变暗)
   ========================================================================== */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(18, 42, 136, 0.08) !important;
  box-shadow: 0 4px 30px rgba(18, 42, 136, 0.05) !important;
}

/* Brand Text color */
.navbar .brand {
  color: #122a88 !important;
}

.navbar .logo-title {
  color: #122a88 !important;
}

.navbar .logo-sub {
  color: #64748b !important;
}

/* Navigation Link text colors & full height stretch hover effects */
.navbar .nav-link {
  position: relative !important;
  color: #334155 !important;
  border-radius: 0 !important;
  padding: 0 16px !important;
  height: 100% !important;
}

/* Beautiful Centered Bottom Accent Indicator */
.navbar .nav-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) scaleX(0) !important;
  width: calc(100% - 32px) !important; /* Matches the text content width exactly, excluding left/right 16px paddings */
  height: 3px !important;
  background-color: #122a88 !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  transform-origin: center !important;
  border-radius: 2px 2px 0 0 !important;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after,
.navbar .dropdown:hover .nav-link::after {
  transform: translateX(-50%) scaleX(1) !important; /* Retain line when dropdown is hovered */
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.navbar .dropdown:hover .nav-link {
  color: #122a88 !important; /* Retain active color when dropdown is hovered */
  background: transparent !important;
  box-shadow: none !important;
}

/* Disable bottom indicator pill for Homepage link */
.navbar .nav-link-home::after {
  display: none !important;
}

.navbar .nav-link i {
  color: #64748b !important;
}

/* Appointment button styling in navbar */
#btn-header-contact {
  background: #122a88 !important;
  color: #ffffff !important;
  border: 1px solid transparent !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  font-size: 0.9rem !important;
  box-shadow: 0 4px 15px rgba(18, 42, 136, 0.2) !important;
  transition: all 0.3s ease !important;
}

#btn-header-contact:hover {
  background: #00a0e9 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 160, 233, 0.4) !important;
}

#btn-open-cms {
  border: 1px solid rgba(18, 42, 136, 0.35) !important;
  color: #122a88 !important;
  background: transparent !important;
  padding: 8px 20px !important;
  font-size: 0.9rem !important;
  transition: all 0.3s ease !important;
}

#btn-open-cms:hover {
  background: rgba(18, 42, 136, 0.06) !important;
  border-color: #122a88 !important;
  color: #122a88 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(18, 42, 136, 0.1) !important;
}

/* Navbar Toggle for Mobile */
.nav-toggle {
  color: #122a88 !important;
}

/* Megamenu Panel dropdown layout (背景改为白色，字体变暗) */
.megamenu-panel {
  background: #ffffff !important;
  border: 1px solid rgba(18, 42, 136, 0.1) !important;
  box-shadow: 0 20px 50px rgba(18, 42, 136, 0.12) !important;
}

.megamenu-panel h4,
.megamenu-panel h5 {
  color: #122a88 !important;
}

.megamenu-panel p {
  color: #64748b !important;
}

.megamenu-panel ul li a {
  color: #475569 !important;
}

.megamenu-panel ul li a:hover {
  color: #122a88 !important;
  background: rgba(18, 42, 136, 0.05) !important;
}

.mega-search-box input {
  background: #f8fafc !important;
  border: 1px solid rgba(18, 42, 136, 0.15) !important;
  color: #0e1b40 !important;
}

.mega-search-hints a {
  color: #64748b !important;
  background: #f1f5f9 !important;
}

.mega-search-hints a:hover {
  color: #122a88 !important;
  background: rgba(18, 42, 136, 0.08) !important;
}

/* ==========================================================================
   3. 产品与场景模块 (产品、场景背景色改为白色，字体及卡片改为高对比度深色)
   ========================================================================== */
.section-products-preview,
.section-why {
  background-color: #ffffff !important; /* Premium White Background */
  background-image: none !important;
  padding: 100px 0 !important;
  position: relative !important;
  border-bottom: 1px solid rgba(18, 42, 136, 0.05) !important;
}

/* Section headers in products and why */
.section-products-preview .section-title,
.section-why .section-title {
  background: linear-gradient(to right, #122a88, #00a0e9) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 800 !important;
  margin-bottom: 15px !important;
  text-shadow: none !important;
}

.section-products-preview .section-subtitle,
.section-why .section-subtitle {
  color: #475569 !important; /* High contrast readable charcoal grey text */
  font-size: 0.88rem !important;
}

/* Premium Light Cards inside Products and Scenes */
.section-products-preview .prod-preview-card,
.section-why .feature-card {
  background: #f8fafc !important; /* Clean light slate background */
  border: 1px solid rgba(18, 42, 136, 0.08) !important;
  box-shadow: 0 8px 30px rgba(18, 42, 136, 0.03) !important;
}

.section-products-preview .prod-preview-card:hover,
.section-why .feature-card:hover {
  background: #ffffff !important;
  border-color: #122a88 !important; /* Gongsheng Logo Blue border on hover */
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 40px rgba(18, 42, 136, 0.1) !important;
}

/* Card titles and desc in products and why */
.section-products-preview .prod-preview-card h4,
.section-why .feature-card h4 {
  color: #0e1b40 !important; /* Clear dark navy/charcoal */
  font-size: 1.12rem !important;
  font-weight: 700 !important;
}

.section-products-preview .prod-preview-card p,
.section-why .feature-card p {
  color: #475569 !important; /* Extremely readable slate grey text */
  font-size: 0.82rem !important;
  line-height: 1.6 !important;
}

.section-products-preview .prod-preview-link {
  background: linear-gradient(to right, #122a88, #00a0e9) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 700 !important;
}

.section-why .feature-icon {
  color: #00a0e9 !important; /* Gongsheng Electric Cyan (Light Blue) icon color */
  font-size: 2.2rem !important;
  margin-bottom: 20px !important;
}

.section-why .feature-card:hover .feature-icon {
  color: #ffffff !important;
}

/* ==========================================================================
   4. 方案、案例、认可、团队以及底部菜单栏 (背景改为白色)
   ========================================================================== */
.section-solutions-teaser,
.section-cases,
.section-partner-wall,
.section-ai-employee,
footer {
  background-color: #ffffff !important; /* Unified White Background */
  background-image: none !important;
  padding: 100px 0 !important;
  position: relative !important;
  border-bottom: 1px solid rgba(18, 42, 136, 0.06) !important;
}

/* Footer padding override to avoid gigantic footer */
footer {
  padding: 80px 0 40px 0 !important;
}

/* Section headers in these white sections */
.section-solutions-teaser .section-title,
.section-cases .section-title,
.section-partner-wall .section-title,
.section-ai-employee .section-title {
  background: linear-gradient(to right, #122a88, #00a0e9) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}

.section-solutions-teaser .section-subtitle,
.section-cases .section-subtitle,
.section-partner-wall .section-subtitle,
.section-ai-employee .section-subtitle {
  color: #475569 !important; /* High contrast charcoal/slate text */
  font-size: 1.0rem !important;
}

/* Sub-headings and descriptions inside solutions section */
.solutions-bottom-title {
  background: linear-gradient(to right, #122a88, #00a0e9) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.btn-more-sol {
  color: #ffffff !important;
  font-weight: 800 !important;
}

/* Cards / Inner Elements in Solutions Teaser */
.sol-card-badge {
  background: #122a88 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
}

.floating-pointer-tag {
  background: #ffffff !important;
  color: #122a88 !important;
  border: 1px solid rgba(18, 42, 136, 0.15) !important;
  box-shadow: 0 4px 15px rgba(18, 42, 136, 0.1) !important;
}

/* Cases Section elements (Seeyon style) */
.seeyon-case-card {
  background: #f8fafc !important;
  border: 1px solid rgba(18, 42, 136, 0.08) !important;
  box-shadow: 0 8px 30px rgba(18, 42, 136, 0.04) !important;
}

.seeyon-case-card:hover {
  box-shadow: 0 15px 40px rgba(18, 42, 136, 0.1) !important;
  border-color: rgba(18, 42, 136, 0.2) !important;
}

.seeyon-case-card h4 {
  color: #0e1b40 !important;
}

.seeyon-case-card p {
  color: #475569 !important;
}

.case-card-stats {
  background: rgba(18, 42, 136, 0.04) !important;
  border-top: 1px solid rgba(18, 42, 136, 0.06) !important;
}

.stat-item span {
  color: #122a88 !important;
}

.stat-item label {
  color: #64748b !important;
}

.cases-slider-controls button {
  background: #ffffff !important;
  color: #122a88 !important;
  border: 1px solid rgba(18, 42, 136, 0.15) !important;
  box-shadow: 0 4px 15px rgba(18, 42, 136, 0.08) !important;
}

.cases-slider-controls button:hover {
  background: #122a88 !important;
  color: #ffffff !important;
  border-color: #122a88 !important;
}

/* Partner Wall (认可) Card Styling */
.section-partner-wall .partner-logo-card {
  background: #f8fafc !important;
  border: 1px solid rgba(18, 42, 136, 0.08) !important;
  box-shadow: 0 8px 24px rgba(18, 42, 136, 0.03) !important;
}

.section-partner-wall .partner-logo-card:hover {
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 0 12px 30px rgba(18, 42, 136, 0.08) !important;
  border-color: rgba(18, 42, 136, 0.2) !important;
}


/* Fading mask elements on the marquee left/right */
.partner-marquee-container::before {
  background: linear-gradient(to right, #ffffff 0%, transparent 100%) !important;
}

.partner-marquee-container::after {
  background: linear-gradient(to left, #ffffff 0%, transparent 100%) !important;
}

/* AI Digital Employee (团队) Section Overrides (背景改为白色) */
.section-ai-employee .ai-employee-grid {
  background: #f8fafc !important;
  border: 1px solid rgba(18, 42, 136, 0.12) !important;
  box-shadow: 0 15px 40px rgba(18, 42, 136, 0.06) !important;
}

.section-ai-employee .ai-employee-visual {
  background: linear-gradient(135deg, rgba(18, 42, 136, 0.03) 0%, rgba(18, 42, 136, 0.08) 100%) !important;
  border-right: 1px solid rgba(18, 42, 136, 0.1) !important;
}

.section-ai-employee .ai-employee-profile-card {
  background: #ffffff !important;
  border: 1px solid rgba(18, 42, 136, 0.1) !important;
}

.section-ai-employee .ai-employee-profile-card h4 {
  color: #0e1b40 !important;
}

.section-ai-employee .profile-tag {
  color: #475569 !important;
  background: rgba(18, 42, 136, 0.04) !important;
}

/* Chat Panel elements in Team */
.chat-header {
  border-bottom: 1px solid rgba(18, 42, 136, 0.1) !important;
  background: linear-gradient(to right, rgba(18, 42, 136, 0.04), transparent) !important;
}

.chat-title-info h5 {
  color: #0e1b40 !important;
}

.chat-title-info span {
  color: #64748b !important;
}

.chat-body {
  background: #ffffff !important;
}

.chat-body .message.msg-ai .msg-content {
  background: #f1f5f9 !important;
  color: #1e293b !important;
  border: 1px solid rgba(18, 42, 136, 0.08) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}

.chat-body .message.msg-user .msg-content {
  background: #122a88 !important;
  color: #ffffff !important;
}

.chat-suggested-queries .chat-query-btn {
  background: #f8fafc !important;
  color: #122a88 !important;
  border: 1px solid rgba(18, 42, 136, 0.15) !important;
}

.chat-suggested-queries .chat-query-btn:hover {
  background: #122a88 !important;
  color: #ffffff !important;
  border-color: #122a88 !important;
}

.chat-input-wrapper {
  background: #f8fafc !important;
  border-top: 1px solid rgba(18, 42, 136, 0.1) !important;
}

.chat-input-wrapper input {
  background: #ffffff !important;
  border: 1px solid rgba(18, 42, 136, 0.15) !important;
  color: #0e1b40 !important;
}

.chat-input-wrapper button {
  background: #122a88 !important;
  color: #ffffff !important;
}

.chat-input-wrapper button:hover {
  background: #0e1b40 !important;
}

/* ==========================================================================
   5. Footer & Bottom Menu (底部菜单栏改为白色)
   ========================================================================== */
.footer-top {
  border-bottom: 1px solid rgba(18, 42, 136, 0.08) !important;
}

.footer-highlights {
  border-bottom: 1px solid rgba(18, 42, 136, 0.08) !important;
  padding-bottom: 40px !important;
  margin-bottom: 40px !important;
}

.footer-map h5 {
  color: #122a88 !important; /* Gongsheng logo blue */
  font-weight: 700 !important;
}

.highlight-text-box h6 {
  color: #122a88 !important; /* Gongsheng Brand Deep Blue */
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  margin-bottom: 6px !important;
}

.highlight-text-box p {
  color: #475569 !important; /* Slate grey for readability on white background */
  font-size: 0.8rem !important;
  line-height: 1.5 !important;
}

.highlight-icon-box {
  background: transparent !important;
  border: 1px solid #cbd5e1 !important; /* Slate border */
  color: #475569 !important; /* Slate color */
}

.highlight-icon-box svg {
  width: 24px;
  height: 24px;
  display: block;
}

.highlight-item:hover .highlight-icon-box {
  background: rgba(18, 42, 136, 0.05) !important;
  border-color: #122a88 !important;
  color: #122a88 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(18, 42, 136, 0.1);
}

footer, .footer {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  border-top: none !important;
  position: relative;
  overflow: hidden;
  padding: 70px 0 40px 0 !important;
}

/* Subtle radial background glow for tech-aesthetic */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 160, 233, 0.02) 0%, rgba(0, 160, 233, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

/* Footer Map Grid with customized column widths */
.footer-map {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) 1.25fr !important;
  gap: 20px !important;
  margin-bottom: 40px !important;
  position: relative;
  z-index: 2;
}

/* Vertical dividers to fill empty space and add structure */
.footer-map > div:not(:last-child) {
  border-right: none !important;
  padding-right: 0 !important;
}

/* Headings (h5) with a custom gradient underline */
.footer-map h5 {
  color: #122a88 !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  margin-bottom: 24px !important;
  position: relative !important;
  padding-bottom: 10px !important;
  display: inline-block !important;
}

.footer-map h5::after {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 24px !important;
  height: 2px !important;
  background: linear-gradient(90deg, #122a88, #00a0e9) !important;
  border-radius: 2px !important;
}

/* Link items styling with slide & dot animations on hover */
.footer-links a {
  color: #475569 !important;
  font-size: 0.8rem !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 4px;
  background-color: #00a0e9;
  border-radius: 50%;
  margin-right: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #122a88 !important;
  transform: translateX(6px) !important;
}

.footer-links a:hover::before {
  width: 4px;
  margin-right: 8px;
  opacity: 1;
}

/* Highlighted ecosystem link custom border on white background */
.footer-links li[style*="border-top"] {
  border-top-color: rgba(18, 42, 136, 0.08) !important;
}

/* Contact Column styled as a distinct floating card */
/* Contact Column styled as a distinct floating card */
.footer-contact-col {
  /* Removed styling to align with other columns */
}

.footer-contact-col:hover {
  /* Removed hover styling */
}

/* Removed specific h5 styling so it inherits standard footer-map h5 styling */

.footer-contact-tip {
  font-size: 0.85rem !important;
  color: #475569 !important;
  line-height: 1.6 !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

.footer-qr-container {
  display: flex !important;
  gap: 16px !important;
  margin-bottom: 2px !important;
}

.qr-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
}

.qr-code-img {
  width: 100px !important;
  height: 100px !important;
  border: 1px solid rgba(18, 42, 136, 0.08) !important;
  border-radius: 6px !important;
  padding: 3px !important;
  background: #ffffff !important;
  transition: all 0.3s ease !important;
}

.qr-item:hover .qr-code-img {
  transform: translateY(-6px) scale(1.25) !important;
  border-color: #00a0e9 !important;
  box-shadow: 0 8px 20px rgba(0, 160, 233, 0.22) !important;
}

.qr-item span {
  font-size: 0.85rem !important;
  color: #475569 !important;
  font-weight: 500 !important;
}

.footer-hotlines {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  border-top: 1px dashed rgba(18, 42, 136, 0.08) !important;
  padding-top: 22px !important;
}

.footer-hotlines .hotline-item {
  margin-top: 0 !important; /* Clear inline margin-top from footer.php */
}

.hotline-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 1px !important;
}

.hotline-label {
  font-size: 0.85rem !important;
  color: #475569 !important;
  font-weight: 500 !important;
}

.hotline-number {
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: #475569 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.hotline-number:hover {
  color: #00a0e9 !important;
}

.footer-email-link {
  color: #475569 !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.footer-email-link:hover {
  color: #00a0e9 !important;
}

.footer-bottom {
  color: #64748b !important;
  border-top: 1px solid rgba(18, 42, 136, 0.05) !important;
  padding-top: 20px !important;
  margin-top: 20px !important;
  text-align: center !important;
}

.footer-bottom p {
  text-align: center !important;
  margin: 0 auto !important;
  display: inline-block !important;
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
  .footer-map {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
  }
  
  .footer-map > div:not(:last-child) {
    border-right: none !important;
    padding-right: 0 !important;
    border-bottom: 1px solid rgba(18, 42, 136, 0.05) !important;
    padding-bottom: 16px !important;
  }
  
  .footer-contact-col {
    margin-top: 0 !important;
    grid-column: span 2 !important;
  }
}

@media (max-width: 768px) {
  .footer-map {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  
  .footer-map > div:not(:last-child) {
    border-bottom: 1px solid rgba(18, 42, 136, 0.05) !important;
    padding-bottom: 16px !important;
  }
  
  .footer-contact-col {
    grid-column: span 1 !important;
  }
}



/* ==========================================================================
   Logo Sizing & Navbar Proximity Alignment Overrides
   ========================================================================== */

/* Layout adjustment to align Gongsheng logo close to Home (首页) button, and push CTA actions to the right */
.nav-container {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important; /* Group logo and menu links together on the left */
  gap: 60px !important; /* Beautiful comfortable space between Gongsheng Logo and Home button */
}

.brand {
  margin-right: 0 !important; /* Clear any right margins on the logo brand container */
}

/* Adjust Gongsheng Logo Image size for maximum clarity and definition */
.logo-img {
  height: 52px !important; /* Perfect height to make the royal blue logo text clearly visible */
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* Push navigation action buttons (预约数智评估, CMS) to the far right */
.nav-actions {
  margin-left: auto !important; /* This pushes the buttons to the right edge */
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

/* Responsive adjustment for Mobile view to maintain standard header layout */
@media (max-width: 768px) {
  .nav-container {
    justify-content: space-between !important; /* Logo on left, toggle button on right */
    gap: 0 !important;
  }
  
  .logo-img {
    height: 40px !important; /* Slightly smaller logo on mobile for clean screen spacing */
  }
}

/* ==========================================================================
   Product Detail View: Stacked Architecture Diagram (数字渔业平台架构图)
   ========================================================================== */
.architecture-container {
  padding: 10px 0;
  width: 100%;
}

.arch-blueprint {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  position: relative;
  margin-top: 15px;
}

/* Subtle dashed connection lines in the background between layers */
.arch-blueprint::before {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 50%;
  width: 2px;
  background-image: linear-gradient(to bottom, rgba(0, 82, 217, 0.15) 50%, transparent 50%);
  background-size: 2px 10px;
  z-index: 0;
  pointer-events: none;
}

.arch-layer {
  position: relative;
  background: #f8fafc;
  border: 1px solid rgba(0, 82, 217, 0.08);
  border-radius: 16px;
  padding: 30px 24px 24px 24px;
  box-shadow: 0 4px 20px rgba(18, 42, 136, 0.02);
  z-index: 1;
  transition: all 0.3s ease;
}

.arch-layer:hover {
  border-color: rgba(0, 82, 217, 0.18);
  box-shadow: 0 10px 30px rgba(0, 82, 217, 0.04);
}

.layer-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(135deg, #122a88 0%, #0052d9 100%);
  padding: 6px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(18, 42, 136, 0.15);
}

.layer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  width: 100%;
}

.arch-card {
  background: #ffffff;
  border: 1px solid rgba(0, 82, 217, 0.05);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.arch-card:hover {
  transform: translateY(-5px);
  border-color: #0052d9;
  box-shadow: 0 10px 25px rgba(0, 82, 217, 0.08);
}

.arch-card i {
  color: #0052d9;
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
  transition: transform 0.3s ease;
}

.arch-card:hover i {
  transform: scale(1.15);
}

.arch-card h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0e1b40;
  margin: 0 0 6px 0;
}

.arch-card span {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.4;
  display: block;
}

/* Custom coloring for different layers to create a premium visual hierarchy */
.layer-users { border-left: 4px solid #3b82f6; }
.layer-apps { border-left: 4px solid #10b981; }
.layer-ai { border-left: 4px solid #8b5cf6; }
.layer-iot { border-left: 4px solid #f59e0b; }
.layer-infra { border-left: 4px solid #64748b; }


/* ==========================================================================
   Redesigned Digital Fishery Platform Landing Page Styles
   ========================================================================== */
.product-workbench.fish-landing-active {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* ==========================================================================
   Fullscreen Takeover & Overrides for Digital Fishery Platform
   ========================================================================== */
#view-products.fish-full-screen-active .products-header-banner,
#view-products.fish-full-screen-active #product-tab-headers {
  display: none !important;
}

#view-products.fish-full-screen-active > .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

#view-products.fish-full-screen-active #product-workbench-detail {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Floating Right Dot Navigation (Connected Circles) */
.fish-floating-nav {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: none; /* hidden by default, visible when active */
  flex-direction: column;
  align-items: center; /* perfectly align dots vertically */
  gap: 28px;
  padding: 20px 10px;
}

#view-products.fish-full-screen-active .fish-floating-nav {
  display: flex;
}

.fish-floating-nav .nav-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%); /* perfectly center vertically under the dots */
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: rgba(0, 82, 217, 0.15);
  z-index: 1;
}

.floating-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px; /* fixed size to guarantee straight line alignment */
  height: 16px;
  text-decoration: none;
  z-index: 2;
  position: relative;
  cursor: pointer;
}

.floating-nav-item .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #94a3b8;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.floating-nav-item .label {
  position: absolute;
  right: 32px; /* display label exactly on the left of the dot */
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0, 82, 217, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  pointer-events: none;
}

/* Hover styles */
.floating-nav-item:hover .dot {
  border-color: #0052d9;
  transform: scale(1.15);
  box-shadow: 0 0 8px rgba(0, 82, 217, 0.25);
}

.floating-nav-item:hover .label {
  opacity: 1;
  transform: translateX(0);
}

/* Active styles */
.floating-nav-item.active .dot {
  background: #0052d9;
  border-color: #0052d9;
  box-shadow: 0 0 10px rgba(0, 82, 217, 0.45);
  transform: scale(1.2);
}

.floating-nav-item.active .label {
  opacity: 1;
  color: #0052d9;
  font-weight: 700;
  transform: translateX(0);
}

/* 1. Fullscreen Hero Banner Block */
.fish-banner-fullscreen-sec {
  width: 100%;
  aspect-ratio: 2560 / 825;
  height: auto;
  background: url('assets/images/fishery_banner.png') no-repeat center center / cover;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 0 4.5% 10%;
  border-bottom: 1px solid rgba(0, 82, 217, 0.06);
}

.fish-cta-btn {
  padding: 15px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 99px;
  background: linear-gradient(to right, #122a88, #00a0e9);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 24px rgba(18, 42, 136, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fish-cta-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.fish-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(18, 42, 136, 0.5);
  background: linear-gradient(to right, #0052d9, #00a0e9);
}

.fish-cta-btn:hover i {
  transform: translateX(4px);
}

/* Full-bleed Content Sections with Internal Centered Containers */
.fish-section-fullscreen {
  width: 100%;
  padding: 90px 0;
  border-bottom: 1px solid rgba(0, 82, 217, 0.05);
}

.fish-section-fullscreen:last-of-type {
  border-bottom: none;
}

.fish-sec-header {
  margin-bottom: 50px;
}

.fish-sec-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(to right, #122a88, #00a0e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: 0.5px;
}

.fish-sec-subtitle {
  font-size: 1.05rem;
  color: #475569;
  font-weight: 500;
}

/* 2. Challenges Block */
.fish-sec-challenges {
  background: #ffffff;
}

.fish-challenge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Expanded to 4 columns on full-screen */
  gap: 24px;
}

.fish-challenge-card {
  background: #f8fafc;
  border: 1px solid rgba(0, 82, 217, 0.05);
  border-radius: 16px;
  padding: 30px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.fish-challenge-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 82, 217, 0.08);
  border-color: rgba(0, 82, 217, 0.2);
}

.challenge-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.fish-challenge-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0e1b40;
  margin-bottom: 8px;
}

.challenge-p-sub {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0052d9;
  margin-bottom: 12px;
}

.challenge-p-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #475569;
  text-align: justify;
}

/* 3. Widescreen Architecture Image Presentation */
.fish-sec-architecture {
  background: #f8fafc;
}

.fish-arch-media {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 4%;
  box-sizing: border-box;
}

.fish-arch-img {
  width: 100%;
  max-width: 1400px; /* high-end widescreen presentation, matches banner content area */
  height: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fish-arch-img:hover {
  transform: scale(1.015);
}

/* 4. Timeline style Advantages Block */
.fish-sec-advantages {
  background: #ffffff;
}

.fish-adv-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
}

.fish-adv-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(0, 82, 217, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.fish-adv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #0052d9;
  opacity: 0.6;
}

.fish-adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 82, 217, 0.07);
  background: #ffffff;
  border-color: rgba(0, 82, 217, 0.15);
}

.fish-adv-card:hover::before {
  background: linear-gradient(to bottom, #122a88, #00a0e9);
  opacity: 1;
}

.adv-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 82, 217, 0.08);
  color: #0052d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.fish-adv-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0e1b40;
  margin-bottom: 10px;
}

.fish-adv-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #475569;
  text-align: justify;
}

/* 5. Benchmark Cases Block */
.fish-sec-cases {
  background: #f8fafc;
}

.fish-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fish-case-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 82, 217, 0.06);
  padding: 28px 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.fish-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 82, 217, 0.1);
  border-color: rgba(0, 82, 217, 0.25);
}

.case-header {
  margin-bottom: 20px;
}

.case-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 82, 217, 0.06);
  color: #0052d9;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.fish-case-card h4 {
  font-size: 1.1rem;
  font-weight: 750;
  color: #0e1b40;
  line-height: 1.35;
}

.case-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px dashed rgba(0, 82, 217, 0.1);
  border-bottom: 1px dashed rgba(0, 82, 217, 0.1);
  margin-bottom: 16px;
}

.result-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0052d9;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
}

.metric-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
}

.case-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #475569;
  text-align: justify;
}

/* ==========================================================================
   Responsive Adapters for Full-Screen Layout
   ========================================================================== */
@media (max-width: 1200px) {
  .fish-floating-nav {
    right: 20px;
  }
  
  .fish-challenge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .fish-banner-fullscreen-sec {
    height: auto;
    padding-bottom: 3.5%;
    padding-left: 5%;
  }

  .fish-cta-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .fish-floating-nav {
    display: none !important; /* Hide dot nav on tablet & mobile */
  }

  .fish-section-fullscreen {
    padding: 60px 0;
  }

  .fish-arch-layer {
    flex-direction: column;
  }

  .arch-layer-name {
    width: 100%;
    padding: 16px;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }

  .fish-adv-timeline {
    grid-template-columns: 1fr;
  }

  .fish-case-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .fish-banner-fullscreen-sec {
    height: auto;
    padding-bottom: 3%;
    padding-left: 5%;
  }

  .fish-cta-btn {
    padding: 8px 18px !important;
    font-size: 0.8rem !important;
  }

  .fish-challenge-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .fish-cta-btn {
    padding: 5px 12px !important;
    font-size: 0.65rem !important;
  }
}








/* Footer Services Banner */
.footer-services {
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    background: transparent;
}
.footer-services-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.footer-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}
.footer-service-icon-svg {
    width: 32px;
    height: 32px;
    color: #475569;
    flex-shrink: 0;
}
.footer-service-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #122a88;
    margin: 0 0 5px 0;
}
.footer-service-text p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .footer-services-grid {
        flex-wrap: wrap;
        gap: 30px;
    }
    .footer-service-item {
        flex: 1 1 45%;
    }
}
@media (max-width: 768px) {
    .footer-service-item {
        flex: 1 1 100%;
    }
}

/* Why Gongsheng New Section Styles */
.why-new-container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}
.why-new-left {
    width: 28%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-actual) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
}
.why-new-left-top, .why-new-left-bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
}
.why-new-left-divider {
    height: 1px;
    background: rgba(255,255,255,0.4);
    margin: 0 30px;
}
.why-new-left-number {
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}
.why-new-left-text {
    font-size: 15px;
    opacity: 0.9;
}
.why-new-right {
    width: 72%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.why-new-feature, .why-new-stat {
    padding: 22px 18px;
    text-align: center;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}
.why-new-feature:hover {
    background-color: #fafbfc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    z-index: 1;
}
.why-new-feature:nth-child(4n), .why-new-stat:nth-child(4n) {
    border-right: none;
}
.why-new-stat {
    border-bottom: none;
}
.why-new-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.why-new-icon i {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-actual));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.why-new-title {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}
.why-new-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}
.why-new-stat-text {
    font-size: 13px;
    color: #666;
}

@media (max-width: 1024px) {
    .why-new-left-number { font-size: 42px; }
    .why-new-left-text { font-size: 16px; }
    .why-new-stat-number { font-size: 24px; }
}

@media (max-width: 991px) {
    .why-new-container {
        flex-direction: column;
    }
    .why-new-left, .why-new-right {
        width: 100%;
    }
    .why-new-left {
        flex-direction: row;
    }
    .why-new-left-top, .why-new-left-bottom {
        padding: 30px 20px;
    }
    .why-new-left-divider {
        width: 1px;
        height: auto;
        margin: 20px 0;
    }
    .why-new-right {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-new-stat {
        border-bottom: 1px solid #eee;
    }
    .why-new-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .why-new-feature:nth-child(2n), .why-new-stat:nth-child(2n) {
        border-right: none;
    }
    .why-new-feature:nth-child(odd), .why-new-stat:nth-child(odd) {
        border-right: 1px solid #eee;
    }
}

@media (max-width: 576px) {
    .why-new-left {
        flex-direction: column;
    }
    .why-new-left-divider {
        width: auto;
        height: 1px;
        margin: 0 30px;
    }
    .why-new-right {
        grid-template-columns: 1fr;
    }
    .why-new-feature, .why-new-stat {
        border-right: none !important;
        border-bottom: 1px solid #eee;
    }
    .why-new-stat:last-child {
        border-bottom: none;
    }
}

/* ==========================================================================
   6. Seeyon Prolist Style v2 - Ultra-Premium Products Matrix Page (产品服务二级页面)
   ========================================================================== */
.prolist-page-container {
  background: linear-gradient(135deg, #eff6ff 0%, #f4f8fc 50%, #f0fdf4 100%);
  min-height: 85vh;
  padding: 40px 0 100px 0;
  position: relative;
  overflow: hidden;
}

/* Fullscreen Wide Container for Prolist */
.prolist-fullwidth-container {
  width: 96%;
  max-width: 1840px;
  margin: 0 auto;
  padding: 0 30px;
}

.prolist-page-container::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 160, 233, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.prolist-page-container::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

/* Hero Title Header in Prolist */
.prolist-hero-header {
  text-align: center;
  margin-bottom: 36px;
  padding: 10px 0 20px 0;
  position: relative;
  z-index: 2;
}

.prolist-hero-title {
  font-size: 2.0rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  font-family: 'Outfit', 'PingFang SC', sans-serif;
}

.prolist-hero-subtitle {
  font-size: 0.85rem;
  font-weight: bold;
  color: #64748b;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Glowing Wide Banner Strip (Like Seeyon AI-COP Banner) */
.prolist-banner-strip {
  background: linear-gradient(135deg, #10216b 0%, #1e3c72 50%, #0098e5 100%);
  border-radius: 20px;
  padding: 28px 36px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 45px rgba(0, 160, 233, 0.22);
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.prolist-banner-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  transform: rotate(35deg);
  pointer-events: none;
}

.prolist-banner-info h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.prolist-banner-info p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.prolist-banner-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.prolist-banner-pill {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.prolist-banner-pill:hover {
  background: #ffffff;
  color: #122a88 !important;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Two Column Layout: Left Sidebar + Right Content Matrix */
.prolist-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Sticky Left Sidebar Navigation */
.prolist-sidebar {
  position: sticky;
  top: 100px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 20px 14px;
  box-shadow: 0 15px 35px rgba(18, 42, 136, 0.05);
  border: 1px solid rgba(18, 42, 136, 0.1);
  z-index: 20;
}

.prolist-sidebar-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 14px 12px 14px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 12px;
}

.prolist-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prolist-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.96rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.prolist-nav-item i.nav-icon {
  font-size: 1.15rem;
  width: 26px;
  color: #64748b;
  transition: color 0.25s ease;
}

.prolist-nav-item:hover {
  background: rgba(0, 160, 233, 0.08);
  color: #00a0e9;
  transform: translateX(4px);
}

.prolist-nav-item.active {
  background: linear-gradient(135deg, rgba(0, 160, 233, 0.18) 0%, rgba(18, 42, 136, 0.1) 100%);
  color: #122a88;
  font-weight: 800;
  border-left: 4px solid #00a0e9;
  padding-left: 14px;
  box-shadow: 0 6px 16px rgba(0, 160, 233, 0.1);
}

.prolist-nav-item.active i.nav-icon {
  color: #00a0e9;
}

/* Right Side Content Areas & Cards Matrix */
.prolist-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.prolist-section {
  scroll-margin-top: 110px;
}

.prolist-section + .prolist-section {
  margin-top: 50px;
}

.prolist-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(18, 42, 136, 0.1);
}

.prolist-section-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.prolist-section-title i {
  color: #00a0e9;
}

.prolist-section-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  margin-top: -12px;
  margin-bottom: 24px;
}

/* Header Full-Width Title Card (Like Seeyon "CoMi 智能门户") */
.prolist-header-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 32px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #122a88;
  box-shadow: 0 10px 25px rgba(18, 42, 136, 0.04);
  border: 1px solid rgba(18, 42, 136, 0.08);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

/* 1. Asymmetric 3-Column Layout (Like Seeyon Screenshot 2) */
.prolist-grid-3col {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.prolist-subcard-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.prolist-subcard {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(18, 42, 136, 0.08);
  box-shadow: 0 8px 20px rgba(18, 42, 136, 0.03);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.prolist-subcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(18, 42, 136, 0.1);
  border-color: rgba(0, 160, 233, 0.35);
}

.prolist-subcard h5 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #122a88;
  margin: 0 0 6px 0;
}

.prolist-subcard p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Center Large Spotlight Card (Like Seeyon "功能与场景" Card) */
.prolist-spotlight-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(18, 42, 136, 0.08);
  box-shadow: 0 12px 30px rgba(18, 42, 136, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.spotlight-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ea580c;
  margin-bottom: 20px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.spotlight-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.spotlight-pill i {
  color: #00a0e9;
  font-size: 1rem;
}

.spotlight-pill:hover {
  background: rgba(0, 160, 233, 0.08);
  border-color: rgba(0, 160, 233, 0.35);
  color: #00a0e9;
  transform: translateX(3px);
}

.spotlight-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

.spotlight-footer a {
  color: #00a0e9;
  text-decoration: none;
  transition: color 0.2s ease;
}

.spotlight-footer a:hover {
  color: #122a88;
}

.spotlight-divider {
  color: #cbd5e1;
}

/* 2. Intelligent Products Matrix Layout (Like Seeyon Screenshot 3) */
.prolist-agents-matrix {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 24px;
  align-items: stretch;
}

.pillar-card {
  border-radius: 20px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 2px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.35s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
}

.pillar-card-blue {
  background: linear-gradient(180deg, #0052d9 0%, #00a0e9 100%);
}

.pillar-card-purple {
  background: linear-gradient(180deg, #6d28d9 0%, #8b5cf6 100%);
}

.pillar-card-pink {
  background: linear-gradient(180deg, #c084fc 0%, #a855f7 100%);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
}

.agents-main-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(18, 42, 136, 0.08);
  box-shadow: 0 12px 30px rgba(18, 42, 136, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.agents-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: #0052d9;
  margin-bottom: 20px;
}

.agents-tabs {
  display: flex;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 24px;
}

.agents-tab {
  flex: 1;
  text-align: center;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: all 0.25s ease;
}

.agents-tab.active {
  background: #ffffff;
  color: #122a88;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.agents-pills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.agents-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.85rem;
  color: #334155;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.agents-pill i {
  color: #8b5cf6;
  font-size: 0.9rem;
}

.agents-pill:hover {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.35);
  color: #6d28d9;
  transform: translateY(-2px);
}

.agents-bottom-banner {
  background: linear-gradient(135deg, #a855f7 0%, #f97316 100%);
  border-radius: 16px;
  padding: 22px 28px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
  transition: transform 0.3s ease;
}

.agents-bottom-banner:hover {
  transform: translateY(-3px);
}

.agents-bottom-info h4 {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.agents-bottom-info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* 3. Scenarios & Capabilities 4-Column Grid (Like Seeyon Screenshot 4) */
.scenario-toggle-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}

.scenario-tab-btn {
  padding: 10px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #64748b;
}

.scenario-tab-btn.active {
  background: #0052d9;
  color: #ffffff;
  border-color: #0052d9;
  box-shadow: 0 8px 20px rgba(0, 82, 217, 0.25);
}

.prolist-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.scenario-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(18, 42, 136, 0.08);
  box-shadow: 0 10px 25px rgba(18, 42, 136, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

.scenario-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(18, 42, 136, 0.1);
  border-color: rgba(0, 160, 233, 0.35);
}

.scenario-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
  padding-right: 40px;
}

.scenario-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.scenario-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: absolute;
  top: 20px;
  right: 20px;
  font-weight: 800;
}

.badge-blue { background: rgba(0, 82, 217, 0.1); color: #0052d9; }
.badge-orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.badge-green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.badge-cyan { background: rgba(6, 182, 212, 0.1); color: #06b6d4; }
.badge-yellow { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.badge-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.scenario-card-gradient {
  background: linear-gradient(135deg, #08123c 0%, #1e3c72 100%);
  color: #ffffff !important;
  border-color: rgba(0, 160, 233, 0.3);
}

.scenario-card-gradient h4 { color: #ffffff !important; }
.scenario-card-gradient p { color: rgba(255, 255, 255, 0.85) !important; }

/* Section 4: Platform Capabilities Cards */
.prolist-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(18, 42, 136, 0.08);
  box-shadow: 0 10px 25px rgba(18, 42, 136, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.prolist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(18, 42, 136, 0.1);
  border-color: rgba(0, 160, 233, 0.35);
}

.prolist-card .prolist-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.prolist-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #122a88;
  margin: 0;
  white-space: nowrap;
}

/* Right Fixed Floating Quick-Action Sidebar (Like Seeyon Floating Bar) */
.prolist-floating-bar {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.floating-btn {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(18, 42, 136, 0.12);
  box-shadow: 0 10px 25px rgba(18, 42, 136, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #334155 !important;
  text-decoration: none !important;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.floating-btn i {
  font-size: 1.4rem;
  color: #00a0e9;
  transition: all 0.3s ease;
}

.floating-btn:hover {
  background: linear-gradient(135deg, #122a88 0%, #00a0e9 100%);
  color: #ffffff !important;
  transform: scale(1.08) translateX(-6px);
  box-shadow: 0 15px 35px rgba(0, 160, 233, 0.35);
  border-color: transparent;
}

.floating-btn:hover i {
  color: #ffffff;
  transform: scale(1.15);
}

.floating-btn.primary-action {
  background: linear-gradient(135deg, #0052d9 0%, #00a0e9 100%);
  color: #ffffff !important;
  border: none;
  box-shadow: 0 12px 28px rgba(0, 160, 233, 0.4);
}

.floating-btn.primary-action i {
  color: #ffffff;
}

.floating-btn.primary-action:hover {
  background: linear-gradient(135deg, #122a88 0%, #0052d9 100%);
  box-shadow: 0 18px 40px rgba(0, 82, 217, 0.5);
}

/* Responsive Adaptations */
@media (max-width: 1200px) {
  .prolist-grid-3col { grid-template-columns: 1fr 1fr; }
  .prolist-agents-matrix { grid-template-columns: 1fr; }
  .prolist-grid-4col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .prolist-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .prolist-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }
  
  .prolist-nav-list {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  
  .prolist-nav-item {
    white-space: nowrap;
    border-left: none !important;
    border-bottom: 3px solid transparent;
  }
  
  .prolist-nav-item.active {
    border-bottom-color: #00a0e9;
    border-left: none !important;
  }
  
  .prolist-grid-3col { grid-template-columns: 1fr; }
  .prolist-grid-4col { grid-template-columns: 1fr; }
  
  .prolist-floating-bar {
    right: 12px;
    top: auto;
    bottom: 24px;
    transform: none;
    flex-direction: row;
  }
  
  .floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 0.65rem;
  }
  
  .floating-btn i {
    font-size: 1.1rem;
  }
}

/* Make pages wide container for desktop screens (Responsive Full Screen Layout with Margins) */
@media (min-width: 1200px) {
  body:not(.home):not(.front-page) .prolist-page-container .container,
  body:not(.home):not(.front-page) main.main-content > .container,
  body:not(.home):not(.front-page) main.main-content .container {
    width: 90% !important;
    max-width: 1440px !important;
    padding: 0 !important;
  }
}

/* Premium Header Banner for Products Page */
.prolist-header-banner {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px 0;
  text-align: left;
  background: linear-gradient(180deg, rgba(8, 18, 60, 0.4) 0%, rgba(8, 18, 60, 0.9) 100%), url('/wp-content/themes/gongsheng/assets/images/gongsheng_banner.png') center 50%/cover no-repeat;
  z-index: 1;
}

/* Seeyon Style Floating Vertical Navigation Sidebar for Product Page */
@media (min-width: 993px) {
  /* Change the products layout from 2-column grid to full centered content */
  body.page-template-page-products .prolist-layout,
  body.post-type-archive-gongsheng_product .prolist-layout {
    display: block !important;
    position: relative;
  }

  /* Center the product content on the page and add padding to avoid sidebar overlap */
  body.page-template-page-products .prolist-content,
  body.post-type-archive-gongsheng_product .prolist-content {
    margin: 40px auto 0 auto !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 80px !important; /* Guard space for floating sidebar */
  }

  /* Dock the sidebar fixed on the left viewport edge, matching the homepage style */
  body.page-template-page-products .prolist-sidebar,
  body.post-type-archive-gongsheng_product .prolist-sidebar {
    position: fixed !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 76px !important;
    height: auto !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-left: none !important;
    border-radius: 0 8px 8px 0 !important;
    padding: 12px 0 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
    z-index: 1000 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
  }

  body.page-template-page-products .prolist-sidebar.visible,
  body.post-type-archive-gongsheng_product .prolist-sidebar.visible {
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Remove background pseudo-elements */
  body.page-template-page-products .prolist-sidebar::before,
  body.post-type-archive-gongsheng_product .prolist-sidebar::before {
    display: none !important;
  }

  body.page-template-page-products .prolist-sidebar-title,
  body.post-type-archive-gongsheng_product .prolist-sidebar-title {
    display: none !important; /* Hide title */
  }

  body.page-template-page-products .prolist-nav-list,
  body.post-type-archive-gongsheng_product .prolist-nav-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.page-template-page-products .prolist-nav-list li,
  body.post-type-archive-gongsheng_product .prolist-nav-list li {
    width: 100% !important;
    display: block !important;
  }

  /* Style items with horizontal text stacked vertically, matching the homepage style */
  body.page-template-page-products .prolist-nav-item,
  body.post-type-archive-gongsheng_product .prolist-nav-item {
    display: block !important;
    padding: 8px 6px 8px 12px !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #333333 !important;
    writing-mode: horizontal-tb !important; /* Horizontal text */
    text-orientation: mixed !important;
    letter-spacing: normal !important;
    background: transparent !important;
    border-radius: 0 !important;
    border-left: 2px solid transparent !important;
    transition: color 0.2s ease, background 0.2s ease, border-left-color 0.2s ease !important;
    width: 100% !important;
    box-shadow: none !important;
    text-align: left !important;
    white-space: nowrap !important;
    cursor: pointer !important;
  }

  /* Hide icons and chevron arrows on desktop vertical text menu */
  body.page-template-page-products .prolist-nav-item i.nav-icon,
  body.post-type-archive-gongsheng_product .prolist-nav-item i.nav-icon,
  body.page-template-page-products .prolist-nav-item .fa-chevron-right,
  body.post-type-archive-gongsheng_product .prolist-nav-item .fa-chevron-right {
    display: none !important;
  }

  body.page-template-page-products .prolist-nav-item:hover,
  body.post-type-archive-gongsheng_product .prolist-nav-item:hover {
    color: #00a0e9 !important;
    background: rgba(0, 160, 233, 0.04) !important;
    transform: none !important;
  }

  body.page-template-page-products .prolist-nav-item.active,
  body.post-type-archive-gongsheng_product .prolist-nav-item.active {
    color: #00a0e9 !important;
    font-weight: 400 !important;
    border-left: 2px solid #00a0e9 !important;
    background: transparent !important;
    padding-left: 12px !important;
    box-shadow: none !important;
  }

  /* Toggle button container and button styles (Back-to-top button style) */
  body.page-template-page-products .prolist-sidebar-toggle,
  body.post-type-archive-gongsheng_product .prolist-sidebar-toggle {
    margin-top: 10px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  body.page-template-page-products .prolist-sidebar-toggle button,
  body.post-type-archive-gongsheng_product .prolist-sidebar-toggle button {
    width: 24px !important;
    height: 24px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(0, 160, 233, 0.4) !important;
    background: transparent !important;
    color: #00a0e9 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
  }

  body.page-template-page-products .prolist-sidebar-toggle button:hover,
  body.post-type-archive-gongsheng_product .prolist-sidebar-toggle button:hover {
    background: #00a0e9 !important;
    color: #ffffff !important;
    transform: none !important;
  }
}

@media (max-width: 992px) {
  .prolist-sidebar-toggle {
    display: none !important; /* Hide toggle button on mobile horizontal navbar */
  }
}

