.popup {
    display: none;
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    padding: 20px;
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.popup-content {
    position: relative;
    background: rgba(12, 60, 66, 0.95);
    width: 100%;
    max-width: 500px;
    margin: 0px auto;
    padding: 30px;
    border-radius: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.popup h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin: 0;
    padding-right: 40px;
}

.close-btn {
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--white);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    right: 30px;
    top: 30px;
}

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

.popup-subtitle {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Стили для кнопок контактов */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 54px;
    padding: 0 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 27px;
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.contact-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.contact-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Стили для карточек с ценами */
.prices-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
}

.price-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: var(--secondary-button);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--button-radius);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.price-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-title {
    font-size: 1.1rem;
    color: var(--white);
}

.price-details {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
}

.price-amount {
    font-size: 1.1rem;
    color: var(--white);
    white-space: nowrap;
}

/* Кнопка "Записаться" в попапе цен */
.prices-content + .btn.primary {
    margin-top: 15px;
    width: 100%;
    min-width: 100%;
}

.contact-btn {
    width: 100%;
    height: 54px;
    border-radius: 27px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .popup-content {
        padding: 25px;
    }

    .popup h3 {
        font-size: 1.2rem;
        padding-right: 35px;
    }

    .close-btn {
        right: 25px;
        top: 25px;
    }

    .price-card {
        padding: 20px;
        width: 100%;
    }

    .prices-content + .btn.primary {
        width: 100%;
        min-width: 100%;
    }
} 