/* ==========================================================================
   LOCATION PAGE — Premium Styles
   Modeled after medication page architecture (gold standard)
   Premier Weight Loss Indianapolis
   ========================================================================== */

/* --------------------------------------------------------------------------
   LOC HERO
   -------------------------------------------------------------------------- */
.loc-hero {
  position: relative;
  padding: calc(var(--header-height) + 20px) 0 60px;
  background: var(--navy);
  overflow: visible;
}

.loc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 0.8125rem;
}

.loc-breadcrumb a {
  color: var(--white-50);
  text-decoration: none;
}

.loc-breadcrumb a:hover {
  color: var(--teal);
}

.loc-breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--white-30);
}

.loc-breadcrumb span {
  color: var(--white-70);
}

.loc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 968px) {
  .loc-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Hero Content */
.loc-hero-content {
  position: relative;
  z-index: 2;
}

.loc-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.loc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.loc-hero-badge.teal {
  background: var(--teal);
  color: var(--navy);
}

.loc-hero-badge.pink {
  background: var(--pink);
  color: var(--navy);
}

.loc-hero-badge.gold {
  background: var(--gold);
  color: var(--navy);
}

.loc-hero-badge svg {
  width: 14px;
  height: 14px;
}

.loc-hero-tagline-badge {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white-50);
}

.loc-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
}

.loc-hero h1 .area-label {
  display: block;
  font-size: 0.45em;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.loc-hero-desc {
  font-size: 1.0625rem;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 32px;
}

.loc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero Card (map + stats) */
.loc-hero-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.loc-hero-map-frame {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.loc-hero-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.loc-hero-map-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(22, 27, 51, 0.9), transparent);
  pointer-events: none;
}

.loc-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--white-10);
  border-top: 1px solid var(--white-10);
}

.loc-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  background: rgba(22, 27, 51, 0.8);
}

.loc-hero-stat .val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
}

.loc-hero-stat .lbl {
  font-size: 0.6875rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   STICKY NAV
   -------------------------------------------------------------------------- */
.loc-nav-section {
  position: sticky;
  top: var(--header-height);
  z-index: 90;
  background: rgba(22, 27, 51, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
}

.loc-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 0;
  scrollbar-width: none;
}

.loc-nav::-webkit-scrollbar {
  display: none;
}

.loc-nav-item {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-50);
  text-decoration: none;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}

.loc-nav-item:hover {
  color: var(--white);
  background: var(--white-05);
}

.loc-nav-item.active {
  color: var(--navy);
  background: var(--teal);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   LOC SECTIONS — Base
   -------------------------------------------------------------------------- */
.loc-section {
  padding: 80px 0;
  position: relative;
  overflow: visible;
}

.loc-section-alt {
  background: var(--white-05);
}

.loc-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.loc-section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.loc-section-header p {
  font-size: 1rem;
  color: var(--white-60);
  line-height: 1.6;
}

/* Scroll offset for sticky header + sticky nav */
.loc-section[id] {
  scroll-margin-top: calc(var(--header-height, 80px) + 80px);
}

/* --------------------------------------------------------------------------
   OVERVIEW (like Basics — main + sidebar)
   -------------------------------------------------------------------------- */
.loc-content-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 868px) {
  .loc-content-grid {
    grid-template-columns: 1fr;
  }
}

.loc-content-main h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.loc-content-main .lead {
  font-size: 1.0625rem;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Callout (like Clinical Trial Results) */
.loc-callout {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(107, 201, 205, 0.08), rgba(107, 201, 205, 0.03));
  border: 1px solid rgba(107, 201, 205, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.loc-callout-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-dim);
  border-radius: 12px;
  flex-shrink: 0;
}

.loc-callout-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.loc-callout-content strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.loc-callout-content p {
  font-size: 0.9375rem;
  color: var(--white-60);
  line-height: 1.65;
  margin: 0;
}

/* Checklist (What to Bring) */
.loc-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loc-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--white-70);
}

.loc-checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--teal-dim);
  border: 1px solid rgba(107, 201, 205, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236bc9cd' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Quick Facts Sidebar (like med-info-box) */
.loc-info-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: calc(var(--header-height) + 80px);
}

.loc-info-box h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-50);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--white-10);
}

.loc-facts {
  margin: 0;
  padding: 0;
}

.loc-facts div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--white-05);
  gap: 12px;
}

.loc-facts div:last-child {
  border-bottom: none;
}

.loc-facts dt {
  font-size: 0.8125rem;
  color: var(--white-40);
  flex-shrink: 0;
}

.loc-facts dd {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  text-align: right;
  margin: 0;
}

.loc-facts dd a {
  color: var(--teal);
  text-decoration: none;
}

.loc-facts dd a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   SERVICES GRID (like Benefits)
   -------------------------------------------------------------------------- */
.loc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 968px) {
  .loc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .loc-services-grid {
    grid-template-columns: 1fr;
  }
}

.loc-service-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.loc-service-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.loc-service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-dim);
  border: 1px solid rgba(107, 201, 205, 0.25);
  border-radius: 12px;
  margin-bottom: 20px;
}

.loc-service-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.loc-service-card:nth-child(even) .loc-service-icon {
  background: var(--pink-dim);
  border-color: rgba(237, 110, 160, 0.25);
}

.loc-service-card:nth-child(even) .loc-service-icon svg {
  color: var(--pink);
}

.loc-service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--white);
}

.loc-service-card p {
  font-size: 0.875rem;
  color: var(--white-60);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.loc-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
}

.loc-service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.loc-service-card:hover .loc-service-link svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   GETTING STARTED STEPS (like Dosing Schedule)
   -------------------------------------------------------------------------- */
.loc-steps-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Vertical connector line */
.loc-steps-list::before {
  content: '';
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 27px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--pink));
  opacity: 0.3;
}

.loc-step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}

.loc-step-num {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-dim);
  border: 2px solid rgba(107, 201, 205, 0.3);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal);
  flex-shrink: 0;
  z-index: 1;
}

.loc-step:nth-child(even) .loc-step-num {
  background: var(--pink-dim);
  border-color: rgba(237, 110, 160, 0.3);
  color: var(--pink);
}

.loc-step-content {
  padding-top: 6px;
}

.loc-step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.loc-step-content p {
  font-size: 0.9375rem;
  color: var(--white-60);
  line-height: 1.65;
  margin: 0;
}

/* --------------------------------------------------------------------------
   VISIT INFO — Hours + Practical (like Safety dual cards)
   -------------------------------------------------------------------------- */
.loc-visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .loc-visit-grid {
    grid-template-columns: 1fr;
  }
}

.loc-visit-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.loc-visit-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-10);
}

.loc-visit-card h3 svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

/* Hours Grid */
.loc-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.loc-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--white-05);
}

.loc-hours-row:last-child {
  border-bottom: none;
}

.loc-hours-row .day {
  font-size: 0.9375rem;
  color: var(--white-70);
  text-transform: capitalize;
}

.loc-hours-row .time {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}

.loc-hours-row .time.closed {
  color: var(--white-40);
}

/* Practical Info */
.loc-practical-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.loc-practical-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.loc-practical-item .icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-05);
  border-radius: 8px;
  flex-shrink: 0;
}

.loc-practical-item .icon svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.loc-practical-item .label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.loc-practical-item .value {
  font-size: 0.9375rem;
  color: var(--white);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   REVIEWS (Social Proof)
   -------------------------------------------------------------------------- */
.loc-reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.loc-reviews-header .rating-big {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.loc-reviews-header .stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 12px 0 8px;
}

.loc-reviews-header .stars svg {
  width: 24px;
  height: 24px;
  fill: var(--gold, #f5a623);
  stroke: none;
}

.loc-reviews-header .review-count {
  font-size: 0.9375rem;
  color: var(--white-50);
}

.loc-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 868px) {
  .loc-reviews-grid {
    grid-template-columns: 1fr;
  }
}

.loc-review-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.loc-review-card .review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.loc-review-card .review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold, #f5a623);
  stroke: none;
}

.loc-review-card blockquote {
  font-size: 0.9375rem;
  color: var(--white-70);
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--white-10);
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--teal-dim);
  border: 1px solid rgba(107, 201, 205, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
}

.author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.author-date {
  font-size: 0.75rem;
  color: var(--white-40);
}

/* --------------------------------------------------------------------------
   NEARBY COMMUNITIES (Local SEO)
   -------------------------------------------------------------------------- */
.loc-nearby-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.loc-nearby-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  transition: all 0.2s ease;
}

.loc-nearby-tag:hover {
  border-color: var(--teal);
  background: var(--teal-dim);
}

.loc-nearby-tag .name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}

.loc-nearby-tag .distance {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  background: var(--teal-dim);
  padding: 2px 8px;
  border-radius: 100px;
}

/* --------------------------------------------------------------------------
   FAQ (Gold standard med-faq card style)
   -------------------------------------------------------------------------- */
.loc-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.loc-faq-item {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.loc-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.loc-faq-q svg {
  width: 20px;
  height: 20px;
  color: var(--white-40);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.loc-faq-item.open .loc-faq-q svg {
  transform: rotate(45deg);
}

.loc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.loc-faq-item.open .loc-faq-a {
  max-height: 400px;
}

.loc-faq-a p {
  padding: 0 24px 24px;
  font-size: 0.9375rem;
  color: var(--white-60);
  line-height: 1.7;
  margin: 0;
}

/* --------------------------------------------------------------------------
   OTHER LOCATIONS (like Compare Meds)
   -------------------------------------------------------------------------- */
.loc-others-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.loc-other-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
}

.loc-other-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.loc-other-card.pink:hover {
  border-color: var(--pink);
}

.loc-other-card.current {
  border-color: var(--teal);
  background: linear-gradient(135deg, rgba(107, 201, 205, 0.08), rgba(107, 201, 205, 0.03));
}

.current-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--teal);
  color: var(--navy);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.loc-other-card .card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-dim);
  border-radius: 50%;
  margin-bottom: 16px;
}

.loc-other-card .card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.loc-other-card.pink .card-icon {
  background: var(--pink-dim);
}

.loc-other-card.pink .card-icon svg {
  color: var(--pink);
}

.loc-other-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--white);
}

.loc-other-card .area {
  font-size: 0.8125rem;
  color: var(--white-50);
  margin: 0 0 12px;
}

.loc-other-card .hours {
  font-size: 0.8125rem;
  color: var(--white-40);
  margin: 0 0 16px;
}

.loc-other-card .coming-soon {
  font-size: 0.8125rem;
  color: var(--gold, #f5a623);
  font-weight: 600;
  margin: 0;
}

.loc-other-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
}

.loc-other-card .card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.loc-other-card:hover .card-link svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   FINAL CTA
   -------------------------------------------------------------------------- */
.loc-final-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(107, 201, 205, 0.12), rgba(237, 110, 160, 0.1));
  position: relative;
  overflow: hidden;
}

.loc-final-content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.loc-final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 16px;
}

.loc-final-cta p {
  font-size: 1.125rem;
  color: var(--white-60);
  margin-bottom: 32px;
}

.loc-final-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   LLM CONTENT BLOCK
   -------------------------------------------------------------------------- */
.llm-content-block {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.llm-content-block h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.llm-content-block p {
  font-size: 0.9375rem;
  color: var(--white-60);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
  .loc-hero {
    padding-bottom: 40px;
  }
  
  .loc-hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .loc-hero-stat .val {
    font-size: 1.125rem;
  }
  
  .loc-section {
    padding: 60px 0;
  }
  
  .loc-steps-list::before {
    left: 23px;
  }
  
  .loc-step-num {
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
  }
  
  .loc-visit-grid {
    grid-template-columns: 1fr;
  }
  
  .loc-reviews-grid {
    grid-template-columns: 1fr;
  }
}
