/* ==========================================================================
   location.css — Unified Location Page Styles
   A Perfect Choice Home Care WordPress Theme
   All 20 location pages use the unified .apch-loc prefix
   ========================================================================== */

/* --------------------------------------------------------------------------
   Location Archive — Service Areas by County
   -------------------------------------------------------------------------- */
.apch-loc-archive {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.apch-loc-archive-header {
  text-align: center;
  margin-bottom: 64px;
}
.apch-loc-archive-header .apch-section-label {
  justify-content: center;
}
.apch-loc-archive-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 16px;
  letter-spacing: -0.02em;
}
.apch-loc-archive-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}
.apch-loc-archive-county {
  margin-bottom: 48px;
}
.apch-loc-archive-county-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--coral);
  display: inline-block;
}
.apch-loc-archive-county-title svg {
  vertical-align: -3px;
  margin-right: 8px;
}
.apch-loc-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.apch-loc-archive-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(27, 43, 75, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
}
.apch-loc-archive-link:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 74, 63, 0.2);
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.03),
    0 8px 20px rgba(27, 43, 75, 0.06);
}
.apch-loc-archive-link-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(107,143,113,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  transition: all 0.3s ease;
}
.apch-loc-archive-link:hover .apch-loc-archive-link-icon {
  background: var(--sage);
  color: var(--white);
}
.apch-loc-archive-link svg:last-child {
  margin-left: auto;
  transition: transform 0.3s ease;
}
.apch-loc-archive-link:hover svg:last-child {
  transform: translateX(3px);
}

/* Location Archive — Two Offices Section */
.apch-loc-offices {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.apch-loc-offices-bg {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,74,63,0.1), transparent 70%);
  pointer-events: none;
}
.apch-loc-offices-header {
  text-align: center;
  margin-bottom: 48px;
}
.apch-loc-offices-header .apch-section-label {
  justify-content: center;
  color: var(--coral);
}
.apch-loc-offices-header h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.apch-loc-offices-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
}
.apch-loc-offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.apch-loc-office-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.apch-loc-office-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--sage));
  opacity: 0.3;
  transition: opacity 0.4s ease;
}
.apch-loc-office-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.apch-loc-office-card:hover::before {
  opacity: 1;
}
.apch-loc-office-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.apch-loc-office-card-address {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 12px;
}
.apch-loc-office-card-phone {
  color: var(--coral);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}
.apch-loc-office-card-phone:hover {
  color: var(--coral-hover);
}
.apch-loc-office-card-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}

@media (max-width: 600px) {
  .apch-loc-archive {
    padding: 60px 0;
  }
  .apch-loc-offices-grid {
    grid-template-columns: 1fr;
  }
  .apch-loc-offices {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   Local Trust Bar
   -------------------------------------------------------------------------- */
.apch-loc-trust {
  padding: 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.apch-loc-trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.apch-loc-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.apch-loc-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.apch-loc-trust-item:hover {
  color: var(--coral);
}
.apch-loc-trust-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: var(--border);
}
.apch-loc-trust-item:last-child::after {
  display: none;
}
.apch-loc-trust-icon {
  width: 34px;
  height: 34px;
  background: var(--sage-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 15px;
  transition: all 0.3s ease;
}
.apch-loc-trust-item:hover .apch-loc-trust-icon {
  background: var(--sage);
  color: var(--white);
}

@media (max-width: 900px) {
  .apch-loc-trust-inner {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .apch-loc-trust-item {
    padding: 16px 20px;
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .apch-loc-trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .apch-loc-trust-item {
    padding: 14px 16px;
    font-size: 12px;
    white-space: normal;
    border-bottom: 1px solid var(--border);
  }
  .apch-loc-trust-item::after {
    display: none;
  }
  .apch-loc-trust-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
}

/* --------------------------------------------------------------------------
   Services in [City] Section
   -------------------------------------------------------------------------- */
.apch-loc-services {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
}
.apch-loc-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(107, 143, 113, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(196, 74, 63, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.apch-loc-services-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
.apch-loc-services-header .apch-section-label {
  justify-content: center;
}
.apch-loc-services-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 16px;
  letter-spacing: -0.02em;
}
.apch-loc-services-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}
.apch-loc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.apch-loc-service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27, 43, 75, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.apch-loc-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), rgba(196, 74, 63, 0.6));
  transform: scaleX(0.3);
  opacity: 0.4;
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}
.apch-loc-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(196, 74, 63, 0.12);
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.03),
    0 10px 24px rgba(27, 43, 75, 0.06),
    0 24px 56px rgba(27, 43, 75, 0.06);
}
.apch-loc-service-card:hover::before {
  transform: scaleX(1);
  opacity: 1;
}
.apch-loc-service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 24px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
.apch-loc-service-card:hover .apch-loc-service-card-icon {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(27, 43, 75, 0.12);
}
.apch-loc-service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.apch-loc-service-card:hover h3 {
  color: var(--navy);
}
.apch-loc-service-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}
.apch-loc-service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  transition: gap 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-loc-service-card-link:hover {
  gap: 10px;
}

@media (max-width: 900px) {
  .apch-loc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apch-loc-services {
    padding: 80px 0;
  }
}
@media (max-width: 600px) {
  .apch-loc-services-grid {
    grid-template-columns: 1fr;
  }
  .apch-loc-services {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   Why Choose Us in [City]
   -------------------------------------------------------------------------- */
.apch-loc-why {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.apch-loc-why::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 74, 63, 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.apch-loc-why-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
.apch-loc-why-header .apch-section-label {
  justify-content: center;
}
.apch-loc-why-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  max-width: 640px;
  margin: 0 auto 16px;
  letter-spacing: -0.02em;
}
.apch-loc-why-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.apch-loc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.apch-loc-why-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27, 43, 75, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.apch-loc-why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--sage));
  transform: scaleX(0.3);
  opacity: 0.4;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}
.apch-loc-why-card:hover {
  transform: translateY(-10px);
  background: var(--white);
  border-color: transparent;
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.03),
    0 10px 24px rgba(27, 43, 75, 0.06),
    0 20px 48px rgba(27, 43, 75, 0.06);
}
.apch-loc-why-card:hover::before {
  transform: scaleX(1);
  opacity: 1;
}
.apch-loc-why-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 24px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
.apch-loc-why-card:hover .apch-loc-why-card-icon {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(27, 43, 75, 0.12);
}
.apch-loc-why-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.apch-loc-why-card:hover h3 {
  color: var(--navy);
}
.apch-loc-why-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .apch-loc-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apch-loc-why {
    padding: 80px 0;
  }
}
@media (max-width: 600px) {
  .apch-loc-why-grid {
    grid-template-columns: 1fr;
  }
  .apch-loc-why {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   About Section (in location context)
   -------------------------------------------------------------------------- */
.apch-loc-about {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.apch-loc-about::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 143, 113, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.apch-loc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.apch-loc-about-image-wrap {
  position: relative;
}
.apch-loc-about-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  background: var(--sage);
  opacity: 0.12;
  border-radius: var(--radius-lg);
  z-index: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-loc-about-image-wrap:hover .apch-loc-about-accent {
  opacity: 0.18;
  top: -20px;
  left: -20px;
}
.apch-loc-about-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  z-index: 1;
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.04),
    0 12px 28px rgba(27, 43, 75, 0.08),
    0 20px 48px rgba(27, 43, 75, 0.06);
}
.apch-loc-about-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(27, 43, 75, 0.12) 100%);
  pointer-events: none;
  border-radius: inherit;
}
.apch-loc-about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-loc-about-image-container:hover img {
  transform: scale(1.03);
}
.apch-loc-about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(27, 43, 75, 0.3);
}
.apch-loc-about-founder {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 140px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-loc-about-image-wrap:hover .apch-loc-about-founder {
  transform: translateY(-4px);
}
.apch-loc-about-founder-accent {
  position: absolute;
  bottom: -24px;
  right: -28px;
  width: 80px;
  height: 80px;
  background: var(--coral);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

/* About — legacy image class (fallback) */
.apch-loc-about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.04),
    0 12px 28px rgba(27, 43, 75, 0.08);
}
.apch-loc-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About — text content */
.apch-loc-about-content h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.apch-loc-about-content > p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.85;
}
.apch-loc-about-quote {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--coral);
  margin-bottom: 20px;
  line-height: 1.6;
}
.apch-loc-about-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.apch-loc-about-text:last-of-type {
  margin-bottom: 24px;
}

/* About — credentials grid */
.apch-loc-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.apch-loc-credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: transform 0.3s ease;
}
.apch-loc-credential:hover {
  transform: translateX(4px);
}
.apch-loc-credential-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.apch-loc-credential:hover .apch-loc-credential-dot {
  transform: scale(1.4);
}

/* About — button actions row */
.apch-loc-about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* About — highlights (legacy) */
.apch-loc-about-highlights {
  list-style: none;
  margin-top: 28px;
}
.apch-loc-about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-loc-about-highlights li:hover {
  transform: translateX(6px);
}
.apch-loc-about-highlights li + li {
  border-top: 1px solid var(--border);
}
.apch-loc-about-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 12px;
  margin-top: 2px;
  transition: all 0.3s ease;
}
.apch-loc-about-highlights li:hover .apch-loc-about-check {
  background: var(--sage);
  color: var(--white);
}

@media (max-width: 900px) {
  .apch-loc-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .apch-loc-about {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .apch-loc-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .apch-loc-about-image-wrap {
    max-width: 520px;
    margin: 0 auto;
  }
  .apch-loc-about-founder {
    width: 110px;
    bottom: -20px;
    right: -10px;
  }
  .apch-loc-about-founder-accent {
    width: 60px;
    height: 60px;
    bottom: -16px;
    right: -18px;
  }
  .apch-loc-about-accent {
    width: 80px;
    height: 80px;
    top: -10px;
    left: -10px;
  }
  .apch-loc-credentials {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .apch-loc-about {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   Testimonials in [City]
   -------------------------------------------------------------------------- */
.apch-loc-testimonials {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.apch-loc-testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.apch-loc-testimonials-header .apch-section-label {
  justify-content: center;
}
.apch-loc-testimonials-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  max-width: 640px;
  margin: 0 auto 16px;
  letter-spacing: -0.02em;
}
.apch-loc-testimonials-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
.apch-loc-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.apch-loc-testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27, 43, 75, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.apch-loc-testimonial-card::before {
  content: '\201C';
  font-family: 'Lora', serif;
  font-size: 72px;
  color: var(--coral);
  opacity: 0.1;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
  transition: opacity 0.3s ease;
}
.apch-loc-testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--sage));
  opacity: 0.25;
  transition: opacity 0.4s ease;
}
.apch-loc-testimonial-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  border-color: transparent;
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.03),
    0 10px 24px rgba(27, 43, 75, 0.06),
    0 24px 48px rgba(27, 43, 75, 0.05);
}
.apch-loc-testimonial-card:hover::before {
  opacity: 0.18;
}
.apch-loc-testimonial-card:hover::after {
  opacity: 1;
}
.apch-loc-testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--star);
  font-size: 17px;
  filter: drop-shadow(0 1px 2px rgba(243, 156, 18, 0.3));
}
.apch-loc-testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.apch-loc-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.apch-loc-testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(27, 43, 75, 0.12);
  transition: transform 0.3s ease;
}
.apch-loc-testimonial-card:hover .apch-loc-testimonial-avatar {
  transform: scale(1.06);
}
.apch-loc-testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.apch-loc-testimonial-location {
  font-size: 13px;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .apch-loc-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apch-loc-testimonials {
    padding: 80px 0;
  }
}
@media (max-width: 600px) {
  .apch-loc-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .apch-loc-testimonials {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   Service Areas in [Region]
   -------------------------------------------------------------------------- */
.apch-loc-areas {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.apch-loc-areas::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 74, 63, 0.1), transparent 70%);
  pointer-events: none;
}
.apch-loc-areas::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 143, 113, 0.08), transparent 70%);
  pointer-events: none;
}
.apch-loc-areas-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.apch-loc-areas-header .apch-section-label {
  justify-content: center;
  color: var(--coral);
}
.apch-loc-areas-header .apch-section-label::before {
  background: var(--coral);
}
.apch-loc-areas-header h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.apch-loc-areas-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
}
.apch-loc-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.apch-loc-area-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-loc-area-item:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.apch-loc-area-item svg {
  color: var(--sage);
  min-width: 16px;
  transition: color 0.3s ease;
}
.apch-loc-area-item:hover svg {
  color: var(--coral);
}
.apch-loc-areas-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .apch-loc-areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .apch-loc-areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .apch-loc-areas {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   Location FAQ Section
   -------------------------------------------------------------------------- */
.apch-loc-faq {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.apch-loc-faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.apch-loc-faq-header .apch-section-label {
  justify-content: center;
}
.apch-loc-faq-header h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.apch-loc-faq-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* FAQ active state enhancements */
.apch-loc-faq .apch-faq-item {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-loc-faq .apch-faq-item.active {
  border-color: rgba(196, 74, 63, 0.2);
  box-shadow: 0 4px 16px rgba(27, 43, 75, 0.06);
}
.apch-loc-faq .apch-faq-item.active .apch-faq-question {
  color: var(--coral);
}

/* FAQ items reuse the shared .apch-faq-list, .apch-faq-item, etc. from components.css */

@media (max-width: 600px) {
  .apch-loc-faq {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   Location CTA Section
   -------------------------------------------------------------------------- */
.apch-loc-cta {
  padding: 100px 0;
  background: var(--white);
}
.apch-loc-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 24px rgba(27, 43, 75, 0.15),
    0 20px 60px rgba(27, 43, 75, 0.12);
}
.apch-loc-cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 74, 63, 0.18), transparent 70%);
  pointer-events: none;
}
.apch-loc-cta-inner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 143, 113, 0.12), transparent 70%);
  pointer-events: none;
}
.apch-loc-cta-inner h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}
.apch-loc-cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.apch-loc-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.apch-loc-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}
.apch-loc-cta-phone a {
  color: var(--white);
  font-weight: 600;
  transition: color 0.3s ease;
}
.apch-loc-cta-phone a:hover {
  color: var(--coral);
}

@media (max-width: 600px) {
  .apch-loc-cta {
    padding: 60px 0;
  }
  .apch-loc-cta-inner {
    padding: 40px 24px;
  }
  .apch-loc-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

/* --------------------------------------------------------------------------
   Bottom Strip (Location)
   -------------------------------------------------------------------------- */
.apch-loc-bottom-strip {
  padding: 56px 0;
  background: var(--coral);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apch-loc-bottom-strip::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.apch-loc-bottom-strip p {
  font-family: 'Lora', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.apch-loc-bottom-strip-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.apch-loc-bottom-strip .apch-btn-outline {
  border-color: rgba(255,255,255,0.5);
}
.apch-loc-bottom-strip .apch-btn-outline:hover {
  background: var(--white);
  color: var(--coral) !important;
  border-color: var(--white);
}

@media (max-width: 600px) {
  .apch-loc-bottom-strip p {
    font-size: 18px;
  }
  .apch-loc-bottom-strip-btns {
    flex-direction: column;
    align-items: center;
  }
}

/* --------------------------------------------------------------------------
   Location Quick Info Cards
   -------------------------------------------------------------------------- */
.apch-loc-info {
  padding: 60px 0;
  background: var(--cream);
}
.apch-loc-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.apch-loc-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-loc-info-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.03),
    0 8px 20px rgba(27, 43, 75, 0.06);
}
.apch-loc-info-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-loc-info-card:hover .apch-loc-info-icon {
  transform: scale(1.1);
}
.apch-loc-info-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.apch-loc-info-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.apch-loc-info-card a {
  color: var(--coral);
  font-weight: 600;
  transition: color 0.3s ease;
}
.apch-loc-info-card a:hover {
  color: var(--coral-hover);
}

@media (max-width: 900px) {
  .apch-loc-info-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .apch-loc-info {
    padding: 40px 0;
  }
}

/* --------------------------------------------------------------------------
   Location Process Steps
   -------------------------------------------------------------------------- */
.apch-loc-process {
  padding: 100px 0;
  background: var(--white);
}
.apch-loc-process-header {
  text-align: center;
  margin-bottom: 56px;
}
.apch-loc-process-header .apch-section-label {
  justify-content: center;
}
.apch-loc-process-header h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.apch-loc-process-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}
.apch-loc-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.apch-loc-process-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--sage));
  opacity: 0.3;
  z-index: 0;
}
.apch-loc-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.apch-loc-process-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--coral);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(196, 74, 63, 0.1);
}
.apch-loc-process-step:hover .apch-loc-process-step-number {
  background: var(--coral);
  color: var(--white);
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(196, 74, 63, 0.25);
}
.apch-loc-process-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.apch-loc-process-step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .apch-loc-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .apch-loc-process-steps::before {
    display: none;
  }
  .apch-loc-process {
    padding: 80px 0;
  }
}
@media (max-width: 600px) {
  .apch-loc-process-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .apch-loc-process {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   Intro Text (shared services header paragraph style)
   -------------------------------------------------------------------------- */
.apch-loc-intro-text {
  font-size: 17px;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   Editor Content Section (location post_content)
   -------------------------------------------------------------------------- */
.apch-loc-editor-content {
  padding: 80px 0;
  background: var(--cream);
}
