/* Service Areas Styles */
.service-areas {
  padding: 5rem 0;
  background-color: var(--white);
  position: relative;
}

.service-areas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/kitchen-cooler.svg');
  background-size: 200px;
  background-position: right bottom;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.area-card {
  background-color: var(--background);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--accent);
  height: 100%;
}

.area-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.area-card h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
}

.area-card h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
}

.area-features {
  list-style-type: none;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.area-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.area-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.map-section {
  margin-top: 4rem;
  padding: 2rem;
  background-color: var(--background);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.map-section h3 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.map-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

.map-placeholder {
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 8px;
  border: 1px dashed rgba(0, 0, 0, 0.1);
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.contact-btn:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  font-size: 1.2rem;
}

/* Local Business Section */
.local-business {
  padding: 5rem 0;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.local-business::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background-color: var(--accent);
  opacity: 0.05;
  border-radius: 50%;
}

.local-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.local-text {
  max-width: 800px;
}

.local-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.local-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.highlight-item {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight-icon {
  font-size: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .local-highlights {
    grid-template-columns: 1fr;
  }
  
  .contact-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .area-card {
    padding: 1.5rem;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
  }
  
  .map-section {
    padding: 1.5rem 1rem;
  }
}