:root {
  --page-primary: #ef4444;
  --page-primary-light: #f87171;
  --page-primary-dark: #dc2626;
  --page-secondary: #f97316;
  --page-accent: #eab308;
}
.hero-banner {
  background: linear-gradient(135deg, var(--page-primary-dark) 0%, var(--page-primary) 50%, var(--page-secondary) 100%);
  padding: 100px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.hero-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  opacity: 0.95;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 20px 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}
.section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--page-primary), var(--page-secondary));
  border-radius: 2px;
}
.section-title p {
  color: #6b7280;
  font-size: 1.1rem;
  margin-top: 20px;
}
.warehouse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.warehouse-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.warehouse-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.2);
}
.warehouse-header {
  padding: 25px;
  color: white;
  background: linear-gradient(135deg, var(--page-primary), var(--page-primary-light));
}
.warehouse-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.warehouse-size {
  font-size: 2rem;
  font-weight: 700;
}
.warehouse-body {
  padding: 25px;
}
.warehouse-body p {
  color: #6b7280;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.service-item {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.service-item:hover {
  transform: translateY(-5px);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--page-primary), var(--page-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon i {
  font-size: 1.5rem;
  color: white;
}
.service-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}
.service-item p {
  color: #6b7280;
  line-height: 1.6;
}
.wms-section {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}
.wms-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.wms-feature {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.wms-feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--page-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wms-feature h4 i {
  font-size: 1.2rem;
}
.wms-feature ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wms-feature li {
  color: #6b7280;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.95rem;
}
.wms-feature li:last-child {
  border-bottom: none;
}
.advantages-section {
  background: linear-gradient(135deg, var(--page-primary-dark) 0%, var(--page-primary) 100%);
  color: white;
}
.advantages-section .section-title h2 {
  color: white;
}
.advantages-section .section-title h2::after {
  background: linear-gradient(90deg, white, rgba(255,255,255,0.5));
}
.advantages-section .section-title p {
  color: rgba(255, 255, 255, 0.8);
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.advantage-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}
.advantage-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}
.advantage-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.advantage-icon i {
  font-size: 1.8rem;
  color: white;
}
.advantage-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.advantage-item p {
  opacity: 0.9;
  line-height: 1.6;
}
.cta-section {
  background: linear-gradient(135deg, var(--page-primary-dark) 0%, var(--page-secondary) 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
}
.cta-button {
  display: inline-block;
  background: white;
  color: var(--page-primary);
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: var(--page-primary-dark);
}
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .stat-item { padding: 15px 20px; }
  .stat-number { font-size: 2rem; }
  .warehouse-grid, .services-grid, .wms-features { grid-template-columns: 1fr; }
}
