/* Стили для страницы услуг */
.services-hero {
    padding: 100px 40px 30px;
    text-align: center;
    background: linear-gradient(180deg, #2a3f4a 0%, #3a4f5a 50%, #2a3f4a 100%);
}

.services-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 0;
    text-transform: uppercase;
}

.services-subtitle {
    display: none;
}

/* ========================================
   ШЕСТИУГОЛЬНИКИ КАТЕГОРИЙ (3 штуки)
   ======================================== */

/* Сетка 3 колонки для 3 категорий */
.hexagon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 30px 20px;
}

/* Контейнер шестиугольника */
.hexagon-item {
    position: relative;
    width: 100%;
    padding-bottom: 115%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease;
    /* Touch optimization */
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(78, 205, 196, 0.3);
    user-select: none;
}

.hexagon-item:hover {
    transform: scale(1.05);
}

.hexagon-item:active {
    transform: scale(0.98);
}

/* Изображение внутри шестиугольника */
.hexagon-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hexagon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

/* Hover эффект - цветное фото */
.hexagon-item:hover .hexagon-image img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Текст внизу шестиугольника */
.hexagon-label {
    position: absolute;
    bottom: 12%;
    left: 0;
    right: 0;
    background: rgba(30, 60, 80, 0.92);
    color: #fff;
    padding: 15px 10px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.hexagon-item:hover .hexagon-label {
    background: rgba(78, 205, 196, 0.9);
}

/* Планшет - 4 в ряду сохраняем */
@media (max-width: 1024px) {
    .hexagon-grid {
        gap: 15px;
        padding: 25px 15px;
        max-width: 900px;
    }

    .hexagon-label {
        font-size: 11px;
        padding: 12px 8px;
    }
}

/* Мобильная версия - 2 в ряду */
@media (max-width: 768px) {
    .hexagon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px 15px;
        max-width: 500px;
    }

    .hexagon-label {
        font-size: 10px;
        padding: 10px 5px;
        letter-spacing: 1px;
    }
}

/* Маленькие телефоны */
@media (max-width: 480px) {
    .hexagon-grid {
        gap: 12px;
        padding: 15px 10px;
    }

    .hexagon-label {
        font-size: 9px;
        padding: 8px 4px;
        bottom: 10%;
    }
}

/* ========================================
   СТАРЫЕ ТАБЫ КАТЕГОРИЙ (СКРЫТЫ)
   ======================================== */

/* Табы категорий */
.services-categories {
    padding: 20px 40px;
    background: linear-gradient(180deg, #3a4f5a 0%, #2a3f4a 100%);
    min-height: 80vh;
}

.category-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 30px;
    overflow-x: visible;
}

.category-tabs::-webkit-scrollbar {
    height: 4px;
}

.category-tabs::-webkit-scrollbar-track {
    background: transparent;
}

.category-tabs::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

.tab {
    padding: 10px 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
}

.tab:hover,
.tab.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Сетка оборудования */
.equipment-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.equipment-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.equipment-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.equipment-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.equipment-card:hover .equipment-image img {
    transform: scale(1.1);
}

.equipment-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 107, 107, 0.9);
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
}

.equipment-info {
    padding: 15px;
}

.equipment-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}

.equipment-specs {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 12px;
}

.equipment-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.btn-rent {
    padding: 12px 20px;
    min-height: 44px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    /* Touch optimization */
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    user-select: none;
}

.btn-rent:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-rent:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.15);
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #2a3f4a 0%, #3a4f5a 100%);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    /* Touch optimization */
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    user-select: none;
}

.modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.modal-close:active {
    transform: scale(0.9);
    background: rgba(255, 255, 255, 0.3);
}

.modal h2 {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
}

.rent-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rent-form input,
.rent-form select,
.rent-form textarea {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
}

/* Prefilled equipment field */
.rent-form .equipment-prefilled {
    background: rgba(78, 205, 196, 0.15);
    border-color: rgba(78, 205, 196, 0.4);
    color: #4ecdc4;
    font-weight: 600;
    cursor: default;
}

.rent-form input::placeholder,
.rent-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.rent-form select option {
    background: #2a3f4a;
}

.btn-submit {
    padding: 15px;
    min-height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    /* Touch optimization */
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    user-select: none;
}

.btn-submit:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.btn-submit:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.3);
}

/* Скрытие карточек при фильтрации */
.equipment-card.hidden {
    display: none;
}

/* Отступ для якорной навигации (учитываем фиксированный navbar) */
.equipment-card[id] {
    scroll-margin-top: 120px;
}

/* Стили для моделей оборудования */
.equipment-models {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
    font-style: italic;
}

/* ========================================
   НОВЫЙ ДИЗАЙН КАРТОЧЕК (JLG STYLE)
   ======================================== */

/* Контейнер категории */
.category-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.category-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(78, 205, 196, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-section-title::before {
    content: '';
    width: 5px;
    height: 30px;
    background: linear-gradient(180deg, #4ecdc4, #44a08d);
    border-radius: 2px;
}

/* Карточка оборудования - новый стиль */
.equipment-card-new {
    background: linear-gradient(145deg, rgba(42, 63, 74, 0.95), rgba(58, 79, 90, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.equipment-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(78, 205, 196, 0.3);
}

/* Изображение карточки */
.card-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.equipment-card-new:hover .card-image-container img {
    transform: scale(1.08);
}

/* Бейдж на изображении */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
}

.card-badge.popular {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.card-badge.new {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

/* Контент карточки */
.card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.card-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
    font-style: italic;
}

/* Описание */
.card-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Список преимуществ */
.card-advantages {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.card-advantages li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-advantages li:last-child {
    border-bottom: none;
}

.card-advantages li::before {
    content: '✓';
    color: #4ecdc4;
    font-weight: bold;
    font-size: 14px;
}

/* Таблица характеристик */
.card-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 13px;
}

.card-specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-specs-table tr:last-child {
    border-bottom: none;
}

.card-specs-table td {
    padding: 10px 0;
}

.card-specs-table td:first-child {
    color: rgba(255, 255, 255, 0.6);
    width: 45%;
}

.card-specs-table td:last-child {
    color: #fff;
    font-weight: 500;
    text-align: right;
}

/* Блок безопасности */
.card-safety {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.card-safety-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.card-safety-title::before {
    content: '⚠';
    font-size: 16px;
}

.card-safety-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Цена и кнопка */
.card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-family: 'Montserrat', sans-serif;
}

.card-price-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-price-value {
    font-size: 22px;
    font-weight: 700;
    color: #4ecdc4;
}

.card-price-period {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.btn-rent-new {
    padding: 12px 24px;
    min-height: 48px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    /* Touch optimization */
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(78, 205, 196, 0.3);
    user-select: none;
}

.btn-rent-new:hover {
    background: linear-gradient(135deg, #44a08d, #4ecdc4);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(78, 205, 196, 0.4);
}

.btn-rent-new:active {
    transform: scale(0.98);
}

/* Контейнер кнопки заказа */
.card-actions {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.card-actions .btn-rent-new {
    width: 100%;
    padding: 14px 24px;
}

/* Аккордеон для полной спецификации */
.card-accordion {
    margin-top: 15px;
}

.accordion-toggle {
    width: 100%;
    padding: 12px;
    min-height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    /* Touch optimization */
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(78, 205, 196, 0.3);
    user-select: none;
}

.accordion-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(78, 205, 196, 0.3);
}

.accordion-toggle:active {
    transform: scale(0.99);
    background: rgba(78, 205, 196, 0.15);
}

.accordion-toggle::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.accordion-toggle.active::after {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content.show {
    max-height: 500px;
}

.accordion-inner {
    padding: 15px 0;
}

/* Слоган скидок */
.discount-banner {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(238, 90, 36, 0.2));
    border: 2px solid rgba(255, 107, 107, 0.5);
    border-radius: 12px;
    padding: 25px 40px;
    text-align: center;
    margin: 0 auto 40px;
    max-width: 800px;
}

.discount-banner-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.discount-banner-text span {
    color: #ff6b6b;
}

/* Адаптивность новых карточек */
@media (max-width: 1200px) {
    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .category-section-title {
        font-size: 22px;
    }

    .card-image-container {
        height: 180px;
    }

    .card-content {
        padding: 18px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .btn-rent-new {
        width: 100%;
        text-align: center;
        min-height: 48px;
        padding: 14px 24px;
        font-size: 14px;
    }

    .discount-banner {
        padding: 20px;
        margin: 0 15px 30px;
    }

    .discount-banner-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 90px 15px 20px;
    }

    .services-title {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .category-section-title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .card-image-container {
        height: 160px;
    }

    .card-content {
        padding: 15px;
    }

    .card-title {
        font-size: 15px;
    }

    .card-subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .card-description {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .card-advantages li {
        font-size: 12px;
        padding: 5px 0;
    }

    .card-specs-table td {
        padding: 8px 0;
        font-size: 12px;
    }

    .card-safety {
        padding: 12px;
    }

    .card-safety-title {
        font-size: 11px;
    }

    .card-safety-text {
        font-size: 11px;
    }

    .card-price-value {
        font-size: 18px;
    }

    .btn-rent-new {
        min-height: 48px;
        padding: 14px 20px;
        font-size: 13px;
    }

    /* Модальное окно */
    .modal-content {
        padding: 25px 15px;
        width: 95%;
    }

    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 28px;
    }

    .modal h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    /* iOS zoom prevention */
    .rent-form input,
    .rent-form select,
    .rent-form textarea {
        font-size: 16px;
        padding: 14px 12px;
    }

    .btn-submit {
        padding: 14px;
        font-size: 14px;
    }

    /* Шестиугольники категорий */
    .hexagon-label {
        font-size: 8px;
        padding: 6px 3px;
        letter-spacing: 0.5px;
    }

    /* Баннер скидок */
    .discount-banner {
        padding: 15px 10px;
        margin: 0 10px 25px;
    }

    .discount-banner-text {
        font-size: 14px;
        letter-spacing: 1px;
    }
}

/* Адаптивность - планшет */
@media (max-width: 1200px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Адаптивность - телефон */
@media (max-width: 768px) {
    .services-hero {
        padding: 80px 15px 10px;
    }

    .services-title {
        font-size: 19px;
        margin-bottom: 0;
    }

    .services-subtitle {
        display: none;
    }

    .services-categories {
        padding: 15px 15px;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .equipment-image {
        height: 180px;
    }

    .category-tabs {
        display: flex;
        overflow-x: auto;
        grid-template-columns: unset;
        gap: 8px;
        padding: 0 5px 10px;
        margin-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.3) transparent;
    }

    .tab {
        padding: 8px 12px;
        font-size: 11px;
        flex-shrink: 0;
    }

    .equipment-info {
        padding: 12px;
    }

    .equipment-info h3 {
        font-size: 15px;
    }

    .price {
        font-size: 16px;
    }

    .btn-rent {
        padding: 6px 14px;
        font-size: 12px;
    }
}

/* ========================================
   STICKY CONTACT PANEL (Mobile Only)
   ======================================== */
.mobile-contact-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-contact-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #2a3f4a 0%, #3a4f5a 100%);
        border-top: 1px solid rgba(78, 205, 196, 0.3);
        padding: 10px 15px;
        z-index: 1000;
        gap: 10px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    }

    .mobile-contact-bar a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 20px;
        min-height: 48px;
        border-radius: 8px;
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    .mobile-contact-bar .btn-call {
        background: linear-gradient(135deg, #4ecdc4, #44a08d);
        color: #fff;
    }

    .mobile-contact-bar .btn-call:hover,
    .mobile-contact-bar .btn-call:active {
        background: linear-gradient(135deg, #44a08d, #4ecdc4);
        transform: scale(1.02);
    }

    .mobile-contact-bar .btn-telegram {
        background: linear-gradient(135deg, #0088cc, #0077b5);
        color: #fff;
    }

    .mobile-contact-bar .btn-telegram:hover,
    .mobile-contact-bar .btn-telegram:active {
        background: linear-gradient(135deg, #0077b5, #0088cc);
        transform: scale(1.02);
    }

    .mobile-contact-bar .btn-icon {
        font-size: 18px;
    }

    /* Add padding to footer so content isn't hidden behind sticky bar */
    .footer {
        padding-bottom: 90px;
    }
}

/* Subcategory filter styles */
.subcategory-filter {
    margin: 20px 0 30px;
    text-align: center;
}

.subcategory-filter label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-right: 15px;
}

.subcategory-select {
    padding: 12px 20px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid #d4a039;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    min-width: 200px;
    transition: all 0.3s ease;
}

.subcategory-select:hover {
    border-color: #c49030;
}

.subcategory-select:focus {
    outline: none;
    border-color: #c49030;
    box-shadow: 0 0 0 3px rgba(212, 160, 57, 0.1);
}

/* ========================================
   V1: CLASSIC SPLIT LAYOUT
   ======================================== */

/* Заголовок категории V1 */
.category-title-v1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: #4ecdc4;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(78, 205, 196, 0.3);
}

/* Карточка услуги V1 - горизонтальный split */
.service-card-v1 {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.service-card-v1:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(78, 205, 196, 0.3);
}

/* Чередование сторон для чётных карточек */
.service-card-v1:nth-child(even) {
    flex-direction: row-reverse;
}

/* Изображение V1 */
.card-image-v1 {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.card-image-v1 img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-v1:hover .card-image-v1 img {
    transform: scale(1.05);
}

/* Бейдж V1 */
.card-badge-v1 {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.service-card-v1:nth-child(even) .card-badge-v1 {
    left: auto;
    right: 20px;
}

.card-badge-v1.popular {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.card-badge-v1.new {
    background: linear-gradient(135deg, #f7971e, #ffd200);
    color: #000;
}

.card-badge-v1.premium {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.card-badge-v1.city {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.card-badge-v1.family {
    background: linear-gradient(135deg, #ee0979, #ff6a00);
}

/* Контент V1 */
.card-content-v1 {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-title-v1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.card-subtitle-v1 {
    font-size: 16px;
    color: #4ecdc4;
    margin-bottom: 20px;
    font-weight: 500;
}

.card-description-v1 {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* Список преимуществ V1 */
.card-features-v1 {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.card-features-v1 li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.card-features-v1 li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

/* Спецификации V1 */
.card-specs-v1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.spec-item-v1 {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.spec-label-v1 {
    color: rgba(255, 255, 255, 0.6);
}

.spec-value-v1 {
    color: #4ecdc4;
    font-weight: 600;
}

/* Кнопки V1 */
.card-actions-v1 {
    display: flex;
    gap: 15px;
}

.btn-primary-v1 {
    flex: 1;
    padding: 16px 32px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary-v1:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
}

.btn-secondary-v1 {
    padding: 16px 24px;
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-secondary-v1:hover {
    background: rgba(78, 205, 196, 0.1);
}

/* Адаптивность V1 */
@media (max-width: 900px) {
    .service-card-v1,
    .service-card-v1:nth-child(even) {
        flex-direction: column;
    }

    .card-image-v1 {
        flex: none;
    }

    .card-image-v1 img {
        min-height: 250px;
    }

    .card-badge-v1,
    .service-card-v1:nth-child(even) .card-badge-v1 {
        left: 20px;
        right: auto;
    }

    .card-content-v1 {
        padding: 30px 20px;
    }

    .card-title-v1 {
        font-size: 24px;
    }

    .card-specs-v1 {
        grid-template-columns: 1fr;
    }

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

    .btn-primary-v1,
    .btn-secondary-v1 {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .category-title-v1 {
        font-size: 22px;
    }

    .card-content-v1 {
        padding: 25px 15px;
    }

    .card-title-v1 {
        font-size: 20px;
    }

    .card-description-v1 {
        font-size: 14px;
    }

    .card-features-v1 li {
        font-size: 13px;
    }

    .btn-primary-v1 {
        padding: 14px 24px;
        font-size: 14px;
    }

    .btn-secondary-v1 {
        padding: 14px 20px;
        font-size: 13px;
    }
}