/* ==========================================================================
   Contact Page Specific Styles
   ========================================================================== */

/* Contact Page Hero */
.products-hero {
  min-height: 400px;
  background: linear-gradient(135deg, var(--green-primary), var(--earth-green));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.products-hero .hero-content {
  max-width: 800px;
  padding: var(--spacing-3xl);
}

.products-hero .hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.products-hero .hero-subtitle {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 0;
}

/* ==========================================================================
   Responsive - Contact Page
   ========================================================================== */
@media (max-width: 768px) {
  .products-hero {
    min-height: 300px;
  }
  
  .products-hero .hero-title {
    font-size: 2rem;
  }
  
  .products-hero .hero-subtitle {
    font-size: 1.125rem;
  }
}

