/* ==========================================================
   Al Sawy Waterproofing — Hero Section CSS
   ========================================================== */

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, rgba(10, 12, 16, 0.88) 0%, rgba(18, 22, 31, 0.82) 100%), 
              url('../../storage/uploads/projectsgallery/al-sawy-waterproofing-egypt-1.jpg') center/cover no-repeat;
  overflow: hidden;
}

#rainCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  text-align: center;
  backdrop-filter: blur(8px);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-accent);
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}
