/* Service Areas Styles */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.column {
    background: white;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.column:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.column ul {
    list-style: none; padding: 0; margin: 0;
}
.column li {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}
.column li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.column a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05em;
    transition: all 0.3s ease;
    display: block;
}
.column a:hover {
    color: #1a4480;
    text-decoration: none;
    padding-left: 8px;
}
.column a .bi {
    color: #28a745;
    font-size: 16px;
    margin-right: 8px;
}
/* Call-to-action at bottom */
.service-areas-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #2c5aa0, #1a4480);
    border-radius: 12px;
    color: white;
}
.service-areas-cta h3 {
    margin-bottom: 15px;
    font-size: 1.8em;
}
.service-areas-cta p {
    margin-bottom: 25px;
    font-size: 1.1em;
    opacity: 0.95;
    color: #e5ffab;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-sa1, .btn-sa2 {
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-sa1 {
    background-color: #ff6b35;
    color: white;
    border: 2px solid #ff6b35;
}
.btn-sa1:hover {
    background-color: #e55a2b;
    color: white;
    text-decoration: none;
}
.btn-sa2 {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}
.btn-sa2:hover {
    background-color: white;
    color: #2c5aa0;
    text-decoration: none;
}

.location .section-header::before{
  content: '';
  position: absolute;
  width: 50px;
  top: -53px;
  height: 50px;
  z-index: -1;
  display: block;
  transition: all 0.5s ease-in-out 0s;
  background-image: url(../images/icons/project-section.svg);
  background-size: contain;
  opacity: 9;
  background-repeat: no-repeat;
}

.neighborhoods-section .neighborhoods-list li {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  color: #56a0d7;
  margin-bottom: 5px;
  display: flex;
  gap: 10px;
}

/* Mobile responsive */
@media (max-width: 992px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .column {
        padding: 20px 18px;
    }
}
@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-areas-cta h3 {
        font-size: 1.5em;
    }
    .service-areas-cta p {
        font-size: 1em;
    }
}