.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.service-card {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.service-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.service-card h3 {
    margin: 10px 0;
    font-size: 18px;
}
.service-description {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    min-height: 40px;
}
.service-pricing {
    margin: 10px 0;
    font-size: 16px;
}

.price {
    font-weight: 700;
    font-size: 18px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}
.service-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    background: black;
    color: white;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.service-button:hover {
    background: #333;
}
.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4d4d;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}
.service-card {
    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.prices-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.price-group {
    margin-bottom: 40px;
}

.price-group h2 {
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.price-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f1f1;
}

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

.price-name {
    color: #333;
}

.price-value {
    font-weight: 600;
    white-space: nowrap;
}
.price-note {
    color: #777;
    margin-bottom: 25px;
}

/* ============================================
   VIOC-style (Valvoline) оформление
   ============================================ */

:root {
    --vioc-orange: #E85C0D;
    --vioc-orange-hover: #d14a09;
    --vioc-dark: #1a1a1a;
    --vioc-dark-alt: #2d2d2d;
    --vioc-text: #333;
    --vioc-text-muted: #666;
    --vioc-bg-alt: #f5f5f5;
    --vioc-border: #e8e8e8;
    --vioc-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --vioc-radius: 8px;
}

/* --- Страница услуг (VIOC-style) --- */
.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.services-page .services-group {
    margin-bottom: 56px;
}

.services-page .services-group:first-child {
    margin-top: 24px;
}

.services-page .services-group h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--vioc-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--vioc-orange);
    display: inline-block;
}

.services-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.services-page .service-card {
    background: #fff;
    border-radius: var(--vioc-radius);
    padding: 28px 24px;
    box-shadow: var(--vioc-shadow);
    border: 1px solid var(--vioc-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.services-page .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(232, 92, 13, 0.12);
    border-color: rgba(232, 92, 13, 0.25);
}

.services-page .service-card .service-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 16px;
}

.services-page .service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vioc-dark);
    margin: 0 0 12px;
    line-height: 1.3;
}

.services-page .service-card p {
    color: var(--vioc-text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0 0 16px;
    flex-grow: 1;
}

.services-page .service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vioc-orange);
    margin-top: auto;
}

.services-page .service-card .service-link {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 20px;
    background: var(--vioc-orange);
    color: #fff !important;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.services-page .service-card .service-link:hover {
    background: var(--vioc-orange-hover);
    color: #fff !important;
}

/* Вся карточка кликабельна через stretched link */
.service-card {
    cursor: pointer;
}
.service-card .service-link::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}
.service-card .service-button,
.service-card .js-open-booking {
    position: relative;
    z-index: 2;
}

/* --- Страница цен (VIOC-style) --- */
.prices-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.prices-page h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vioc-dark);
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--vioc-orange);
    display: inline-block;
}

.prices-page .price-note {
    color: var(--vioc-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 32px;
}

.prices-page .price-group h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--vioc-dark);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--vioc-orange);
    display: inline-block;
}

.prices-page .price-table {
    background: #fff;
    border-radius: var(--vioc-radius);
    overflow: hidden;
    box-shadow: var(--vioc-shadow);
    border: 1px solid var(--vioc-border);
}

.prices-page .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--vioc-border);
    transition: background 0.15s ease;
}

.prices-page .price-row:hover {
    background: rgba(232, 92, 13, 0.04);
}

.prices-page .price-row:last-child {
    border-bottom: none;
}

.prices-page .price-name {
    color: var(--vioc-text);
    font-size: 1rem;
}

.prices-page .price-value {
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--vioc-orange);
    white-space: nowrap;
}

@media (max-width: 640px) {
    .services-page .services-grid {
        grid-template-columns: 1fr;
    }
    .prices-page .price-row {
        flex-wrap: wrap;
        gap: 4px;
    }
}

/* ============================================
   VIOC-style Header + Navigation
   ============================================ */

/* --- Шапка (header#masthead.site-header) --- */
.site-header,
#masthead {
    background-color: #1a1a1a !important;
    color: #fff !important;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.inside-header {
    min-height: 70px;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.site-header .site-logo a,
.site-header .main-title a,
.site-header .site-description {
    color: #fff !important;
}

.site-header .main-title a:hover {
    color: var(--vioc-orange) !important;
}

.site-header .site-description {
    color: rgba(255,255,255,0.85) !important;
}

.site-header a {
    color: #fff !important;
}

.site-header a:hover {
    color: var(--vioc-orange) !important;
}

.site-header .header-widget {
    color: rgba(255,255,255,0.9);
}

.site-header .header-widget a {
    color: #fff !important;
}

.site-header .header-widget a:hover {
    color: var(--vioc-orange) !important;
}

/* --- Навигация (в любой позиции: float, below, above) --- */
#site-navigation,
#site-navigation.main-navigation,
.main-navigation {
    background-color: #1a1a1a !important;
}

#site-navigation .main-nav > ul > li > a,
.main-navigation .main-nav > ul > li > a,
#site-navigation .menu-bar-item > a,
.main-navigation .menu-bar-item > a {
    color: #fff !important;
    font-weight: 500;
}

#site-navigation .main-nav > ul > li > a:hover,
.main-navigation .main-nav > ul > li > a:hover,
#site-navigation .menu-bar-item > a:hover,
.main-navigation .menu-bar-item > a:hover {
    color: var(--vioc-orange) !important;
}

#site-navigation .main-nav > ul > li.current-menu-item > a {
    color: var(--vioc-orange) !important;
}

/* Выпадающие подменю — светлый фон */
.main-navigation .main-nav ul ul {
    background: #fff !important;
    border-top: 3px solid var(--vioc-orange);
}

.main-navigation .main-nav ul ul li a {
    color: #333 !important;
}

.main-navigation .main-nav ul ul li a:hover {
    color: var(--vioc-orange) !important;
    background: rgba(232, 92, 13, 0.06);
}

/* Мобильное меню */
.menu-toggle,
#site-navigation .menu-toggle,
#mobile-menu-control-wrapper .menu-toggle {
    color: #fff !important;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
    color: var(--vioc-orange) !important;
}

#mobile-menu-control-wrapper {
    background-color: #1a1a1a !important;
}

/* Поиск */
#site-navigation .search-item a,
.navigation-search input {
    color: #fff !important;
}

#site-navigation .search-item a:hover {
    color: var(--vioc-orange) !important;
}

/* CTA-кнопка */
.site-header .vioc-cta,
.site-header .header-widget .button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--vioc-orange) !important;
    color: #fff !important;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.site-header .vioc-cta:hover,
.site-header .header-widget .button:hover {
    background: var(--vioc-orange-hover, #d14a09) !important;
    color: #fff !important;
}

/* --- Contact Form 7 --- */
.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.wpcf7 input[type="submit"] {
    background: #111;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.wpcf7 input[type="submit"]:hover {
    background: #333;
}

/* --- Футер в стиле Valvoline --- */
.footer-contact-block {
    background: #1a1a1a;
    color: #fff;
    padding: 32px 24px;
}
.footer-contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 28px 40px;
}
.footer-contact-col {
    flex: 0 1 auto;
    min-width: 200px;
}
.footer-contact-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 12px 0;
    color: #fff;
}
.footer-hours,
.footer-contact-col p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}
.footer-call-label {
    font-size: 13px;
    margin-bottom: 6px !important;
    color: rgba(255,255,255,0.85);
}
.footer-phone-list {
    font-size: 18px;
    font-weight: 600;
}
.footer-phone-list a,
.footer-contact-email a {
    color: #fff;
    text-decoration: none;
}
.footer-phone-list a:hover,
.footer-contact-email a:hover {
    color: var(--vioc-orange, #e85c0d);
}
.footer-phone-item {
    display: inline-block;
    margin-right: 12px;
}
.footer-phone-item a[href^="tel:"] {
    margin-right: 4px;
}

/* Копирайт внутри footer-contact-block */
.footer-copyright {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* Скрыть стандартный site-info от GP (если остался) */
.site-footer .copyright-bar,
footer.site-info {
    display: none !important;
}

/* Тёмный фон для всего футера */
.site-footer {
    background: var(--vioc-dark, #1a1a1a) !important;
    color: #fff;
}
.site-footer .inside-site-info {
    background: transparent;
}

/* Sticky footer: прижат к низу, если контента мало */
html {
    scrollbar-gutter: stable;
}

@supports not (scrollbar-gutter: stable) {
    html {
        overflow-y: scroll;
    }
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
#page {
    flex: 1 0 auto;
    width: 100%;
}
.site-footer {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .footer-contact-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-contact-col {
        min-width: 100%;
    }
}

/* --- FAQ page (VIOC-like style) --- */
.page-template-page-faq .site-content,
.page-template-page-faq .content-area,
.page-template-page-faq .site-main,
.page-template-page-faq #primary {
    min-width: 0;
}

.page-template-page-faq .site-content {
    display: block;
}

.page-template-page-faq .content-area {
    width: 100% !important;
    margin: 0 !important;
}

.page-template-page-faq .site-main {
    margin: 0 !important;
}

.page-template-page-faq .is-right-sidebar,
.page-template-page-faq .is-left-sidebar,
.page-template-page-faq .widget-area {
    display: none !important;
}

.sto-faq-page {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    box-sizing: border-box;
}

.sto-faq-page .sto-faq-title {
    margin: 0 0 28px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--vioc-orange, #e85c0d);
    color: var(--vioc-dark, #1a1a1a);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.sto-faq-list {
    display: block;
    width: 100%;
    border-top: 1px solid var(--vioc-border, #e8e8e8);
}

.sto-faq-item {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--vioc-border, #e8e8e8);
    margin: 0;
    padding: 0;
}

.sto-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 18px 0;
    color: var(--vioc-dark, #1a1a1a);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.sto-faq-question::-webkit-details-marker {
    display: none;
}

.sto-faq-question::marker {
    content: "";
}

.sto-faq-question::after {
    content: "+";
    flex: 0 0 auto;
    margin-left: 8px;
    color: var(--vioc-orange, #e85c0d);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

.sto-faq-item[open] .sto-faq-question::after {
    content: "−";
}

.sto-faq-answer {
    margin: 0;
    padding: 0 0 18px;
    color: var(--vioc-text, #333);
    font-size: 1rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.sto-faq-answer p:last-child {
    margin-bottom: 0;
}

.sto-faq-empty {
    color: var(--vioc-text-muted, #666);
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 640px) {
    .sto-faq-page {
        padding: 28px 16px 44px;
    }

    .sto-faq-page .sto-faq-title {
        margin-bottom: 22px;
        font-size: 1.65rem;
    }

    .sto-faq-question {
        padding: 16px 0;
        font-size: 1rem;
    }

    .sto-faq-question::after {
        font-size: 1.35rem;
    }

    .sto-faq-answer {
        padding-bottom: 16px;
        font-size: 0.95rem;
        line-height: 1.65;
    }
}

/* ============================================
   Service card micro-benefits
   ============================================ */
.service-card-benefits {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-card-benefits li {
    font-size: 0.8125rem;
    color: var(--vioc-text, #333);
    background: var(--vioc-bg-alt, #f5f5f5);
    padding: 4px 10px;
    border-radius: 20px;
    line-height: 1.3;
    white-space: nowrap;
}

.service-card-benefits li::before {
    content: "\2713\00a0";
    color: var(--vioc-orange);
    font-weight: 700;
}

/* ============================================
   Service card actions (page-services)
   ============================================ */
.service-card-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

.service-card-actions .service-button {
    margin-top: 0;
}

/* ============================================
   Sticky booking button
   ============================================ */
.sticky-booking-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--vioc-orange);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(232,92,13,0.35);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-booking-btn:hover {
    background: var(--vioc-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(232,92,13,0.45);
}

.sticky-booking-btn svg {
    flex-shrink: 0;
}

/* ============================================
   Booking modal (popup CF7)
   ============================================ */
.booking-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.55);
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.booking-modal-overlay.is-active {
    display: flex;
}

.booking-modal {
    position: relative;
    background: #fff;
    border-radius: var(--vioc-radius, 8px);
    padding: 32px 28px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    animation: bookingModalIn 0.25s ease;
}

@keyframes bookingModalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.15s;
}

.booking-modal-close:hover {
    color: var(--vioc-dark, #1a1a1a);
}

.booking-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vioc-dark, #1a1a1a);
    margin: 0 0 20px;
}

/* ============================================
   Single service page — full-width, no sidebar
   ============================================ */
body.single-services .site-content,
body.single-services.right-sidebar .site-content {
    display: block !important;
}

body.single-services .site-content .content-area,
body.single-services.right-sidebar .site-content .content-area,
body.single-services .content-area,
body.single-services #primary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

body.single-services .site-main,
body.single-services.right-sidebar .site-main {
    margin: 0 !important;
    width: 100% !important;
}

body.single-services #right-sidebar,
body.single-services .widget-area,
body.single-services .is-right-sidebar {
    display: none !important;
}

/* Contacts page — full-width, no sidebar */
body.page-template-page-contacts-php.right-sidebar .site-content,
body.page-template-page-contacts-php .site-content {
    display: block !important;
}

body.page-template-page-contacts-php .site-content .content-area,
body.page-template-page-contacts-php.right-sidebar .site-content .content-area,
body.page-template-page-contacts-php .content-area,
body.page-template-page-contacts-php #primary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

body.page-template-page-contacts-php .site-main,
body.page-template-page-contacts-php.right-sidebar .site-main {
    margin: 0 !important;
}

body.page-template-page-contacts-php #right-sidebar,
body.page-template-page-contacts-php .widget-area,
body.page-template-page-contacts-php .is-right-sidebar {
    display: none !important;
}

.sto-contacts-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 20px 60px;
}

.sto-contacts-map {
    margin-top: 24px;
}

.sto-contacts-map iframe {
    display: block;
    width: 100%;
    border-radius: var(--vioc-radius, 8px);
}

.service-single .service-single-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 20px 60px;
}

.service-single-header {
    position: relative;
    margin-bottom: 20px;
}

.service-single-header .promo-badge {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
}

.service-single-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 12px;
}

.service-single .entry-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vioc-dark, #1a1a1a);
    margin: 0;
    line-height: 1.2;
}

.service-single-quick-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: var(--vioc-bg-alt, #f5f5f5);
    border-radius: var(--vioc-radius, 8px);
    border-left: 4px solid var(--vioc-orange);
}

.service-single-price-block {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.service-single-price-block .old-price {
    font-size: 1rem;
}

.service-single-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vioc-orange);
}

.service-single-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--vioc-text, #333);
}

.service-single-duration svg {
    color: var(--vioc-orange);
}

.service-single-desc {
    color: var(--vioc-text-muted, #666);
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 0 0 24px;
}

.service-single .entry-content {
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-single .entry-content h2,
.service-single .entry-content h3 {
    margin-top: 28px;
    color: var(--vioc-dark, #1a1a1a);
}

/* Features checklist */
.service-features {
    margin-bottom: 32px;
}

.service-features h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--vioc-dark, #1a1a1a);
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--vioc-orange);
    display: inline-block;
}

.service-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--vioc-border, #e8e8e8);
    font-size: 1rem;
    color: var(--vioc-text, #333);
    line-height: 1.5;
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* FAQ on single service (reuses sto-faq-* from page-faq) */
.service-faq {
    margin-bottom: 32px;
}

.service-faq h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--vioc-dark, #1a1a1a);
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--vioc-orange);
    display: inline-block;
}

/* Related services ("Часто ремонтируем вместе") */
.service-related {
    margin-bottom: 32px;
}

.service-related h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--vioc-dark, #1a1a1a);
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--vioc-orange);
    display: inline-block;
}

.service-related-grid {
    display: grid;
    gap: 12px;
}

.service-related-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--vioc-border, #e8e8e8);
    border-radius: var(--vioc-radius, 8px);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-related-card:hover {
    border-color: rgba(232, 92, 13, 0.3);
    box-shadow: 0 4px 16px rgba(232, 92, 13, 0.08);
}

.service-related-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.service-related-info {
    flex: 1;
    min-width: 0;
}

.service-related-title {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--vioc-dark, #1a1a1a);
    line-height: 1.3;
}

.service-related-price {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--vioc-orange);
    margin-top: 2px;
}

.service-related-arrow {
    flex-shrink: 0;
    color: var(--vioc-orange);
    opacity: 0.5;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-related-card:hover .service-related-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* "Why us" banner (VIOC blue-style full-width) */
:root {
    --vioc-blue: #00316d;
    --vioc-blue-light: #087aaf;
}

.service-why-banner {
    background: var(--vioc-blue);
    color: #fff;
    padding: 64px 24px;
    margin-top: 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.service-why-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-why-banner h2 {
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 20px;
    color: #fff;
}

.service-why-banner h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--vioc-orange);
    margin: 16px auto 0;
    border-radius: 2px;
}

.service-why-banner p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .service-why-banner {
        padding: 44px 16px;
    }

    .service-why-banner h2 {
        font-size: 1.35rem;
    }

    .service-why-banner p {
        font-size: 1rem;
    }
}

/* CTA block */
.service-single-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--vioc-border, #e8e8e8);
}

.service-single-cta .service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.service-single-cta .service-button:not(.service-button-outline) {
    background: var(--vioc-orange);
    color: #fff;
    border-color: var(--vioc-orange);
}

.service-single-cta .service-button:not(.service-button-outline):hover {
    background: var(--vioc-orange-hover);
    border-color: var(--vioc-orange-hover);
}

.service-single-cta .service-button-outline {
    background: transparent;
    color: var(--vioc-orange);
    border-color: var(--vioc-orange);
}

.service-single-cta .service-button-outline:hover {
    background: var(--vioc-orange);
    color: #fff;
}

/* ============================================
   Mobile: single service + sticky + modal
   ============================================ */
@media (max-width: 640px) {
    .sticky-booking-btn {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    .booking-modal {
        padding: 24px 16px;
        border-radius: 12px 12px 0 0;
        max-height: 85vh;
        align-self: flex-end;
    }

    .service-single .service-single-inner {
        padding: 20px 16px 44px;
    }

    .service-single .entry-title {
        font-size: 1.5rem;
    }

    .service-single-quick-info {
        flex-direction: column;
        gap: 8px;
        padding: 14px 16px;
    }

    .service-single-price {
        font-size: 1.35rem;
    }

    .service-single-cta {
        flex-direction: column;
    }

    .service-single-cta .service-button {
        width: 100%;
        text-align: center;
    }

    .service-card-actions {
        flex-direction: column;
    }

    .service-card-actions .service-link,
    .service-card-actions .service-button {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   Car mark/model autocomplete in booking modal
   ============================================ */
.car-select-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.car-ac-wrap {
    position: relative;
}

.car-ac-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
    color: var(--vioc-text, #333);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.car-ac-input:disabled {
    background-color: var(--vioc-bg-alt, #f5f5f5);
    color: #999;
    cursor: not-allowed;
}

.car-ac-input:focus {
    border-color: var(--vioc-orange, #E85C0D);
    outline: none;
    box-shadow: 0 0 0 2px rgba(232, 92, 13, 0.15);
}

.car-ac-dropdown {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 4px;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
    z-index: 100010;
    -webkit-overflow-scrolling: touch;
}

.car-ac-option {
    padding: 10px 14px;
    font-size: 14px;
    color: var(--vioc-text, #333);
    cursor: pointer;
    transition: background .15s;
}

.car-ac-option:hover {
    background: var(--vioc-bg-alt, #f5f5f5);
}

.car-ac-header {
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--vioc-orange, #E85C0D);
    background: var(--vioc-bg-alt, #f9f9f9);
    border-bottom: 1px solid #eee;
    pointer-events: none;
}

.car-ac-empty {
    padding: 12px 14px;
    font-size: 13px;
    color: #999;
    text-align: center;
}
