.elementor-1035 .elementor-element.elementor-element-55f55696{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:100px;--padding-bottom:70px;--padding-left:15px;--padding-right:15px;}@media(max-width:1024px){.elementor-1035 .elementor-element.elementor-element-55f55696{--padding-top:80px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}}@media(max-width:767px){.elementor-1035 .elementor-element.elementor-element-55f55696{--padding-top:60px;--padding-bottom:30px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-05cc25d *//* Outer spacing for breathing room */
.service-areas-wrapper {
  padding: 50px 20px;
}

/* Grid */
.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}

/* Premium button */
.service-areas-grid button {
  position: relative;
  background: linear-gradient(145deg, #1b1e22, #2a2f35);
  color: #eaeaea;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.4px;

  /* depth */
  box-shadow: 
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 4px 12px rgba(0,0,0,0.35);

  transition: all 0.3s ease;
  overflow: hidden;
}

/* subtle top shine */
.service-areas-grid button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: all 0.6s ease;
}

/* Hover effect */
.service-areas-grid button:hover {
  transform: translateY(-4px);
  color: #000;
  background: linear-gradient(145deg, #f4b400, #ffcc33);
  box-shadow: 
    0 10px 22px rgba(0,0,0,0.4),
    0 0 12px rgba(244,180,0,0.4);
}

/* Shine animation on hover */
.service-areas-grid button:hover::before {
  left: 100%;
}

/* Click feel */
.service-areas-grid button:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}/* End custom CSS */