:root {
  --page-primary: #f97316;
  --page-primary-light: #fb923c;
  --page-primary-dark: #ea580c;
  --page-secondary: #eab308;
  --page-accent: #ef4444;
}
.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: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.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.2);
  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;
}
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.route-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;
}
.route-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.2);
}
.route-header {
  padding: 25px;
  color: white;
  position: relative;
}
.route-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
}
.route-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.route-header .route-time {
  font-size: 1.8rem;
  font-weight: 700;
}
.route-body {
  padding: 25px;
}
.route-body p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 15px;
}
.route-features {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.route-feature {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: #fff7ed;
  border-radius: 8px;
}
.route-feature-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--page-primary);
  display: block;
}
.route-feature-label {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 5px;
}
.services-section {
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.service-card-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-card-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-card-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}
.service-card-item p {
  color: #6b7280;
  line-height: 1.6;
}
.tracking-section {
  background: white;
}
.tracking-demo {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  border-radius: 16px;
  padding: 40px;
}
.tracking-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.tracking-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: linear-gradient(90deg, var(--page-primary-light), var(--page-secondary));
  border-radius: 2px;
}
.tracking-step {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
}
.tracking-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--page-primary), var(--page-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}
.tracking-dot i {
  font-size: 1.2rem;
  color: white;
}
.tracking-step h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}
.tracking-step p {
  font-size: 0.85rem;
  color: #6b7280;
}
.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;
}
.partners-section {
  background: #f9fafb;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.partner-item {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
  font-weight: 600;
  color: #6b7280;
  transition: transform 0.3s ease, color 0.3s ease;
}
.partner-item:hover {
  transform: translateY(-3px);
  color: var(--page-primary);
}
.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; }
  .routes-grid { grid-template-columns: 1fr; }
  .tracking-steps { flex-direction: column; gap: 25px; }
  .tracking-steps::before { display: none; }
  .service-cards { grid-template-columns: 1fr; }
}
