/**
 * Стили для popup формы консультации
 * NTC BIO Form Manager
 */

/* Overlay */
.ntc-bio-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ntc-bio-popup-overlay.ntc-popup-active {
    opacity: 1;
    visibility: visible;
}

/* Контейнер popup */
.ntc-bio-popup-container {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ntc-bio-popup-overlay.ntc-popup-active .ntc-bio-popup-container {
    transform: scale(1) translateY(0);
}

/* Кнопка закрытия */
.ntc-bio-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(44, 62, 80, 0.08);
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    color: #2C3E50;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ntc-bio-popup-close:hover {
    background: rgba(231, 76, 60, 0.15);
    color: #E74C3C;
    transform: rotate(90deg);
}

.ntc-bio-popup-close:focus {
    outline: 2px solid #6BBF3A;
    outline-offset: 2px;
}

/* Тело popup */
.ntc-bio-popup-body {
    padding: 0;
}

/* Переопределение стилей формы внутри popup */
.ntc-bio-popup-body .ntc-consultation-form-wrapper {
    margin: 0;
    border-radius: 16px;
    box-shadow: none;
}

.ntc-bio-popup-body .ntc-popup-form-content {
    padding: 32px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .ntc-bio-popup-container {
        width: 95%;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .ntc-bio-popup-body .ntc-popup-form-content {
        padding: 24px 16px;
    }
    
    .ntc-bio-popup-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .ntc-bio-popup-container {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
    
    .ntc-bio-popup-body .ntc-popup-form-content {
        padding: 60px 16px 24px;
    }
}

/* Блокировка скролла body при открытом popup */
body.ntc-popup-open {
    overflow: hidden;
}

