/* ===========================
   Дозвіл Юр Сервіс — Main CSS
   =========================== */

:root {
  --navy:       #152040;
  --navy-hover: #1e2f57;
  --amber:      #FFB000;
  --amber-dark: #e09f00;
  --white:      #ffffff;
  --bg:         #f5f6fa;
  --gray:       #e8eaf0;
  --text:       #1a1a2e;
  --text-muted: #6b7280;
  --sidebar-w:  260px;
  --topbar-h:   60px;
  --radius:     8px;
  --shadow:     0 2px 16px rgba(21,32,64,.10);
  --tr:         .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===========================
   SIDEBAR
   =========================== */

.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow-y: auto;
  transition: transform var(--tr);
}

.sidebar-logo {
  padding: 20px 20px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sidebar-logo-link {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.sidebar-logo-img {
  display: block;
  width: 100%; height: auto;
}

.sidebar-nav { padding: 20px 0; flex: 1; }
.sidebar-nav a {
  display: block;
  padding: 13px 24px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: 1px; text-transform: uppercase;
  border-left: 3px solid transparent;
  transition: color var(--tr), background var(--tr), border-color var(--tr);
}
.sidebar-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,.05);
  border-left-color: rgba(255,176,0,.4);
}
.sidebar-nav a.active {
  color: var(--amber);
  background: rgba(255,176,0,.08);
  border-left-color: var(--amber);
}

.sidebar-contact {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.sidebar-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-size: 14px; font-weight: 600;
  margin-bottom: 12px;
  transition: color var(--tr);
}
.sidebar-phone:hover { color: var(--amber); }
.sidebar-messengers { display: flex; gap: 10px; }

.btn-messenger {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--tr), opacity var(--tr);
  opacity: .85;
}
.btn-messenger:hover { transform: scale(1.1); opacity: 1; }
.btn-messenger.tg { background: #29a8e0; }
.btn-messenger.vb { background: #7360f2; }

/* ===========================
   MAIN WRAPPER
   =========================== */

.main {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===========================
   TOPBAR (contains burger on mobile)
   =========================== */

.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray);
  height: var(--topbar-h);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

/* burger lives inside topbar on mobile — hidden on desktop */
.burger-btn {
  display: none;
  width: 40px; height: 40px;
  background: var(--navy);
  border: none; border-radius: var(--radius);
  cursor: pointer;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  margin-right: auto; /* push rest to right */
}
.burger-btn span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--tr);
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lang-switcher {
  display: flex; align-items: center; gap: 2px;
}
.lang-btn {
  padding: 5px 10px; border-radius: 4px;
  border: none; background: transparent;
  cursor: pointer; font-size: 12px; font-weight: 700;
  letter-spacing: .5px; color: var(--text-muted);
  transition: color var(--tr), background var(--tr);
}
.lang-btn.active { color: var(--navy); background: var(--gray); }
.lang-btn:hover:not(.active) { color: var(--navy); }
.lang-sep { color: var(--gray); font-size: 13px; }

/* Перемикач мов — випадний список */
.lang-dd { position: relative; }
.lang-dd-toggle {
  list-style: none; cursor: pointer; user-select: none;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: var(--radius);
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  color: var(--navy);
  transition: background var(--tr);
}
.lang-dd-toggle::-webkit-details-marker { display: none; }
.lang-dd-toggle::marker { content: ''; }
.lang-dd-toggle:hover { background: var(--gray); }
.lang-dd-toggle > svg:first-child { color: var(--amber); flex-shrink: 0; }
.lang-dd-caret { color: var(--text-muted); transition: transform var(--tr); }
.lang-dd[open] .lang-dd-caret { transform: rotate(180deg); }
.lang-dd-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  min-width: 130px; padding: 6px;
  background: var(--white); border: 1px solid var(--gray);
  border-radius: var(--radius); box-shadow: var(--shadow);
  z-index: 60;
}
.lang-dd-item {
  display: block; padding: 9px 12px; border-radius: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  color: var(--text-muted);
  transition: color var(--tr), background var(--tr);
}
.lang-dd-item:hover { color: var(--navy); background: var(--bg); }
.lang-dd-item.active { color: var(--navy); background: rgba(255,176,0,.12); }

.topbar-phone {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; color: var(--navy);
  transition: color var(--tr);
  white-space: nowrap;
}
.topbar-phone:hover { color: var(--amber-dark); }
.topbar-phone svg { color: var(--amber); flex-shrink: 0; }

/* ===========================
   SIDEBAR OVERLAY
   =========================== */

.sidebar-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 90;
  opacity: 0;
  transition: opacity var(--tr);
}
.sidebar-overlay.open {
  display: block;
  opacity: 1;
}

/* ===========================
   HOME — HERO
   =========================== */

.hero {
  padding: 52px 40px 36px;
}
.hero-title {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800; color: var(--navy);
  line-height: 1.25; letter-spacing: -.3px;
  max-width: 680px; margin-bottom: 16px;
}
.hero-subtitle {
  font-size: 15px; font-weight: 600;
  color: var(--amber-dark);
  max-width: 560px; line-height: 1.6;
  margin-bottom: 28px;
}
.hero-cta {
  display: flex; align-items: center;
  gap: 14px; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: var(--navy);
  font-weight: 700; font-size: 14px;
  padding: 13px 24px; border-radius: var(--radius);
  transition: background var(--tr), transform var(--tr);
  letter-spacing: .3px; white-space: nowrap;
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }
.hero-messengers { display: flex; gap: 10px; align-items: center; }

/* ===========================
   STATS BAR
   =========================== */

.stats-bar {
  display: flex;
  background: var(--navy);
  padding: 0 40px;
}
.stat-item {
  flex: 1; padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-value { font-size: 24px; font-weight: 800; color: var(--amber); line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 4px; letter-spacing: .3px; }

/* ===========================
   SERVICES GRID (HOME)
   =========================== */

.services-section {
  padding: 48px 40px 24px;
}
.section-title {
  font-size: 20px; font-weight: 700; color: var(--navy);
  margin-bottom: 28px; position: relative; padding-bottom: 12px;
}
.section-title::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--amber); border-radius: 2px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 22px 24px; border: 1px solid var(--gray);
  text-align: center;
  transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
}
.service-card:hover {
  box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--amber);
}
.service-card.highlight { background: var(--navy); border-color: var(--navy); }
.service-card.highlight:hover { border-color: var(--amber); }

.service-icon {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
/* emoji-фолбек — у плашці */
.service-icon:not(.service-icon--svg) {
  width: 56px; height: 56px;
  background: rgba(255,176,0,.12); border-radius: 10px;
  font-size: 28px;
}
.service-card.highlight .service-icon:not(.service-icon--svg) { background: rgba(255,176,0,.2); }
/* SVG-іконки — без плашки, як на референсі */
.service-icon--svg {
  color: var(--navy);
  height: 62px;
}
.service-icon--svg svg { width: auto; height: 62px; display: block; }
.service-card.highlight .service-icon--svg { color: var(--white); }
.service-card-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.4; }
.service-card.highlight .service-card-title { color: var(--amber); }
.service-card-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.service-card.highlight .service-card-desc { color: rgba(255,255,255,.7); }

/* ===========================
   HOME — ПЕРЕВАГИ + КОНТАКТНИЙ ЗАКЛИК
   =========================== */

.advantages-section { padding: 8px 40px 40px; }

.home-cta {
  margin: 0 40px 48px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.home-cta-text h2 {
  font-size: 21px; font-weight: 800; color: var(--white);
  line-height: 1.3; margin-bottom: 8px;
}
.home-cta-text p {
  font-size: 14px; color: rgba(255,255,255,.7);
  max-width: 460px; line-height: 1.6;
}
.home-cta-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ===========================
   PAGE HEADER (inner pages)
   =========================== */

.page-header { padding: 48px 40px 0; }
.page-title { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.page-intro { font-size: 15px; color: var(--text-muted); max-width: 640px; line-height: 1.7; }
.page-divider {
  width: 48px; height: 3px;
  background: var(--amber); border-radius: 2px;
  margin: 16px 40px 0;
}

/* ===========================
   PAGE CONTENT — типографіка для WYSIWYG (Про нас, статті тощо)
   =========================== */

.page-content {
  padding: 32px 40px 48px;
  max-width: 760px;
  font-size: 15px; line-height: 1.8; color: var(--text);
}
.page-content > *:first-child { margin-top: 0; }
.page-content p { margin-bottom: 16px; }
.page-content h2 {
  font-size: 19px; font-weight: 700; color: var(--navy);
  margin: 28px 0 12px; padding-bottom: 8px;
  border-bottom: 2px solid var(--amber);
}
.page-content h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 20px 0 8px; }
.page-content ul, .page-content ol {
  margin: 0 0 16px; padding-left: 22px;
}
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 8px; line-height: 1.7; }
.page-content a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--amber); }
.page-content a:hover { color: var(--amber-dark); }
.page-content strong { color: var(--navy); }
.page-content blockquote {
  margin: 0 0 16px; padding: 14px 20px;
  border-left: 3px solid var(--amber);
  background: var(--white); border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-muted); font-style: italic;
}

/* ===========================
   SERVICES PAGE
   =========================== */

.services-categories {
  padding: 36px 40px 48px;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; flex: 1;
}
.service-category {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--gray);
}
.service-category-title {
  font-size: 15px; font-weight: 700; color: var(--navy);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--amber);
}
.service-category ul { display: flex; flex-direction: column; gap: 8px; }
.service-category ul li {
  font-size: 13px; color: var(--text);
  padding-left: 14px; position: relative; line-height: 1.5;
}
.service-category ul li::before {
  content: ''; position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  border-radius: 50%; background: var(--amber);
}

/* ===========================
   LEGISLATION PAGE
   =========================== */

.articles-list {
  padding: 36px 40px 48px;
  display: flex; flex-direction: column;
  gap: 16px; max-width: 740px; flex: 1;
}
.article-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--gray);
  transition: box-shadow var(--tr);
}
.article-card:hover { box-shadow: var(--shadow); border-color: var(--amber); }
.article-card-link { display: block; }
.article-date { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.article-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.article-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.article-meta { color: var(--text-muted) !important; font-size: 13px !important; }

.articles-pagination { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.articles-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border-radius: var(--radius); border: 1px solid var(--gray);
  background: var(--white); color: var(--navy);
  font-size: 13px; font-weight: 600;
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.articles-pagination .page-numbers:hover { border-color: var(--amber); }
.articles-pagination .page-numbers.current { background: var(--navy); border-color: var(--navy); color: var(--amber); }
.articles-pagination .dots { border: none; background: none; }

/* ===========================
   ABOUT PAGE
   =========================== */

.about-content {
  padding: 36px 40px 48px;
  max-width: 800px; flex: 1;
}
.about-text {
  font-size: 15px; line-height: 1.8;
  color: var(--text); margin-bottom: 40px;
}
.advantages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.advantage-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--gray);
  border-top: 3px solid var(--amber);
}
.advantage-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.advantage-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===========================
   CONTACTS PAGE
   =========================== */

.contacts-content {
  padding: 36px 40px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 800px; flex: 1;
  align-content: start;
}
.contact-block {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--gray);
  height: fit-content;
}
.contact-block-title {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); margin-bottom: 16px;
}
.contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 36px; height: 36px;
  background: rgba(255,176,0,.12); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--amber-dark);
}
.contact-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--navy); margin-top: 2px; }
.contact-value a { color: var(--navy); transition: color var(--tr); }
.contact-value a:hover { color: var(--amber-dark); }
.contact-map iframe { width: 100%; }
.messengers-list { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.messenger-btn-big {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; color: var(--white);
  transition: opacity var(--tr), transform var(--tr);
}
.messenger-btn-big:hover { opacity: .88; transform: translateY(-1px); }
.messenger-btn-big.tg { background: #29a8e0; }
.messenger-btn-big.vb { background: #7360f2; }

/* ===========================
   SERVICE DETAIL PAGE
   =========================== */

.service-detail-content {
  padding-top: 0;
}
.service-detail-cta {
  padding: 36px 40px 48px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.btn-back {
  font-size: 14px; color: var(--text-muted);
  transition: color var(--tr);
  text-decoration: none;
}
.btn-back:hover { color: var(--navy); }

/* Services listing — card links */
.service-card-link { display: block; text-decoration: none; }
.service-card-link .service-card { cursor: pointer; }

/* ===========================
   FOOTER
   =========================== */

.site-footer {
  background: var(--navy); padding: 20px 40px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: auto; /* always sticks to bottom */
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-phone a {
  font-size: 14px; font-weight: 700; color: var(--amber);
  transition: color var(--tr);
}
.footer-phone a:hover { color: var(--white); }

/* ===========================
   RESPONSIVE — TABLET
   =========================== */

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

@media (max-width: 900px) {
  .contacts-content  { grid-template-columns: 1fr; }
  .advantages-grid   { grid-template-columns: 1fr; }
}

/* ===========================
   RESPONSIVE — MOBILE
   =========================== */

@media (max-width: 768px) {
  /* Sidebar becomes a drawer */
  .sidebar {
    transform: translateX(-100%);
    z-index: 200;
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 32px rgba(0,0,0,.3);
  }

  /* Burger appears inside topbar */
  .burger-btn { display: flex; }

  /* Main no longer offset by sidebar */
  .main { margin-left: 0; }

  /* Topbar: burger on left, controls on right */
  .topbar {
    padding: 0 16px;
    justify-content: space-between;
  }
  .topbar-phone { font-size: 13px; }
  .topbar-phone span { display: none; } /* hide text, keep icon on very small screens */

  /* Show phone text on slightly larger phones */
  @media (min-width: 400px) {
    .topbar-phone span { display: inline; }
  }

  /* Content sections */
  .hero { padding: 28px 16px 24px; }
  .hero-title { font-size: 20px; }
  .hero-subtitle { font-size: 13px; }
  .hero-cta { width: 100%; }
  .free-consult {
    width: 100%; justify-content: flex-start;
    border-radius: var(--radius);
  }
  .free-consult-text { font-size: 14px; }

  .stats-bar { padding: 0; flex-wrap: wrap; }
  .stat-item {
    flex: 1 1 50%;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 16px;
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08) !important; }

  .services-section { padding: 28px 16px 16px; }
  .services-grid { grid-template-columns: 1fr; }

  .advantages-section { padding: 4px 16px 24px; }
  .home-cta {
    margin: 0 16px 28px; padding: 24px 20px;
    flex-direction: column; align-items: stretch;
  }
  .home-cta-text h2 { font-size: 19px; }
  .home-cta-text p { max-width: 100%; }
  .home-cta-actions {
    width: 100%;
    flex-direction: column; align-items: stretch; gap: 12px;
  }
  .home-cta-actions .btn-primary {
    width: 100%; justify-content: center;
    white-space: normal; text-align: center;
  }
  .home-cta-actions .hero-messengers { width: 100%; }
  .home-cta-actions .messenger-btn-big { flex: 1; justify-content: center; }

  .page-header  { padding: 28px 16px 0; }
  .page-divider { margin: 12px 16px 0; }

  .services-categories,
  .articles-list,
  .about-content,
  .contacts-content { padding-left: 16px; padding-right: 16px; }

  .site-footer { padding: 16px; }

  .messengers-list { flex-direction: column; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 18px; }
  .lang-btn { padding: 4px 6px; font-size: 11px; }
}

/* ===========================
   Заклик «Перша консультація безкоштовна»
   (трубка, що дзвонить, поруч із CTA)
   =========================== */
.free-consult {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 24px 12px 14px;
  background: var(--amber);
  border: none;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  transition: background var(--tr), transform var(--tr);
  animation: fc-attn 2.4s ease-in-out infinite;
}
.free-consult:hover { background: var(--amber-dark); transform: translateY(-1px); }
.free-consult-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.free-consult-text {
  font-size: 15px; font-weight: 800;
  color: var(--navy); line-height: 1.25;
  letter-spacing: .2px;
}

/* Трубка хитається, ніби дзвонить */
.ring-phone-handset {
  transform-origin: 20px 20px;
  animation: fc-shake 2.4s ease-in-out infinite;
}
/* «Хвилі» дзвінка пульсують */
.ring-phone-waves {
  color: var(--amber);
  transform-origin: 20px 20px;
  animation: fc-waves 2.4s ease-in-out infinite;
}

@keyframes fc-shake {
  0%, 60%, 100% { transform: rotate(0deg); }
  5%  { transform: rotate(-14deg); }
  10% { transform: rotate(12deg); }
  15% { transform: rotate(-10deg); }
  20% { transform: rotate(8deg); }
  25% { transform: rotate(-6deg); }
  30% { transform: rotate(4deg); }
  35% { transform: rotate(0deg); }
}
@keyframes fc-waves {
  0%, 35%, 100% { opacity: .35; transform: scale(.9); }
  10%, 25%      { opacity: 1;   transform: scale(1); }
}
@keyframes fc-attn {
  0%   { box-shadow: 0 0 0 0 rgba(255, 176, 0, .55); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 176, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 176, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .free-consult,
  .ring-phone-handset,
  .ring-phone-waves { animation: none; }
  .ring-phone-waves { opacity: .7; }
}

/* ===========================
   Сайдбар: іконка телефону + графік роботи
   =========================== */
.sidebar-contact-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 10px;
  margin-bottom: 16px;
}
.sidebar-phone-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  transition: transform var(--tr), background var(--tr);
}
.sidebar-phone-icon svg { width: 18px; height: 18px; }
.sidebar-phone-icon:hover {
  background: var(--amber-dark);
  transform: scale(1.08);
  animation: fc-shake 1.6s ease-in-out;
}
.sidebar-schedule {
  display: flex; align-items: flex-start; gap: 8px;
  color: rgba(255, 255, 255, .75);
}
.sidebar-schedule > svg { flex-shrink: 0; color: var(--amber); margin-top: 1px; }
.sidebar-schedule-text {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 12px; line-height: 1.4;
}
