/* === ОСНОВНЫЕ СТИЛИ === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER STYLES === */
.site-header {
    background-image: url('/assets/images/vskrytye_fon-min.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 20px 0;
    position: relative;
}



.site-header .container {
    position: relative;
    z-index: 2;
}

/* Верхняя панель */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.payment-info {
    text-align: center;
}

.payment-title {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.payment-methods {
    display: flex;
    gap: 20px;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
}

.payment-item i {
    font-size: 24px;
    margin-bottom: 5px;
    color: #4fc3f7;
}

.header-contacts {
    text-align: right;
}

.phone-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    margin-bottom: 5px;
}

.work-time {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4fc3f7;
    transform: translateY(-2px);
}

/* Навигация */
.main-nav {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    margin-bottom: 5px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 51, 102, 0.95);
    min-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.submenu li {
    gap: 5px;
}

.has-submenu:hover .submenu {
       display: flex;
    opacity: 1;
    visibility: visible;
    flex-direction: column;
}

.submenu li {
    display: block;
}

.submenu a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item {
	    display: flex;
    position: relative;
    align-items: center;
}

/* Hero секция */
.hero-section {
    text-align: center;
    padding: 5px 0;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #4fc3f7;
}

.service-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-price {
    background: #d32f2f;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}

/* CTA блок */
.cta-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 20px 30px;
    max-width: 700px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cta-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-text {
    font-size: 14px;
    margin-bottom: 5px;
    opacity: 0.9;
}

.cta-phone {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
}

.cta-social {
    display: flex;
    gap: 10px;
}

.cta-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-social a:hover {
    background: #4fc3f7;
    transform: scale(1.1);
}

.btn-primary {
    background: #1976d2;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal.show {
    display: block;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10% auto;
    max-width: 500px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 20px;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.modal-body {
    padding: 30px;
}

.modal-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.modal-phone {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #1976d2;
    text-decoration: none;
    text-align: center;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.modal-phone:hover {
    background: #e3f2fd;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #1976d2;
}

.recaptcha-wrapper {
    margin: 20px 0;
}

.btn-block {
    width: 100%;
}

.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* ============================================ */
/* МОБИЛЬНОЕ МЕНЮ                               */
/* ============================================ */

/* Кнопка Бургер (скрыта на ПК) */
.mobile-menu-toggle {
    display: none; /* Скрыто по умолчанию */
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5); /* Полупрозрачный фон */
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Эффект крестика при открытии (добавим класс .active через JS) */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Затемнение фона (Оверлей) */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Контейнер мобильного меню (Панель справа) */
.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -300px; /* Спрятано за экраном */
    width: 280px;
    height: 100%;
    background: #fff; /* Белый фон меню */
    z-index: 990999;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto; /* Прокрутка, если меню длинное */
    display: flex;
    flex-direction: column;
}

.mobile-menu-container.active {
    right: 0; /* Выезжает */
}

/* Шапка мобильного меню */
.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    background: #f8f9fa;
}

/* Кнопка закрытия (крестик внутри панели) */
.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 1002;
}

/* Стили списка внутри мобильного меню */
.mobile-menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-content li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-content a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s;
}

.mobile-menu-content a:hover,
.mobile-menu-content li.active > a {
    background: #f8f9fa;
    color: #1976d2; /* Ваш акцентный цвет */
}

/* Подменю в мобильной версии */
.mobile-menu-content .submenu {
    display: none; /* Скрыто по умолчанию */
    background: #fafafa;
    padding-left: 20px;
}

/* Класс для открытия подменю (добавим через JS) */
.mobile-menu-content li.has-submenu.open .submenu {
    display: block;
}

/* Стрелочка для пунктов с подменю */
.mobile-menu-content li.has-submenu > a {
    position: relative;
    padding-right: 40px;
}

.mobile-menu-content li.has-submenu > a::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #999;
    transition: transform 0.3s;
}

.mobile-menu-content li.has-submenu.open > a::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

/* ============================================ */
/* АДАПТИВНОСТЬ (MEDIA QUERIES)                 */
/* ============================================ */

@media (max-width: 768px) {
    /* Показываем бургер */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Скрываем десктопное меню */
    .desktop-nav {
        display: none;
    }
    
    /* Корректируем отступы header, чтобы контент не залезал под бургер */
    .site-header .container {
        padding-top: 60px; 
    }
}


/* ============================================ */
/* ЛИПКИЙ ХЕДЕР (STICKY HEADER)                 */
/* ============================================ */
.sticky-header {
    display: none; /* Скрыт по умолчанию */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0d253f; /* Темно-синий как на скриншоте */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.sticky-header.visible {
    display: block; /* Показываем при скролле */
}

.sticky-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.sticky-logo img {
    max-height: 40px;
    width: auto;
}

/* Меню в липком хедере */
.sticky-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.sticky-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.sticky-nav a:hover {
    background: rgba(255,255,255,0.1);
}

/* Контакты в липком хедере */
.sticky-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.sticky-phone {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

.sticky-work-time {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
}

.sticky-socials {
    display: flex;
    gap: 8px;
}

.sticky-socials a {
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
}

.sticky-socials a:hover {
    color: #4fc3f7;
}

/* Отступ для body, чтобы контент не прыгал */
body.has-sticky-header {
    padding-top: 60px;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .sticky-nav,
    .sticky-contacts {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
}





/* ============================================ */
/* СТИЛИ ДЛЯ PAGEBUILDER                        */
/* ============================================ */
.pb-block {
	margine-top: 20px;
    padding: 0;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.pb-text .user-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    white-space: pre-line; /* Сохраняет переносы строк */
    border: none !important;
    outline: none !important;
}

.user-content {
	    margin-bottom: -10px;
}

.user-content p {
	margin: -10px 0;
}


.pb-text .user-content p:last-child {
    margin-bottom: -30px;
}



/* Стили для простого списка */
.simple-list-block {
    margin: 5px auto;
    text-align: left !important; /* Принудительно слева */
		    max-width: 1200px;
    padding: 0 20px;
}

.simple-list-block ul {
    list-style-type: disc; /* Маркеры */
    padding-left: 25px;    /* Отступ для маркеров */
    margin: 0;
    text-align: left !important;
}

.simple-list-block li {
    text-align: left !important;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 16px;
    color: #333;
}

/* ============================================ */
/* СТИЛИ ДЛЯ БЛОКА ПРАЙС-ЛИСТ                   */
/* ============================================ */

.pb-pricelist .pricelist-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.pb-pricelist .pricelist-table-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 3px solid #d32f2f;
    padding-bottom: 10px;
}

.pb-pricelist .pricelist-table-wrapper {
    margin-bottom: 30px;
}

.pb-pricelist .pricelist-table {
    width: 100%;
    border-collapse: collapse;
}

.pb-pricelist .pricelist-row {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s ease;
}

.pb-pricelist .pricelist-row:hover {
    background: #f9f9f9;
}

.pb-pricelist .pricelist-service {
    padding: 15px 10px;
    font-size: 16px;
    color: #333;
    text-align: left;
    vertical-align: middle;
}

.pb-pricelist .pricelist-price {
    padding: 15px 10px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    text-align: right;
    white-space: nowrap;
    vertical-align: middle;
}

.pb-pricelist .pricelist-note {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-top: 20px;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .pb-pricelist .pricelist-title {
        font-size: 28px;
    }
    
    .pb-pricelist .pricelist-table-title {
        font-size: 20px;
    }
    
    .pb-pricelist .pricelist-service,
    .pb-pricelist .pricelist-price {
        font-size: 14px;
        padding: 12px 5px;
    }
}

.pricelist-main-title {
	text-align: center;
	font-size: 36px !important;
	margin-bottom: 20px;
}

/* Стили для некликабельных пунктов меню */
.menu-label {
    color: white;
    font-size: 16px;
    padding: 10px 15px;
    display: inline-block;
    cursor: default;
}

.mobile-menu li span {
    color: black !important;
}

.menu-label:hover {
    background: transparent;
}

.menu-label i {
	margin-left: 5px;
}



/* ============================================ */
/* СТИЛИ ДЛЯ БЛОКА ПЛИТКА С УСЛУГАМИ            */
/* ============================================ */
.pb-services-grid {
    padding: 60px 0;
    background: #f8f9fa;
}

.pb-services-grid .services-grid-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a2e;
    position: relative;
}

.pb-services-grid .services-grid-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #d32f2f;
    margin: 10px auto 0;
}

.pb-services-grid .services-grid-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.pb-services-grid .services-grid-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.pb-services-grid .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pb-services-grid .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.pb-services-grid .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.pb-services-grid .service-icon {
    width: 70px;
    height: 70px;
    background: #fff0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pb-services-grid .service-icon i {
    font-size: 28px;
    color: #d32f2f;
}

.pb-services-grid .service-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #1a1a2e;
}

.pb-services-grid .service-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pb-services-grid .service-title a:hover {
    color: #d32f2f;
}

.pb-services-grid .service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    min-height: 60px;
}

.pb-services-grid .service-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #d32f2f;
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid #d32f2f;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.pb-services-grid .service-link:hover {
    background: #d32f2f;
    color: #fff;
}

/* Адаптивность */
@media (max-width: 992px) {
    .pb-services-grid .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pb-services-grid .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pb-services-grid .services-grid-title {
        font-size: 26px;
    }
    
    .pb-services-grid .service-card {
        padding: 30px 20px;
    }
}



/* ============================================ */
/* СТИЛИ ДЛЯ БЛОКА ПОСЛЕДНИЕ РАБОТЫ (SLICK)     */
/* ============================================ */
.pb-works-slider {
    padding: 60px 0;
    background: #f0f4f8;
    text-align: center;
    position: relative;
}

.pb-works-slider .works-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.pb-works-slider .works-counter {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
    display: block;
}

.pb-works-slider .works-slide-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

/* Сетка для 2-х картинок */
.pb-works-slider .works-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.pb-works-slider .works-img-col {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pb-works-slider .works-img-col img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Теги снизу */
.pb-works-slider .works-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.pb-works-slider .works-tags .tag {
    font-size: 14px;
    font-weight: 500;
    color: #d32f2f;
    border: 1px solid #d32f2f;
    padding: 5px 12px;
    border-radius: 5px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Красивые кнопки переключения */
.pb-works-slider .slick-prev,
.pb-works-slider .slick-next {
    width: 45px;
    height: 45px;
    background: rgba(211, 47, 47, 0.9); /* Красный фон */
    border: none;
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pb-works-slider .slick-prev {
    left: -60px;
}

.pb-works-slider .slick-next {
    right: -60px;
}

.pb-works-slider .slick-prev:hover,
.pb-works-slider .slick-next:hover {
    background: #b71c1c; /* Темнее при наведении */
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.pb-works-slider .slick-prev:before,
.pb-works-slider .slick-next:before {
    font-family: inherit;
    opacity: 1;
    line-height: 1;
}

/* Для мобильных - кнопки ближе */
@media (max-width: 992px) {
    .pb-works-slider .slick-prev {
        left: 10px;
    }
    .pb-works-slider .slick-next {
        right: 10px;
    }
    
    .pb-works-slider .slick-prev,
    .pb-works-slider .slick-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
        background: rgba(255, 255, 255, 0.9);
        color: #d32f2f;
    }
}

/* Адаптив */
@media (max-width: 992px) {
    .pb-works-slider .slick-prev {
        left: 10px;
    }
    .pb-works-slider .slick-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .pb-works-slider .works-images {
        flex-direction: column;
    }
    
    .pb-works-slider .works-img-col img {
        height: 200px;
    }
    
    .pb-works-slider .works-title {
        font-size: 24px;
    }
}

/* ============================================ */
/* СТИЛИ ДЛЯ БЛОКА ПРЕИМУЩЕСТВА                 */
/* ============================================ */
.pb-advantages {
    padding: 60px 0;
    background: #fff;
}

.pb-advantages .advantages-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.pb-advantages .advantages-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.pb-advantages .advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pb-advantages .advantage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pb-advantages .advantage-number {
    width: 50px;
    height: 50px;
    background: #d32f2f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Новая структура: контент справа от номера */
.pb-advantages .advantage-content {
    flex: 1;
}

.pb-advantages .advantage-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.pb-advantages .advantage-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .pb-advantages .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pb-advantages .advantages-title {
        font-size: 28px;
    }
    
    .pb-advantages .advantages-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .pb-advantages .advantage-item {
        gap: 15px;
    }
    
    .pb-advantages .advantage-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .pb-advantages .advantage-title {
        font-size: 18px;
    }
}



/* ============================================ */
/* СТИЛИ ДЛЯ БЛОКА ДОКУМЕНТЫ                    */
/* ============================================ */
.pb-documents {
    padding: 60px 0;
    background: #f8f9fa;
}

.pb-documents .documents-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1a233a;
    position: relative;
}

.pb-documents .documents-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #d32f2f;
    margin: 12px auto 0;
    border-radius: 2px;
}

.pb-documents .documents-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.pb-documents .documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pb-documents .doc-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pb-documents .doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #e8e8e8;
}

.pb-documents .doc-icon {
    width: 60px;
    height: 60px;
    background: #fff0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.pb-documents .doc-icon i {
    font-size: 24px;
    color: #d32f2f;
}

.pb-documents .doc-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a233a;
    margin: 0 0 20px 0;
    line-height: 1.3;
    min-height: 48px; /* Выравнивает карточки, если заголовки разной длины */
}

.pb-documents .doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.pb-documents .doc-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.4;
}

.pb-documents .doc-list li:last-child {
    margin-bottom: 0;
}

/* Аккуратная галочка (не зависит от версии Font Awesome) */
.pb-documents .doc-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1px;
    color: #d32f2f;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
}

/* Адаптивность */
@media (max-width: 992px) {
    .pb-documents .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pb-documents .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .pb-documents .documents-title {
        font-size: 26px;
    }
    
    .pb-documents .doc-card {
        padding: 25px 20px;
    }
}


/* ============================================ */
/* СТИЛИ ДЛЯ БЛОКА ВИДЕООТЗЫВЫ                  */
/* ============================================ */
.pb-video-reviews {
    padding: 60px 0;
    background: #f0f4f8;
    text-align: center;
}

.pb-video-reviews .video-reviews-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.pb-video-reviews .video-reviews-counter {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
}

.pb-video-reviews .video-slide-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

/* Контейнер видео (16:9) */
.pb-video-reviews .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    background: #000;
}

/* Placeholder (превью до загрузки) */
.pb-video-reviews .video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.pb-video-reviews .video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Кнопка Play */
.pb-video-reviews .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(211, 47, 47, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.pb-video-reviews .video-play-btn i {
    color: #fff;
    font-size: 28px;
    margin-left: 5px;
}

.pb-video-reviews .video-placeholder:hover .video-play-btn {
    background: #b71c1c;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Iframe (скрыт по умолчанию) */
.pb-video-reviews .video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.pb-video-reviews .video-container.loaded .video-placeholder {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pb-video-reviews .video-container.loaded .video-iframe {
    opacity: 1;
    visibility: visible;
}

/* Кнопки Slick Slider */
.pb-video-reviews .slick-prev,
.pb-video-reviews .slick-next {
    width: 45px;
    height: 45px;
    background: rgba(211, 47, 47, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pb-video-reviews .slick-prev {
    left: -60px;
}

.pb-video-reviews .slick-next {
    right: -60px;
}

.pb-video-reviews .slick-prev:hover,
.pb-video-reviews .slick-next:hover {
    background: #b71c1c;
    transform: scale(1.1);
}

.pb-video-reviews .slick-prev:before,
.pb-video-reviews .slick-next:before {
    font-family: inherit;
    opacity: 1;
    line-height: 1;
}

/* Адаптивность */
@media (max-width: 992px) {
    .pb-video-reviews .slick-prev {
        left: 10px;
    }
    .pb-video-reviews .slick-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .pb-video-reviews .video-reviews-title {
        font-size: 26px;
    }
    
    .pb-video-reviews .video-slide-title {
        font-size: 18px;
    }
    
    .pb-video-reviews .video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .pb-video-reviews .video-play-btn i {
        font-size: 24px;
    }
}


/* ============================================ */
/* СТИЛИ ДЛЯ БЛОКА БРЕНДЫ (КАРУСЕЛЬ)            */
/* ============================================ */
.pb-brands-slider {
    padding: 60px 0;
    background: #fff;
}

.pb-brands-slider .brands-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.pb-brands-slider .brands-slider-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.pb-brands-slider .brand-item {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 0 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pb-brands-slider .brand-item:hover {
    background: #fff;
    border-color: #d32f2f;
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.15);
    transform: translateY(-3px);
}

.pb-brands-slider .brand-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.pb-brands-slider .brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Кнопки навигации */
.pb-brands-slider .slick-prev,
.pb-brands-slider .slick-next {
    width: 45px;
    height: 45px;
    background: rgba(211, 47, 47, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    top: 50%;
    transform: translateY(-50%);
}

.pb-brands-slider .slick-prev {
    left: -60px;
}

.pb-brands-slider .slick-next {
    right: -60px;
}

.pb-brands-slider .slick-prev:hover,
.pb-brands-slider .slick-next:hover {
    background: #b71c1c;
    transform: translateY(-50%) scale(1.1);
}

.pb-brands-slider .slick-prev:before,
.pb-brands-slider .slick-next:before {
    font-family: inherit;
    opacity: 1;
    line-height: 1;
}

/* Адаптивность */
@media (max-width: 992px) {
    .pb-brands-slider .slick-prev {
        left: 10px;
    }
    .pb-brands-slider .slick-next {
        right: 10px;
    }
    
    .pb-brands-slider .brand-item {
        margin: 0 5px;
        padding: 15px 20px;
        height: 80px;
    }
    
    .pb-brands-slider .brand-item img {
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .pb-brands-slider .brands-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .pb-brands-slider .brand-item {
        height: 70px;
        padding: 10px 15px;
    }
    
    .pb-brands-slider .brand-item img {
        max-height: 40px;
    }
    
    .pb-brands-slider .slick-prev,
    .pb-brands-slider .slick-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}


/* ============================================ */
/* СТИЛИ ДЛЯ БЛОКА "КАК МЫ РАБОТАЕМ"            */
/* ============================================ */
.pb-how-we-work {
    padding: 70px 0;
    background: #0f2438; /* Тёмно-синий фон как на макете */
    color: #fff;
    text-align: center;
}

.pb-how-we-work .how-work-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
}

.pb-how-we-work .how-work-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

.pb-how-we-work .work-step {
    flex: 1;
    position: relative;
    padding: 0 10px;
}

/* Стрелки между шагами */
.pb-how-we-work .work-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 30px;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.pb-how-we-work .step-icon {
    font-size: 42px;
    color: #e74c3c; /* Красный акцент */
    margin-bottom: 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pb-how-we-work .step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.3;
}

.pb-how-we-work .step-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.pb-how-we-work .how-work-cta {
    margin-top: 50px;
}

.pb-how-we-work .btn-call-master {
    background: #2a93d5;
    color: #fff;
    border: none;
    padding: 16px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 147, 213, 0.3);
}

.pb-how-we-work .btn-call-master:hover {
    background: #1b7cb8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 147, 213, 0.4);
}

/* Адаптивность */
@media (max-width: 992px) {
    .pb-how-we-work .how-work-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .pb-how-we-work .work-step {
        max-width: 400px;
        width: 100%;
    }
    
    .pb-how-we-work .work-step:not(:last-child)::after {
        content: '↓';
        right: auto;
        top: auto;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .pb-how-we-work .how-work-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* ============================================ */
/* СТИЛИ ДЛЯ БЛОКА ЗАГОЛОВОК ПО ЦЕНТРУ          */
/* ============================================ */
.pb-center-heading {
    padding: 40px 0;
    background: transparent;
}

.pb-center-heading .center-heading-text {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

/* Адаптивность */
@media (max-width: 768px) {
    .pb-center-heading .center-heading-text {
        font-size: 28px;
    }
}


/* ============================================ */
/* СТИЛИ ДЛЯ БЛОКА ТИПЫ ЗАМКОВ                  */
/* ============================================ */
.pb-lock-types {
    padding: 60px 0;
    background: #fff;
}

.pb-lock-types .lock-types-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.pb-lock-types .lock-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pb-lock-types .lock-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pb-lock-types .lock-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #2a93d5;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pb-lock-types .lock-item:hover {
    background: #fff;
    border-color: #2a93d5;
    color: #1a73b5;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(42, 147, 213, 0.15);
}

.pb-lock-types .lock-item i {
    font-size: 18px;
    color: #2a93d5;
    flex-shrink: 0;
    width: 20px;
}

.pb-lock-types .lock-item span {
    line-height: 1.3;
}

/* Адаптивность */
@media (max-width: 992px) {
    .pb-lock-types .lock-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pb-lock-types .lock-types-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .pb-lock-types .lock-types-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .pb-lock-types .lock-item {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .pb-lock-types .lock-item i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .pb-lock-types {
        padding: 40px 0;
    }
    
    .pb-lock-types .lock-types-title {
        font-size: 24px;
    }
}


/* ============================================ */
/* СТИЛИ ДЛЯ БЛОКА ДВЕРЬ ЗАХЛОПНУЛАСЬ           */
/* ============================================ */
.pb-door-problem {
    padding: 60px 0;
    background: #fff;
}

.pb-door-problem .problem-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* --- Левая колонка --- */
.pb-door-problem .problem-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pb-door-problem .problem-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.pb-door-problem .problem-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pb-door-problem .problem-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 18px;
    color: #333;
    line-height: 1.4;
}

/* Красные точки списка */
.pb-door-problem .problem-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #d32f2f;
    border-radius: 50%;
}

.pb-door-problem .problem-footer {
    font-size: 16px;
    color: #555;
    background: #f0f4f8;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2a93d5;
}

/* --- Правая колонка --- */
.pb-door-problem .photo-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.pb-door-problem .photo-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.pb-door-problem .photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.pb-door-problem .photo-card {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3; /* Соотношение сторон */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pb-door-problem .photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Эффект при наведении на фото */
.pb-door-problem .photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Адаптивность */
@media (max-width: 992px) {
    .pb-door-problem .problem-layout {
        grid-template-columns: 1fr; /* Одна колонка */
        gap: 40px;
    }
    
    .pb-door-problem .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pb-door-problem .photo-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 фото в ряд */
    }
}

@media (max-width: 480px) {
    .pb-door-problem .photo-grid {
        grid-template-columns: 1fr; /* 1 фото в ряд */
    }
    
    .pb-door-problem .problem-title {
        font-size: 26px;
    }
}


/* ============================================ */
/* СТИЛИ ДЛЯ БЛОКА ОТЗЫВЫ (SLIDER)              */
/* ============================================ */
.pb-reviews-slider {
    padding: 60px 0;
    background: #0f2438;
    color: #fff;
}

.pb-reviews-slider .reviews-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.pb-reviews-slider .reviews-slider-wrapper {
    position: relative;
    margin: 0 -15px;
    padding: 10px 0 50px; /* Добавил место для точек */
}

.pb-reviews-slider .review-card {
    background: #16304a;
    border: 1px solid #2a4b6b;
    border-radius: 12px;
    padding: 30px;
    margin: 0 15px;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pb-reviews-slider .review-icon {
    font-size: 40px;
    color: #d32f2f;
    line-height: 1;
    margin-bottom: 15px;
    font-family: serif;
}

.pb-reviews-slider .review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #d1d9e6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.pb-reviews-slider .review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #2a4b6b;
    padding-top: 15px;
    font-size: 14px;
    margin-top: auto;
}

.pb-reviews-slider .review-author {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pb-reviews-slider .review-author i {
    color: #2a93d5;
    font-size: 16px;
}

.pb-reviews-slider .review-service {
    color: #8faec5;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pb-reviews-slider .review-service i {
    color: #4caf50;
    font-size: 14px;
}

/* Кнопки навигации - красивые стрелки */
.pb-reviews-slider .slick-prev,
.pb-reviews-slider .slick-next {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #d32f2f;
    border-radius: 50%;
    font-size: 0; /* Скрываем текст Previous/Next */
    color: #d32f2f;
    z-index: 10;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.pb-reviews-slider .slick-prev {
    left: -30px;
}

.pb-reviews-slider .slick-next {
    right: -30px;
}

/* Стрелки через CSS */
.pb-reviews-slider .slick-prev:before,
.pb-reviews-slider .slick-next:before {
    font-family: "Font Awesome 5 Free", "Font Awesome 4.7", FontAwesome;
    font-size: 24px;
    line-height: 1;
    opacity: 1;
    color: #d32f2f;
}

.pb-reviews-slider .slick-prev:before {
    content: "\f104"; /* FA arrow-left */
}

.pb-reviews-slider .slick-next:before {
    content: "\f105"; /* FA arrow-right */
}

.pb-reviews-slider .slick-prev:hover,
.pb-reviews-slider .slick-next:hover {
    background: #d32f2f;
    border-color: #d32f2f;
}

.pb-reviews-slider .slick-prev:hover:before,
.pb-reviews-slider .slick-next:hover:before {
    color: #fff;
}

/* Точки (dots) */
.pb-reviews-slider .slick-dots {
    bottom: 10px;
}

.pb-reviews-slider .slick-dots li button:before {
    color: #fff;
    opacity: 0.5;
    font-size: 12px;
}

.pb-reviews-slider .slick-dots li.slick-active button:before {
    color: #d32f2f;
    opacity: 1;
}

/* Адаптив */
@media (max-width: 992px) {
    .pb-reviews-slider .slick-prev { left: 10px; }
    .pb-reviews-slider .slick-next { right: 10px; }
}

@media (max-width: 768px) {
    .pb-reviews-slider .reviews-title { font-size: 26px; }
    .pb-reviews-slider .review-card { padding: 20px; min-height: 200px; }
    .pb-reviews-slider .review-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================ */
/* СТИЛИ ДЛЯ БЛОКА ПРЕДУПРЕЖДЕНИЕ + CTA         */
/* ============================================ */
.pb-warning-cta {
    padding: 60px 0;
    background: #fff;
}

.pb-warning-cta .warning-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

/* Левая колонка */
.pb-warning-cta .warning-title-wrap {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.pb-warning-cta .warning-title-wrap i {
    font-size: 32px;
    color: #d32f2f;
    margin-top: 4px;
    flex-shrink: 0;
}

.pb-warning-cta .warning-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin: 0;
}

.pb-warning-cta .warning-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Правая колонка (Карточка) */
.pb-warning-cta .cta-card {
    background: #e8f4fd;
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #d0e7f5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.pb-warning-cta .cta-header {
    font-size: 17px;
    font-weight: 600;
    color: #0f2438;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.pb-warning-cta .cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.pb-warning-cta .cta-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

.pb-warning-cta .cta-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 0;
    color: #d32f2f;
    font-weight: bold;
    font-size: 18px;
}

.pb-warning-cta .cta-contacts {
    margin-top: auto;
}

.pb-warning-cta .cta-phone {
    font-size: 16px;
    color: #555;
    margin: 0 0 15px 0;
}

.pb-warning-cta .cta-phone a {
    color: #0f2438;
    font-weight: 700;
    text-decoration: none;
    font-size: 22px;
    display: inline-block;
    transition: color 0.2s;
}

.pb-warning-cta .cta-phone a:hover {
    color: #2a93d5;
}

.pb-warning-cta .cta-btn {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: #2a93d5;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 12px rgba(42, 147, 213, 0.25);
}

.pb-warning-cta .cta-btn:hover {
    background: #1b7cb8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(42, 147, 213, 0.35);
}

/* Нижний текст */
.pb-warning-cta .warning-footer {
    margin-top: 50px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.pb-warning-cta .warning-footer p {
    font-size: 15px;
    color: #777;
    margin: 0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 992px) {
    .pb-warning-cta .warning-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .pb-warning-cta .cta-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .pb-warning-cta .warning-title-wrap i { font-size: 26px; }
    .pb-warning-cta .warning-title { font-size: 22px; }
    .pb-warning-cta .cta-phone a { font-size: 20px; }
    .pb-warning-cta .cta-btn { padding: 14px 18px; font-size: 15px; }
}


/* ============================================ */
/* СТИЛИ ДЛЯ БЛОКА FAQ                          */
/* ============================================ */
.pb-faq {
    padding: 0;
    background: #fff;
}

.pb-faq .faq-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 30px;
    text-align: center;
    margin-top: 30px;
}

.pb-faq .faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pb-faq .faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

.pb-faq .faq-item:last-child {
    border-bottom: none;
}

.pb-faq .faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.pb-faq .faq-question:hover {
    background: #f8f9fa;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 -10px;
    border-radius: 5px;
}

.pb-faq .question-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    flex: 1;
    padding-right: 20px;
}

.pb-faq .toggle {
    font-size: 24px;
    color: #d32f2f;
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pb-faq .faq-item.active .toggle {
    transform: rotate(180deg);
}

.pb-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-left: 3px solid #d32f2f;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.pb-faq .faq-answer.show {
    max-height: 500px;
    padding: 0 0 20px 20px;
}

.pb-faq .faq-answer div {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Адаптивность */
@media (max-width: 768px) {
    .pb-faq .faq-title {
        font-size: 26px;
    }
    
    .pb-faq .question-text {
        font-size: 16px;
    }
    
    .pb-faq .faq-answer div {
        font-size: 15px;
    }
}


/* ============================================ */
/* СТИЛИ ДЛЯ ФУТЕРА                             */
/* ============================================ */

/* Карта */
.footer-map {
    width: 100%;
    line-height: 0;
}

.footer-map iframe {
    display: block;
    width: 100%;
}

/* Футер */
.site-footer {
    background: #0f2438;
    color: #fff;
    padding: 50px 0 30px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.site-footer .footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2a93d5;
    display: inline-block;
}

/* Меню */
.site-footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-menu li {
    margin-bottom: 10px;
}

.site-footer .footer-menu a {
    color: #8faec5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.site-footer .footer-menu a:hover {
    color: #2a93d5;
    padding-left: 5px;
}

.site-footer .footer-menu a::before {
    content: '›';
    margin-right: 8px;
    color: #2a93d5;
    font-weight: bold;
}

/* Оплата */
.payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: #16304a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2a93d5;
    border: 2px solid #2a4b6b;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: #2a93d5;
    color: #fff;
    transform: translateY(-3px);
}

.payment-text {
    font-size: 13px;
    color: #8faec5;
    line-height: 1.4;
    margin: 0;
}

/* Контакты */
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8faec5;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-link i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.contact-link.whatsapp i {
    color: #25d366;
}

.contact-link.viber i {
    color: #7360f2;
}

.contact-link.phone i {
    color: #2a93d5;
}

.contact-link.work-time i {
    color: #4caf50;
}

/* Нижняя часть футера */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #16304a;
    gap: 20px;
}

.footer-bottom-left {
    flex: 1;
}

.footer-bottom .copyright {
    font-size: 13px;
    color: #8faec5;
    margin: 0 0 5px 0;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    color: #5a7a95;
    margin: 0;
}

.btn-callback-footer {
    background: #2a93d5;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-callback-footer:hover {
    background: #1b7cb8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 147, 213, 0.4);
}

/* Адаптивность */
@media (max-width: 992px) {
    .site-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-callback-footer {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 25px;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .footer-contacts {
        align-items: center;
    }
}


/* ============================================ */
/* СТИЛИ ДЛЯ ПРЕДУПРЕЖДЕНИЯ О КУКИ              */
/* ============================================ */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #0f2438 0%, #1a3a5c 100%);
    border-top: 3px solid #d32f2f;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
    padding: 20px;
}

.cookie-notice.hidden {
    display: none;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
}

.cookie-icon {
    width: 60px;
    height: 60px;
    background: rgba(211, 47, 47, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-icon i {
    font-size: 28px;
    color: #d32f2f;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cookie-content {
    color: #fff;
}

.cookie-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
}

.cookie-text {
    font-size: 14px;
    color: #8faec5;
    margin: 0;
    line-height: 1.5;
}

.cookie-text .cookie-link {
    color: #2a93d5;
    text-decoration: none;
    border-bottom: 1px dashed #2a93d5;
    transition: color 0.3s ease;
}

.cookie-text .cookie-link:hover {
    color: #fff;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #2a93d5;
    color: #fff;
}

.cookie-accept:hover {
    background: #1b7cb8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 147, 213, 0.4);
}

.cookie-decline {
    background: transparent;
    color: #8faec5;
    border: 2px solid #2a4b6b;
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Адаптивность */
@media (max-width: 992px) {
    .cookie-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-icon {
        margin: 0 auto;
    }
    
    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-notice {
        padding: 15px;
    }
    
    .cookie-title {
        font-size: 16px;
    }
    
    .cookie-text {
        font-size: 13px;
    }
    
    .cookie-btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  src: url('...') format('woff2');
  font-display: swap;
}




/* ============================================ */
/* СТИЛИ ДЛЯ ХЛЕБНЫХ КРОШЕК (BREADCRUMBS)       */
/* ============================================ */
.breadcrumbs {
    padding: 15px 0;
    font-size: 14px;
    color: #888;
    background: #fff; /* Или #f8f9fa если нужен фон */
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
	    width: 100%;
    margin-left: auto;
	margin-right: auto;
    max-width: 1200px;
}

.breadcrumbs a {
    color: #1976d2; /* Твой основной цвет ссылок */
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #d32f2f; /* Цвет при наведении */
    text-decoration: underline;
}

.breadcrumbs .bc-sep {
    margin: 0 5px;
    color: #ccc;
    font-weight: 300;
}

.breadcrumbs .bc-current {
    color: #333;
    font-weight: 600;
}



ol {
	padding: 25px 25px;
}



.price-tabs-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 15px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* Навигация вкладок */
.price-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}
.price-tab-btn {
    background: #f0f2f5;
    border: 2px solid transparent;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.price-tab-btn:hover {
    background: #e3e6eb;
}
.price-tab-btn.active {
    background: #0f2438;
    color: #fff;
    border-color: #0f2438;
    box-shadow: 0 4px 12px rgba(15, 36, 56, 0.2);
}

/* Панели вкладок */
.price-tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}
.price-tab-panel.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Заголовки секций */
.price-tab-panel p {
    font-size: 22px;
    font-weight: 700;
    color: #0f2438;
    margin: 10px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #d32f2f;
    display: inline-block;
}
.price-tab-panel p:first-child {
    margin-top: 0;
}

/* Таблицы цен */
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}
.price-table th,
.price-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.price-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #0f2438;
}
.price-table tr:last-child td {
    border-bottom: none;
}
.price-table tr:hover {
    background: #fafbfc;
}
.price-col-name {
    width: 75%;
    font-size: 15px;
}
.price-col-value {
    width: 25%;
    font-weight: 700;
    color: #d32f2f;
    text-align: right;
    white-space: nowrap;
    font-size: 16px;
}

/* Блок предупреждения */
.price-alert {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 16px 20px;
    border-radius: 6px;
    margin: 40px 0 30px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.price-alert i {
    color: #856404;
    font-size: 20px;
    margin-top: 2px;
}
.price-alert p {
    margin: 0;
    font-size: 15px;
    color: #856404;
    line-height: 1.5;
}

/* Факторы ценообразования */
.price-factors {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.price-factors h3 {
    margin-top: 0;
    border-bottom: none;
    color: #0f2438;
}
.price-factors-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}
.price-factors-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: #444;
}
.price-factors-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-size: 20px;
    line-height: 1;
}

/* CTA блок */
.price-cta {
    text-align: center;
    background: #0f2438;
    color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
}
.price-cta p {
    margin: 0 0 20px;
    font-size: 17px;
    font-weight: 500;
}
.price-cta .btn-primary {
    background: #d32f2f;
    color: #fff;
    padding: 14px 32px;
    font-size: 18px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}
.price-cta .btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .price-tabs-nav {
        gap: 8px;
    }
    .price-tab-btn {
        flex: 1 1 auto;
        padding: 10px 12px;
        font-size: 14px;
        text-align: center;
    }
    .price-table th,
    .price-table td {
        padding: 12px 10px;
        font-size: 14px;
    }
    .price-col-value {
        font-size: 15px;
    }
    .price-factors {
        padding: 20px 15px;
    }
}


.about-us-section {
  padding: 60px 0;
  background: #fff;
  font-family: 'Arial', sans-serif;
  color: #333;
}
.about-us-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Заголовок */
.about-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px;
  color: #1a1a2e;
}

/* Вступление */
.about-intro {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Список преимуществ процесса */
.process-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 35px;
  max-width: 800px;
}
.process-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}
.process-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: #d32f2f;
  font-weight: bold;
  font-size: 18px;
}

/* Блок-контекст */
.about-context {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
  background: #f8f9fa;
  padding: 20px 25px;
  border-radius: 8px;
  border-left: 4px solid #2a93d5;
}

/* Сетка карточек */
.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}
.feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: #d32f2f;
}
.feature-icon {
  font-size: 32px;
  color: #2a93d5;
  margin-bottom: 15px;
  display: block;
}
.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px;
  line-height: 1.3;
}
.feature-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Заключительный текст */
.about-closing {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* Адаптивность */
@media (max-width: 992px) {
  .about-features { grid-template-columns: repeat(2, 1fr); }
  .about-title { font-size: 30px; }
}
@media (max-width: 768px) {
  .about-us-section { padding: 40px 0; }
  .about-title { font-size: 26px; }
  .about-features { grid-template-columns: 1fr; gap: 20px; }
  .feature-card { padding: 25px 20px; }
  .about-context, .about-intro, .about-closing { font-size: 15px; }
}




.guarantee-section {
  padding: 60px 0;
  background: #fff;
  font-family: 'Arial', sans-serif;
  color: #333;
}
.guarantee-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Заголовки */
.guarantee-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px;
  color: #1a1a2e;
}
.guarantee-subtitle {
  font-size: 18px;
  text-align: center;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Карточка с общей информацией */
.info-card {
  background: #f8f9fa;
  border-left: 5px solid #2a93d5;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 50px;
}
.info-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}
.info-card p:last-child {
  margin-bottom: 0;
}
.info-card strong {
  color: #0f2438;
}

/* Секция "По закону" */
.law-section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #1a1a2e;
  position: relative;
  display: inline-block;
  width: 100%;
}
.law-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #d32f2f;
  margin: 10px auto 0;
}

/* Сетка документов */
.documents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.doc-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.doc-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.doc-card-header i {
  font-size: 32px;
  color: #d32f2f;
}
.doc-card-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
}

/* Список документов */
.doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.doc-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}
.doc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: #28a745; /* Зеленая галочка для документов */
  font-weight: bold;
  font-size: 18px;
}
.doc-list .sub-text {
  display: block;
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}

/* Блок "Особый случай" (Темный) */
.special-case-box {
  background: #0f2438;
  color: #fff;
  padding: 40px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.special-case-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #d32f2f;
}
.special-case-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.special-case-title i {
  color: #2a93d5;
}
.special-case-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
  .guarantee-title { font-size: 28px; }
  .documents-grid { grid-template-columns: 1fr; }
  .info-card { padding: 20px; }
  .special-case-box { padding: 25px; }
}


.contacts-section {
  padding: 60px 0;
  background: #fff;
  font-family: 'Arial', sans-serif;
  color: #333;
}
.contacts-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Заголовок */
.contacts-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px;
  color: #1a1a2e;
}
.contacts-subtitle {
  text-align: center;
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Сетка карточек */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

/* Карточка контактов */
.contacts-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contacts-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contacts-card-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.contacts-card-icon i {
  font-size: 28px;
  color: #d32f2f;
}

.contacts-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 20px;
  line-height: 1.3;
}

/* Список контактов */
.contacts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contacts-list-item {
  margin-bottom: 18px;
}
.contacts-list-item:last-child {
  margin-bottom: 0;
}

/* Уникальные классы для ссылок (по запросу) */
.contacts-phone-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.2s;
  padding: 8px 0;
}
.contacts-phone-link:hover {
  color: #d32f2f;
}
.contacts-phone-link i {
  font-size: 22px;
  color: #2a93d5;
  width: 24px;
  text-align: center;
}

.contacts-messenger-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
  padding: 8px 0;
}
.contacts-messenger-link:hover {
  color: #2a93d5;
}
.contacts-messenger-link i {
  font-size: 24px;
  width: 24px;
  text-align: center;
}
.contacts-messenger-link.whatsapp i { color: #25d366; }
.contacts-messenger-link.viber i { color: #7360f2; }
.contacts-messenger-link.telegram i { color: #0088cc; }

.contacts-worktime {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #555;
  padding: 8px 0;
}
.contacts-worktime i {
  font-size: 20px;
  color: #4caf50;
  width: 24px;
  text-align: center;
}

/* Блок зоны обслуживания */
.contacts-area-card {
  background: linear-gradient(135deg, #0f2438 0%, #1a3a5c 100%);
  color: #fff;
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 8px 25px rgba(15, 36, 56, 0.3);
}
.contacts-area-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contacts-area-title i {
  color: #2a93d5;
  font-size: 24px;
}
.contacts-area-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin: 0 0 25px;
}
.contacts-area-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contacts-area-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.contacts-area-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: #2a93d5;
  font-weight: bold;
  font-size: 16px;
}

/* CTA-блок */
.contacts-cta {
  text-align: center;
  background: #f0f4f8;
  padding: 35px 30px;
  border-radius: 16px;
  border: 2px dashed #2a93d5;
}
.contacts-cta-text {
  font-size: 18px;
  color: #333;
  margin: 0 0 25px;
  line-height: 1.5;
}
.contacts-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #d32f2f;
  color: #fff;
  text-decoration: none;
  padding: 16px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}
.contacts-cta-btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}
.contacts-cta-btn i {
  font-size: 20px;
}

/* Адаптивность */
@media (max-width: 992px) {
  .contacts-grid { grid-template-columns: 1fr; gap: 30px; }
  .contacts-title { font-size: 30px; }
  .contacts-card, .contacts-area-card { padding: 30px 25px; }
}
@media (max-width: 768px) {
  .contacts-section { padding: 40px 0; }
  .contacts-title { font-size: 26px; }
  .contacts-subtitle { font-size: 16px; }
  .contacts-card-title { font-size: 20px; }
  .contacts-phone-link { font-size: 16px; }
  .contacts-cta-btn { width: 100%; justify-content: center; }
}




/* ============================================ */
/* ФИКСИРОВАННАЯ ПАНЕЛЬ ДЛЯ МОБИЛЬНЫХ          */
/* ============================================ */

.mobile-fixed-bar {
    display: none; /* Скрыто на ПК */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15);
    border-top: 1px solid #eee;
    padding: 8px 15px;
    padding-bottom: env(safe-area-inset-bottom); /* Для iPhone с челкой */
}

.mobile-bar-inner {
    display: flex;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Общие стили кнопок */
.mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Кнопка "Обратный звонок" */
.mobile-bar-callback {
    background: #f0f4f8;
    color: #0f2438;
    border: 2px solid #2a93d5;
}
.mobile-bar-callback:hover {
    background: #2a93d5;
    color: #fff;
}
.mobile-bar-callback i {
    font-size: 16px;
    color: #2a93d5;
}
.mobile-bar-callback:hover i {
    color: #fff;
}

/* Кнопка "Позвонить" */
.mobile-bar-call {
    background: #d32f2f;
    color: #fff;
}
.mobile-bar-call:hover {
    background: #b71c1c;
    transform: translateY(-1px);
}
.mobile-bar-call i {
    font-size: 16px;
    color: #fff;
}

/* Текст внутри кнопки звонка */
.mobile-bar-call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.mobile-bar-call-text span {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.95;
}
.mobile-bar-call-text strong {
    font-size: 14px;
    font-weight: 700;
}

/* Показываем только на мобильных */
@media (max-width: 768px) {
    .mobile-fixed-bar {
        display: block;
    }
    
    /* Добавляем отступ внизу, чтобы контент не перекрывался */
    body {
        padding-bottom: 70px;
    }
    
    /* Если есть футер — добавляем ему margin-bottom */
    .site-footer {
        margin-bottom: 70px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 360px) {
    .mobile-bar-btn {
        padding: 10px 8px;
        font-size: 12px;
    }
    .mobile-bar-call-text strong {
        font-size: 13px;
    }
    .mobile-bar-call-text span {
        font-size: 10px;
    }
}




/* ============================================ */
/* LIGHTBOX ДЛЯ РАБОТ (WORKS SLIDER)           */
/* ============================================ */

.works-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.works-lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.works-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.works-lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    cursor: zoom-out;
}

.works-lightbox-caption {
    color: #fff;
    font-size: 16px;
    margin-top: 15px;
    text-align: center;
    max-width: 800px;
    line-height: 1.4;
}

/* Кнопка закрытия */
.works-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}
.works-lightbox-close:hover {
    color: #d32f2f;
}

/* Кнопки навигации */
.works-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.works-lightbox-nav:hover {
    background: rgba(255,255,255,0.4);
}
.works-lightbox-prev { left: -70px; }
.works-lightbox-next { right: -70px; }

/* Курсор при наведении на фото */
.works-lightbox-trigger {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}
.works-lightbox-trigger:hover {
    transform: scale(1.02);
}

/* Адаптивность */
@media (max-width: 768px) {
    .works-lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    .works-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    .works-lightbox-prev { left: 10px; }
    .works-lightbox-next { right: 10px; }
    .works-lightbox-caption {
        font-size: 14px;
        padding: 0 20px;
    }
}