/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  background-image: url('/assets/images/gps_all_about.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  margin: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-bg-light), var(--color-bg));
  padding: 4rem 0;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-subheadline {
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: translateY(-10px);
}

.social-trust-elements {
  margin-top: 2rem;
}

.trust-badges {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  background-color: var(--color-bg-light);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.badge svg {
  margin-right: 0.5rem;
  color: var(--color-primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 225px;
    padding-bottom: 0.5rem;
    margin-top: 0;
  }

  .hero {
    padding: 0.5rem 0;
    min-height: 40vh;
    margin-top: 0;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    margin-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 1.875rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .trust-badges {
    justify-content: center;
  }
}