/* =========================================================
   Help on the Road — базові стилі
   Дизайн-система під логотип: чорний + золотий + білий.
   Без зовнішніх шрифтів/бібліотек — максимальна швидкість.
   ========================================================= */

:root {
  --c-black: #0b0b0c;
  --c-black-soft: #1a1b1e;
  --c-gold: #f0b90d;
  --c-gold-dark: #c99400;
  --c-gold-tint: #fff6e0;
  --c-white: #ffffff;
  --c-gray-50: #fafafa;
  --c-gray-100: #f2f2f3;
  --c-gray-200: #e6e6e8;
  --c-gray-400: #a9aaad;
  --c-gray-600: #6c6d70;
  --c-gray-800: #2c2d30;

  /* Фірмові кольори месенджерів — щоб кнопки одразу читались як
     WhatsApp / Viber / Telegram, а не просто "якісь іконки". */
  --c-whatsapp: #25d366;
  --c-whatsapp-dark: #1ebe5b;
  --c-viber: #7360f2;
  --c-viber-dark: #5f4fd6;
  --c-telegram: #26a5e4;
  --c-telegram-dark: #1e93cf;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.14);

  --container-w: 1180px;
  --header-h: 76px;
  --sticky-h: 62px;

  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--c-black-soft);
  background: var(--c-white);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; font-weight: 800; }
p { margin: 0 0 1em; }

h1 { font-size: clamp(1.9rem, 1.4rem + 2vw, 3rem); }
h2.section-title { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.8rem); }
h3 { font-size: 1.15rem; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 20px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-gold); color: var(--c-black); padding: 10px 16px; z-index: 1000;
}
.skip-link:focus { left: 10px; top: 10px; border-radius: var(--radius-sm); }

:focus-visible { outline: 3px solid var(--c-gold-dark); outline-offset: 2px; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .8em 1.4em;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--c-gold); color: var(--c-black); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--c-gold-dark); box-shadow: var(--shadow-md); }
.btn--call { background: var(--c-black); color: var(--c-white); border-radius: 999px; padding: .55em 1.1em; font-size: .92rem; }
.btn--call:hover { background: var(--c-gold-dark); color: var(--c-black); }
.btn--outline { background: transparent; color: var(--c-black); border-color: var(--c-black); }
.btn--outline:hover { background: var(--c-black); color: var(--c-white); }
.btn--icon { width: 44px; height: 44px; padding: 0; justify-content: center; border-radius: 50%; background: var(--c-gray-100); color: var(--c-black-soft); }
.btn--icon:hover { background: var(--c-gold); }
.btn--lg { padding: 1em 1.8em; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; }

.cta-row, .messenger-row, .social-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.messenger-row { margin-top: 14px; }
.social-row a { display: inline-flex; width: 42px; height: 42px; border-radius: 50%; background: var(--c-gray-100); align-items: center; justify-content: center; color: var(--c-black-soft); }
.social-row a:hover { background: var(--c-gold); }
.social-row--lg { margin-top: 20px; }

/* Месенджер-кнопки у фірмових кольорах (WhatsApp/Viber/Telegram) — скрізь,
   де вони зустрічаються (hero, сторінки послуг, контакти, футер), тому
   правило працює через [aria-label], а не окремий клас у кожному шаблоні. */
.btn--icon[aria-label="WhatsApp"], .social-row a[aria-label="WhatsApp"] { background: var(--c-whatsapp); color: var(--c-white); }
.btn--icon[aria-label="WhatsApp"]:hover, .social-row a[aria-label="WhatsApp"]:hover { background: var(--c-whatsapp-dark); }
.btn--icon[aria-label="Viber"], .social-row a[aria-label="Viber"] { background: var(--c-viber); color: var(--c-white); }
.btn--icon[aria-label="Viber"]:hover, .social-row a[aria-label="Viber"]:hover { background: var(--c-viber-dark); }
.btn--icon[aria-label="Telegram"], .social-row a[aria-label="Telegram"] { background: var(--c-telegram); color: var(--c-white); }
.btn--icon[aria-label="Telegram"]:hover, .social-row a[aria-label="Telegram"]:hover { background: var(--c-telegram-dark); }

/* Пульсуюча кнопка дзвінка — головний CTA у "шапці" кожної сторінки
   (hero / page-hero), щоб людина в стресовій ситуації на дорозі відразу
   бачила, куди тиснути, щоб зателефонувати. */
@keyframes call-pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(240, 185, 13, .55); }
  70%  { box-shadow: 0 0 0 14px rgba(240, 185, 13, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 185, 13, 0); }
}
.cta-row a.btn--primary[href^="tel:"] { animation: call-pulse-ring 2.2s cubic-bezier(.4, 0, .3, 1) infinite; }
.cta-row a.btn--primary[href^="tel:"]:hover, .cta-row a.btn--primary[href^="tel:"]:focus-visible { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .cta-row a.btn--primary[href^="tel:"] { animation: none; } }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  /* Без backdrop-filter: цей ефект (як і filter/transform) створює новий
     containing block для position:fixed нащадків — через це мобільне
     меню (.primary-nav, fixed) прив'язувалось до 76px-висоти шапки
     замість вікна браузера і ставало невидимим (нульова висота). */
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--c-gray-200);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand__logo { height: 56px; width: auto; }

.site-header__mobile-actions { display: flex; align-items: center; gap: 14px; }

/* Номер телефону біля бургера — прихований на десктопі (там номер уже
   завжди видно в .btn--call праворуч), показується тільки на мобільному. */
.header-call-mobile {
  display: none; align-items: center; gap: 6px;
  font-weight: 700; font-size: .82rem; color: var(--c-black-soft);
  white-space: nowrap;
}
.header-call-mobile svg { color: var(--c-gold-dark); flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--c-black); border-radius: 2px; }

.primary-nav { display: flex; align-items: center; justify-content: space-between; flex: 1; gap: 20px; }
.primary-nav__list { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.primary-nav__list > li { position: relative; }
.primary-nav__list a, .dropdown-toggle {
  font-weight: 600; font-size: .95rem; color: var(--c-black-soft);
  background: none; border: none; cursor: pointer; padding: 8px 0; font-family: inherit;
}
.primary-nav__list a:hover, .dropdown-toggle:hover, .primary-nav__list a.is-active { color: var(--c-gold-dark); }

.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--c-white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  min-width: 260px; padding: 10px; display: none; z-index: 50;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu li a { display: block; padding: 10px 12px; border-radius: var(--radius-sm); font-weight: 500; }
.dropdown-menu li a:hover, .dropdown-menu li a.is-active { background: var(--c-gold-tint); color: var(--c-black); }

.primary-nav__aside { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.lang-switch { display: flex; gap: 4px; background: var(--c-gray-100); border-radius: 999px; padding: 4px; }
.lang-switch__item { padding: 5px 10px; border-radius: 999px; font-size: .8rem; font-weight: 700; color: var(--c-gray-600); }
.lang-switch__item.is-active { background: var(--c-black); color: var(--c-white); }

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .header-call-mobile { display: flex; }
  .primary-nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    background: var(--c-white);
    flex-direction: column; align-items: stretch;
    padding: 20px; overflow-y: auto;
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .primary-nav__list a, .dropdown-toggle { display: block; width: 100%; text-align: left; padding: 12px 4px; border-bottom: 1px solid var(--c-gray-100); }
  .dropdown-menu { position: static; display: none; box-shadow: none; padding-left: 12px; }
  .has-dropdown.is-open .dropdown-menu { display: block; }
  .primary-nav__aside { flex-direction: column; align-items: stretch; margin-top: 16px; gap: 12px; }
  .btn--call { justify-content: center; }
}

/* ---------------- Hero ----------------
   Без картинки-лого поруч із текстом — навмисно: логотип уже є в шапці,
   а тут людині відразу, без жодного скролу чи відволікання, мають бути
   видні заголовок і кнопки "Зателефонувати"/месенджери. */
.hero { background: linear-gradient(180deg, var(--c-gold-tint) 0%, var(--c-white) 65%); padding: 48px 0 60px; overflow: hidden; }
.hero__inner { max-width: 760px; }
.badge { display: inline-block; background: var(--c-black); color: var(--c-gold); font-weight: 700; font-size: .82rem; padding: 6px 14px; border-radius: 999px; margin-bottom: 14px; }
.hero__lead { font-size: 1.15rem; color: var(--c-gray-800); }
.hero__secondary { color: var(--c-gray-600); }

/* На дуже вузьких екранах кнопки дзвінка/замовлення роблю повноширинними —
   більша і зручніша ціль для пальця, коли людина поспішає. */
@media (max-width: 480px) {
  .cta-row .btn--lg, .cta-row .btn:not(.btn--icon) { width: 100%; justify-content: center; }
  .cta-row { gap: 10px; }
}

/* ---------------- Sections / Grids ---------------- */
.section { padding: 56px 0; }
/* :where() тут навмисно — щоб цей "зебра"-фон мав ту саму специфічність,
   що й одинарний клас (напр. .contact-section), і завжди програвав
   секціям з явно заданим фоном, незалежно від того, на якій за порядком
   позиції (парній/непарній) вони опиняться після додавання нових блоків. */
.section:where(:nth-of-type(even)) { background: var(--c-gray-50); }

.grid { display: grid; gap: 22px; }
.grid--services { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .grid--services, .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--services, .grid--4, .grid--3 { grid-template-columns: 1fr; } }

.service-card, .feature-card, .vehicle-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  height: 100%;
}
.service-card:hover, .feature-card:hover, .vehicle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-gold); }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; color: var(--c-gold-dark); font-weight: 700; margin-top: 6px; }
.feature-card__icon { width: 40px; height: 40px; border-radius: 50%; background: var(--c-gold-tint); color: var(--c-gold-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }

/* ---------------- Coverage ---------------- */
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 750px) { .coverage-grid { grid-template-columns: 1fr; } }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list li { background: var(--c-white); border: 1px solid var(--c-gray-200); padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: .9rem; }
.tag-list li:has(a) { padding: 0; }
.tag-list li a { display: block; padding: 8px 16px; border-radius: 999px; transition: background .15s ease, color .15s ease; }
.tag-list li a:hover { background: var(--c-black); color: var(--c-white); }

/* ---------------- FAQ ---------------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; }
.faq-item { background: var(--c-white); border: 1px solid var(--c-gray-200); border-radius: var(--radius-md); padding: 6px 20px; }
.faq-item summary { cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none; position: relative; padding-right: 28px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 12px; font-size: 1.4rem; color: var(--c-gold-dark); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding-bottom: 14px; color: var(--c-gray-600); }

/* ---------------- Steps ---------------- */
.steps-list { display: flex; flex-direction: column; gap: 16px; max-width: 700px; padding: 0; }
.steps-list li { display: flex; align-items: flex-start; gap: 16px; }
.steps-list__num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--c-black); color: var(--c-gold); font-weight: 800; display: flex; align-items: center; justify-content: center; }

/* ---------------- Content blocks / check list ---------------- */
.content-block { margin-bottom: 30px; max-width: 820px; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; }
.check-list li svg { color: var(--c-gold-dark); flex-shrink: 0; margin-top: 4px; }

/* ---------------- Breadcrumbs / page hero ---------------- */
.breadcrumbs { padding: 16px 20px 0; font-size: .85rem; color: var(--c-gray-600); display: flex; gap: 8px; }
.breadcrumbs a:hover { color: var(--c-gold-dark); }
.page-hero { padding: 30px 0 40px; background: var(--c-gray-50); }
.page-hero__lead { font-size: 1.1rem; max-width: 760px; color: var(--c-gray-800); }

/* ---------------- Contact form ---------------- */
.contact-section { background: var(--c-black); color: var(--c-white); }
.contact-form { max-width: 640px; margin: 0 auto; }
.contact-form h2 { color: var(--c-white); }
.contact-form__subtitle { color: var(--c-gray-400); }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; margin-bottom: 6px; font-weight: 600; font-size: .9rem; }
.form-row input, .form-row textarea {
  width: 100%; padding: .8em 1em; border-radius: var(--radius-sm);
  border: 1px solid var(--c-gray-800); background: var(--c-black-soft); color: var(--c-white);
  font-family: inherit; font-size: 1rem;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--c-gold); }
.form-status { min-height: 1.4em; font-weight: 600; }
.form-status.is-success { color: #7CDB7C; }
.form-status.is-error { color: #ff8a80; }
.form-privacy { font-size: .78rem; color: var(--c-gray-400); }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* ---------------- Contacts page ---------------- */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
@media (max-width: 850px) { .contacts-grid { grid-template-columns: 1fr; } }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-details li { display: flex; gap: 14px; align-items: flex-start; }
.contact-details__icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--c-gold-tint); color: var(--c-gold-dark); display: flex; align-items: center; justify-content: center; }
.contacts-map iframe { border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--c-black-soft); color: var(--c-gray-400); padding: 50px 0 20px; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 30px; }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer h3 { color: var(--c-white); font-size: 1rem; }
/* Лого — .jpg без прозорості (білий фон), тому на темному футері показуємо
   його в невеликій білій картці-бейджі, а не намагаємось перефарбувати
   фільтром (той підхід працює лише з прозорим PNG/SVG). */
.site-footer__logo {
  display: block; margin-bottom: 14px;
  background: var(--c-white); border-radius: var(--radius-sm);
  padding: 8px 14px; width: 160px; height: auto;
}
.site-footer__list { display: flex; flex-direction: column; gap: 8px; }
.site-footer__list a:hover { color: var(--c-gold); }
.site-footer__contacts li { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.site-footer__bottom { border-top: 1px solid #2c2d30; margin-top: 30px; padding-top: 18px; font-size: .82rem; }

/* ---------------- Sticky mobile contact bar ---------------- */
.sticky-contact {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--c-black); height: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -6px 20px rgba(0,0,0,.2);
}
@media (max-width: 700px) {
  .sticky-contact { display: flex; }
  body { padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px)); }
}
.sticky-contact__item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  color: var(--c-white); font-size: .66rem; font-weight: 700; border-right: 1px solid rgba(255,255,255,.08);
  padding: 6px 0;
}
.sticky-contact__item:last-child { border-right: none; }
.sticky-contact__item:active { background: rgba(255,255,255,.06); }

/* Іконка кожного пункту — кольорова кругла "бейджа", щоб було видно з
   першого погляду, що це саме дзвінок / WhatsApp / Viber / Telegram. */
.sticky-contact__icon {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: var(--c-white);
}
.sticky-contact__icon svg { width: 17px; height: 17px; }

/* Кнопка дзвінка — головна дія на панелі: золота "бейджа" + пульсуюче
   кільце, щоб її неможливо було не помітити навіть на біглий погляд. */
.sticky-contact__item--call .sticky-contact__icon {
  background: var(--c-gold); color: var(--c-black);
  animation: call-pulse-ring 2.2s cubic-bezier(.4, 0, .3, 1) infinite;
}
.sticky-contact__item--call { color: var(--c-gold); }
.sticky-contact__item--whatsapp .sticky-contact__icon { background: var(--c-whatsapp); }
.sticky-contact__item--viber .sticky-contact__icon { background: var(--c-viber); }
.sticky-contact__item--telegram .sticky-contact__icon { background: var(--c-telegram); }
@media (prefers-reduced-motion: reduce) { .sticky-contact__item--call .sticky-contact__icon { animation: none; } }

/* ---------------- Vehicle card, fleet teaser ---------------- */
.fleet-teaser-section { background: var(--c-gold-tint); }
.fleet-teaser__inner { max-width: 980px; }
.fleet-teaser__photos { margin-top: 26px; max-width: none; }

/* ---------------- Fleet photo galleries ---------------- */
.vehicle-block { margin-bottom: 44px; padding-bottom: 36px; border-bottom: 1px solid var(--c-gray-200); }
.vehicle-block:last-child { border-bottom: none; }
.vehicle-block__header { max-width: 720px; margin-bottom: 18px; }
.vehicle-block__header h3 { margin-bottom: .3em; }
.vehicle-block__header p { color: var(--c-gray-600); }

.photo-gallery { position: relative; }
.photo-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  max-height: 260px;
  overflow: hidden;
  position: relative;
}
.photo-gallery.is-expanded .photo-gallery__grid { max-height: none; }
.photo-gallery:not(.is-expanded) .photo-gallery__grid::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 70px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--c-white) 100%);
  pointer-events: none;
}
.photo-gallery__item {
  display: block; padding: 0; border: none; background: var(--c-gray-100);
  border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in;
  aspect-ratio: 4/3; width: 100%;
}
.photo-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .2s ease; }
.photo-gallery__item:hover img { transform: scale(1.06); }
.photo-gallery__more {
  display: block; margin: 14px auto 0; background: none; border: 2px solid var(--c-black);
  border-radius: 999px; padding: .5em 1.4em; font-weight: 700; cursor: pointer; font-size: .88rem;
}
.photo-gallery__more:hover { background: var(--c-black); color: var(--c-white); }

.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 760px;
}
.service-photo-grid .photo-gallery__item { aspect-ratio: 4/3; }

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,10,11,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: 100%; max-height: 90vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox__close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none; color: var(--c-white); font-size: 2.2rem; line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover { color: var(--c-gold); }

/* ---------------- Блок "Додаткові послуги" ---------------- */
.section-subtitle { color: var(--c-gray-600); margin-top: -0.6em; margin-bottom: 1.6em; max-width: 640px; font-size: 1.02rem; }

.grid--extra-services {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) { .grid--extra-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--extra-services { grid-template-columns: 1fr; } }

.feature-card--extra { padding: 22px; }
.feature-card--extra h3 { font-size: 1.02rem; margin-bottom: .35em; }
.feature-card--extra p { color: var(--c-gray-600); font-size: .92rem; margin: 0; }

.trust-bar {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin: 30px 0 34px;
  padding: 18px 22px;
  background: var(--c-gold-tint);
  border-radius: var(--radius-md);
}
.trust-bar__item {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .92rem; color: var(--c-black-soft);
}
.trust-bar__item svg { color: var(--c-gold-dark); flex-shrink: 0; }

.parking-callout {
  display: flex; gap: 20px;
  align-items: flex-start;
  background: var(--c-black);
  color: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
}
.parking-callout__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-black);
  display: flex; align-items: center; justify-content: center;
}
.parking-callout__body h3 { color: var(--c-white); margin-bottom: .3em; }
.parking-callout__body p { color: rgba(255,255,255,.78); margin-bottom: 14px; }
.parking-callout .tag-list li { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: var(--c-white); }
.parking-callout .tag-list li a { color: var(--c-white); }
.parking-callout .tag-list li a:hover { background: var(--c-gold); color: var(--c-black); }
@media (max-width: 620px) { .parking-callout { flex-direction: column; } }

/* ---------------- Utility ---------------- */
.not-found-section { min-height: 50vh; display: flex; align-items: center; }
