/* ========================================
   BOOKING SECTION STYLES - СЕКЦИЯ ЗАПИСИ
   ======================================== */

/* Основные стили секции booking */
.booking-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%) !important;
    padding: 80px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Центрирование контейнера и формы */
.booking-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-section .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.booking-section .row.justify-content-center {
    justify-content: center;
}

.booking-section .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(5, 100, 134, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(10, 127, 163, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.booking-section .section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.booking-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.booking-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    border-radius: 2px;
}

.booking-section .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Обёртка формы */
.booking-section .booking-form-wrapper {
    background: #2A2D2C !important;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    color: #ffffff !important;
}

.booking-section .booking-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    border-radius: 20px 20px 0 0;
}

/* Секции формы */
.booking-section .form-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(42, 45, 44, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: #ffffff !important;
}

.booking-section .form-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 100, 134, 0.15);
}

.form-check-label {
	color: #ffffff !important;
}

.booking-section .form-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-section .form-section-title::before {
    content: '✨';
    font-size: 1.2rem;
}

/* Поля формы */
.booking-section .form-label {
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.booking-section .form-input,
.booking-section .form-select,
.booking-section .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    box-sizing: border-box;
    max-width: 100%;
}

.booking-section .form-input:focus,
.booking-section .form-select:focus,
.booking-section .form-textarea:focus {
    outline: none;
    border-color: #FF6C35;
    box-shadow: 0 0 0 3px rgba(255, 108, 53, 0.2);
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.15);
}

.booking-section .form-input::placeholder,
.booking-section .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.booking-section .form-hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    font-style: italic;
}

/* Кнопки */
.booking-section .form-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.booking-section .btn-secondary {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.booking-section .btn-secondary:hover {
    background: linear-gradient(135deg, #495057, #343a40);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
}

.booking-section .booking-submit-btn,
.booking-form__form .booking-submit-btn,
#submitBooking,
button#submitBooking,
button.submitBooking {
    background: #FF6C35 !important;
    background-image: none !important;
    color: #ffffff !important;
    border: 1px solid #FF6C35 !important;
    padding: 0.85rem 1.75rem !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 20px rgba(255, 108, 53, 0.5), 0 2px 8px rgba(255, 108, 53, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    position: relative !important;
    overflow: visible !important;
    display: inline-block !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    min-width: auto !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10 !important;
    margin: 10px !important;
    text-decoration: none !important;
}

/* Убираем все блокировки */
#submitBooking:disabled,
.booking-submit-btn:disabled,
button#submitBooking:disabled {
    pointer-events: auto !important;
    cursor: pointer !important;
    opacity: 1 !important;
    background: linear-gradient(135deg, #056486, #0A7FA3) !important;
}

#submitBooking.disabled,
.booking-submit-btn.disabled {
    pointer-events: auto !important;
    cursor: pointer !important;
    opacity: 1 !important;
}

.booking-section .booking-submit-btn:hover,
#submitBooking:hover,
button#submitBooking:hover {
    background: #ff7a45 !important;
    border-color: #ff7a45 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 30px rgba(255, 108, 53, 0.7), 0 4px 12px rgba(255, 108, 53, 0.5) !important;
    color: #ffffff !important;
    cursor: pointer !important;
}

/* Отключаем анимацию градиента для кнопки бронирования */
.booking-section .booking-submit-btn::before,
.booking-section .booking-submit-btn.btn::before,
.booking-section .booking-submit-btn.btn-primary::before,
#submitBooking::before,
#submitBooking.btn::before,
#submitBooking.btn-primary::before,
#submitBookingMain::before,
#submitBookingMain.btn::before,
#submitBookingMain.btn-primary::before,
button#submitBooking::before,
button#submitBooking.btn::before,
button#submitBooking.btn-primary::before,
button.submitBooking::before,
button.submitBooking.btn::before,
button.submitBooking.btn-primary::before {
    display: none !important;
    content: none !important;
    background: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
}

.booking-section .booking-submit-btn:active {
    transform: translateY(-1px);
}

/* Принудительно активируем кнопку */
#submitBooking:disabled,
.booking-submit-btn:disabled {
    pointer-events: auto !important;
    cursor: pointer !important;
    opacity: 1 !important;
}

#submitBooking.disabled,
.booking-submit-btn.disabled {
    pointer-events: auto !important;
    cursor: pointer !important;
    opacity: 1 !important;
}

/* Flash сообщения */
.booking-section .flash-messages {
    margin-bottom: 30px;
}

.booking-section .alert {
    padding: 15px 20px;
    border-radius: 10px;
    border: none;
    font-weight: 500;
    position: relative;
    animation: slideInDown 0.5s ease;
}

.booking-section .alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.booking-section .alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.booking-section .btn-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.booking-section .btn-close:hover {
    opacity: 1;
}

/* Анимации */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-section .form-section {
    animation: fadeInUp 0.6s ease forwards;
}

.booking-section .form-section:nth-child(1) { animation-delay: 0.1s; }
.booking-section .form-section:nth-child(2) { animation-delay: 0.2s; }
.booking-section .form-section13665782 { animation-delay: 0.3s; }
.booking-section .form-section:nth-child(4) { animation-delay: 0.4s; }

/* Стили для строк и колонок формы */
.booking-section .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.booking-section .row.justify-content-center {
    justify-content: center;
}

.booking-section .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.booking-section .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* Специальные стили для поля даты */
.booking-section input[type="date"] {
    box-sizing: border-box !important;
    max-width: 100% !important;
    width: 100% !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.booking-section input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 5px;
}

/* Стили для сообщения об ошибке даты */
.booking-section .date-error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для невалидного поля даты */
.booking-section input[type="date"]:invalid {
    border-color: #dc3545;
}

.booking-section input[type="date"]:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Адаптивность */
@media (max-width: 768px) {
    .booking-section {
        padding: 40px 0;
    }
    
    .booking-section .section-title {
        font-size: 2rem;
    }
    
    .booking-section .section-subtitle {
        font-size: 1rem;
    }
    
    .booking-section .booking-form-wrapper {
        padding: 20px;
        margin: 0 15px;
    }
    
    .booking-section .form-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .booking-section .form-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-section .booking-submit-btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* На мобильных устройствах колонки становятся полной ширины */
    .booking-section .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .booking-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    /* Дополнительные стили для поля даты на мобильных */
    .booking-section input[type="date"] {
        font-size: 16px !important; /* Предотвращает зум на iOS */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 10px !important;
    }
    
    .booking-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .booking-section .col-md-6 {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .booking-section .section-title {
        font-size: 1.8rem;
    }
    
    .booking-section .booking-form-wrapper {
        padding: 15px;
        margin: 0 10px;
    }
    
    .booking-section .form-section {
        padding: 15px;
    }
    
    /* Дополнительная защита для поля даты на маленьких экранах */
    .booking-section input[type="date"] {
        font-size: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 8px !important;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .booking-section .form-input,
    .booking-section .form-select {
        font-size: 16px !important; /* Предотвращает зум на iOS */
    }
}

/* ========================================
   КАЛЬКУЛЯТОР СТОИМОСТИ
   ======================================== */

.price-calculator {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #056486;
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(5, 100, 134, 0.1);
    animation: slideInUp 0.5s ease-out;
}

.price-display {
    text-align: center;
}

.price-display .form-label {
    font-weight: 600;
    color: #056486;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #056486;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(5, 100, 134, 0.1);
}

.price-breakdown {
    font-size: 0.9rem;
    color: #6c757d;
}

.price-breakdown #pricePerMinute {
    font-weight: 600;
    color: #056486;
}

/* Анимация появления */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-calculator .btn-secondary {
    margin-top: 20px;
    width: 100%;
}

.price-calculator .btn-secondary:hover {
    transform: translateY(-2px);
}

.price-calculator .note {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 15px;
    text-align: left;
    line-height: 1.5;
}

/* ========================================
   СТИЛИ ДЛЯ ВРЕМЕННЫХ СЛОТОВ
   ======================================== */

/* Стили для select с временными слотами */
.booking-section .form-select option.time-slot-available {
    background-color: rgba(42, 45, 44, 0.9) !important;
    color: #ffffff !important;
    padding: 10px 15px !important;
    font-weight: 600 !important;
    border-left: 4px solid #28a745 !important;
}

.booking-section .form-select option.time-slot-busy {
    background-color: rgba(42, 45, 44, 0.7) !important;
    color: rgba(255, 255, 255, 0.5) !important;
    padding: 10px 15px !important;
    opacity: 0.8;
    border-left: 4px solid #dc3545 !important;
    text-decoration: line-through;
}

/* Стили для опций в выпадающем списке */
.booking-section .form-select option {
    padding: 10px 15px !important;
    margin: 2px 0 !important;
    border-radius: 5px !important;
    font-size: 1rem !important;
    background-color: rgba(42, 45, 44, 0.9) !important;
    color: #ffffff !important;
}

/* Стили для выбранной опции */
.booking-section .form-select option:checked,
.booking-section .form-select option[selected] {
    background: #FF6C35 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
}

/* Стили для самого select при открытии (в некоторых браузерах) */
.booking-section .form-select:focus {
    border-color: #0A7FA3;
    box-shadow: 0 0 0 3px rgba(10, 127, 163, 0.1);
}

/* Дополнительные стили для лучшей видимости в разных браузерах */
.booking-section .form-select option:hover {
    background-color: #e9ecef !important;
}

.booking-section .form-select option.time-slot-available:hover {
    background-color: #c3e6cb !important;
}

.booking-section .form-select option.time-slot-busy:hover {
    background-color: #f5c6cb !important;
    cursor: not-allowed;
}

/* Стили для многошаговой формы (booking-form__select) */
.booking-form__select option.time-slot-available {
    background-color: #d4edda !important;
    background: linear-gradient(135deg, #d4edda, #c3e6cb) !important;
    color: #155724 !important;
    padding: 10px 15px !important;
    font-weight: 600 !important;
    border-left: 4px solid #28a745 !important;
}

.booking-form__select option.time-slot-busy {
    background-color: #f8d7da !important;
    background: linear-gradient(135deg, #f8d7da, #f5c6cb) !important;
    color: #721c24 !important;
    padding: 10px 15px !important;
    opacity: 0.8;
    border-left: 4px solid #dc3545 !important;
    text-decoration: line-through;
}

.booking-form__select option {
    padding: 10px 15px !important;
    margin: 2px 0 !important;
    border-radius: 5px !important;
    font-size: 1rem !important;
}

.booking-form__select option:checked,
.booking-form__select option[selected] {
    background: linear-gradient(135deg, #8B4513, #D2691E) !important;
    color: white !important;
    font-weight: 700 !important;
}

/* Стили для вариантов со свободными и занятыми слотами */
.booking-section select option.time-slot-available,
.booking-form__select option.time-slot-available {
    background-color: #d4edda !important;
    color: #155724 !important;
}

.booking-section select option.time-slot-busy,
.booking-form__select option.time-slot-busy {
    background-color: #f8d7da !important;
    color: #721c24 !important;
}

/* Стили для политики конфиденциальности */
.privacy-link {
    color: #056486;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
}

.privacy-link:hover {
    color: #0A7FA3;
    text-decoration: none;
}

.privacy-policy-text {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    border-left: 3px solid #056486;
}

.privacy-policy-text strong {
    color: #056486;
    display: block;
    margin-bottom: 10px;
}

/* Стили для защиты от спама */
.hp-field {
    display: none !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

#spam-protection-error {
    background: #fff3f3 !important;
    border: 1px solid #ffcdd2 !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin: 15px 0 !important;
    color: #d32f2f !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
}

#spam-protection-error strong {
    color: #b71c1c !important;
}

/* Отключение защиты для определенных форм */
form.no-protection {
    /* Специальные формы без защиты - стили можно добавить при необходимости */
}

/* Информация об услуге */
.service-info {
    background: rgba(42, 45, 44, 0.6);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    color: #ffffff !important;
}

.service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.service-duration,
.service-price {
    font-size: 1rem;
    color: #ffffff !important;
}

.service-duration strong,
.service-price strong {
    color: #FF6C35;
    margin-right: 5px;
}

.service-price {
    color: #FF6C35 !important;
    font-weight: 600;
}

/* Состав комплекса */
.complex-items {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
}

.complex-items strong {
    color: #FF6C35;
    display: block;
    margin-bottom: 10px;
}

.complex-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.complex-items-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
}

.complex-items-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Блок стоимости */
.price-display-block {
    background: rgba(42, 45, 44, 0.8);
    border: 1px solid rgba(255, 108, 53, 0.5);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.price-label {
    color: #ffffff !important;
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.price-value {
    color: #FF6C35 !important;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Стили для поля продолжительности */
#service-details-section {
    margin-top: 20px;
    padding: 20px;
    background: rgba(42, 45, 44, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}

#service-details-section .form-input[readonly] {
    background-color: rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}

#service-details-section .form-input[readonly]:focus {
    border-color: #FF6C35;
    box-shadow: 0 0 0 0.2rem rgba(255, 108, 53, 0.2);
}

/* Блок калькуляции */
.calculation-block {
    background: rgba(42, 45, 44, 0.8);
    border: 2px solid rgba(255, 108, 53, 0.5);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-top: 20px;
    transition: all 0.3s ease;
    color: #ffffff !important;
}

.calculation-block:hover {
    box-shadow: 0 6px 20px rgba(5, 100, 134, 0.25);
    transform: translateY(-2px);
}

.calculation-header {
    background: #FF6C35;
    padding: 15px 20px;
    color: #ffffff !important;
}

.calculation-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calculation-icon {
    font-size: 1.5rem;
}

.calculation-body {
    padding: 20px;
}

.calculation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.calculation-row:last-child {
    border-bottom: none;
}

.calculation-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}

.calculation-value {
    font-size: 1rem;
    color: #ffffff !important;
    font-weight: 600;
}

.calculation-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #056486 50%, transparent 100%);
    margin: 15px 0;
}

.calculation-total {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #056486;
}

.calculation-total .calculation-label {
    font-size: 1.2rem;
    color: #ffffff !important;
    font-weight: 700;
}

.calculation-price {
    font-size: 1.5rem;
    color: #FF6C35 !important;
    font-weight: 700;
}

/* Стили для полей продолжительности и стоимости */
#service-details-row {
    background: rgba(42, 45, 44, 0.6);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    color: #ffffff !important;
}

#service-details-row .form-input[readonly] {
    background-color: rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}

#service-details-row .form-input[readonly]:focus {
    border-color: #FF6C35;
    box-shadow: 0 0 0 0.2rem rgba(255, 108, 53, 0.2);
}

/* Адаптивность для информации об услуге */
@media (max-width: 768px) {
    .service-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-info {
        padding: 12px;
    }
    
    .calculation-block {
        margin-top: 15px;
    }
    
    .calculation-header {
        padding: 12px 15px;
    }
    
    .calculation-title {
        font-size: 1.1rem;
    }
    
    .calculation-body {
        padding: 15px;
    }
    
    .calculation-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .calculation-total .calculation-label,
    .calculation-price {
        font-size: 1.2rem;
    }
    
    #service-details-row {
        padding: 15px;
    }
    
    #service-details-row .col-md-6 {
        margin-bottom: 15px;
    }
    
    .price-display-block {
        padding: 15px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .price-label {
        font-size: 0.9rem;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    #service-details-section {
        padding: 15px;
    }
}