/* ============================================================
   MOVERS FOR ME — LOCATION LANDING PAGE STYLES
   Shared across all individual location pages (Annville,
   Bellefonte, Boalsburg, etc.). One CSS file, ~45 pages.
   ============================================================ */


/* ============================================================
   LOCATION HERO — NEW CHARCOAL + CUBE-MOTIF DESIGN
   Solid charcoal background with decorative brand cube motifs.
   No background photo. Test pattern for site-wide rollout.
   ============================================================ */

.mfm-loc-pg-hero {
  position: relative;
  width: 100%;
  padding-top: 65px;
  background-color: var(--mfm-charcoal);
  background-image:
    radial-gradient(circle at 15% 30%, rgba(105, 163, 159, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(249, 157, 91, 0.06) 0%, transparent 50%);
  overflow: hidden;
  isolation: isolate;
}

/* Decorative teal cube — top left */
.mfm-loc-pg-hero::before {
  content: '';
  position: absolute;
  top: 80px;
  left: -60px;
  width: 280px;
  height: 280px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%2369A39F' stroke-width='1.5'><polygon points='50,10 90,30 90,75 50,95 10,75 10,30'/><line x1='50' y1='10' x2='50' y2='55'/><line x1='50' y1='55' x2='10' y2='30'/><line x1='50' y1='55' x2='90' y2='30'/><line x1='50' y1='55' x2='50' y2='95'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

/* Decorative orange cube — bottom right */
.mfm-loc-pg-hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -50px;
  width: 240px;
  height: 240px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23F99D5B' stroke-width='1.5'><polygon points='50,10 90,30 90,75 50,95 10,75 10,30'/><line x1='50' y1='10' x2='50' y2='55'/><line x1='50' y1='55' x2='10' y2='30'/><line x1='50' y1='55' x2='90' y2='30'/><line x1='50' y1='55' x2='90' y2='30'/><line x1='50' y1='55' x2='50' y2='95'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.mfm-loc-pg-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 32px 100px 32px;
  text-align: center;
}

.mfm-loc-pg-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--mfm-font-subhead);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mfm-teal);
  margin-bottom: 22px;
}

.mfm-loc-pg-hero__eyebrow::before,
.mfm-loc-pg-hero__eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background-color: var(--mfm-teal);
}

.mfm-loc-pg-hero__title {
  font-family: var(--mfm-font-heading);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: var(--mfm-white);
  text-transform: uppercase;
  margin: 0 auto 20px auto;
  max-width: 820px;
}

.mfm-loc-pg-hero__title .accent {
  color: var(--mfm-orange);
}

.mfm-loc-pg-hero__subtitle {
  font-family: var(--mfm-font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto 28px auto;
  max-width: 640px;
}

.mfm-loc-pg-hero__cta {
  display: inline-block;
  font-family: var(--mfm-font-subhead);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  background-color: var(--mfm-orange);
  color: var(--mfm-white) !important;
  border: 2px solid var(--mfm-orange);
  border-radius: 4px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.mfm-loc-pg-hero__cta:hover {
  background-color: var(--mfm-white);
  color: var(--mfm-charcoal) !important;
  border-color: var(--mfm-white);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .mfm-loc-pg-hero__inner {
    padding: 64px 20px 70px 20px;
  }

  .mfm-loc-pg-hero__title {
    font-size: clamp(28px, 8vw, 42px);
  }

  .mfm-loc-pg-hero__subtitle {
    font-size: 15px;
  }

  .mfm-loc-pg-hero::before {
    top: 60px;
    left: -80px;
    width: 200px;
    height: 200px;
  }

  .mfm-loc-pg-hero::after {
    bottom: -20px;
    right: -70px;
    width: 180px;
    height: 180px;
  }
}


/* ============================================================
   LOCATION INTRO — IMAGE + CONTENT
   ============================================================ */

.mfm-loc-pg-intro {
  position: relative;
  background-color: var(--mfm-warm-gray);
  padding: 100px 0 110px 0;
  overflow: hidden;
}

.mfm-loc-pg-intro .container {
  position: relative;
  z-index: 1;
}

.mfm-loc-pg-intro .row {
  align-items: stretch !important;
}

.mfm-loc-pg-intro__image-wrap {
  position: relative;
  padding-right: 20px;
  height: 100%;
  display: flex;
}

.mfm-loc-pg-intro__image {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(18, 18, 18, 0.12), 0 6px 18px rgba(18, 18, 18, 0.06);
  z-index: 2;
}

.mfm-loc-pg-intro__image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mfm-loc-pg-intro__image-wrap::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -30px;
  width: 100%;
  height: 100%;
  background-color: var(--mfm-soft-orange);
  border-radius: 12px;
  z-index: 1;
}

.mfm-loc-pg-intro__content {
  padding-left: 30px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.mfm-loc-pg-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mfm-font-subhead);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mfm-teal);
  margin-bottom: 20px;
}

.mfm-loc-pg-intro__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background-color: var(--mfm-teal);
}

.mfm-loc-pg-intro__title {
  font-family: var(--mfm-font-heading);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: 0.5px;
  color: var(--mfm-charcoal);
  text-transform: uppercase;
  margin: 0 0 22px 0;
}

.mfm-loc-pg-intro__title .accent {
  color: var(--mfm-orange);
}

.mfm-loc-pg-intro__body {
  font-family: var(--mfm-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--mfm-slate);
  margin: 0 0 28px 0;
}

.mfm-loc-pg-intro__cta {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--mfm-font-subhead);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  background-color: var(--mfm-orange);
  color: var(--mfm-white) !important;
  border: 2px solid var(--mfm-orange);
  border-radius: 4px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mfm-loc-pg-intro__cta:hover {
  background-color: var(--mfm-charcoal);
  color: var(--mfm-white) !important;
  border-color: var(--mfm-charcoal);
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .mfm-loc-pg-intro .row {
    align-items: center !important;
  }

  .mfm-loc-pg-intro__image-wrap {
    padding-right: 0;
    margin-bottom: 60px;
    height: auto;
  }

  .mfm-loc-pg-intro__image img {
    min-height: auto;
    height: auto;
  }

  .mfm-loc-pg-intro__content {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: auto;
    justify-content: flex-start;
  }

  .mfm-loc-pg-intro__image-wrap::before {
    top: 20px;
    left: -20px;
  }
}

@media (max-width: 768px) {
  .mfm-loc-pg-intro {
    padding: 70px 0 80px 0;
  }

  .mfm-loc-pg-intro__title {
    font-size: clamp(26px, 7vw, 32px);
  }
}


/* ============================================================
   WHY CHOOSE — feature list with icons (5 reasons)
   ============================================================ */

.mfm-loc-pg-why {
  position: relative;
  background-color: var(--mfm-white);
  padding: 90px 32px 100px 32px;
  overflow: hidden;
}

.mfm-loc-pg-why__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mfm-loc-pg-why__header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.mfm-loc-pg-why__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--mfm-font-subhead);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mfm-teal);
  margin-bottom: 18px;
}

.mfm-loc-pg-why__eyebrow::before,
.mfm-loc-pg-why__eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background-color: var(--mfm-teal);
}

.mfm-loc-pg-why__title {
  font-family: var(--mfm-font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--mfm-charcoal);
  text-transform: uppercase;
  margin: 0 0 14px 0;
}

.mfm-loc-pg-why__title .accent {
  color: var(--mfm-orange);
}

.mfm-loc-pg-why__subtitle {
  font-family: var(--mfm-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--mfm-slate);
  margin: 0;
}

.mfm-loc-pg-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.mfm-loc-pg-why__grid > p,
.mfm-loc-pg-why__grid > br {
  display: none !important;
}

.mfm-loc-pg-why__card {
  position: relative;
  background-color: var(--mfm-warm-gray);
  border: 1px solid rgba(18, 18, 18, 0.04);
  border-radius: 12px;
  padding: 28px 26px;
  transition: all 0.3s ease;
}

.mfm-loc-pg-why__card:hover {
  transform: translateY(-4px);
  border-color: rgba(105, 163, 159, 0.25);
  background-color: var(--mfm-white);
  box-shadow: 0 14px 32px rgba(18, 18, 18, 0.06);
}

.mfm-loc-pg-why__card > p {
  margin: 0 !important;
  padding: 0 !important;
  display: contents !important;
}

.mfm-loc-pg-why__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--mfm-mist-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.mfm-loc-pg-why__icon i {
  color: var(--mfm-teal);
  font-size: 20px;
  line-height: 1;
}

.mfm-loc-pg-why__card:hover .mfm-loc-pg-why__icon {
  background-color: var(--mfm-orange);
}

.mfm-loc-pg-why__card:hover .mfm-loc-pg-why__icon i {
  color: var(--mfm-white);
}

.mfm-loc-pg-why__heading {
  font-family: var(--mfm-font-heading) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
  letter-spacing: 0.3px !important;
  color: var(--mfm-charcoal) !important;
  text-transform: none !important;
  margin: 0 0 10px 0 !important;
}

.mfm-loc-pg-why__text {
  font-family: var(--mfm-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--mfm-slate);
  margin: 0;
}

@media (max-width: 768px) {
  .mfm-loc-pg-why {
    padding: 60px 16px 70px 16px;
  }

  .mfm-loc-pg-why__title {
    font-size: clamp(24px, 6.5vw, 30px);
  }

  .mfm-loc-pg-why__grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   SERVICES — 4 service cards
   ============================================================ */

.mfm-loc-pg-services {
  position: relative;
  background-color: var(--mfm-warm-gray);
  padding: 90px 32px 100px 32px;
  overflow: hidden;
}

.mfm-loc-pg-services__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mfm-loc-pg-services__header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.mfm-loc-pg-services__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--mfm-font-subhead);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mfm-teal);
  margin-bottom: 18px;
}

.mfm-loc-pg-services__eyebrow::before,
.mfm-loc-pg-services__eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background-color: var(--mfm-teal);
}

.mfm-loc-pg-services__title {
  font-family: var(--mfm-font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--mfm-charcoal);
  text-transform: uppercase;
  margin: 0 0 14px 0;
}

.mfm-loc-pg-services__title .accent {
  color: var(--mfm-orange);
}

.mfm-loc-pg-services__subtitle {
  font-family: var(--mfm-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--mfm-slate);
  margin: 0;
}

.mfm-loc-pg-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.mfm-loc-pg-services__grid > p,
.mfm-loc-pg-services__grid > br {
  display: none !important;
}

.mfm-loc-pg-service {
  position: relative;
  background-color: var(--mfm-white);
  border: 1px solid rgba(18, 18, 18, 0.06);
  border-radius: 12px;
  padding: 30px 30px;
  transition: all 0.3s ease;
}

.mfm-loc-pg-service:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 157, 91, 0.25);
  box-shadow: 0 14px 32px rgba(18, 18, 18, 0.07);
}

.mfm-loc-pg-service > p {
  margin: 0 !important;
  padding: 0 !important;
  display: contents !important;
}

.mfm-loc-pg-service__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--mfm-soft-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.mfm-loc-pg-service__icon i {
  color: var(--mfm-orange);
  font-size: 22px;
  line-height: 1;
}

.mfm-loc-pg-service:hover .mfm-loc-pg-service__icon {
  background-color: var(--mfm-orange);
}

.mfm-loc-pg-service:hover .mfm-loc-pg-service__icon i {
  color: var(--mfm-white);
}

.mfm-loc-pg-service__heading {
  font-family: var(--mfm-font-heading) !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.3px !important;
  color: var(--mfm-charcoal) !important;
  text-transform: none !important;
  margin: 0 0 10px 0 !important;
}

.mfm-loc-pg-service__text {
  font-family: var(--mfm-font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--mfm-slate);
  margin: 0;
}

@media (max-width: 768px) {
  .mfm-loc-pg-services {
    padding: 60px 16px 70px 16px;
  }

  .mfm-loc-pg-services__title {
    font-size: clamp(24px, 6.5vw, 30px);
  }

  .mfm-loc-pg-services__grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   PROCESS — 3 step timeline
   ============================================================ */

.mfm-loc-pg-process {
  position: relative;
  background-color: var(--mfm-white);
  padding: 90px 32px 100px 32px;
  overflow: hidden;
}

.mfm-loc-pg-process__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mfm-loc-pg-process__header {
  text-align: center;
  margin-bottom: 50px;
}

.mfm-loc-pg-process__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--mfm-font-subhead);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mfm-teal);
  margin-bottom: 18px;
}

.mfm-loc-pg-process__eyebrow::before,
.mfm-loc-pg-process__eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background-color: var(--mfm-teal);
}

.mfm-loc-pg-process__title {
  font-family: var(--mfm-font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--mfm-charcoal);
  text-transform: uppercase;
  margin: 0;
}

.mfm-loc-pg-process__title .accent {
  color: var(--mfm-orange);
}

.mfm-loc-pg-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mfm-loc-pg-process__steps > p,
.mfm-loc-pg-process__steps > br {
  display: none !important;
}

.mfm-loc-pg-process__step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}

.mfm-loc-pg-process__step > p {
  margin: 0 !important;
  padding: 0 !important;
  display: contents !important;
}

.mfm-loc-pg-process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--mfm-orange);
  color: var(--mfm-white);
  font-family: var(--mfm-font-heading);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
}

.mfm-loc-pg-process__step-title {
  font-family: var(--mfm-font-heading) !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.3px !important;
  color: var(--mfm-charcoal) !important;
  text-transform: none !important;
  margin: 0 0 10px 0 !important;
}

.mfm-loc-pg-process__step-text {
  font-family: var(--mfm-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--mfm-slate);
  margin: 0;
}

@media (max-width: 768px) {
  .mfm-loc-pg-process {
    padding: 60px 20px 70px 20px;
  }

  .mfm-loc-pg-process__title {
    font-size: clamp(24px, 6.5vw, 30px);
  }

  .mfm-loc-pg-process__steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* ============================================================
   END LOCATION LANDING PAGE STYLES
   ============================================================ */