:root {
  --color-primary: #0f52ba;
  --color-primary-dark: #0a3a82;
  --color-primary-light: #3b82f6;
  --color-secondary: #1a1a1a;
  --color-accent: #e63946;
  --color-background: #ffffff;
  --color-background-light: #f8f9fa;
  --color-background-dark: #0d1117;
  --color-text: #1a1a1a;
  --color-text-light: #6b7280;
  --color-border: #e5e7eb;
  --color-success: #10b981;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}

a:focus{
    outline: none; /* 移除默认的 */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth section animations */
.section {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Improved button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.mt5{margin-top:5px;}
.mt10{margin-top:10px;}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(15, 82, 186, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 82, 186, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-1px);
}

.btn-outline-sm {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  font-weight: 500;
}

.btn-outline-sm:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-1px);
}

/* Card hover improvements */
.service-card,
.stat-item,
.project-card {
  transition: all var(--transition-normal);
}

.service-card:hover,
.stat-item:hover,
.project-card:hover {
  transform: translateY(-6px);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-secondary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--color-text-light);
  font-size: 1rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-3xl) 0;
}

.section-compact {
  padding: var(--spacing-xl) 0;
}

.section-light {
  background-color: var(--color-background-light);
}

/* Transition Section */
.section-transition {
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
  padding: 5rem 0;
  position: relative;
}

.section-transition::before,
.section-transition::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(90deg, transparent, rgba(15, 82, 186, 0.05), transparent);
}

.section-transition::before {
  top: 0;
}

.section-transition::after {
  bottom: 0;
}

.transition-content {
  position: relative;
  z-index: 1;
}

.transition-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.transition-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 1rem;
}

.transition-text .lead {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.7;
}

.transition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.transition-item {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.transition-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(15, 82, 186, 0.15);
  border-color: rgba(15, 82, 186, 0.2);
}

.transition-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(15, 82, 186, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transition-icon svg {
  width: 32px;
  height: 32px;
  color: #0f52ba;
}

.transition-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 0.5rem;
}

.transition-item p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
}

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

@media (max-width: 640px) {
  .transition-grid {
    grid-template-columns: 1fr;
  }

  .transition-text h2 {
    font-size: 2rem;
  }
}

.section-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(15, 82, 186, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #ffffff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--color-accent);
  color: #ffffff;
}

.btn-accent:hover {
  background-color: #c62828;
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn-small {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: all var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
  background-color: rgba(255, 255, 255, 0.99);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--color-primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-cta {
  margin-left: var(--spacing-sm);
}

.nav-auth {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  display: inline;
}

.nav-auth:hover {
  color: var(--color-primary);
}

.nav-auth-divider {
  color: var(--color-text-light);
  margin: 0;
  padding: 0;
  font-weight: 400;
  opacity: 0.6;
  display: inline;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-secondary);
  margin: 5px 0;
  transition: all var(--transition-fast);
}

.hero {
  padding-top: 140px;
  padding-bottom: var(--spacing-3xl);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Page Hero - Smaller version for inner pages */
.page-hero {
  min-height: 400px !important;
  padding-top: 120px;
  padding-bottom: 3rem;
}

.page-hero .hero-content {
  padding: 2rem 0;
}

.page-hero h1 {
  font-size: 2.5rem;
}

.page-hero .hero-subtitle {
  font-size: 1.125rem;
  max-width: 600px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 25, 45, 0.85) 0%, rgba(30, 41, 59, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  padding: var(--spacing-xl) 0;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-xl);
}

.hero-badges {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.hero-badges .badge {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.hero-badges .badge-gold {
  background: rgba(251, 191, 36, 0.25);
  border-color: rgba(251, 191, 36, 0.5);
  color: #fbbf24;
}

.hero-badges .badge-silver {
  background: rgba(192, 192, 192, 0.25);
  border-color: rgba(192, 192, 192, 0.5);
  color: #c0c0c0;
}

.hero-badges .badge-blue {
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.5);
  color: #3b82f6;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.supply-chain {
  padding: var(--spacing-3xl) 0;
}

.supply-chain-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.supply-chain-header h2 {
  margin-bottom: var(--spacing-sm);
}

.supply-chain-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
  position: relative;
}

.supply-chain-flow::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  z-index: 0;
}

.flow-node {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-sm);
  background-color: var(--color-background);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.flow-node:hover {
  border-color: var(--color-primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.flow-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
}

.flow-node h4 {
  margin-bottom: var(--spacing-xs);
  color: var(--color-secondary);
}

.flow-node p {
  font-size: 0.875rem;
}

.flow-tooltip {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: var(--spacing-sm);
  padding: var(--spacing-md);
  background-color: var(--color-secondary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  width: 200px;
  z-index: 10;
}

.flow-node:hover .flow-tooltip {
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
}

/* Horizontal Services Layout */
.services-horizontal {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: space-between;
  margin-top: var(--spacing-xl);
}

.service-item {
  flex: 1;
  text-align: center;
  padding: var(--spacing-lg);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0f52ba 0%, #1565c0 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  color: #0f52ba;
  background: linear-gradient(135deg, rgba(15, 82, 186, 0.1) 0%, rgba(21, 101, 192, 0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon-wrapper {
  background: linear-gradient(135deg, #0f52ba 0%, #1565c0 100%);
  color: #ffffff;
  transform: scale(1.1);
}

.service-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.service-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.service-item p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .services-horizontal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-item {
    flex: 0 0 calc(33.333% - var(--spacing-lg));
    max-width: calc(33.333% - var(--spacing-lg));
  }
}

@media (max-width: 992px) {
  .service-item {
    flex: 0 0 calc(50% - var(--spacing-md));
    max-width: calc(50% - var(--spacing-md));
    padding: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .services-horizontal {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .service-item {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    padding: var(--spacing-md);
  }

  .service-icon-wrapper {
    margin: 0 1.25rem 0 0;
    width: 56px;
    height: 56px;
  }

  .service-item h3,
  .service-item p {
    margin-bottom: 0.25rem;
  }
}

/* Service Card Image */
.service-img {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.desc img{max-width: 100%;}
.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-card {
  padding: var(--spacing-md);
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}

.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card h3 {
  margin-bottom: var(--spacing-sm);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.product-card {
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}

.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.product-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 3rem;
}

.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-content {
  padding: var(--spacing-lg);
}

.product-content h3 {
  margin-bottom: var(--spacing-sm);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.cert-card {
  padding: var(--spacing-lg);
  background-color: var(--color-background);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.cert-card:hover {
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.cert-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.form-section {
  padding: var(--spacing-3xl) 0;
}

.form-container {
  max-width: 900px;
  margin: 0 auto;
}

.form-tabs {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  border-bottom: 2px solid var(--color-border);
}

.form-tab {
  padding: var(--spacing-sm) var(--spacing-lg);
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light);
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
}

.form-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.form-tab.active {
  color: var(--color-primary);
}

.form-tab.active::after {
  transform: scaleX(1);
}

.form-content {
  display: none;
}

.form-content.active {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  color: var(--color-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.file-upload {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-xl);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.file-upload:hover {
  border-color: var(--color-primary);
  background-color: rgba(15, 82, 186, 0.05);
}

.file-upload input[type="file"] {
  display: none;
}

.file-upload-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.footer {
  background: linear-gradient(180deg, #0d1117 0%, #0a1628 100%);
  color: #ffffff;
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 82, 186, 0.5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand h3 {
  color: #ffffff;
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
  font-weight: 600;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-xs);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  padding: 0.25rem 0;
}

.footer-link:hover {
  color: #60a5fa;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Platform Performance Section */
.section-performance {
  background: linear-gradient(135deg, #1a365d 0%, #0f52ba 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.performance-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/photo-photo-1504307651254-35680f356dfd-w1920.jpg') center/cover;
  opacity: 0.15;
}

.section-performance .container {
  position: relative;
  z-index: 1;
}

.section-performance .supply-chain-header h2 {
  color: #ffffff;
}

.section-performance .supply-chain-header p {
  color: rgba(255, 255, 255, 0.8);
}

.section-performance .stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

.section-performance .stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
}

.stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  color: #60a5fa;
}

.section-performance .stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-performance .stat-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.section-performance .stat-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

@media (max-width: 1024px) {
  .supply-chain-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .supply-chain-flow::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .supply-chain-flow {
    grid-template-columns: 1fr;
  }

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

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

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: var(--spacing-sm) 0;
  color: var(--color-text);
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-link:last-child:not(.mobile-auth-link) {
  border-bottom: none;
}

.mobile-auth {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border);
}

.mobile-auth-link {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0.75rem;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius);
  border-bottom: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.mobile-nav-link:last-child:not(.mobile-auth-link) {
  border-bottom: none;
}

.mobile-auth-link:last-child {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

/* Supply Flow - New Design */
.supply-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: var(--spacing-2xl) 0;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.supply-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 140px;
  position: relative;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  color: #ffffff;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 24px rgba(15, 82, 186, 0.3);
}

.step-icon svg {
  width: 40px;
  height: 40px;
}

.supply-step:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(15, 82, 186, 0.4);
}

.step-content {
  position: relative;
}

.step-number {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-xs);
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-xs);
}

.step-content p {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.supply-connector {
  display: flex;
  align-items: center;
  padding-top: 40px;
  min-width: 40px;
}

.connector-line {
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(15, 82, 186, 0.3) 100%);
}

.connector-arrow {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-left: -4px;
}

.flow-details {
  display: flex;
  justify-content: center;
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--color-border);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.detail-icon {
  width: 24px;
  height: 24px;
  background: var(--color-success);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.detail-item p {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* Supply Chain V2 - Premium Design */
.section-dark-gradient {
  background: linear-gradient(180deg, #0a1628 0%, #1a365d 50%, #0f172a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.section-dark-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.supply-chain-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.section-dark-gradient .supply-chain-header h2 {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-dark-gradient .supply-chain-header h2::after {
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

.section-cert-wall .supply-chain-header h2 {
  color: #ffffff !important;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  font-size: 2.75rem;
  font-weight: 800;
}

.section-cert-wall .supply-chain-header p {
  color: #e2e8f0 !important;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  font-size: 1.125rem;
}

.section-cert-wall .supply-chain-header h2::after {
  background: linear-gradient(90deg, #0f52ba, #3b82f6);
}

.section-dark .supply-chain-header h2 {
  color: #ffffff;
}

.section-light .supply-chain-header h2 {
  color: #1e3a5f;
}

.supply-chain-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1e3a5f;
  position: relative;
  display: inline-block;
}

.supply-chain-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0f52ba, #3b82f6);
  border-radius: 2px;
}

.supply-chain-header p {
  color: #94a3b8;
  font-size: 1.125rem;
}

/* Supply Chain V2 - Premium Design */
.supply-flow-v2 {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.supply-track {
  display: none; /* Hide old track, using ::before instead */
}

.supply-steps-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 5%;
}

.track-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.track-progress {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 50%, #10b981 100%);
  border-radius: 2px;
  position: relative;
}

.track-progress::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.supply-steps-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 5%;
}

.supply-step-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}

.step-line-connector {
  position: absolute;
  top: 44px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.step-line-connector.left {
  display: none;
}

.step-line-connector.right {
  display: none;
}

.step-icon-v2 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
  border: 2px solid rgba(59, 130, 246, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.step-icon-v2::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.step-icon-v2 svg {
  width: 48px;
  height: 48px;
  color: #60a5fa;
  transition: all 0.3s ease;
}

.supply-step-v2:hover .step-icon-v2 {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(6, 182, 212, 0.4) 100%);
  border-color: #3b82f6;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
}

.supply-step-v2:hover .step-icon-v2 svg {
  color: #93c5fd;
  transform: scale(1.1);
}

.step-content-v2 {
  position: relative;
  z-index: 2;
}

.step-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.step-content-v2 h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: white;
}

.step-content-v2 p {
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Digital Twin Section */
.digital-twin-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: #1e293b;
  border-radius: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-grid img {
    height: 200px;
  }
}

.digital-twin-display {
  position: relative;
}

.display-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
  background: #0a0a1a;
}

.display-controls {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: center;
}

.display-controls .btn {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #60a5fa;
  transition: all 0.3s ease;
}

.display-controls .btn:hover {
  background: rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

#three-container {
  width: 100%;
  height: 400px;
  cursor: grab;
}

#three-container:active {
  cursor: grabbing;
}

#three-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.display-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.display-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e1b4b 100%);
  animation: bgPulse 4s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.display-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, rgba(15, 25, 45, 0.9) 0%, rgba(30, 27, 75, 0.7) 100%);
}

.display-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
  transition: transform 0.3s ease;
}

.display-icon:hover {
  transform: scale(1.1);
}

.display-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.display-overlay h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.display-overlay p {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.display-action .btn {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.display-action .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.display-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.digital-twin-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.feature-card .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card .feature-icon svg {
  width: 24px;
  height: 24px;
  color: #3b82f6;
}

.feature-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .digital-twin-wrapper {
    grid-template-columns: 1fr;
  }

  .digital-twin-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .digital-twin-features {
    grid-template-columns: 1fr;
  }
}

/* Flow Features */
.flow-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.feature-text h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: white;
}

.feature-text p {
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Steps Grid - Clean horizontal layout */
.supply-steps-grid {
  display: none;
}

.supply-step-card {
  display: none;
}

.step-number {
  display: none;
}

.step-icon-circle {
  display: none;
}

.step-arrow {
  display: none;
}

/* Responsive Supply Chain V2 */
@media (max-width: 1024px) {
  .supply-steps-row {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .supply-track {
    display: none;
  }

  .supply-step-v2 {
    flex: 0 0 30%;
  }

  .flow-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .feature-item {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .supply-step-v2 {
    flex: 0 0 45%;
  }

  .step-icon-v2 {
    width: 80px;
    height: 80px;
  }

  .step-icon-v2 svg {
    width: 36px;
    height: 36px;
  }
}

/* Section Header - Bold & Prominent */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 2px;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.125rem;
  margin-top: 1rem;
}

/* Projects Grid - Left 1 large, Right 2x2 small */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.projects-grid .project-card:first-child {
  grid-row: span 2;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

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

/*.project-card img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*  transition: transform var(--transition-normal);*/
/*}*/

.project-card:hover img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-lg);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  color: #ffffff;
}

.project-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-sm);
}

.project-overlay h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

.project-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* Responsive for projects */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .projects-grid .project-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
    height: 300px;
  }

  .project-card {
    height: 250px;
  }
}

@media (max-width: 640px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid .project-card:first-child {
    grid-column: span 1;
  }

  .project-card {
    height: 220px;
  }
}

/* Supply Chain Page Styles */

/* Service Card with Image */
.service-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 82, 186, 0.8) 0%, rgba(15, 82, 186, 0.4) 100%);
}

.service-card h3 {
  padding: 1.25rem 1.25rem 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.service-card p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

/* Suppliers Grid - Horizontal Layout */
.suppliers-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

/* Supplier Card */
.supplier-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  border: 1px solid #e2e8f0;
}

.supplier-image {
  width: 180px;
  position: relative;
  flex-shrink: 0;
  background: #f8fafc;
}

.supplier-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.supplier-image img[src=""] {
  display: none;
}

.supplier-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
}

.supplier-content {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.supplier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.875rem;
}

.supplier-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}

.supplier-favorite {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.375rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.supplier-favorite:hover {
  color: #ef4444;
  background: #fef2f2;
}

.supplier-favorite svg {
  width: 20px;
  height: 20px;
}

.supplier-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.875rem;
}

.supplier-tags .tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  background: #f1f5f9;
  color: #64748b;
  font-weight: 400;
}

.supplier-tags .tag-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.supplier-tags .tag-secondary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.supplier-tags .tag-tertiary {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
}

.supplier-metrics-row {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 0.875rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #f1f5f9;
}

.metric {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.metric-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
}

.metric-label {
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.supplier-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.supplier-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.supplier-badges .badge {
  font-size: 0.625rem;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  background: #f8fafc;
  color: #64748b;
  border: 1px solid #e2e8f0;
  font-weight: 500;
}

.supplier-badges .badge-gold {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  border-color: #fcd34d;
}

.supplier-badges .badge-silver {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #64748b;
  border-color: #cbd5e1;
}

.supplier-badges .badge-diamond {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  color: #4f46e5;
  border-color: #a5b4fc;
}

.supplier-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.skill-tag {
  font-size: 0.675rem;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
  .supplier-card {
    flex-direction: column;
  }

  .supplier-image {
    width: 100%;
    height: auto;
    min-height: 150px;
  }

  .supplier-image img {
    object-fit: cover;
    min-height: 150px;
  }

  .supplier-content {
    padding: 1rem;
  }

  .supplier-header h3 {
    font-size: 1rem;
  }

  .supplier-tags {
    gap: 0.25rem;
  }

  .supplier-tags .tag {
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
  }

  .supplier-metrics-row {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .metric {
    flex-wrap: wrap;
  }

  .metric-value {
    font-size: 1rem;
  }

  .metric-label {
    font-size: 0.625rem;
  }

  .supplier-footer {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .supplier-badges {
    gap: 0.25rem;
  }

  .supplier-badges .badge {
    font-size: 0.6rem;
    padding: 0.1rem 0.35rem;
  }

  .supplier-skills {
    gap: 0.25rem;
  }

  .skill-tag {
    font-size: 0.65rem;
    padding: 0.1rem 0.35rem;
  }
}

.supplier-progress {
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0f52ba 0%, #3b82f6 100%);
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* Supplier Rank */
.supplier-rank {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.rank-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.rank-silver {
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
}

.rank-bronze {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

/* Category Grid - Compact Layout */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

/* Category Card */
.category-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 10px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.category-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 0.75rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f52ba 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(15, 82, 186, 0.35);
}

.category-icon svg {
  width: 24px;
  height: 24px;
}

.category-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.375rem;
}

.category-count {
  font-size: 0.75rem;
  color: #64748b;
}

/* Responsive adjustments for supply chain page */
@media (max-width: 768px) {
  .supplier-content {
    flex-direction: column;
    text-align: center;
  }

  .supplier-avatar {
    margin: 0 auto;
  }

  .supplier-metrics {
    justify-content: center;
  }
}

.section-parallax {
  background-image: url('images/photo-photo-1519389950473-47ba0277781c-w1920.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 3rem 0;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 82, 186, 0.9) 0%, rgba(59, 130, 246, 0.85) 100%);
}

.section-parallax .container {
  position: relative;
  z-index: 1;
}

.text-white h2,
.text-white p {
  color: white !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Design Page Styles */
.design-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.design-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.design-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f52ba, #3b82f6);
}

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

.design-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  border-radius: 14px;
  color: #0f52ba;
  transition: all 0.3s ease;
}

.design-card:hover .design-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0f52ba 0%, #3b82f6 100%);
  color: white;
}

.design-icon svg {
  width: 28px;
  height: 28px;
}

.design-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.design-card p {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

@media (max-width: 480px) {
  .design-grid {
    grid-template-columns: 1fr;
  }
}

/* Inquiry Page Styles */
.inquiry-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.inquiry-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inquiry-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.inquiry-benefit:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f52ba 0%, #3b82f6 100%);
  border-radius: 10px;
  color: white;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

.benefit-content h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.benefit-content p {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.inquiry-form-wrapper {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.inquiry-form-wrapper h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.inquiry-tabs,
.quote-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tab-btn,
.quote-tab-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f1f5f9;
  color: #64748b;
}

.tab-btn.active,
.quote-tab-btn.active {
  background: linear-gradient(135deg, #0f52ba 0%, #3b82f6 100%);
  color: white;
}

.tab-btn:hover,
.quote-tab-btn:hover:not(.active) {
  background: #e2e8f0;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-section {
  background: #fafafa;
  border-radius: 12px;
  padding: 1.5rem;
}

.form-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
}

.radio-option:hover {
  border-color: #0f52ba;
  background: rgba(15, 82, 186, 0.02);
}

.radio-option input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: #0f52ba;
}

.radio-option input[type="radio"]:checked + span {
  color: #0f52ba;
  font-weight: 600;
}

.radio-option input[type="radio"]:checked ~ .radio-option {
  border-color: #0f52ba;
  background: rgba(15, 82, 186, 0.05);
}

.radio-group.compact {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.radio-option.compact {
  flex: 1;
  min-width: calc(33.333% - 0.375rem);
  padding: 0.625rem 0.875rem;
  justify-content: center;
  font-size: 0.8125rem;
}

.radio-option.compact span {
  font-size: 0.8125rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #1e293b;
  background: white;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0f52ba;
  box-shadow: 0 0 0 3px rgba(15, 82, 186, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.radio-group {
  display: flex;
  gap: 1.5rem;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 400;
}

.radio-group input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #0f52ba;
}

.file-upload {
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload:hover {
  border-color: #0f52ba;
  background: rgba(15, 82, 186, 0.02);
}

.file-upload input {
  display: none;
}

.file-upload p {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
}

.form-actions {
  text-align: center;
  padding-top: 1rem;
}

.form-note {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: #64748b;
}

@media (max-width: 900px) {
  .inquiry-container {
    grid-template-columns: 1fr;
  }

  .inquiry-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .inquiry-sidebar {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .inquiry-form-wrapper {
    padding: 1.25rem;
  }
}

/* About Page Styles */
.about-hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-hero-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.about-hero-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1.25rem;
}

.about-hero-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 2rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
}

.about-stat {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f52ba;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.about-hero-image {
  position: relative;
}

.about-hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.capability-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border-top: 4px solid #0f52ba;
}

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

.capability-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  border-radius: 12px;
  color: #0f52ba;
  margin-bottom: 1rem;
}

.capability-icon svg {
  width: 24px;
  height: 24px;
}

.capability-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.capability-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.team-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.team-content h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.375rem;
}

.team-content p {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.location-flag {
  font-size: 2.5rem;
}

.location-info h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.125rem;
}

.location-info p {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
}

@media (max-width: 768px) {
  .about-hero-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }

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

  .about-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-value {
    font-size: 2rem;
  }
}
.compliance-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.compliance-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border-left: 4px solid #0f52ba;
}

.compliance-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.compliance-badge {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f52ba 0%, #3b82f6 100%);
  border-radius: 12px;
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.compliance-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.compliance-info p {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
}

.compliance-card {
  background: white;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border-left: 3px solid #0f52ba;
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.compliance-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.compliance-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}

.compliance-card h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.15rem;
  line-height: 1.3;
}

.compliance-card p {
  font-size: 0.65rem;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.certification-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.certification-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f52ba, #3b82f6);
}

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

.cert-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f52ba 0%, #3b82f6 100%);
  border-radius: 50%;
  color: white;
}

.cert-badge svg {
  width: 32px;
  height: 32px;
}

.cert-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.cert-content p {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cert-detail {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.cert-detail p {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
}

.ddp-container {
  margin-top: 3rem;
}

.ddp-visual {
  width: 100%;
  height: 300px;
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ddp-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.75rem;
  width: 100%;
  overflow-x: auto;
  padding: 0.5rem 0;
}

.ddp-step {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  text-align: center;
  background: white;
  border-radius: 10px;
  padding: 1rem 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.ddp-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.ddp-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f52ba 0%, #3b82f6 100%);
  border-radius: 10px;
  color: white;
}

.ddp-icon svg {
  width: 20px;
  height: 20px;
}

.ddp-step h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.ddp-step p {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.4;
}

.ddp-connector {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
}

.ddp-connector svg {
  width: 18px;
  height: 18px;
}

.ddp-highlight {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #0f52ba;
}

.highlight-item svg {
  width: 20px;
  height: 20px;
}

.highlight-item span {
  font-size: 0.9375rem;
  font-weight: 500;
}

/* Responsive adjustments for compliance page */
@media (max-width: 992px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
    .compliance-grid-new {
  display: block;}
  .certifications-grid {
    grid-template-columns: 1fr;
  }

  .ddp-flow {
    flex-direction: column;
  }

  .ddp-step {
    flex: 1 0 100%;
  }

  .ddp-connector {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }

  .ddp-highlight {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Product Categories Grid */
.product-categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.category-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.category-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.category-image img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.category-card:hover .category-image {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.category-card:hover .category-image img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.category-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.4) 0%, rgba(34, 211, 238, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.category-card:hover .category-icon-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.3);
}

.category-icon svg {
  width: 34px;
  height: 34px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.category-card.active .category-icon svg {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

.category-card[data-category="panels"] .category-icon {
  background: linear-gradient(145deg, #e0f2fe 0%, #bae6fd 50%, #7dd3fc 100%);
  color: #0369a1;
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.25), 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 2px 8px rgba(255, 255, 255, 0.9);
}

.category-card[data-category="panels"]:hover .category-icon-glow {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.4) 0%, rgba(34, 211, 238, 0.1) 40%, transparent 70%);
}

.category-card[data-category="cabinetry"] .category-icon {
  background: linear-gradient(145deg, #fef3c7 0%, #fcd34d 50%, #f59e0b 100%);
  color: #92400e;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.25), 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 2px 8px rgba(255, 255, 255, 0.9);
}

.category-card[data-category="cabinetry"]:hover .category-icon-glow {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, rgba(251, 191, 36, 0.1) 40%, transparent 70%);
}

.category-card[data-category="appliances"] .category-icon {
  background: linear-gradient(145deg, #f1f5f9 0%, #cbd5e1 50%, #94a3b8 100%);
  color: #334155;
  box-shadow: 0 10px 30px rgba(148, 163, 184, 0.25), 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 2px 8px rgba(255, 255, 255, 0.9);
}

.category-card[data-category="appliances"]:hover .category-icon-glow {
  background: radial-gradient(circle, rgba(148, 163, 184, 0.4) 0%, rgba(148, 163, 184, 0.1) 40%, transparent 70%);
}

.category-card[data-category="bathroom"] .category-icon {
  background: linear-gradient(145deg, #d1fae5 0%, #6ee7b7 50%, #34d399 100%);
  color: #064e3b;
  box-shadow: 0 10px 30px rgba(52, 211, 153, 0.25), 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 2px 8px rgba(255, 255, 255, 0.9);
}

.category-card[data-category="bathroom"]:hover .category-icon-glow {
  background: radial-gradient(circle, rgba(52, 211, 153, 0.4) 0%, rgba(52, 211, 153, 0.1) 40%, transparent 70%);
}

.category-card[data-category="lighting"] .category-icon {
  background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 50%, #fde68a 100%);
  color: #854d0e;
  box-shadow: 0 10px 30px rgba(253, 230, 138, 0.35), 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 2px 8px rgba(255, 255, 255, 0.9);
}

.category-card[data-category="lighting"]:hover .category-icon-glow {
  background: radial-gradient(circle, rgba(253, 230, 138, 0.5) 0%, rgba(253, 230, 138, 0.2) 40%, transparent 70%);
}

.category-card[data-category="tile"] .category-icon {
  background: linear-gradient(145deg, #f0f9ff 0%, #bae6fd 50%, #7dd3fc 100%);
  color: #0369a1;
  box-shadow: 0 10px 30px rgba(125, 211, 252, 0.3), 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 2px 8px rgba(255, 255, 255, 0.9);
}

.category-card[data-category="tile"]:hover .category-icon-glow {
  background: radial-gradient(circle, rgba(125, 211, 252, 0.5) 0%, rgba(125, 211, 252, 0.2) 40%, transparent 70%);
}

.category-card[data-category="flooring"] .category-icon {
  background: linear-gradient(145deg, #fef3c7 0%, #fcd34d 50%, #f59e0b 100%);
  color: #92400e;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3), 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 2px 8px rgba(255, 255, 255, 0.9);
}

.category-card[data-category="flooring"]:hover .category-icon-glow {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.5) 0%, rgba(245, 158, 11, 0.2) 40%, transparent 70%);
}

.category-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
}

.category-card h4 img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.category-card.active h4 {
  color: white;
}

.category-count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 0.375rem 1rem;
  border-radius: 24px;
  display: inline-block;
  transition: all 0.3s ease;
}

.category-card:hover .category-count {
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  color: #0f52ba;
}

.category-card.active .category-count {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

/* Products Page Layout */
.products-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.category-sidebar {
  background: #ffffff;
  border-radius: 8px;
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
}

.category-sidebar .category-card {
  padding: 0.625rem 0.75rem;
  margin-bottom: 2px;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
  background: transparent;
  border: none;
  border-radius: 4px;
}

.category-sidebar .category-card:last-child {
  margin-bottom: 0;
}

.category-sidebar .category-card:hover {
  background: #f3f4f6;
}

.category-sidebar .category-card.active {
  background: #0f52ba;
}

.category-sidebar .category-card.active img {
  filter: invert(100%);
}
.category-sidebar .category-icon-wrapper {
  display: none;
}

.category-sidebar .category-card h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
}

.category-sidebar .category-card h4 img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.category-sidebar .category-card.active h4 {
  color: white;
}

.category-sidebar .category-child { padding-left: 1.5rem; font-size: 0.9rem; }
.category-sidebar .category-grandchild { padding-left: 3rem; font-size: 0.82rem; }

.category-sidebar .category-count {
  font-size: 0.6875rem;
  color: #9ca3af;
  background: #f3f4f6;
  padding: 0.125rem 0.5rem;
  border-radius: 10px;
  display: inline;
  margin-left: 0.5rem;
}

.category-sidebar .category-card.active .category-count {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
}

.main-content {
  min-width: 0;
}

.category-description {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #374151;
}
.category-description p { margin-bottom: 0.75rem; }
.category-description p:last-child { margin-bottom: 0; }
.category-description ul, .category-description ol { padding-left: 1.25rem; margin-bottom: 0.75rem; }
.category-description img { max-width: 100%; height: auto; border-radius: 4px; }

.main-content .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .products-layout {
    grid-template-columns: 160px 1fr;
  }

  .main-content .products-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 768px) {
  .products-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .category-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
    border: none;
    background: transparent;
  }

  .category-sidebar .category-card {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: #f3f4f6;
  }

  .category-sidebar .category-card.active {
    background: #0f52ba;
  }

  .category-sidebar .category-card.active h4 {
    color: white;
  }
}

/* Recommended Products Grid */
.recommended-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

/* Member Registration Styles */
.role-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.role-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #0f52ba;
}

.role-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f52ba 0%, #1d4ed8 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.role-icon svg {
  width: 32px;
  height: 32px;
}

.role-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.role-card p {
  color: #64748b;
  margin-bottom: 1rem;
}

.role-features {
  text-align: left;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.role-features li {
  color: #475569;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  position: relative;
}

.role-features li::before {
  content: '✓';
  position: absolute;
  left: -1rem;
  color: #0f52ba;
  font-weight: 600;
}

.register-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  margin-top: 2rem;
}

.register-form {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #64748b;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-item {
  display: flex;
  flex-direction: column;
}

.form-item label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-item input[type="text"],
.form-item input[type="email"],
.form-item input[type="tel"],
.form-item input[type="password"] {
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.form-item input:focus {
  outline: none;
  border-color: #0f52ba;
  box-shadow: 0 0 0 3px rgba(15, 82, 186, 0.1);
}

.form-item input[type="checkbox"] {
  margin-right: 0.5rem;
}

.form-footer {
  text-align: center;
  margin-top: 1rem;
  color: #64748b;
}

.form-footer a {
  color: #0f52ba;
  font-weight: 500;
}

.register-benefits {
  background: linear-gradient(135deg, #0f52ba 0%, #1d4ed8 100%);
  border-radius: 16px;
  padding: 2rem;
  color: white;
}

.register-benefits h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-item svg {
  width: 20px;
  height: 20px;
  color: #60a5fa;
}

.benefit-item span {
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* Member Center Styles */
.member-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}

.member-sidebar {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.member-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
}

.member-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e5e7eb;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.member-role {
  font-size: 0.75rem;
  color: #0f52ba;
  background: rgba(15, 82, 186, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.role-switcher {
  margin-bottom: 1.5rem;
}

.role-switcher span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 0.75rem;
  display: block;
}

.role-tabs {
  display: flex;
  gap: 0.5rem;
}

.role-tab {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: white;
  font-size: 0.75rem;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.role-tab:hover {
  border-color: #0f52ba;
  color: #0f52ba;
}

.role-tab.active {
  background: #0f52ba;
  color: white;
  border-color: #0f52ba;
}

.member-nav ul {
  list-style: none;
}

.member-nav li {
  margin-bottom: 0.25rem;
}

.member-nav a {
  display: block;
  padding: 0.75rem;
  color: #475569;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.member-nav a:hover {
  background: #f1f5f9;
}

.member-nav li.active a {
  background: rgba(15, 82, 186, 0.1);
  color: #0f52ba;
  font-weight: 500;
}

.member-content {
  min-width: 0;
}

.panel-header {
  margin-bottom: 1.5rem;
}

.panel-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.panel-header p {
  color: #64748b;
}

.member-content .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.stat-info .stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.stat-info .stat-label {
  font-size: 0.875rem;
  color: #64748b;
}

.tab-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.25rem;
}

.inquiry-list,
.task-list,
.order-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inquiry-item,
.task-item,
.order-item {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
}

.inquiry-header,
.task-header,
.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.inquiry-title,
.task-title,
.order-id {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.inquiry-status,
.task-status,
.order-status {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 500;
}

.inquiry-status.pending,
.task-status.pending,
.order-status.pending {
  background: #fef3c7;
  color: #d97706;
}

.inquiry-status.completed,
.task-status.completed,
.order-status.completed {
  background: #dcfce7;
  color: #16a34a;
}

.task-status.in-progress,
.order-status.processing {
  background: #dbeafe;
  color: #2563eb;
}

.order-status.shipped {
  background: #e0e7ff;
  color: #6366f1;
}

.inquiry-desc,
.task-desc {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.inquiry-meta,
.task-meta,
.order-meta,
.order-details {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  color: #9ca3af;
}

.inquiry-actions,
.task-actions,
.order-actions {
  display: flex;
  gap: 0.75rem;
}

/* Designer Rewards */
.rewards-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.reward-total,
.reward-balance {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.total-label,
.balance-label {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.total-amount,
.balance-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
}

.reward-history {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
}

.reward-history h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.reward-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reward-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
}

.reward-date {
  font-size: 0.8125rem;
  color: #9ca3af;
}

.reward-desc {
  font-size: 0.875rem;
  color: #374151;
}

.reward-amount {
  font-size: 0.875rem;
  font-weight: 600;
  color: #16a34a;
}

/* Supplier Promotion */
.promotion-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.promotion-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid #e5e7eb;
  text-align: center;
}

.promotion-card.featured {
  border-color: #0f52ba;
  background: linear-gradient(135deg, rgba(15, 82, 186, 0.02) 0%, rgba(29, 78, 216, 0.02) 100%);
}

.promotion-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.promotion-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f52ba;
  margin-bottom: 1.25rem;
  display: block;
}

.promotion-card ul {
  text-align: left;
  margin-bottom: 1.5rem;
}

.promotion-card li {
  padding: 0.5rem 0;
  color: #475569;
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .role-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .register-container {
    grid-template-columns: 1fr;
  }

  .member-layout {
    grid-template-columns: 1fr;
  }

  .member-sidebar {
    position: static;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promotion-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .role-cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .inquiry-meta,
  .task-meta,
  .order-meta,
  .order-details {
    flex-direction: column;
    gap: 0.25rem;
  }

  .inquiry-actions,
  .task-actions,
  .order-actions {
    flex-direction: column;
  }
}

.recommended-product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.recommended-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}


/*
.recommended-product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
*/

.product-info {
  padding: 1rem;
  position: relative;
}

.product-tag {
  position: absolute;
  top: -24px;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-tag.Hot {
  background: #ef4444;
  color: white;
}

.product-tag.New {
  background: #22c55e;
  color: white;
}

.product-tag.Popular {
  background: #f59e0b;
  color: white;
}

.product-tag.Value {
  background: #8b5cf6;
  color: white;
}

.product-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.product-price .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f52ba;
}

.product-price .unit {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Designers Grid */
.designers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.designer-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.designer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.designer-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: #e2e8f0;
}

.designer-avatar svg {
  width: 100%;
  height: 100%;
}

.designer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.designer-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.designer-title {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #0f52ba;
  background: #eff6ff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.designer-card p {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.designer-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 0.375rem;
}

.designer-rating .star {
  font-size: 0.875rem;
  color: #d1d5db;
}

.designer-rating .star.filled {
  color: #f59e0b;
}

.designer-rating .star.half {
  color: #f59e0b;
  opacity: 0.5;
}

.designer-rating .rating-value {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-left: 0.25rem;
}

.designer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  justify-content: center;
}

.tag {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #64748b;
  background: #f1f5f9;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .product-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .recommended-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .designers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-card {
    padding: 1rem 0.5rem;
  }

  .category-icon {
    width: 44px;
    height: 44px;
  }

  .category-icon svg {
    width: 20px;
    height: 20px;
  }

  .recommended-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .designers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .product-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recommended-products-grid {
    grid-template-columns: 1fr;
  }

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

/* Category filter styles for products page */
.product-card.hidden {
  display: none;
}
