/* Основные стили single-services */
.service-single-1001 {
    padding: 60px 0 80px;
    background: #fff;
}

.service-layout-1001 {
    display: grid;
    grid-template-columns: 70% 28%;
    gap: 40px;
    margin-bottom: 60px;
}

/* Левая колонка */
.service-main-content-1001 {
    width: 100%;
}

.service-content-1001 {
    width: 100%;
}

/* Заголовок */
.service-header-1001 {
    margin-bottom: 40px;
}

.service-title-1001 {
    font-size: 42px;
    color: #222;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2;
}

.service-excerpt-1001 {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
}

/* Навигация - кнопки в ряд (улучшенные) */
.service-navigation-1001 {
    margin-bottom: 40px;
}

.service-nav-list-1001 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-nav-item-1001 {
    margin: 0;
}

.service-nav-link-1001 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #f8f9fa;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.service-nav-link-1001:hover {
    background: #0000cd;
    color: #fff;
    border-color: #0000cd;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,205,0.2);
}

.service-nav-link-1001:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.service-nav-link-1001:hover:before {
    left: 100%;
}

/* Блоки контента */
.service-block-1001 {
    margin-bottom: 50px;
    padding-bottom: 40px;
   /* border-bottom: 1px solid #eee;*/
}

.service-block-1001:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-block-title-1001 {
    font-size: 32px;
    color: #222;
    margin: 0 0 25px 0;
    font-weight: 700;
    line-height: 1.2;
    border-bottom: 3px solid #0000cd;
    padding-bottom: 10px;
    display: inline-block;
}

.service-block-content-1001 {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.service-block-content-1001 p {
    margin-bottom: 15px;
}

/* Стили для маркированных списков с галочками */
.service-block-content-1001 ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-block-content-1001 ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.service-block-content-1001 ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #0000cd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    content: "✓";
    font-weight: bold;
}

.service-block-content-1001 ol {
    margin: 20px 0;
    padding-left: 20px;
}

/* Блок цен - двухколоночный layout */
.prices-list-1001 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.price-item-1001 {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 30px;
    align-items: start;
}

.price-item-1001:hover {
    border-color: #0000cd;
    box-shadow: 0 8px 30px rgba(0,0,205,0.1);
    transform: translateY(-3px);
}

.price-content-left-1001 {
    flex: 1;
}

.price-content-right-1001 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.price-title-1001 {
    font-size: 22px;
    color: #222;
    margin: 0 0 15px 0;
    font-weight: 700;
    line-height: 1.3;
}

.price-description-1001 {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

.price-description-1001 p {
    margin-bottom: 10px;
}

.price-description-1001 p:last-child {
    margin-bottom: 0;
}

.price-amount-1001 {
    font-size: 28px;
    font-weight: 800;
    color: #0000cd;
    margin: 0;
}

.price-buttons-1001 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.price-button-book-1001,
.price-button-pay-1001 {
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 100%;
}

.price-button-book-1001 {
    background: linear-gradient(135deg, #0000cd 0%, #4d4dff 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,205,0.2);
}

.price-button-book-1001:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,205,0.3);
}

.price-button-pay-1001 {
    background: #fff;
    color: #0000cd;
    border: 2px solid #0000cd;
}

.price-button-pay-1001:hover {
    background: #0000cd;
    color: #fff;
    transform: translateY(-2px);
}

/* Page Builder контент */
.service-page-builder-1001 {
    margin: 40px 0;
}

/* Правая колонка */
.service-sidebar-1001 {
    width: 100%;
}

.services-sidebar-widget-1001 {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.sidebar-title-1001 {
    font-size: 22px;
    color: #222;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2;
    border-bottom: 2px solid #0000cd;
    padding-bottom: 10px;
}

/* Список услуг в сайдбаре - ТОЛЬКО ссылки */
.sidebar-services-links-1001 {
    margin-top: 10px;
}

.services-links-list-1001 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-link-item-1001 {
    margin-bottom: 10px;
}

.service-link-1001 {
    display: block;
    color: #444;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
}

.service-link-1001:before {
    content: ">";
    position: absolute;
    left: 0;
    color: #0000cd;
    font-weight: bold;
    transition: all 0.3s ease;
}

.service-link-1001:hover {
    color: #e2ab7f;
    padding-left: 30px;
}

.service-link-1001:hover:before {
    color: #e2ab7f;
    transform: translateX(5px);
}

.current-service-1001 .service-link-1001 {
    color: #0000cd;
    font-weight: 700;
}

/* Карусель отзывов (упрощенная версия) */
.service-reviews-carousel-1001 {
    margin: 30px 0;
}

.reviews-slider-container-1001 {
    width: 100%;
    overflow: hidden;
}

.reviews-slider-track-1001 {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.review-item-1001 {
    flex: 0 0 calc(33.333% - 14px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    min-height: 320px;
}

.review-item-1001:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.review-link-1001 {
    display: block;
    line-height: 0;
    position: relative;
    height: 100%;
}

.review-image-1001 {
    width: 100%;
    height: 320px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 15px;
    transition: all 0.4s ease;
}

.review-overlay-1001 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
}

.review-overlay-text-1001 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
}

.review-link-1001:hover .review-overlay-1001 {
    opacity: 1;
}

.review-link-1001:hover .review-image-1001 {
    transform: scale(1.02);
}

/* Кнопки навигации карусели */
.reviews-slider-btn-1001 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.reviews-slider-btn-1001:hover {
    background: #0000cd;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.reviews-slider-prev-1001 {
    left: -20px;
}

.reviews-slider-next-1001 {
    right: -20px;
}

/* Кнопка назад */
.service-back-1001 {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.back-to-services-1001 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0000cd;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-services-1001:hover {
    gap: 15px;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .service-layout-1001 {
        grid-template-columns: 60% 38%;
        gap: 30px;
    }
    
    .price-item-1001 {
        grid-template-columns: 1fr 280px;
        gap: 25px;
    }
    
    .review-item-1001 {
        flex: 0 0 calc(50% - 10px);
    }
    
    .reviews-slider-prev-1001 {
        left: -20px;
    }
    
    .reviews-slider-next-1001 {
        right: -20px;
    }
}

@media (max-width: 992px) {
    .service-layout-1001 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-title-1001 {
        font-size: 36px;
    }
    
    .service-block-title-1001 {
        font-size: 28px;
    }
    
    .price-item-1001 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .price-content-right-1001 {
        padding: 25px;
    }
    
    .review-item-1001 {
        flex: 0 0 calc(100% - 0px);
    }
    
    .reviews-slider-prev-1001 {
        left: 10px;
    }
    
    .reviews-slider-next-1001 {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .service-single-1001 {
        padding: 40px 0 60px;
    }
    
    .service-title-1001 {
        font-size: 32px;
    }
    
    .service-excerpt-1001 {
        font-size: 16px;
    }
    
    .service-nav-list-1001 {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-nav-link-1001 {
        width: 100%;
        min-width: auto;
    }
    
    .price-item-1001 {
        padding: 25px 20px;
    }
    
    .price-buttons-1001 {
        flex-direction: column;
    }
    
    .price-button-book-1001,
    .price-button-pay-1001 {
        width: 100%;
    }
    
    .review-image-1001 {
        height: 280px;
    }
    
    .review-item-1001 {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .service-title-1001 {
        font-size: 28px;
    }
    
    .service-block-title-1001 {
        font-size: 24px;
    }
    
    .price-item-1001,
    .services-sidebar-widget-1001 {
        padding: 20px 15px;
    }
    
    .price-amount-1001 {
        font-size: 24px;
    }
    
    .reviews-slider-btn-1001 {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}
.f-button.is-next {
    right: 0px !important;
}











/* Блок FAQ */
.service-faq-1001 {
    margin: 60px 0;
    padding-top: 60px; /* Отступ для якоря */
    margin-top: -60px; /* Компенсация для якоря */
}

.faq-container-1001 {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-1001 {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
}

.faq-question-1001 {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.faq-question-1001:hover {
    color: #0073aa;
}

.faq-question-1001.active {
    color: #0073aa;
}

.faq-question-text-1001 {
    flex: 1;
    padding-right: 20px;
}

.faq-icon-1001 {
    transition: transform 0.3s ease;
    color: #666;
}

.faq-question-1001.active .faq-icon-1001 {
    transform: rotate(180deg);
    color: #0073aa;
}

.faq-answer-1001 {
    padding: 0 0 20px 0;
}

.faq-answer-content-1001 {
    line-height: 1.6;
    color: #555;
    font-size: 16px;
}

.faq-answer-content-1001 p {
    margin: 0 0 15px 0;
}

.faq-answer-content-1001 p:last-child {
    margin-bottom: 0;
}
















/* ============================================
   БЛОК "ОТЗЫВЫ НА ПЛАТФОРМАХ" (4 в ряд)
   ============================================ */
.service-platform-reviews-1001 {
    margin: 0px 0 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.platform-reviews-title-1001 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.platform-reviews-title-1001:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #0073aa;
}

.platform-reviews-grid-1001 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .platform-reviews-grid-1001 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .platform-reviews-grid-1001 {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.platform-review-item-1001 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    height: 100%;
}

.platform-review-item-1001:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #0073aa;
}

.platform-review-icon-1001 {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-review-icon-1001 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.platform-review-content-1001 {
    flex: 1;
    width: 100%;
}

.platform-review-name-1001 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.platform-review-rating-1001 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.rating-stars-1001 {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 1px;
}

.rating-value-1001 {
    font-weight: 700;
    font-size: 18px;
    color: #333;
}

.platform-review-count-1001 {
    font-size: 15px;
    color: #666;
    margin-bottom: 5px;
}

.platform-review-date-1001 {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

/* ============================================
   БЛОК "ПОДЕЛИТЬСЯ" (обычный блок)
   ============================================ */
.service-share-block-1001 {
    margin: 40px 0 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eaeaea;
}

.share-block-inner-1001 {
    max-width: 600px;
    margin: 0 auto;
}

.share-block-title-1001 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.share-block-title-1001:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: #0073aa;
    margin: 0 auto;
}

.share-block-buttons-1001 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.share-block-button-1001 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.share-block-button-1001:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.share-button-text-1001 {
    font-weight: 600;
}

/* Цвета кнопок */
.share-block-facebook-1001 {
    background: #3b5998;
}

.share-block-facebook-1001:hover {
    background: #2d4373;
}

.share-block-twitter-1001 {
    background: #1da1f2;
}

.share-block-twitter-1001:hover {
    background: #0c85d0;
}

.share-block-vk-1001 {
    background: #4c75a3;
}

.share-block-vk-1001:hover {
    background: #3a5a7c;
}

.share-block-telegram-1001 {
    background: #0088cc;
}

.share-block-telegram-1001:hover {
    background: #006699;
}

/* Адаптив для блока "Поделиться" */
@media (max-width: 768px) {
    .service-share-block-1001 {
        margin: 40px 0 60px;
        padding: 25px 20px;
    }
    
    .share-block-buttons-1001 {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .share-block-button-1001 {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .share-block-title-1001 {
        font-size: 20px;
    }
    
    .share-block-button-1001 {
        padding: 10px 15px;
        font-size: 15px;
    }
}

.service-faq-1001 {
    margin-bottom: 0px;
    padding-bottom: 0px;
}