.elementor-3339 .elementor-element.elementor-element-5f4cc91{padding:60px 0px 60px 0px;}/* Start custom CSS for html, class: .elementor-element-d384971 *//* ===== Service Areas (Yellow Theme) – Complete CSS ===== */
.svc-areas {
  /* Theme tokens */
  --bg: #ffffff;
  --ink: #1f2937;            /* main text */
  --muted: #6b7280;          /* subtle text */

  /* Yellow navigation + buttons */
  --chip: #fff9db;           /* chip bg (pale yellow) */
  --chip-ink: #713f12;       /* chip text (dark) */
  --chip-border: #fcd34d;    /* chip border */
  --chip-active: #fde68a;    /* chip active/hover */
  --ring: #ca8a04;           /* golden focus ring */

  --btn-bg: #fefce8;         /* button bg */
  --btn-bd: #fcd34d;         /* button border */
  --btn-ink: #713f12;        /* button text */
  --btn-hover: #fde68a;      /* button hover bg */

  /* Layout tokens */
  --radius: 12px;
  --radius-sm: 10px;
  --gap: 12px;
  --grid-gap: 14px;

  background: var(--bg);
  color: var(--ink);
}

/* Title */
.svc-title {
  margin: 0 0 .75rem;
  font-size: clamp(1.25rem, 1.1rem + 1vw, 1.6rem);
  color: var(--ink);
}

/* A11y helper */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; border: 0; padding: 0;
  white-space: nowrap; clip-path: inset(100%);
  clip: rect(0 0 0 0); overflow: hidden;
}

/* ===== Controls (search + filters + count) ===== */
.svc-controls {
  display: grid;
  gap: 12px;
  margin: 0 0 14px;
  align-items: center;
}

/* Search field */
.svc-search { position: relative; display: block; }
.svc-search input {
  width: 100%;
  border: 1px solid var(--btn-bd);
  background: #fff;
  color: var(--ink);
  padding: 12px 42px 12px 12px;
  border-radius: var(--radius);
  font-size: 16px; line-height: 1.2;
  transition: box-shadow .15s, border-color .15s;
}
.svc-search input::placeholder { color: #9ca3af; }
.svc-search input:focus-visible {
  outline: none;
  border-color: #facc15; /* deeper yellow */
  box-shadow: 0 0 0 3px rgba(202,138,4,.35);
}
.svc-search .icon {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px; opacity: .65;
  pointer-events: none;
  color: var(--ink);
}

/* Filter chip groups */
.svc-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Filter chips */
.chip {
  appearance: none;
  border: 1px solid var(--chip-border);
  background: var(--chip);
  color: var(--chip-ink);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: box-shadow .2s, background .2s, transform .02s, border-color .2s, color .2s;
}
.chip:hover {
  background: var(--chip-active);
  border-color: #fbbf24;
  color: #422006; /* even darker on hover */
}
.chip.is-active {
  background: var(--chip-active);
  border-color: #facc15;
  box-shadow: 0 0 0 2px rgba(202,138,4,.20) inset;
  color: #422006;
}
.chip:active { transform: translateY(1px); }
.chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(202,138,4,.35);
}

/* Count */
.svc-count {
  font-size: 14px;
  color: var(--muted);
}

/* ===== Buttons Grid ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat( auto-fit, minmax(220px, 1fr) );
  gap: var(--grid-gap);
}

/* Location buttons */
.svc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 12px 14px;
  min-height: 44px;

  background: var(--btn-bg);
  color: var(--btn-ink);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius-sm);

  text-decoration: none;
  font-weight: 500;
  line-height: 1.2;

  transition: background .2s, transform .02s, border-color .2s, box-shadow .2s, color .2s;
}
.svc-btn:hover {
  background: var(--btn-hover);
  border-color: #fbbf24; /* deeper yellow on hover */
  color: #422006;        /* darker text on hover */
}
.svc-btn:active { transform: translateY(1px); }
.svc-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(202,138,4,.35);
}

/* ===== Responsive ===== */
@media (min-width: 900px) {
  .svc-controls {
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
  }
  .svc-count { justify-self: end; }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  .chip, .svc-btn, .svc-search input {
    transition: none !important;
  }
}/* End custom CSS */