
/* Wells Office Lighting Solutions - custom tweaks */
:root{
  --wells-accent: #2d5e8f; /* picked from logo vibe */
}

.brand-mark{
  height: 56px;
  width: auto;
}

.navbar .nav-link{
  font-weight: 600;
}

.hero{
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(9,18,28,.85), rgba(45,94,143,.55)),
    url('../img/wells_hero.jpg') center/cover no-repeat;
  transform: scale(1.03);
}
.hero .container{
  position: relative;
  z-index: 1;
}
.hero-badges .badge{
  font-size: .95rem;
  padding: .6rem .75rem;
}

.section-title{
  letter-spacing: .02em;
}

.icon-circle{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(45,94,143,.12);
  color: var(--bs-primary);
}

.stat{
  border-left: 4px solid var(--bs-primary);
  padding-left: 1rem;
}

.card-hover{
  transition: transform .15s ease, box-shadow .15s ease;
}
.card-hover:hover{
  transform: translateY(-2px);
  box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.08);
}

.bg-accent{
  background: linear-gradient(120deg, rgba(45,94,143,1), rgba(20,34,54,1));
}

.footer-link{
  color: rgba(255,255,255,.8);
  text-decoration: none;
}
.footer-link:hover{ color: #fff; text-decoration: underline; }

.small-muted{
  color: rgba(255,255,255,.75);
}

.form-hint{
  font-size: .9rem;
  color: var(--bs-secondary-color);
}
