/* Стили специально для контентной области сервисных страниц */
.chiller-page-content {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background: transparent;
}

.chiller-page-content h2 {
    color: #9c2e36;
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    line-height: 1.3;
}

.chiller-page-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #9c2e36;
    border-radius: 2px;
}

.chiller-page-content h3 {
    color: #9c2e36;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.chiller-page-content p {
    margin-bottom: 16px;
    font-size: 15px;
}

/* Вводный блок */
.hero-chiller {
    background: linear-gradient(135deg, rgba(156, 46, 54, 0.05) 0%, rgba(156, 46, 54, 0.1) 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
}

.hero-chiller .intro-text {
    font-size: 16px;
    margin-bottom: 20px;
}

.chiller-page-content .cta-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #9c2e36;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 15px;
    align-items: center;
}

.chiller-page-content .cta-box h4 {
    flex-basis: 100%;
    font-size: 18px;
    color: #9c2e36;
    margin-bottom: 5px;
    font-weight: 600;
}

.chiller-page-content .cta-box a.phone-link,
.chiller-page-content .cta-box a.email-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
}

.chiller-page-content .cta-box a.phone-link:hover,
.chiller-page-content .cta-box a.email-link:hover {
    background: #9c2e36;
    color: white !important;
    border-color: #9c2e36;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(156, 46, 54, 0.2);
}

.chiller-page-content .btn-accent {
    flex-basis: 100%;
    max-width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff6b00;
    color: white !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.chiller-page-content .btn-accent:hover {
    background: #e55f00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

@media (max-width: 600px) {
    .chiller-page-content .cta-box a.phone-link,
    .chiller-page-content .cta-box a.email-link {
        flex-basis: 100%;
        max-width: 100%;
    }
    .chiller-page-content .btn-accent {
        max-width: 100%;
    }
}

/* Таблицы */
.chiller-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.chiller-table th,
.chiller-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

.chiller-table th {
    background-color: #9c2e36;
    color: white;
    font-weight: 600;
}

.chiller-table tbody tr:hover {
    background-color: #f8f9fa;
}

.price-disclaimer {
    font-size: 13px;
    color: #666;
    margin-top: -10px;
    margin-bottom: 30px;
    font-style: italic;
    display: block;
    line-height: 1.4;
}

/* Регламент (Карточки 2 колонки) */
.reglament-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.reg-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-top: 4px solid #9c2e36;
}

.reg-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.reg-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reg-card ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 14px;
}

.reg-card ul li::before {
    content: "•";
    color: #9c2e36;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Примеры работ и преимущества */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #9c2e36;
}

.feature-card h4 {
    color: #9c2e36;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Иконки списка */
.icon-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .reglament-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .chiller-table {
        display: block;
        overflow-x: auto;
    }
}

.chiller-img-wrap {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.chiller-img-wrap img {
    width: 100%;
    display: block;
}

/* Галерея изображений (3 в ряд) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #9c2e36;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-item .gallery-desc {
    padding: 15px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    text-align: center;
    border-top: 1px solid #eee;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Form Styles */
.price-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.price-modal-overlay.active {
    display: flex;
    opacity: 1;
}
.price-modal-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.price-modal-overlay.active .price-modal-box {
    transform: translateY(0);
}
.price-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    transition: color 0.2s;
}
.price-modal-close:hover {
    color: #9c2e36;
}
.price-modal-box h3 {
    margin-top: 0;
    color: #9c2e36;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}
.price-form-group {
    margin-bottom: 20px;
}
.price-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}
.price-form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.price-form-group input:focus {
    outline: none;
    border-color: #ff6b00;
}
.price-btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 10px;
}
.price-modal-success {
    display: none;
    text-align: center;
    padding: 30px 0;
}
.price-modal-success h4 {
    color: #28a745;
    font-size: 22px;
    margin-bottom: 10px;
}
.price-modal-success p {
    color: #666;
    font-size: 16px;
}
