/* Общие стили */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #fef9e8; /* Тёплый кремовый фон */
    color: #333;
    line-height: 1.6;
}

/* Убираем все max-width для растягивания на всю ширину */
.container {
    width: 100%;
    padding: 0 20px;
}

/* Шапка */
.main-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/header-bg-desktop.webp') center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.logo-svg {
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

.logo-text {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.header-subtitle {
    max-width: 800px;
    margin: 0;
    font-size: 1.4rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 1.2s;
}

/* Анимация появления элементов */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Навигация - растягиваем на всю ширину */
.main-nav {
    background-color: #2c3e50;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* Убираем ограничение по ширине для nav-links */
.nav-links {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    width: 100%;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nav-links a:hover {
    background-color: #3498db;
    transform: translateY(-2px);
}

.nav-links a i {
    margin-right: 8px;
}

/* Кнопка меню (скрыта на десктопе) */
.burger-menu {
    display: none;
}

/* Секции - убираем max-width, делаем на всю ширину */
.section {
    padding: 80px 20px;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #3498db;
    margin: 15px auto;
}

/* О компании - растягиваем текст по ширине */
.about-section {
    width: 100%;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 0 20px;
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    display: inline-block;
}

.about-checklist li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.about-checklist li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.price-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(52, 152, 219, .35);
  transition: all .3s ease;
}

.price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(52, 152, 219, .45);
}

/* Услуги - растягиваем контейнер на всю ширину */
.services-section {
    width: 100%;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
}

.service-title {
    color: #2980b9;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.service-price {
    font-weight: bold;
    color: #27ae60;
    margin-top: 20px;
    font-size: 1.2rem;
}

/* Выделенная карточка */
.service-card.highlighted {
    border: 2px solid #ff9800;
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
    position: relative;
}

.service-card.highlighted::before {
    content: 'НОВАЯ УСЛУГА';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff9800;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.service-keywords {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.service-keywords span {
    background: #f0f8ff;
    color: #2980b9;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Баннер магазина - растягиваем на всю ширину */
.shop-preview-section {
    padding: 60px 20px;
    background: transparent;
    width: 100%;
}

.shop-preview {
    max-width: 100%;
    margin: 40px auto 0;
}

.shop-preview-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 150, 0.1);
    border: 3px solid #4a6fff;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.shop-preview-card::before {
    content: "НОВИНКА";
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ff4757;
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: bold;
    z-index: 1;
}

.shop-preview-icon {
    font-size: 60px;
    color: #4a6fff;
    margin-bottom: 20px;
    text-align: center;
}

.shop-preview-content h3 {
    color: #2d3748;
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
}

.shop-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.shop-features li {
    padding: 12px 0;
    font-size: 17px;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #f1f5f9;
}

.shop-features li:last-child {
    border-bottom: none;
}

.shop-features li i {
    color: #4CAF50;
    margin-right: 15px;
    min-width: 20px;
    margin-top: 3px;
}

.shop-oem-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.oem-tag {
    background: #4a6fff;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-family: monospace;
    font-weight: bold;
}

.shop-preview-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.shop-preview-btn {
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.shop-preview-btn i {
    margin-right: 10px;
}

.shop-preview-btn.primary {
    background: linear-gradient(135deg, #4a6fff 0%, #3a5bdf 100%);
    color: white;
    border: 2px solid #4a6fff;
}

.shop-preview-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 111, 255, 0.2);
}

.shop-preview-btn.secondary {
    background: white;
    color: #4a6fff;
    border: 2px solid #4a6fff;
}

.shop-preview-btn.secondary:hover {
    background: #4a6fff;
    color: white;
    transform: translateY(-3px);
}

/* Прайс-лист - растягиваем на всю ширину */
.price-section {
    padding: 80px 20px;
    background: transparent;
    width: 100%;
}

.price-container {
    max-width: 1400px;
    margin: 0 auto;
}

.price-accordion {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 100%;
}

.price-details {
    background: white;
    border-bottom: 1px solid #eee;
}

.price-details:last-child {
    border-bottom: none;
}

.price-summary {
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: background-color 0.3s ease;
}

.price-summary:hover {
    background-color: #f8f9fa;
}

.price-summary::-webkit-details-marker {
    display: none;
}

.price-summary:after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #3498db;
    transition: transform 0.3s ease;
}

.price-details[open] .price-summary:after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.price-content {
    padding: 0 25px 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #eee;
}

.price-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.price-name {
    flex-grow: 1;
    margin-right: 15px;
    font-size: 1rem;
}

.price-dots {
    flex-grow: 1;
    border-bottom: 1px dotted #ccc;
    height: 1em;
    margin: 0 10px;
}

.price-value {
    flex-shrink: 0;
    font-weight: 600;
    color: #27ae60;
    font-size: 1.05rem;
}

/* Галерея - растягиваем на всю ширину */
.gallery-section {
    padding: 60px 20px;
    background: transparent;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-top: -20px;
    margin-bottom: 40px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4 / 3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Блог */
.blog-section {
    padding: 60px 20px;
    background: transparent;
    width: 100%;
}

/* Базовая версия для мобильных устройств - 1 колонка */
.blog-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    color: #2c3e50;
    margin-top: 0;
    font-size: 1.3rem;
    line-height: 1.4;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}

.all-posts-link {
    text-align: center;
    margin-top: 40px;
}

/* Для планшетов (768px - 1199px) - 2 колонки */
@media (min-width: 768px) and (max-width: 1199px) {
    .blog-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Для больших экранов (1200px и больше) - 4 колонки */
@media (min-width: 1200px) {
    .blog-container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .blog-post {
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 420px;
    }
    
    .post-image img {
        height: 160px;
    }
    
    .post-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        padding: 15px;
    }
    
    .post-content h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .post-content p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 15px;
        flex-grow: 1;
    }
    
    .read-more {
        margin-top: auto;
    }
}

/* Отзывы */
.reviews-section {
    width: 100%;
    padding: 80px 20px;
    background: transparent;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.user-info {
    display: flex;
    align-items: center;
}

.user-avatar {
    font-size: 2.5rem;
    color: #3498db;
    margin-right: 15px;
}

.stars {
    color: #f1c40f;
    font-size: 1.1rem;
}

.review-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    text-align: right;
}

/* Блок Авито */
.avito-badge {
    background: linear-gradient(135deg, #4cb1ff 0%, #2a6dff 100%);
    color: white;
    border-radius: 12px;
    padding: 20px;
    margin: 0 auto 40px auto;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(42, 109, 255, 0.3);
}

.avito-badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.avito-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.avito-stars {
    font-size: 1.8rem;
    color: #ffd700;
    line-height: 1;
}

.avito-score, .avito-count {
    font-size: 1rem;
}

.avito-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #2a6dff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.avito-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.avito-logo {
    flex-shrink: 0;
    width: 80px;
    height: 24px;
}

/* FAQ */
.faq-section {
    width: 100%;
    padding: 80px 20px;
    background: transparent;
}

.faq-section h2 {
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3498db;
    border-radius: 2px;
}

/* Контакты */
.contact-section {
    width: 100%;
    padding: 80px 20px;
    background: transparent;
}

.contact-container {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container {
    height: 300px;
    margin: 20px 0;
    background: #eee;
    border-radius: 5px;
    width: 100%;
}

.route-btn {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s;
}

.route-btn:hover {
    background: #e6c200;
}

/* Форма */
.appointment-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.2);
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: linear-gradient(to right, #2980b9, #3498db);
    transform: translateY(-2px);
}

/* Сообщения формы */
.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Текст о политике конфиденциальности */
.privacy-notice {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #7f8c8d;
    text-align: center;
    line-height: 1.4;
}

.privacy-notice a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-notice a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Футер */
.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    margin-top: 60px;
    width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.copyright {
    margin-bottom: 20px;
}

.footer-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: white;
}

.social-links {
    margin-top: 20px;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: all 0.3s;
}

.social-link:hover {
    color: #0088cc;
    transform: translateY(-3px);
}

/* Telegram кнопки */
.mobile-telegram-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 80px;
    justify-content: center;
    color: white;
    border: none;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.mobile-telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #006699 0%, #0088cc 100%);
}

/* ЗЕЛЕНАЯ КНОПКА ТЕЛЕФОНА - МОБИЛЬНАЯ ВЕРСИЯ */
.mobile-call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 80px;
    justify-content: center;
    color: white;
    border: none;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.mobile-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

/* ===== МОБИЛЬНЫЕ КНОПКИ ТЕЛЕФОНА И TELEGRAM (только на мобильных) ===== */
.mobile-contact-buttons {
    display: none;
}

/* ===== МОБИЛЬНАЯ АДАПТАЦИЯ ===== */
@media (max-width: 768px) {
    /* Планшеты и мобильные */
    .main-header {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/header-bg-tablet.webp') center/cover no-repeat;
        min-height: 65vh;
        padding: 50px 20px;
    }
    
    .logo-text {
        font-size: 2.2rem;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
    }
    
    /* Навигация на мобильных */
    .burger-menu {
        display: flex;
        background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
        color: white;
        border: none;
        border-radius: 8px;
        padding: 12px 20px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 1001;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-width: 100px;
        text-decoration: none;
        outline: none;
    }
    
    .burger-menu:hover {
        background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
    }
    
    .menu-text {
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    .menu-icon {
        font-size: 1.2rem;
        font-weight: normal;
        line-height: 1;
        transition: transform 0.3s ease;
    }
    
    /* Мобильное меню */
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(44, 62, 80, 0.98);
        padding: 80px 20px 20px;
        z-index: 999;
        overflow-y: auto;
        backdrop-filter: blur(5px);
    }
    
    .nav-links.active {
        display: flex;
        animation: slideIn 0.3s ease-out;
    }
    
    .nav-links a {
        margin: 10px 0;
        padding: 15px 20px;
        font-size: 1.2rem;
        text-align: center;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(52, 152, 219, 0.8);
        transform: translateX(5px);
    }
    
    .nav-links a i {
        margin-right: 10px;
        font-size: 1.3rem;
    }
    
    /* Мобильные кнопки */
    .mobile-contact-buttons {
        display: flex;
        gap: 12px;
        margin-left: 10px;
        margin-right: 15px;
    }
    
    .mobile-telegram-btn,
    .mobile-call-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 18px;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        min-width: 80px;
        justify-content: center;
        color: white;
        border: none;
        box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    }
    
    /* ЗЕЛЕНАЯ КНОПКА ТЕЛЕФОНА ДЛЯ МОБИЛЬНОЙ ВЕРСИИ */
    .mobile-call-btn {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    }
    
    .mobile-telegram-btn {
        background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    }
    
    .mobile-telegram-btn:hover,
    .mobile-call-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    
    .mobile-call-btn:hover {
        background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    }
    
    .mobile-telegram-btn:hover {
        background: linear-gradient(135deg, #006699 0%, #0088cc 100%);
    }
    
    .btn-text {
        display: inline-block !important;
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .mobile-contact-buttons i {
        font-size: 1.2rem;
    }
    
    /* Адаптация секций */
    .section {
        padding: 60px 15px;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .post-image img {
        height: 150px;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    /* Прайс-лист на мобильных */
    .price-summary {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .price-content {
        padding: 0 20px 15px;
    }
    
    .price-item {
        flex-wrap: wrap;
    }
    
    .price-dots {
        display: none;
    }
    
    .price-value {
        width: 100%;
        text-align: right;
        margin-top: 5px;
    }
    
    /* Авито на мобильных */
    .avito-badge {
        margin: 0 15px 30px 15px;
        padding: 15px;
    }
    
    .avito-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .avito-stars {
        font-size: 1.5rem;
    }
    
    .avito-logo {
        width: 70px;
        height: 21px;
    }
    
    /* Магазин на мобильных */
    .shop-preview-card {
        padding: 25px 20px;
    }
    
    .shop-preview-cta {
        flex-direction: column;
    }
    
    .shop-preview-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Маленькие мобильные */
    .main-header {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/header-bg-mobile.webp') center/cover no-repeat;
        min-height: 50vh;
        padding: 40px 15px;
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-svg {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card.highlighted::before {
        right: 10px;
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .burger-menu {
        padding: 8px 16px;
        font-size: 0.9rem;
        right: 10px;
        top: 10px;
        min-width: 80px;
        gap: 8px;
    }
    
    .menu-text {
        font-size: 0.9rem;
    }
    
    .menu-icon {
        font-size: 1rem;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .mobile-telegram-btn,
    .mobile-call-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
        min-width: 55px;
    }
    
    .btn-text {
        font-size: 0.7rem;
    }
    
    .mobile-contact-buttons i {
        font-size: 0.9rem;
    }
    
    .mobile-contact-buttons {
        gap: 5px;
    }
    
    .avito-link {
        flex-direction: column;
        gap: 8px;
    }
    
    .avito-logo {
        width: 60px;
        height: 18px;
    }
    
    .privacy-notice {
        font-size: 0.75rem;
        margin-top: 12px;
    }
}

/* Анимация появления мобильного меню */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Подсветка текущей страницы в меню */
.nav-links a.active {
    background-color: #3498db;
    color: white;
    font-weight: 600;
}

.nav-links a.active:hover {
    background-color: #2980b9;
}

/* Удаляем плавающие кнопки */
.floating-call-btn,
.floating-whatsapp-btn,
.floating-telegram-btn {
    display: none !important;
}

.blog-more-link {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.blog-all-articles-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: #1e88e5;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-all-articles-link:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.service-more-info {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 10px 0 15px 0;
    text-align: center;
    padding: 8px 12px;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 3px solid #1e88e5;
}

/* Контейнер для двух колонок */
.two-columns-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* ========== ЛЕВЫЙ БЛОК - МАГАЗИН КОМПРЕССОРОВ ========== */
.shop-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 2rem 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.shop-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a3c34, #0d2a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.shop-card-icon i {
    font-size: 2rem;
    color: #ffd700;
}

.shop-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3c34;
    margin-bottom: 1rem;
}

.shop-card-description {
    color: #555;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.shop-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem 0;
    text-align: left;
}

.shop-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #333;
    border-bottom: 1px solid #eee;
}

.shop-card-list li:last-child {
    border-bottom: none;
}

.shop-card-list li i {
    color: #1a3c34;
    font-size: 1.1rem;
    width: 24px;
    flex-shrink: 0;
}

.shop-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a3c34, #0d2a24);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.shop-card-btn:hover {
    background: linear-gradient(135deg, #0d2a24, #1a3c34);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(26, 60, 52, 0.3);
    color: #ffd700;
}

/* ========== ПРАВЫЙ БЛОК - ПРЕИМУЩЕСТВА ========== */
.advantages-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 2rem 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantages-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.advantages-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3c34;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.advantages-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #1a3c34);
    border-radius: 2px;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantages-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: #333;
    border-bottom: 1px solid #eee;
}

.advantages-list li:last-child {
    border-bottom: none;
}

.advantages-list li i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a3c34;
    color: #ffd700;
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ========== АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ ========== */
@media (max-width: 768px) {
    .two-columns-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .shop-card,
    .advantages-card {
        padding: 1.5rem;
    }
    
    .shop-card-title,
    .advantages-title {
        font-size: 1.3rem;
    }
    
    .shop-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .shop-card-icon i {
        font-size: 1.6rem;
    }
    
    .shop-card-list li,
    .advantages-list li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .shop-card-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

/* ========== СТИЛИ ДЛЯ БЛОКА ОТЗЫВОВ ========== */

/* Обёртка блока отзывов */
.reviews-scroll-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Контейнер с прокруткой */
.reviews-scroll-container {
    display: flex;
    gap: 20px;
    padding: 15px 10px 25px 10px;
    scroll-behavior: smooth;
}

/* ========== ПК ВЕРСИЯ (шире 768px) - ГОРИЗОНТАЛЬНАЯ ПРОКРУТКА ========== */
@media (min-width: 769px) {
    .reviews-scroll-container {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        min-height: 280px;
    }
    
    .review-card-scroll {
        flex: 0 0 350px;
    }
}

/* ========== МОБИЛЬНАЯ ВЕРСИЯ (до 768px) - ВЕРТИКАЛЬНАЯ ПРОКРУТКА ========== */
@media (max-width: 768px) {
    .reviews-scroll-container {
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: 500px;
    }
    
    .review-card-scroll {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* ========== ОБЩИЕ СТИЛИ ДЛЯ КАРТОЧЕК ========== */
.review-card-scroll {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.review-card-scroll:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.review-card-scroll .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.review-card-scroll .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-card-scroll .user-avatar {
    font-size: 1.8rem;
    color: #3498db;
}

.review-card-scroll .user-name {
    font-weight: 600;
    color: #2c3e50;
}

.review-card-scroll .stars {
    color: #ffc107;
    font-size: 0.85rem;
    white-space: nowrap;
}

.review-card-scroll .review-text {
    color: #555;
    line-height: 1.45;
    margin: 12px 0;
    font-size: 0.9rem;
}

.review-card-scroll .review-date {
    color: #95a5a6;
    font-size: 0.7rem;
    text-align: right;
}

/* Стилизация полосы прокрутки (для ПК) */
@media (min-width: 769px) {
    .reviews-scroll-container::-webkit-scrollbar {
        height: 6px;
    }
    
    .reviews-scroll-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .reviews-scroll-container::-webkit-scrollbar-thumb {
        background: #3498db;
        border-radius: 10px;
    }
}

/* Стилизация вертикальной полосы прокрутки (для мобильных) */
@media (max-width: 768px) {
    .reviews-scroll-container::-webkit-scrollbar {
        width: 4px;
    }
    
    .reviews-scroll-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .reviews-scroll-container::-webkit-scrollbar-thumb {
        background: #3498db;
        border-radius: 10px;
    }
}

/* Сообщения о загрузке */
.reviews-loader,
.reviews-empty,
.reviews-error {
    text-align: center;
    padding: 40px;
    color: #7f8c8d;
    font-size: 1rem;
    width: 100%;
}

/* Адаптация для маленьких телефонов */
@media (max-width: 480px) {
    .reviews-scroll-container {
        max-height: 450px;
    }
    
    .review-card-scroll {
        padding: 1rem;
    }
    
    .review-card-scroll .review-text {
        font-size: 0.85rem;
    }
}

/* Две колонки: форма + баннер */
.reviews-top-row {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem auto;
    align-items: stretch;
}

/* Карточка формы отзыва */
.review-form-card {
    flex: 2;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-form-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-form-note {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.required-star {
    color: #e74c3c;
    margin-left: 3px;
}

/* Звёздный рейтинг в форме */
.rating-stars-input {
    display: flex;
    gap: 8px;
    font-size: 2rem;
    cursor: pointer;
    margin: 10px 0;
}

.star-rating {
    cursor: pointer;
    transition: transform 0.2s ease;
    color: #ddd;
}

.star-rating:hover {
    transform: scale(1.1);
}

.star-rating.active {
    color: #ffc107;
}

.submit-review-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #27ae60, #219a52);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.submit-review-btn:disabled {
    opacity: 0.7;
    transform: none;
}

.privacy-note {
    font-size: 0.7rem;
    color: #95a5a6;
    text-align: center;
    margin-top: 12px;
}

.privacy-note a {
    color: #3498db;
    text-decoration: none;
}

.review-form-message {
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: none;
}

.review-form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.review-form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Баннер Авито (широкий) */
.avito-badge-wide {
    flex: 1;
    background: linear-gradient(135deg, #4cb1ff 0%, #2a6dff 100%);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(42, 109, 255, 0.3);
}

.avito-badge-wide .avito-badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.avito-badge-wide .avito-stars {
    font-size: 1.6rem;
    color: #ffd700;
}

.avito-badge-wide .avito-score {
    color: white;
    font-size: 0.95rem;
}

.avito-badge-wide .avito-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #2a6dff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.avito-badge-wide .avito-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Адаптивность для формы отзывов */
@media (max-width: 900px) {
    .reviews-top-row {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .review-form-card,
    .avito-badge-wide {
        width: 100%;
    }
    
    .review-card-scroll {
        flex: 0 0 300px;
    }
}

@media (max-width: 480px) {
    .review-card-scroll {
        flex: 0 0 280px;
        padding: 1rem;
    }
    
    .rating-stars-input {
        font-size: 1.5rem;
        gap: 5px;
    }
    
    .review-form-card {
        padding: 1.25rem;
    }
}

/* ========== ВРАЩАЮЩАЯСЯ СНЕЖИНКА ========== */
.snowflake-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.rotating-snowflake {
    font-size: 64px;
    color: white;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    animation: snowflake-spin 8s linear infinite;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Плавное вращение снежинки */
@keyframes snowflake-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Ускорение при наведении */
.logo-link:hover .rotating-snowflake {
    animation-duration: 2.5s;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}

/* ========== АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ ========== */

/* Планшеты (768px и меньше) */
@media (max-width: 768px) {
    .snowflake-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .rotating-snowflake {
        font-size: 48px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
}

/* Маленькие телефоны (480px и меньше) */
@media (max-width: 480px) {
    .snowflake-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .rotating-snowflake {
        font-size: 40px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-link {
        flex-direction: column;
        gap: 10px;
    }
}

/* ========== КОНТЕЙНЕР ДЛЯ ДВУХ БЛОКОВ ========== */
.contact-container {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0 20px;
}

/* ========== ЛЕВЫЙ БЛОК: ФОРМА В РАМКЕ ========== */
.contact-form-wrapper {
    flex: 1;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e7ff;
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);
    border-color: #3498db;
}

.contact-form-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 20px 25px;
}

.contact-form-header h3 {
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form-header h3 i {
    font-size: 1.6rem;
}

.contact-form-header p {
    margin: 8px 0 0 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.contact-form-body {
    padding: 25px;
}

/* ========== ПРАВЫЙ БЛОК: КОНТАКТЫ И КАРТА В РАМКЕ ========== */
.contact-info-wrapper {
    flex: 1;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e7ff;
    transition: all 0.3s ease;
}

.contact-info-wrapper:hover {
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);
    border-color: #3498db;
}

.contact-info-header {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2a3a 100%);
    color: white;
    padding: 20px 25px;
}

.contact-info-header h3 {
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-header h3 i {
    font-size: 1.6rem;
}

.contact-info-header p {
    margin: 8px 0 0 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.contact-info-body {
    padding: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item > i {
    font-size: 1.3rem;
    color: #3498db;
    min-width: 30px;
    text-align: center;
    margin-top: 3px;
}

.contact-info-item strong {
    color: #2c3e50;
    font-size: 0.9rem;
}

.contact-info-item div {
    font-size: 0.95rem;
    color: #555;
}

.contact-link {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Карта */
.map-container {
    height: 250px;
    margin: 20px 0;
    background: #e9ecef;
    border-radius: 12px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23999" width="48px" height="48px"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 48px;
}

/* Кнопка маршрута */
.route-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffd700;
    color: #1a2a3a;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.route-btn:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* ========== АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ ========== */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 25px;
        padding: 0 15px;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        width: 100%;
    }
    
    .contact-form-header h3,
    .contact-info-header h3 {
        font-size: 1.2rem;
    }
    
    .contact-form-body,
    .contact-info-body {
        padding: 20px;
    }
    
    .map-container {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .contact-form-header,
    .contact-info-header {
        padding: 15px 20px;
    }
    
    .contact-form-body,
    .contact-info-body {
        padding: 15px;
    }
    
    .contact-info-item {
        gap: 12px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .contact-info-item > i {
        font-size: 1.1rem;
        min-width: 25px;
    }
}

/* ========== ЭКСПЕРТНЫЙ SEO-БЛОК (ГРАДИЕНТНОЕ ЗАТУХАНИЕ) ========== */
.seo-text.seo-gradient {
    background: #f8fcff;
    border-top: 3px solid #0099ff;
    border-bottom: 1px solid #e0eef5;
    border-radius: 16px;
    margin: 30px 20px;
    overflow: visible;
    position: relative;
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

/* Шапка блока */
.seo-header {
    padding: 20px 25px 0 25px;
    background: transparent;
}

.seo-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.seo-icon {
    font-size: 2rem;
    color: #0099ff;
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 153, 255, 0.2);
}

.seo-header h2 {
    font-size: 1.5rem;
    color: #1a3a4f;
    margin: 0;
    border-left: none;
    padding-left: 0;
}

/* Контентная обёртка */
.seo-content-wrapper {
    padding: 0 25px;
    max-height: 400px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.seo-content-wrapper.expanded {
    max-height: 5000px;
}

.seo-content-inner {
    padding-bottom: 20px;
}

/* Градиентное затухание (показывается только когда НЕ развёрнуто) */
.seo-gradient-overlay {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #f8fcff);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.seo-gradient-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Кнопка "Читать полностью" */
.seo-readmore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0099ff;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin: 0 25px 25px 25px;
    width: calc(100% - 50px);
}

.seo-readmore-btn:hover {
    background: #0077cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 153, 255, 0.3);
}

.readmore-icon {
    transition: transform 0.3s ease;
}

.seo-readmore-btn.expanded .readmore-icon {
    transform: rotate(180deg);
}

/* Стили для контента внутри */
.seo-content-inner h3 {
    font-size: 1.3rem;
    color: #1e4663;
    margin: 25px 0 10px 0;
}

.seo-content-inner p,
.seo-content-inner li {
    font-size: 1rem;
    line-height: 1.5;
    color: #2c3e50;
    margin-bottom: 12px;
}

.seo-content-inner ul,
.seo-content-inner ol {
    margin: 15px 0 20px 30px;
}

.seo-content-inner li {
    margin-bottom: 8px;
}

.seo-content-inner a {
    color: #0099ff;
    text-decoration: none;
    font-weight: 500;
}

.seo-content-inner a:hover {
    text-decoration: underline;
}

.seo-footer {
    background: #e6f4ff;
    padding: 20px;
    border-radius: 14px;
    margin-top: 30px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #b9dcff;
}

/* ========== АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ ========== */
@media (max-width: 768px) {
    .seo-text.seo-gradient {
        margin: 20px 15px;
        border-radius: 12px;
    }
    
    .seo-header {
        padding: 15px 20px 0 20px;
    }
    
    .seo-title-wrapper {
        gap: 10px;
    }
    
    .seo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .seo-header h2 {
        font-size: 1.2rem;
    }
    
    .seo-content-wrapper {
        padding: 0 20px;
        max-height: 350px;
    }
    
    .seo-content-inner h3 {
        font-size: 1.1rem;
    }
    
    .seo-content-inner p,
    .seo-content-inner li {
        font-size: 0.9rem;
    }
    
    .seo-footer {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .seo-readmore-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin: 0 20px 20px 20px;
        width: calc(100% - 40px);
    }
    
    .seo-gradient-overlay {
        bottom: 65px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .seo-header h2 {
        font-size: 1rem;
    }
    
    .seo-icon {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    
    .seo-content-wrapper {
        max-height: 300px;
    }
    
    .seo-content-inner ul,
    .seo-content-inner ol {
        margin: 10px 0 15px 18px;
        padding-left: 0;
    }
    
    .seo-gradient-overlay {
        bottom: 60px;
        height: 50px;
    }
}