/* index.css - оптимизированная версия */
:root {
    --primary-red: #ff6d6d;
    --primary-white: #FFFFFF;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --transition: all 0.3s ease;
    --border-radius: 16px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    
    /* Переменные для темной темы */
    --bg-color: var(--primary-white);
    --text-color: var(--dark-gray);
    --header-bg: var(--primary-white);
    --card-bg: var(--primary-white);
    --shadow-color: rgba(0, 0, 0, 0.05);
    --overlay-color: rgba(255, 255, 255, 0.85);
    --mobile-menu-bg: var(--primary-white);
    --border-color: #eee;
}

.dark-theme {
    --primary-red: #ff6d6d;
    --bg-color: #121212;
    --text-color: #FFFFFF;
    --header-bg: #1E1E1E;
    --card-bg: #2D2D2D;
    --shadow-color: rgba(0, 0, 0, 0.2);
    --overlay-color: rgba(30, 30, 30, 0.85);
    --mobile-menu-bg: #2D2D2D;
    --border-color: rgba(255, 255, 255, 0.1);
    --light-gray: #2D2D2D;
    --medium-gray: #CCCCCC;
}

/* Видео-шапка */
.video-header {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.dark-theme .video-background {
    filter: brightness(0.7);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
}

.video-content {
    text-align: center;
    z-index: 3;
    position: relative;
    max-width: 800px;
    width: 100%;
}

.content-container {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.video-content h1 {
    font-size: 75px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--primary-red);
    line-height: 1.1;
}

.video-content h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: -6%;
    color: var(--text-color);
    line-height: 1.3;
}

.order-btn {
    background-color: var(--primary-red);
    color: var(--primary-white);
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

/* УБРАН BOX-SHADOW И СЛОЖНЫЕ HOVER ЭФФЕКТЫ */
.order-btn:hover {
    background-color: #d40000;
}

/* ОБЩИЕ СЕКЦИИ */
.section {
    padding: 100px 0;
    min-height: 50vh;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 992px) {
    .video-overlay {
        padding-top: 75px;
    }
    
    .video-content h1 {
        font-size: 2.8rem;
    }
    
    .video-content h2 {
        font-size: 1.6rem;
    }
    
    .content-container {
        padding: 35px 30px;
        max-width: 500px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .video-overlay {
        padding-top: 70px;
    }
    
    .content-container {
        padding: 30px 25px;
        max-width: 450px;
    }
    
    .video-content h1 {
        font-size: 55px;
    }
    
    .video-content h2 {
        font-size: 15px;
    }
    
    .order-btn {
        padding: 14px 35px;
        font-size: 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .video-overlay {
        padding-top: 65px;
    }
    
    .content-container {
        padding: 25px 20px;
        max-width: 350px;
    }
    
    .video-content h1 {
        font-size: 45px;
    }
    
    .video-content h2 {
        font-size: 15px;
    }
    
    .order-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 400px) {
    .video-overlay {
        padding-top: 60px;
    }
    
    .content-container {
        padding: 20px 15px;
        max-width: 300px;
    }
    
    .video-content h1 {
        font-size: 1.7rem;
    }
    
    .video-content h2 {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section h2 {
        font-size: 1.6rem;
    }
}
/* ===== БЛОК СОЦИАЛЬНЫХ СЕТЕЙ ===== */
.social-networks-section {
    background-color: var(--bg-color);
    padding: 100px 0;
    transition: var(--transition);
}

.social-networks-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-networks-header {
    text-align: center;
    margin-bottom: 60px;
}

.social-networks-header h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.social-networks-header p {
    color: var(--medium-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.social-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-icon i {
    font-size: 32px;
    color: white;
}

.social-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-card .description {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.followers-count {
    background: var(--light-gray);
    color: var(--text-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}

.social-card:hover .followers-count {
    background: var(--primary-red);
    color: white;
}

.social-link {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    max-width: 200px;
    text-align: center;
}

.social-link:hover {
    background: #d40000;
    transform: translateY(-2px);
}

/* ===== МОБИЛЬНАЯ АДАПТАЦИЯ ===== */

/* Планшеты (768px - 992px) */
@media (max-width: 992px) {
    .social-networks-section {
        padding: 80px 0;
    }
    
    .social-networks-header h2 {
        font-size: 2.2rem;
    }
    
    .social-networks-header p {
        font-size: 1.1rem;
    }
    
    .social-cards {
        gap: 25px;
    }
    
    .social-card {
        padding: 25px;
    }
}

/* Мобильные устройства (576px - 768px) */
@media (max-width: 768px) {
    .social-networks-section {
        padding: 60px 0;
    }
    
    .social-networks-header {
        margin-bottom: 40px;
    }
    
    .social-networks-header h2 {
        font-size: 2rem;
    }
    
    .social-networks-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .social-cards {
        /* 2 карточки в строке */
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .social-card {
        padding: 20px;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .social-icon i {
        font-size: 28px;
    }
    
    .social-card h3 {
        font-size: 1.3rem;
    }
    
    .social-card .description {
        font-size: 0.9rem;
    }
    
    .social-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Маленькие мобильные (400px - 576px) */
@media (max-width: 576px) {
    .social-networks-section {
        padding: 50px 0;
    }
    
    .social-networks-container {
        padding: 0 15px;
    }
    
    .social-networks-header h2 {
        font-size: 1.8rem;
    }
    
    .social-networks-header p {
        font-size: 0.95rem;
    }
    
    .social-cards {
        /* Остаемся с 2 карточками в строке, но уменьшаем gap */
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .social-card {
        padding: 15px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .social-icon i {
        font-size: 24px;
    }
    
    .social-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .social-card .description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .followers-count {
        padding: 6px 15px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .social-link {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/* Очень маленькие экраны (менее 400px) */
@media (max-width: 400px) {
    .social-networks-section {
        padding: 40px 0;
    }
    
    .social-networks-header h2 {
        font-size: 1.6rem;
    }
    
    .social-networks-header p {
        font-size: 0.9rem;
    }
    
    .social-cards {
        /* Для очень маленьких экранов можно оставить 2 карточки с меньшим отступом */
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .social-card {
        padding: 12px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .social-icon i {
        font-size: 22px;
    }
    
    .social-card h3 {
        font-size: 1rem;
    }
    
    .social-card .description {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .followers-count {
        padding: 5px 12px;
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .social-link {
        padding: 7px 12px;
        font-size: 0.8rem;
    }
}

/* Для экранов меньше 320px - 1 карточка в строке */
@media (max-width: 320px) {
    .social-cards {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* index.css - добавьте после блока социальных сетей */

/* ===== ОБНОВЛЕННЫЙ БЛОК "ПОЧЕМУ НАМ ДОВЕРЯЮТ" (СЕТКА) ===== */
.trust-section {
    background-color: var(--bg-color);
    padding: 100px 0;
    transition: var(--transition);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-header h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-header p {
    color: var(--medium-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Сетка карточек вместо слайдера */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 320px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-red);
}

.trust-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    font-size: 36px;
    color: white;
    position: relative;
    overflow: hidden;
}

.trust-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.05);
}

.trust-card:hover .trust-icon::after {
    opacity: 1;
}

.trust-card h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.trust-card p {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 0;
}

/* ===== МОБИЛЬНАЯ АДАПТАЦИЯ ДЛЯ СЕТКИ ===== */

/* Планшеты (768px - 992px) */
@media (max-width: 992px) {
    .trust-section {
        padding: 80px 0;
    }
    
    .trust-header h2 {
        font-size: 2.2rem;
    }
    
    .trust-header p {
        font-size: 1.1rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .trust-card {
        min-height: 300px;
        padding: 30px 20px;
    }
    
    .trust-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .trust-card h3 {
        font-size: 1.3rem;
    }
}

/* Мобильные устройства (576px - 768px) */
@media (max-width: 768px) {
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-header {
        margin-bottom: 40px;
    }
    
    .trust-header h2 {
        font-size: 2rem;
    }
    
    .trust-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        gap: 20px;
    }
    
    .trust-card {
        min-height: 280px;
        padding: 25px 20px;
    }
}

/* Маленькие мобильные (менее 576px) */
@media (max-width: 576px) {
    .trust-section {
        padding: 50px 0;
    }
    
    .trust-header h2 {
        font-size: 1.8rem;
    }
    
    .trust-header p {
        font-size: 0.95rem;
    }
    
    .trust-grid {
        gap: 15px;
		grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-card {
        min-height: 260px;
        padding: 20px 15px;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .trust-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .trust-card p {
        font-size: 0.9rem;
    }
}

/* ===== БЛОК FAQ (ЧАСТО ЗАДАВАЕМЫЕ ВОПРОСЫ) ===== */
.faq-section {
    background-color: var(--bg-color);
    padding: 100px 0;
    transition: var(--transition);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.faq-header p {
    color: var(--medium-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Контейнер для FAQ и кнопки */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Стили для аккордеона FAQ */
.faq-accordion {
    margin-bottom: 50px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 6px 18px rgba(255, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-question-text {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.faq-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-icon-inactive,
.faq-icon-active {
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    color: var(--primary-red);
}

.faq-icon-active {
    transform: rotate(180deg);
    opacity: 0;
}

.faq-item.active .faq-icon-inactive {
    transform: rotate(180deg);
    opacity: 0;
}

.faq-item.active .faq-icon-active {
    transform: rotate(0);
    opacity: 1;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 1000px;
}

.faq-answer-content {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 10px 0 10px 20px;
    padding: 0;
}

.faq-answer-content li {
    margin-bottom: 8px;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* Кнопка в блоке FAQ */
.faq-button-container {
    text-align: center;
    margin-top: 40px;
}

.faq-button {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.faq-button:hover {
    background: #d40000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.2);
}

/* ===== МОБИЛЬНАЯ АДАПТАЦИЯ ДЛЯ FAQ ===== */

/* Планшеты (768px - 992px) */
@media (max-width: 992px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-header p {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 18px 22px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 22px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 22px 22px;
    }
    
    .faq-button {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

/* Мобильные устройства (576px - 768px) */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .faq-content {
        padding: 0 10px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .faq-question-text {
        padding-right: 15px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer-content {
        font-size: 0.9rem;
    }
    
    .faq-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* Маленькие мобильные (менее 576px) */
@media (max-width: 576px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-header p {
        font-size: 0.95rem;
    }
    
    .faq-question {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 18px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 18px 18px;
    }
    
    .faq-answer-content {
        font-size: 0.85rem;
    }
    
    .faq-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}
/* ===== БЛОК ВИДЕО ОТЗЫВОВ ===== */
.video-reviews-section {
    background-color: var(--bg-color);
    padding: 100px 0;
    transition: var(--transition);
}

.video-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.video-reviews-header h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.video-reviews-header p {
    color: var(--medium-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Слайдер видео отзывов */
.video-reviews-slider {
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.video-reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 10px 5px;
    will-change: transform;
}

.video-review-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Скрываем клонированные элементы от скринридеров */
.video-review-card.clone {
    visibility: visible; /* Видимы визуально */
}

/* Для доступности - скрываем клоны от скринридеров */
.video-review-card.clone * {
    user-select: none;
}

.video-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}

.video-preview {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-review-card:hover .video-preview img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-red);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    z-index: 2;
}

.video-play-btn:hover {
    background: #d40000;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn i {
    font-size: 24px;
    margin-left: 4px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.video-review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.video-review-card h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}

.video-review-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: left;
    flex-grow: 1;
}

.video-review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.video-date {
    color: var(--medium-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-date i {
    color: var(--primary-red);
}

.watch-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.watch-btn:hover {
    background: #d40000;
    transform: translateY(-2px);
}

/* Навигация слайдера */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 20px;
}

.slider-btn:hover {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.slider-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-btn.disabled:hover {
    background: var(--card-bg);
    color: var(--text-color);
    border-color: var(--border-color);
}

.slider-dots {
    display: none; /* Скрываем точки */
}

/* ===== СТРАНИЦА ПРОСМОТРА ВИДЕО ===== */
.video-page-section {
    background-color: var(--bg-color);
    padding: 120px 0 60px;
    min-height: 100vh;
}

.video-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-page-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.video-player-container {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.video-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
}

.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-page-info h1 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.video-page-info p {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.video-meta-info {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.video-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.video-meta-item i {
    color: var(--primary-red);
}

/* Боковая панель с другими видео */
.video-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-sidebar h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.related-video-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.related-video-card:hover {
    border-color: var(--primary-red);
    transform: translateX(5px);
}

.related-video-thumb {
    width: 100px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-video-info h4 {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.related-video-info .duration {
    color: var(--primary-red);
    font-size: 0.8rem;
    font-weight: 600;
}

.back-to-reviews {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 30px;
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.back-to-reviews:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* ===== МОБИЛЬНАЯ АДАПТАЦИЯ ===== */

/* Планшеты (768px - 992px) */
@media (max-width: 992px) {
    .video-reviews-section {
        padding: 80px 0;
    }
    
    .video-reviews-header h2 {
        font-size: 2.2rem;
    }
    
    .video-reviews-header p {
        font-size: 1.1rem;
    }
    
    .video-review-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .video-page-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Мобильные устройства (576px - 768px) */
@media (max-width: 768px) {
    .video-reviews-section {
        padding: 60px 0;
    }
    
    .video-reviews-header {
        margin-bottom: 40px;
    }
    
    .video-reviews-header h2 {
        font-size: 2rem;
    }
    
    .video-reviews-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .video-reviews-track {
        gap: 20px;
    }
    
    .video-review-card {
        min-width: 260px;
        max-width: 260px;
        padding: 15px;
    }
    
    .video-preview {
        height: 150px;
    }
    
    .video-play-btn {
        width: 50px;
        height: 50px;
    }
    
    .video-play-btn i {
        font-size: 20px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
    }
}

/* Маленькие мобильные (менее 576px) */
@media (max-width: 576px) {
    .video-reviews-section {
        padding: 50px 0;
    }
    
    .video-reviews-header h2 {
        font-size: 1.8rem;
    }
    
    .video-reviews-header p {
        font-size: 0.95rem;
    }
    
    .video-reviews-track {
        gap: 15px;
    }
    
    .video-review-card {
        min-width: 240px;
        max-width: 240px;
    }
    
    .video-preview {
        height: 140px;
    }
    
    .video-review-card h3 {
        font-size: 1.1rem;
    }
    
    .video-review-card p {
        font-size: 0.85rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Для экранов меньше 400px */
@media (max-width: 400px) {
    .video-review-card {
        min-width: 220px;
        max-width: 220px;
    }
    
    .video-preview {
        height: 130px;
    }
}
/* ===== БЛОК КОНТАКТОВ ===== */
.contacts-section {
    background-color: var(--bg-color);
    padding: 100px 0;
    transition: var(--transition);
}

.contacts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

/* Левая колонка - контакты */
.contacts-left {
    display: flex;
    flex-direction: column;
}

.contacts-title {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: left;
}

/* Аккордеон контактов */
.contacts-accordion {
    margin-bottom: 30px;
}

.contact-accordion-item {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-accordion-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.1);
}

.contact-accordion-header {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-accordion-header:hover {
    color: var(--primary-red);
}

.contact-accordion-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-accordion-title .flag {
    font-size: 1.3rem;
}

.contact-accordion-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: relative;
}

.contact-accordion-icon {
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    color: var(--primary-red);
}

.contact-accordion-icon-down {
    opacity: 1;
    transform: rotate(0);
}

.contact-accordion-icon-up {
    opacity: 0;
    transform: rotate(180deg);
}

.contact-accordion-item.active .contact-accordion-icon-down {
    opacity: 0;
    transform: rotate(180deg);
}

.contact-accordion-item.active .contact-accordion-icon-up {
    opacity: 1;
    transform: rotate(0);
}

.contact-accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.contact-accordion-item.active .contact-accordion-content {
    padding: 0 25px 25px;
    max-height: 1000px;
}

.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.contact-name {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
}

.contact-phone-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-phone-link:hover {
    color: #d40000;
}

.contact-phone-link i {
    font-size: 0.9rem;
}

/* Кнопка оставить заявку */
.contact-button-container {
    margin-top: 20px;
}

.shiny-button {
    position: relative;
    background: linear-gradient(45deg, var(--primary-red), #ff4444);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.shiny-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.shiny-button:active {
    transform: translateY(-1px);
}

.shiny-button::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.7s ease;
    z-index: -1;
}

.shiny-button:hover::before {
    left: 100%;
}

.shiny-button__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
}

.shiny-button:hover .shiny-button__glow {
    width: 200%;
    height: 200%;
    opacity: 1;
}

.shiny-button__shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(30deg);
    transition: left 0.7s ease;
}

.shiny-button:hover .shiny-button__shine {
    left: 100%;
}

.shiny-button__text {
    position: relative;
    z-index: 2;
}

/* Правая колонка - отзывы и карта */
.contacts-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Блок отзывов */
.reviews-block {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.reviews-title {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Звездный рейтинг */
.star-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
}

.star-rating i {
    color: #FFD700;
    font-size: 24px;
}

/* Платформы отзывов */
.review-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.review-platform {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.review-platform:hover {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.review-platform i {
    font-size: 1.2rem;
}

/* Блок офиса */
.office-block {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.office-title {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Яндекс карта */
.yandex-map-container {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 300px;
    position: relative;
}

.yandex-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.office-hours {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

/* ===== МОБИЛЬНАЯ АДАПТАЦИЯ ===== */

@media (max-width: 992px) {
    .contacts-section {
        padding: 80px 0;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contacts-title {
        font-size: 2.2rem;
    }
    
    .contact-accordion-header {
        padding: 18px 22px;
        font-size: 1rem;
    }
    
    .contact-accordion-content {
        padding: 0 22px;
    }
    
    .contact-accordion-item.active .contact-accordion-content {
        padding: 0 22px 22px;
    }
    
    .review-platforms {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contacts-section {
        padding: 60px 0;
    }
    
    .contacts-container {
        padding: 0 15px;
    }
    
    .contacts-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .contact-accordion-header {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .contact-accordion-content {
        padding: 0 20px;
    }
    
    .contact-accordion-item.active .contact-accordion-content {
        padding: 0 20px 20px;
    }
    
    .contact-name {
        font-size: 0.9rem;
    }
    
    .contact-phone-link {
        font-size: 0.9rem;
    }
    
    .shiny-button {
        padding: 16px 40px;
        font-size: 1rem;
    }
    
    .reviews-title,
    .office-title {
        font-size: 1.6rem;
    }
    
    .yandex-map-container {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .contacts-section {
        padding: 50px 0;
    }
    
    .contacts-title {
        font-size: 1.8rem;
    }
    
    .contact-accordion-header {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
    
    .contact-accordion-content {
        padding: 0 18px;
    }
    
    .contact-accordion-item.active .contact-accordion-content {
        padding: 0 18px 18px;
    }
    
    .contacts-list {
        gap: 10px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 8px 0;
    }
    
    .shiny-button {
        padding: 14px 35px;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .review-platform {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .office-hours {
        font-size: 0.9rem;
    }
}