/* Стили для страницы специалистов */
.specialists-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

.specialists-header {
    text-align: center;
    margin-bottom: 40px;
}

.breadcrumb {
    margin-top: 20px;
    color: #b8b8d4;
    font-size: 0.9rem;
}

.breadcrumb .arrow {
    margin: 0 10px;
    color: #9b59b6;
}

.breadcrumb .current {
    color: #9b59b6;
    font-weight: 600;
}

/* Секция введения */
.intro-section {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-family: 'Cormorant', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e6e6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #b8b8d4;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Сетка специалистов */
.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Карточки специалистов */
.specialist-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.specialist-card:hover {
    transform: translateY(-10px);
    border-color: rgba(155, 89, 182, 0.3);
    box-shadow: 0 20px 60px rgba(155, 89, 182, 0.2);
}

.specialist-card.featured {
    border: 2px solid #9b59b6;
    box-shadow: 0 0 30px rgba(155, 89, 182, 0.3);
}

.specialist-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9b59b6 0%, #8e44ad 50%, #7d3c98 100%);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Иконки специалистов */
.specialist-image {
    margin-bottom: 25px;
}

.specialist-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(155, 89, 182, 0.5));
}

.specialist-card[data-specialist="energy"] .specialist-icon {
    filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.6));
}

.specialist-card[data-specialist="karma"] .specialist-icon {
    filter: drop-shadow(0 0 20px rgba(155, 89, 182, 0.8));
}

.specialist-card[data-specialist="tarot"] .specialist-icon {
    filter: drop-shadow(0 0 20px rgba(233, 30, 99, 0.6));
}

.specialist-card[data-specialist="psycho"] .specialist-icon {
    filter: drop-shadow(0 0 20px rgba(33, 150, 243, 0.6));
}

/* Информация о специалисте */
.specialist-info {
    text-align: left;
}

.specialist-title {
    font-family: 'Cormorant', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
}

.specialist-description p {
    color: #b8b8d4;
    margin-bottom: 20px;
    line-height: 1.6;
}

.specialist-methods {
    margin-bottom: 25px;
}

.method {
    padding: 8px 0;
    color: #e6e6ff;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.method:last-child {
    border-bottom: none;
}

/* Цены */
.specialist-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.original-price {
    color: #888;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.discount-price {
    color: #9b59b6;
    font-size: 1.5rem;
    font-weight: 700;
}

.discount-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Кнопки выбора специалиста */
.select-specialist-btn {
    width: 100%;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    border: none;
    border-radius: 25px;
    padding: 15px 25px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.select-specialist-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.4);
}

.select-specialist-btn.featured {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
    animation: featuredPulse 3s ease-in-out infinite;
}

.select-specialist-btn.featured:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5);
}

@keyframes featuredPulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3); }
    50% { box-shadow: 0 5px 20px rgba(255, 107, 107, 0.6); }
}

/* Форма записи */
.booking-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    overflow-y: auto;
    padding: 20px;
}

.booking-form-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.close-form {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-form:hover {
    color: #ff6b6b;
}

/* Информация о выбранном специалисте */
.selected-specialist-info {
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid rgba(155, 89, 182, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.selected-specialist-info h4 {
    color: #9b59b6;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.selected-specialist-info p {
    color: #e6e6ff;
    margin: 0;
}

/* Заголовки формы */
.booking-form-modal h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
}

.form-description {
    color: #b8b8d4;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.5;
}

/* Стили формы */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9b59b6;
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.field-hint {
    color: #888;
    font-size: 0.85rem;
    margin-top: 5px;
    font-style: italic;
}

/* Чекбоксы */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.5;
    margin: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    padding: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #9b59b6;
    border-color: #9b59b6;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Информация о платеже */
.payment-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.price-breakdown {
    margin-bottom: 20px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: #e6e6ff;
}

.price-line.discount {
    color: #4caf50;
}

.price-line.total {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #9b59b6;
}

/* Методы платежа */
.payment-methods {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-method input[type="radio"] {
    width: auto;
    margin: 0;
}

.payment-method label {
    color: #e6e6ff;
    cursor: pointer;
    margin: 0;
}

/* Кнопка отправки */
.booking-submit-btn {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    border: none;
    border-radius: 25px;
    padding: 20px 40px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.booking-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(155, 89, 182, 0.4);
}

.btn-price {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Секция доверия */
.trust-section {
    margin-bottom: 80px;
}

.guarantee-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.guarantee-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.guarantee-text h4 {
    color: #9b59b6;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.guarantee-text p {
    color: #b8b8d4;
    margin: 0;
    line-height: 1.5;
}

/* Секция отзывов */
.reviews-section {
    text-align: center;
}

.reviews-section h2 {
    font-family: 'Cormorant', serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(15px);
    text-align: left;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info strong {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.review-specialist {
    color: #9b59b6;
    font-size: 0.9rem;
}

.review-rating {
    color: #ffd700;
    font-size: 1.1rem;
}

.review-text {
    color: #e6e6ff;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Адаптивность */
@media (max-width: 768px) {
    .specialists-container {
        padding: 15px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .specialists-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .specialist-card {
        padding: 25px 20px;
    }
    
    .specialist-icon {
        font-size: 3rem;
    }
    
    .booking-form-modal {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .guarantee-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .guarantee-item {
        padding: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payment-methods {
        flex-direction: column;
        gap: 15px;
    }
    
    .booking-submit-btn {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .specialist-card {
        padding: 20px 15px;
    }
    
    .specialist-price {
        flex-direction: column;
        gap: 10px;
    }
    
    .booking-form-modal {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
    
    .guarantee-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .guarantee-icon {
        font-size: 2rem;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.specialist-card {
    animation: fadeInUp 0.6s ease forwards;
}

.specialist-card:nth-child(1) { animation-delay: 0.1s; }
.specialist-card:nth-child(2) { animation-delay: 0.2s; }
.specialist-card:nth-child(3) { animation-delay: 0.3s; }
.specialist-card:nth-child(4) { animation-delay: 0.4s; }

/* Успешная отправка */
.booking-success {
    text-align: center;
    color: #4caf50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 30px;
    padding: 25px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
}

.booking-error {
    text-align: center;
    color: #ff6b6b;
    font-size: 1rem;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 15px;
} 