/* Styles for the city/service pages, the "areas" links and the contact bar.
   The Tailwind file only contains classes the original page used, so
   everything new is styled here. Breakpoints match it: 600/768/1024/1250/1550. */

:root {
  --ink: #050b20;
  --muted: #555b6b;
  --line: rgb(225, 225, 225);
  --soft: #f8f8fd;
  --wa: #25d366;
  --viber: #7360f2;
}

/* ---------- shared: link chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border: 1px solid var(--line); border-radius: 30px;
  font-size: 14px; color: inherit; text-decoration: none; background: #fff;
  transition: background-color .2s, color .2s, border-color .2s;
}
.chip:hover { background: #000; border-color: #000; color: #fff; }
.chip-city::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .45; }

/* ---------- home: areas section ---------- */
.areas { display: flex; flex-direction: column; gap: 16px; }
.areas-lead { color: var(--muted); }

/* ---------- landing pages ---------- */
.lp {
  width: 100%; max-width: 1920px; margin: 0 auto;
  padding: 8px 24px 64px;
  display: flex; flex-direction: column; gap: 56px;
}
@media (min-width: 600px) { .lp { padding-left: 60px; padding-right: 60px; } }
@media (min-width: 1024px) { .lp { padding-left: 100px; padding-right: 100px; gap: 80px; } }
@media (min-width: 1250px) { .lp { padding-left: 150px; padding-right: 150px; } }
@media (min-width: 1550px) { .lp { padding-left: 250px; padding-right: 250px; } }

.lp h1 { font-size: clamp(26px, 4vw, 40px); line-height: 1.2; }
.lp h2 { font-size: clamp(20px, 2.4vw, 28px); line-height: 1.25; }
.lp h3 { font-size: 16px; line-height: 1.3; }
.lp p, .lp li { font-size: 15px; line-height: 1.65; }

.lp-crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: -32px; }
.lp-crumbs a { color: inherit; text-decoration: none; }
.lp-crumbs a:hover { text-decoration: underline; }

.lp-hero { display: grid; gap: 28px; align-items: center; }
@media (min-width: 1024px) { .lp-hero { grid-template-columns: 1.1fr 1fr; gap: 56px; } }
.lp-hero-text { display: flex; flex-direction: column; gap: 18px; }
.lp-lead { font-size: 17px !important; color: var(--muted); }
.lp-note { font-size: 13px !important; color: var(--muted); }
.lp-hero-img { width: 100%; height: 100%; max-height: 440px; min-height: 260px; object-fit: cover; border-radius: 16px; }

.lp-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px; padding: 0 26px; border-radius: 30px;
  font-size: 16px; font-weight: 700; text-decoration: none; transition: opacity .2s;
}
.lp-btn svg { font-size: 22px; flex: none; }
.lp-btn:hover { opacity: .85; }
.lp-btn-dark { background: #000; color: #fff; }
.lp-btn-light { background: #fff; color: #000; }
.lp-btn-wa { background: var(--wa); color: #fff; }

.lp-body { display: grid; gap: 32px; align-items: start; }
@media (min-width: 1024px) { .lp-body { grid-template-columns: 1.4fr 1fr; gap: 56px; } }
.lp-text { display: flex; flex-direction: column; gap: 16px; }
.lp-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 24px; border-radius: 16px; background: var(--soft);
}
.lp-card h2 { font-size: 18px; }
.lp-card h2 + ul, .lp-card h2 + table, .lp-card h2 + p { margin-top: -4px; }
.lp-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.lp-list li { position: relative; padding-left: 26px; }
.lp-list li::before {
  content: ""; position: absolute; left: 2px; top: .45em;
  width: 14px; height: 8px; border-left: 2px solid #16a34a; border-bottom: 2px solid #16a34a;
  transform: rotate(-45deg);
}
.lp-prices { width: 100%; font-size: 15px; }
.lp-prices td { padding: 10px 0; border-bottom: 1px solid var(--line); }
.lp-prices td:last-child { text-align: right; font-weight: 700; white-space: nowrap; }
.lp-small { font-size: 13px !important; color: var(--muted); }

.lp-steps { display: flex; flex-direction: column; gap: 28px; }
.lp-steps ol { display: grid; gap: 24px; counter-reset: step; }
@media (min-width: 600px) { .lp-steps ol { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1110px) { .lp-steps ol { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.lp-steps li { counter-increment: step; display: flex; flex-direction: column; gap: 6px; }
.lp-steps li::before {
  content: counter(step); display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 50%; background: #000; color: #fff;
  font-weight: 700; font-size: 15px; margin-bottom: 6px;
}

.lp-cta {
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
  padding: 36px 28px; border-radius: 16px; background: #343535; color: #fff;
}
.lp-cta p { color: #cacbcb; }
@media (min-width: 768px) { .lp-cta { padding: 48px; } }

.lp-related { display: flex; flex-direction: column; gap: 18px; }

/* ---------- contact bar: bottom bar on phones, floating buttons on desktop ---------- */
.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 10px; align-items: center;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: #fff; box-shadow: 0 -4px 16px rgba(0, 0, 0, .12);
}
.cta-bar a { text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.cta-call {
  flex: 1; gap: 10px; height: 50px; border-radius: 30px;
  background: #000; color: #fff; font-weight: 700; font-size: 16px;
}
.cta-call svg { font-size: 22px; }
.cta-icon { width: 50px; height: 50px; border-radius: 50%; color: #fff; flex: none; }
.cta-icon svg { font-size: 26px; }
.cta-wa { background: var(--wa); }
.cta-viber { background: var(--viber); }
body { padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); }

@media (min-width: 1024px) {
  .cta-bar {
    left: auto; right: 24px; bottom: 24px; padding: 0;
    flex-direction: column; background: none; box-shadow: none;
  }
  .cta-bar .cta-call { display: none; }
  .cta-icon { width: 56px; height: 56px; box-shadow: 0 4px 14px rgba(0, 0, 0, .2); transition: transform .2s; }
  .cta-icon:hover { transform: scale(1.08); }
  body { padding-bottom: 0; }
}

/* ---------- footer: city/service links in one wrapping row ---------- */
.foot-links { display: flex; flex-wrap: wrap; align-items: center; column-gap: 24px; row-gap: 10px; }
.foot-links p { margin-right: 8px; }
