/* Service Areas — public homepage / contact (premium, non-residential) */
#service-areas,
#contact-service-areas,
#sa-check-coverage {
  scroll-margin-top: calc(var(--nav-height, 5rem) + 1.25rem);
}

.sa-section {
  padding: var(--section-padding, 5rem) 0;
  background: linear-gradient(180deg, #0a0a0c 0%, #121216 50%, #0a0a0c 100%);
  border-top: 1px solid rgba(198, 161, 91, 0.12);
}

.sa-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.25rem;
  align-items: start;
  margin-top: 2rem;
}

.sa-subheading {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 0.85rem;
}


.sa-notice {
  margin: 1rem 0 1.25rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid rgba(198, 161, 91, 0.65);
  background: rgba(198, 161, 91, 0.08);
  color: #d9d0b8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.sa-cities {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
}

.sa-cities li {
  position: relative;
  padding-inline-start: 0.9rem;
  color: #cfcfd6;
  font-size: 0.95rem;
}

.sa-cities li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold, #c6a15b);
}

.sa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.sa-phone {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.95rem;
}

.sa-phone a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  direction: ltr;
  unicode-bidi: isolate;
}

.sa-phone a:hover { color: var(--gold, #c6a15b); }
.sa-phone span { color: #9a9aa5; direction: ltr; unicode-bidi: isolate; }

.sa-map-panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sa-map {
  position: relative;
  width: 100%;
  min-height: 280px;
  aspect-ratio: 16 / 11;
  max-height: 360px;
  border-radius: 14px;
  border: 1px solid rgba(198, 161, 91, 0.28);
  background: #161619;
  overflow: hidden;
}

.sa-section--contact .sa-map {
  min-height: 360px;
  max-height: 480px;
  aspect-ratio: 16 / 10;
}

.sa-map__canvas {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.sa-map__canvas--large { min-height: 360px; }

.sa-map__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sa-map__note,
.sa-map__legend,
.sa-map__loading {
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  color: #b9b9c4;
  background: rgba(0, 0, 0, 0.35);
}

.sa-map__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sa-map-caption {
  margin: 0;
  font-size: 0.85rem;
  color: #9a9aa5;
}

.sa-form {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(198, 161, 91, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.sa-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.sa-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #9a9aa5;
}

.sa-form label.sa-form__full { grid-column: 1 / -1; }

.sa-form input,
.sa-form select,
.sa-form textarea {
  background: #0d0d0f;
  border: 1px solid #333;
  color: #fff;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  font-size: 0.95rem;
}

.sa-form textarea { min-height: 96px; resize: vertical; }

.sa-form__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.sa-form button[type="submit"]:disabled,
.sa-form button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.35);
}

.sa-form__status { margin-top: 0.75rem; font-size: 0.9rem; }
.sa-form__status--ok { color: #6ee7a8; }
.sa-form__status--err { color: #f08a8a; }

.sa-form__disabled-note {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: #d9d0b8;
}

.sa-check {
  margin-top: 1.75rem;
}

.sa-contact-panel {
  padding: 1.5rem 1.6rem;
  border-radius: 14px;
  border: 1px solid rgba(198, 161, 91, 0.28);
  background:
    linear-gradient(145deg, rgba(198, 161, 91, 0.08), rgba(255, 255, 255, 0.02)),
    #141418;
}

.sa-contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.sa-contact-panel__note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: #9a9aa5;
}

.sa-map--fallback .sa-map__svg {
  background: #0a0a0c;
}

.sa-appointment {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #b9b9c4;
}

@media (max-width: 900px) {
  .sa-layout { grid-template-columns: 1fr; }
  .sa-map { max-height: none; min-height: 240px; }
  .sa-section--contact .sa-map { min-height: 280px; }
}

@media (max-width: 560px) {
  .sa-cities { grid-template-columns: 1fr; }
  .sa-form__grid { grid-template-columns: 1fr; }
  .sa-actions { flex-direction: column; align-items: stretch; }
}

/* RTL */
body.pss-rtl .sa-notice { border-left: none; border-right: 3px solid rgba(198, 161, 91, 0.65); }
body.pss-rtl .sa-cities li { padding-inline-start: 0.9rem; }

html[dir="rtl"] .nav__more-panel,
body.pss-rtl .nav__more-panel {
  inset-inline-end: 0;
  inset-inline-start: auto;
}
