/* Consultation Page Styles */
.consultation-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%) !important;
}

.hero-features {
    margin-top: 1.5rem;
}

.feature-item {
    display: inline-block;
    margin-right: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.consultation-card {
    border-radius: 15px;
    overflow: hidden;
}

.product-preview-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
}

.product-badge-small {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Стили для выбора способа связи */
.contact-method-option {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-method-option:hover {
    border-color: var(--light-green);
    background: rgba(76, 175, 80, 0.05);
}

.contact-method-active {
    border-color: var(--primary-green);
    background: rgba(76, 175, 80, 0.1);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.1);
}

.contact-method-option input[type="radio"] {
    display: none;
}

.contact-method-label {
    cursor: pointer;
    margin: 0;
    font-weight: 500;
    display: block;
}

.contact-method-label i {
    width: 20px;
    text-align: center;
}

/* Кнопки мессенджеров */
.btn-telegram {
    background: #0088cc;
    border-color: #0088cc;
    color: white;
    font-weight: 600;
}

.btn-telegram:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: white;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #20bd5c;
    border-color: #20bd5c;
    color: white;
}

/* Блок преимуществ */
.benefits-list {
    margin-top: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.1rem;
}

.benefit-content h6 {
    font-weight: 600;
    color: #333;
}

/* Адаптивность */
@media (max-width: 768px) {
    .consultation-hero .display-4 {
        font-size: 2rem;
    }

    .feature-item {
        display: block;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .contact-method-option {
        padding: 0.75rem 1rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Анимации */
.consultation-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.quick-contacts-card .btn {
    transition: all 0.3s ease;
}

.quick-contacts-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Кастомные стили для формы */
#consultation-form .form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

#consultation-form .form-control:focus {
    border-color: var(--light-green);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

#consultation-form .form-control-lg {
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

/* Обязательные поля */
label.required::after {
    content: ' *';
    color: #dc3545;
}

/* Подсказки в placeholder */
textarea::placeholder {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}