/* Hero Background New */
.hero-bg-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-image-new {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0.5;
}

/* Hero Content Full Width */
.hero-content-full {
  max-width: 100%;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-content-full {
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-content-full {
    padding: 0 4rem;
  }
}

/* Hero Intro Section Styles */
.hero-intro {
  max-width: 100%;
  margin: 2rem 0;
  margin-bottom: 50px;
}

.hero-intro-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #3d3a3a;
  margin-bottom: 1.5rem;
  text-align: left;
}

.hero-pillars {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hero-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.hero-pillar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.hero-pillar:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.hero-pillar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.hero-pillar-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: left;
  flex: 1;
}
