/* ════════════════════════════════
   LOCATION PAGE — location.css
   Используется совместно с styles.css и services.css
════════════════════════════════ */

/* ── HERO ── */
.loc-hero { padding: 64px 0 56px; background: #fff; border-bottom: 1px solid #e5e5e5; }

.loc-hero__inner {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 48px;
}

.loc-hero__text { max-width: 620px; }

.loc-hero__label {
  display: inline-block;
  font-size: 0.8rem; font-family: 'Arial', sans-serif;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #004AAD; margin-bottom: 16px;
}

.loc-hero__title {
  font-size: 2.6rem; font-weight: 800;
  font-family: 'Georgia', serif; line-height: 1.2;
  margin-bottom: 20px;
}

.loc-hero__desc {
  font-size: 0.95rem; font-family: 'Arial', sans-serif;
  color: #555; line-height: 1.8; margin-bottom: 32px;
}

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

.loc-hero__badges {
  display: flex; flex-direction: column; gap: 16px;
  flex-shrink: 0;
}

.loc-badge {
  border: 1.5px solid #e0e0e0; border-radius: 14px;
  padding: 20px 28px; text-align: center;
  min-width: 150px; background: #fff;
  transition: box-shadow 0.2s;
}

.loc-badge:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }

.loc-badge__num {
  display: block; font-size: 1.8rem; font-weight: 800;
  font-family: 'Georgia', serif; color: #004AAD; line-height: 1;
  margin-bottom: 6px;
}

.loc-badge__label {
  display: block; font-size: 0.75rem; font-family: 'Arial', sans-serif;
  color: #777; line-height: 1.4;
}

/* ── NEIGHBOURHOODS ── */
.loc-areas { padding: 56px 0; background: #f9f9f9; }

.loc-areas__title {
  font-size: 1.8rem; font-weight: 800; font-family: 'Georgia', serif;
  margin-bottom: 12px; text-align: center;
}

.loc-areas__desc {
  font-size: 0.88rem; font-family: 'Arial', sans-serif;
  color: #555; text-align: center; margin-bottom: 32px; line-height: 1.6;
}

.loc-areas__grid {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}

.loc-areas__grid li {
  background: #fff; border: 1.5px solid #e0e0e0; border-radius: 8px;
  padding: 8px 18px; font-size: 0.85rem; font-family: 'Arial', sans-serif;
  color: #333; transition: border-color 0.2s, color 0.2s;
}

.loc-areas__grid li:hover { border-color: #004AAD; color: #004AAD; }

/* ── SECTION TITLE (shared) ── */
.loc-section__title {
  font-size: 2rem; font-weight: 800; font-family: 'Georgia', serif;
  text-align: center; margin-bottom: 40px; padding-top: 56px;
}

/* ── WHY US ── */
.loc-trust { padding: 72px 0 80px; background: #fff; }

.loc-trust__title {
  font-size: 2rem; font-weight: 800; font-family: 'Georgia', serif;
  text-align: center; margin-bottom: 48px;
}

.loc-trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.loc-trust__item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
}

.loc-trust__icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
}

.loc-trust__item-title {
  font-size: 0.95rem; font-weight: 700;
  font-family: 'Arial', sans-serif; line-height: 1.3;
}

.loc-trust__item-desc {
  font-size: 0.85rem; font-family: 'Arial', sans-serif;
  color: #555; line-height: 1.7;
}

/* ── REVIEWS ── */
.loc-reviews { position: relative; padding: 72px 0 64px; overflow: hidden; }

.loc-reviews__bg {
  position: absolute; inset: 0;
  background: #2b2b2b; z-index: 0;
}

.loc-reviews__inner { position: relative; z-index: 1; }

.loc-reviews__title {
  font-size: 2rem; font-weight: 800; font-family: 'Georgia', serif;
  color: #fff; text-align: center; margin-bottom: 40px;
}

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

/* ── FAQ ── */
.loc-faq { padding: 72px 0 80px; background: #fff; }

.loc-faq__title {
  font-size: 1.8rem; font-weight: 800; font-family: 'Georgia', serif;
  text-align: center; margin-bottom: 40px;
}

/* ── RELATED AREAS ── */
.loc-related { padding: 56px 0 72px; background: #f9f9f9; }

.loc-related__title {
  font-size: 1.6rem; font-weight: 800; font-family: 'Georgia', serif;
  text-align: center; margin-bottom: 28px;
}

.loc-related__grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}

.loc-related__link {
  display: inline-block;
  border: 1.5px solid #004AAD; border-radius: 8px;
  padding: 10px 24px; font-size: 0.9rem; font-family: 'Arial', sans-serif;
  color: #004AAD; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.loc-related__link:hover { background: #004AAD; color: #fff; }

/* ════════════════════════════════
   RESPONSIVE — location.css
════════════════════════════════ */

@media (max-width: 1024px) {
  .loc-hero__title  { font-size: 2.2rem; }
  .loc-trust__grid  { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 768px) {
  .loc-hero         { padding: 48px 0 40px; }
  .loc-hero__inner  { flex-direction: column; gap: 32px; }
  .loc-hero__title  { font-size: 1.9rem; }
  .loc-hero__badges { flex-direction: row; flex-wrap: wrap; }
  .loc-badge        { min-width: 120px; flex: 1; }
  .loc-trust        { padding: 48px 0 56px; }
  .loc-trust__title { font-size: 1.7rem; }
  .loc-reviews__grid { grid-template-columns: 1fr; gap: 16px; }
  .loc-faq          { padding: 48px 0 56px; }
  .loc-faq__title   { font-size: 1.5rem; }
  .loc-areas__title { font-size: 1.5rem; }
  .loc-section__title { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .loc-hero__title    { font-size: 1.5rem; }
  .loc-hero__ctas     { flex-direction: column; }
  .loc-hero__ctas .btn { width: 100%; text-align: center; }
  .loc-trust__grid    { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .loc-trust__title   { font-size: 1.4rem; }
  .loc-faq__title     { font-size: 1.3rem; }
  .loc-related__title { font-size: 1.3rem; }
  .loc-section__title { font-size: 1.4rem; }
}
